/* ============ VARIABLES ============ */
:root {
    --color-primary: #000000;
    --color-primary-light: #333333;
    --color-accent: #667eea;
    --color-accent-dark: #5a6fd6;
    --color-green: #2d7a2d;
    --color-red: #cc3333;
    --color-yellow: #d4a017;
    --color-text: #000000;
    --color-text-light: #555555;
    --color-bg-light: #ffffff;
    --color-bg-dark: #000000;
    --color-bg-dark-card: #383838;
    --color-border: #f0f0f0;
    --color-white: #ffffff;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --max-width: 1200px;
    --radius: 10px;
    --radius-sm: 8px;
    --shadow: 0 1px 3px rgba(0,0,0,0.04);
    --shadow-lg: 0 2px 4px rgba(0,0,0,0.08);
    --transition: 0.2s ease;
}

/* ============ RESET ============ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 72px;
}

body {
    font-family: var(--font);
    color: var(--color-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

/* ============ UTILIDADES ============ */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 80px 0;
}

.section-light {
    background: var(--color-bg-light);
}

.section-dark {
    background: var(--color-bg-dark);
    color: var(--color-white);
}

.section-title {
    font-size: 2.25rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 12px;
    line-height: 1.2;
}

.section-subtitle {
    text-align: center;
    font-size: 1.15rem;
    color: var(--color-text-light);
    max-width: 680px;
    margin: 0 auto 48px;
}

.section-dark .section-subtitle {
    color: #94a3b8;
}

/* ============ BOTONES ============ */
.btn {
    display: inline-block;
    font-family: var(--font);
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius-sm);
    padding: 12px 28px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    text-align: center;
}

.btn-primary {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}

.btn-primary:hover {
    background: var(--color-primary-light);
    border-color: var(--color-primary-light);
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.btn-outline:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

.section-dark .btn-primary {
    background: var(--color-white);
    color: var(--color-primary);
    border-color: var(--color-white);
}

.section-dark .btn-primary:hover {
    background: #f0f0f0;
    border-color: #f0f0f0;
}

.section-dark .btn-outline {
    border-color: var(--color-white);
    color: var(--color-white);
}

.section-dark .btn-outline:hover {
    background: var(--color-white);
    color: var(--color-bg-dark);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.1rem;
}

.btn-xl {
    padding: 20px 48px;
    font-size: 1.2rem;
    border-radius: var(--radius);
}

.btn-block {
    display: block;
    width: 100%;
}

/* ============ NAVEGACION ============ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border);
    transition: var(--transition);
}

.nav.scrolled {
    box-shadow: var(--shadow);
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo-img {
    height: 40px;
    width: 40px;
    border-radius: 50%;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--color-text-light);
    transition: var(--transition);
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--color-primary);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: #667eea;
    border-radius: 1px;
}

.nav-cta {
    background: var(--color-primary) !important;
    color: var(--color-white) !important;
    padding: 8px 20px;
    border-radius: var(--radius-sm);
}

.nav-cta:hover {
    background: var(--color-primary-light) !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-text);
    border-radius: 2px;
    transition: var(--transition);
}

/* ============ HERO ============ */
.hero {
    padding: 110px 0 60px;
    background: #000000;
    color: var(--color-white);
    text-align: center;
}

.hero-brand {
    font-size: 4.2rem;
    font-weight: 700;
    color: #999999;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
    white-space: nowrap;
}

.hero-brand-master {
    color: #ffffff;
    font-weight: 800;
}

.hero-brand-sep {
    font-weight: 300;
    font-style: italic;
    color: #666666;
    margin: 0 8px;
    font-size: 0.75em;
}

.hero-brand-pelu {
    color: #999999;
    font-weight: 700;
}

.hero-brand-gest {
    color: #e8960c;
    font-weight: 800;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero .highlight {
    color: #667eea;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.7);
    max-width: 640px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.hero .btn-primary {
    background: var(--color-white);
    color: var(--color-primary);
    border-color: var(--color-white);
}

.hero .btn-primary:hover {
    background: #f0f0f0;
    border-color: #f0f0f0;
}

.hero .btn-outline {
    border-color: rgba(255,255,255,0.4);
    color: var(--color-white);
}

.hero .btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.7);
}

.hero-realtime {
    margin-top: 28px;
    font-size: 1.8rem;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 600;
}

.hero-semaforos {
    margin: 40px auto 28px;
    max-width: 960px;
}

.hero-semaforos .semaforo-card {
    background: #383838;
    border: 1px solid rgba(255,255,255,0.12);
}

.hero-semaforos .semaforo-card h3 {
    color: var(--color-white);
}

.hero-semaforos .semaforo-card p {
    color: rgba(255,255,255,0.6);
}

.hero-trust {
    font-size: 0.9rem;
    color: #93c5fd;
}

/* ============ PROBLEMA ============ */
.problems-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}

.problem-card {
    background: var(--color-white);
    border-radius: var(--radius);
    padding: 32px 28px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.problem-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.problem-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.problem-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--color-primary);
}

.problem-card p {
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

/* ============ SEMAFOROS ============ */
.semaforo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-bottom: 40px;
}

.semaforo-card {
    background: var(--color-bg-dark-card);
    border-radius: var(--radius);
    padding: 36px 24px 28px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.06);
}

.semaforo-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255,255,255,0.12);
}

.semaforo-lights {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
}

.light {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: block;
    box-shadow: 0 0 12px rgba(0,0,0,0.3);
}

.light.green {
    background: #2d7a2d;
    box-shadow: 0 0 16px rgba(45,122,45,0.5);
}

.light.yellow {
    background: #d4a017;
    box-shadow: 0 0 16px rgba(212,160,23,0.5);
}

.light.red {
    background: #cc3333;
    box-shadow: 0 0 16px rgba(204,51,51,0.5);
}

.semaforo-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--color-white);
}

.semaforo-card p {
    font-size: 0.9rem;
    color: #94a3b8;
    line-height: 1.5;
}

.semaforo-caption {
    text-align: center;
    font-size: 1.05rem;
    color: #cbd5e1;
    font-weight: 600;
    max-width: 700px;
    margin: 0 auto 32px;
}

.hero .semaforo-caption {
    color: rgba(255,255,255,0.6);
}

/* ============ VIDEOS ============ */
.videos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.video-section-single {
    max-width: 720px;
    margin: 0 auto;
}

.video-card {
    background: var(--color-bg-dark-card);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}

.section-light .video-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow);
}

.video-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.video-placeholder {
    aspect-ratio: 16/9;
    background: #334155;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #94a3b8;
    font-size: 0.95rem;
}

.section-light .video-placeholder {
    background: #e2e8f0;
    color: var(--color-text-light);
}

.play-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #cbd5e1;
    transition: var(--transition);
}

.section-light .play-icon {
    background: rgba(0,0,0,0.08);
    color: var(--color-text-light);
}

.video-card:hover .play-icon {
    background: var(--color-primary);
    color: var(--color-white);
}

.video-placeholder.yt-ready {
    background-size: cover;
    background-position: center;
    cursor: pointer;
}
.video-placeholder.yt-ready > span {
    display: none;
}
.video-placeholder.yt-ready .play-icon {
    background: rgba(204, 0, 0, 0.9);
    color: #fff;
    width: 68px;
    height: 48px;
    border-radius: 12px;
    font-size: 1.3rem;
}
.video-card:hover .yt-ready .play-icon {
    background: #cc0000;
    transform: scale(1.1);
}

.video-card .video-iframe {
    aspect-ratio: 16/9;
    width: 100%;
    border: none;
}

.video-card h3 {
    padding: 16px 20px 4px;
    font-size: 1.05rem;
    font-weight: 600;
}

.video-card p {
    padding: 0 20px 20px;
    font-size: 0.88rem;
    color: #94a3b8;
    line-height: 1.5;
}

.section-light .video-card h3 {
    color: var(--color-text);
}

.section-light .video-card p {
    color: var(--color-text-light);
}

/* ============ MULTISALON ============ */
.multisalon-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}

.feature {
    background: var(--color-white);
    border-radius: var(--radius-sm);
    padding: 28px 24px;
    box-shadow: var(--shadow);
    border-left: 3px solid #667eea;
    border: 1px solid var(--color-border);
    border-left: 3px solid #667eea;
}

.feature h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 8px;
}

.feature p {
    font-size: 0.92rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

/* ============ PRECIOS ============ */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: start;
}

.pricing-card {
    background: var(--color-bg-dark-card);
    border-radius: var(--radius);
    padding: 36px 28px;
    position: relative;
    transition: var(--transition);
}

.pricing-card:hover {
    transform: translateY(-4px);
}

.pricing-featured {
    border: 2px solid #667eea;
    transform: scale(1.04);
    box-shadow: 0 4px 20px rgba(102,126,234,0.15);
}

.pricing-featured:hover {
    transform: scale(1.04) translateY(-4px);
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: #667eea;
    color: var(--color-white);
    padding: 4px 20px;
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 600;
}

.pricing-header h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.pricing-target {
    font-size: 0.88rem;
    color: #94a3b8;
    margin-bottom: 20px;
}

.pricing-price {
    margin-bottom: 28px;
    display: flex;
    align-items: baseline;
    gap: 4px;
    flex-wrap: wrap;
}

.price-from {
    font-size: 0.85rem;
    color: #94a3b8;
    margin-right: 4px;
}

.price-amount {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    color: var(--color-white);
}

.price-currency {
    font-size: 1.1rem;
    font-weight: 600;
    color: #94a3b8;
}

.price-period {
    font-size: 1rem;
    color: #64748b;
}

.pricing-features {
    margin-bottom: 28px;
}

.pricing-features li {
    padding: 8px 0;
    font-size: 0.92rem;
    color: #cbd5e1;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li::before {
    content: '\2713';
    color: #667eea;
    margin-right: 10px;
    font-weight: 700;
}

.pricing-features li strong {
    color: var(--color-white);
}

.pricing-note {
    margin-top: 12px;
    font-size: 0.78rem;
    color: #64748b;
    text-align: center;
}

.pricing-grid-2 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
    margin: 0 auto;
}

.pricing-grid-3 {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-extras {
    max-width: 800px;
    margin: 40px auto 0;
    background: var(--color-bg-dark-card);
    border-radius: var(--radius);
    padding: 28px 32px;
}

.pricing-extras h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--color-white);
}

.extras-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 12px;
}

.extra-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.05);
    padding: 10px 18px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255,255,255,0.08);
}

.extra-name {
    font-size: 0.92rem;
    color: #cbd5e1;
}

.extra-price {
    font-size: 0.92rem;
    font-weight: 600;
    color: #667eea;
}

.pricing-vat {
    text-align: center;
    color: #94a3b8;
    font-size: 0.88rem;
    margin-top: 32px;
}

/* ============ COMPARATIVA ============ */
.comparison-table-wrapper {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.comparison-table th,
.comparison-table td {
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid var(--color-border);
}

.comparison-table thead th {
    font-weight: 700;
    font-size: 1rem;
    color: var(--color-primary);
    padding-bottom: 20px;
}

.comparison-table td:first-child {
    font-weight: 600;
    color: var(--color-primary);
}

.comparison-table .highlight-col {
    background: rgba(34,197,94,0.06);
    color: var(--color-text);
    font-weight: 600;
}

.comparison-table thead .highlight-col {
    color: var(--color-accent-dark);
    font-weight: 700;
}

/* ============ CTA FINAL ============ */
.section-cta {
    background: #f8f8f8;
    color: var(--color-text);
    text-align: center;
    padding: 48px 0;
}

.section-cta h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 24px;
}

.cta-actions {
    margin-bottom: 24px;
}

.cta-email {
    font-size: 1.3rem;
}

.cta-email a {
    color: var(--color-text);
    text-decoration: underline;
}

.cta-email a:hover {
    color: #667eea;
}

/* ============ CONTACTO GRID ============ */
.contacto-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 700px;
    margin: 0 auto;
}

.contacto-card {
    background: #ffffff;
    border-radius: var(--radius);
    padding: 28px 24px;
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.contacto-card h3 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.contacto-card h3 span {
    font-weight: 800;
}

.contacto-card a {
    color: var(--color-accent);
    text-decoration: none;
}

.contacto-card a:hover {
    text-decoration: underline;
}

.contacto-card p {
    margin-bottom: 4px;
    font-size: 0.95rem;
}

.contacto-role {
    color: var(--color-text-light);
    font-size: 0.85rem !important;
    margin-bottom: 12px !important;
}

/* ============ NAV SEPARATOR ============ */
.nav-separator {
    font-weight: 300;
    font-style: italic;
    color: #999999;
    margin: 0 4px;
    font-size: 0.85em;
}

/* ============ PELUGEST BRANDING ============ */
.pelugest-logo {
    font-size: 1.4rem !important;
    letter-spacing: -0.5px;
}

.pelugest-pelu {
    color: #555555;
    font-weight: 700;
}

.pelugest-gest {
    color: #e8960c;
    font-weight: 800;
}

.footer-partner {
    margin-top: 8px;
    font-size: 0.82rem !important;
}

/* ============ FOOTER ============ */
.footer {
    background: #000000;
    color: #888888;
    padding: 40px 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
}

.footer-brand-logo {
    font-size: 2.5rem;
    font-weight: 700;
    color: #999999;
    letter-spacing: -0.02em;
}

.footer-brand p {
    font-size: 0.85rem;
    margin-top: 4px;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    font-size: 0.88rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-legal {
    font-size: 0.82rem;
}

/* ============ ANIMACIONES SCROLL ============ */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============ FORMULARIO DEMO ============ */
.section-form {
    padding: 120px 0 60px;
    min-height: calc(100vh - 72px);
    display: flex;
    align-items: center;
}

.form-wrapper {
    max-width: 640px;
    margin: 0 auto;
}

.form-wrapper h1 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--color-text);
}

.form-subtitle {
    font-size: 1rem;
    color: var(--color-text-light);
    margin-bottom: 36px;
}

.demo-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--color-text);
}

.form-group input,
.form-group textarea {
    font-family: var(--font);
    font-size: 0.95rem;
    padding: 12px 14px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    background: var(--color-white);
    color: var(--color-text);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102,126,234,0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #aaa;
}

.form-group textarea {
    resize: vertical;
}

.form-success {
    text-align: center;
    padding: 48px 0;
}

.form-success h2 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--color-text);
}

.form-success p {
    font-size: 1rem;
    color: var(--color-text-light);
    margin-bottom: 28px;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 968px) {
    .problems-grid,
    .videos-grid,
    .multisalon-features,
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .semaforo-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-featured {
        transform: scale(1);
    }

    .pricing-featured:hover {
        transform: translateY(-4px);
    }

    .hero-brand {
        font-size: 3rem;
    }

    .hero h1 {
        font-size: 2.25rem;
    }

    .section-title {
        font-size: 1.85rem;
    }

    .section-cta h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--color-white);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        border-bottom: 1px solid var(--color-border);
        box-shadow: var(--shadow);
    }

    .nav-links.open {
        display: flex;
    }

    .nav-cta {
        align-self: stretch;
        text-align: center;
    }

    .hero {
        padding: 120px 0 60px;
    }

    .hero-brand {
        font-size: 1.8rem;
        white-space: normal;
    }

    .hero h1 {
        font-size: 1.85rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section {
        padding: 56px 0;
    }

    .problems-grid,
    .videos-grid,
    .multisalon-features,
    .pricing-grid,
    .pricing-grid-2,
    .pricing-grid-3,
    .semaforo-grid {
        grid-template-columns: 1fr;
    }

    .extras-grid,
    .form-row,
    .contacto-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .section-cta h2 {
        font-size: 1.6rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .comparison-table {
        font-size: 0.85rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 12px 10px;
    }
}

@media (max-width: 480px) {
    .hero-brand {
        font-size: 1.4rem;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    .btn-lg {
        padding: 14px 24px;
        font-size: 1rem;
    }

    .btn-xl {
        padding: 16px 32px;
        font-size: 1.05rem;
    }

    .price-amount {
        font-size: 2.4rem;
    }
}

/* ============================================================
   V2: Logos PM & SZ - Diseno simetrico espejo
   ============================================================ */

/* Nav mas alta => ajustar scroll y hero padding */
html { scroll-padding-top: 52px !important; }
.hero { padding-top: 92px !important; }

/* --- BRAND BLOCK: estructura compartida PM y SZ --- */
.brand-block {
    display: inline-flex;
    align-items: center;
    gap: 0.12em;
}
.brand-block-icon {
    display: inline-flex;
    align-items: center;
    align-self: flex-end;
    margin-bottom: 0.15em;
}
.brand-block-text {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1;
}
.brand-block-sub {
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.18em;
}
.brand-block-main {
    font-weight: 800;
    letter-spacing: -0.02em;
}

/* PM colors (fondo oscuro) */
.pm-main { color: #fff; }
/* SZ colors (fondo oscuro) */
.sz-main .soft, .sz-main .san { color: #fff; font-weight: 800; }
.sz-main .z-letter { color: #999; font-weight: 700; }

/* PM colors (fondo claro - contacto) */
.contacto-card .pm-main { color: #000; }
.contacto-card .brand-block-sub { color: #888; }
/* SZ colors (fondo claro - contacto) */
.contacto-card .sz-main .soft,
.contacto-card .sz-main .san { color: #000; font-weight: 800; }
.contacto-card .sz-main .z-letter { color: #999; font-weight: 700; }

/* Circulo verde (icono PM) */
.pm-green-dot {
    border-radius: 50%;
    background: #2d7a2d;
    box-shadow: 0 0 8px rgba(45,122,45,0.5);
    display: inline-block;
}

/* Rayo SVG (icono SZ) */
.sz-bolt-icon svg { height: auto; }

/* Separador & */
.brand-sep {
    font-weight: 300;
    font-style: italic;
    color: #666;
    flex-shrink: 0;
    align-self: flex-end;
}

/* --- BRAND ROW: contenedor flex 50/50 --- */
.brand-row {
    display: flex;
    align-items: flex-end;
    justify-content: center;
}
.brand-left {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}
.brand-right {
    flex: 1;
    display: flex;
    justify-content: flex-start;
}

/* ============================================================
   HERO BRAND V2
   ============================================================ */
.hero-brand-v2 {
    margin-bottom: 24px;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}
.hero-brand-v2 .brand-block-sub { font-size: 1.15rem; }
.hero-brand-v2 .brand-block-main { font-size: 4.2rem; }
.hero-brand-v2 .brand-sep { font-size: 2.5rem; margin: 0 18px; margin-bottom: 0.12em; }
.hero-brand-v2 .pm-green-dot { width: 0.6em; height: 0.6em; font-size: 4.2rem; }
.hero-brand-v2 .sz-bolt-icon svg { width: 1.6rem; }
.hero-brand-v2 .brand-block-sub { margin-bottom: 4px; }

/* ============================================================
   FOOTER BRAND V2
   ============================================================ */
.footer-brand-v2 {
    margin-bottom: 4px;
}
.footer-brand-v2 .brand-block-sub { font-size: 0.6rem; }
.footer-brand-v2 .brand-block-main { font-size: 2.2rem; }
.footer-brand-v2 .brand-sep { font-size: 1.3rem; margin: 0 12px; margin-bottom: 0.12em; }
.footer-brand-v2 .pm-green-dot { width: 0.55em; height: 0.55em; font-size: 2.2rem; }
.footer-brand-v2 .sz-bolt-icon svg { width: 0.85rem; }
.footer-brand-v2 .brand-block-sub { margin-bottom: 2px; }

/* ============================================================
   CONTACTO BRAND V2
   ============================================================ */
.contacto-brand {
    margin-bottom: 12px;
    justify-content: center;
}
.contacto-brand .brand-block-sub { font-size: 0.55rem; }
.contacto-brand .brand-block-main { font-size: 1.4rem; }
.contacto-brand .pm-green-dot { width: 0.5em; height: 0.5em; font-size: 1.4rem; }
.contacto-brand .sz-bolt-icon svg { width: 0.55rem; }
.contacto-brand .brand-block-sub { margin-bottom: 1px; }

/* ============================================================
   NAV V2: fondo negro + logo completo
   ============================================================ */
.nav {
    background: #000 !important;
    border-bottom: 1px solid #222 !important;
}
.nav.scrolled {
    box-shadow: 0 2px 8px rgba(0,0,0,0.4) !important;
}
.nav-container {
    height: 52px !important;
    justify-content: space-between !important;
    position: relative;
}
.nav-logo {
    position: static !important;
}
.nav-links {
    position: static !important;
    transform: none;
}
.nav-links a {
    color: #aaa !important;
}
.nav-links a:hover,
.nav-links a.active {
    color: #fff !important;
}
.nav-toggle span {
    background: #fff !important;
}

.nav-brand-v2 {
    display: flex;
    align-items: flex-end;
}
.nav-brand-v2 .brand-block-sub { font-size: 0.48rem; margin-bottom: 1px; }
.nav-brand-v2 .brand-block-main { font-size: 1.3rem; }
.nav-brand-v2 .brand-sep { font-size: 0.8rem; margin: 0 8px; margin-bottom: 0.12em; }
.nav-brand-v2 .pm-green-dot { width: 0.45em; height: 0.45em; font-size: 1.3rem; }
.nav-brand-v2 .sz-bolt-icon svg { width: 0.55rem; }

/* ============================================================
   V2 RESPONSIVE
   ============================================================ */
@media (max-width: 968px) {
    .hero-brand-v2 .brand-block-sub { font-size: 0.9rem; }
    .hero-brand-v2 .brand-block-main { font-size: 3.2rem; }
    .hero-brand-v2 .brand-sep { font-size: 1.9rem; margin: 0 14px; }
    .hero-brand-v2 .pm-green-dot { font-size: 3.2rem; }
    .hero-brand-v2 .sz-bolt-icon svg { width: 1.2rem; }
}

@media (max-width: 768px) {
    .hero-brand-v2 .brand-block-sub { font-size: 0.65rem; }
    .hero-brand-v2 .brand-block-main { font-size: 2.2rem; }
    .hero-brand-v2 .brand-sep { font-size: 1.3rem; margin: 0 10px; }
    .hero-brand-v2 .pm-green-dot { font-size: 2.2rem; }
    .hero-brand-v2 .sz-bolt-icon svg { width: 0.85rem; }

    .nav-container { height: 48px !important; }
    html { scroll-padding-top: 48px !important; }
    .hero { padding-top: 88px !important; }
    .nav-brand-v2 .brand-block-sub { font-size: 0.42rem; }
    .nav-brand-v2 .brand-block-main { font-size: 1.1rem; }
    .nav-brand-v2 .brand-sep { font-size: 0.7rem; margin: 0 6px; }
    .nav-brand-v2 .pm-green-dot { font-size: 1.1rem; }
    .nav-brand-v2 .sz-bolt-icon svg { width: 0.45rem; }
}

@media (max-width: 480px) {
    .hero-brand-v2 .brand-block-sub { font-size: 0.5rem; }
    .hero-brand-v2 .brand-block-main { font-size: 1.6rem; }
    .hero-brand-v2 .brand-sep { font-size: 1rem; margin: 0 6px; }
    .hero-brand-v2 .pm-green-dot { font-size: 1.6rem; }
    .hero-brand-v2 .sz-bolt-icon svg { width: 0.6rem; }

    .nav-container { height: 44px !important; }
    html { scroll-padding-top: 44px !important; }
    .hero { padding-top: 80px !important; }
    .nav-brand-v2 .brand-block-sub { font-size: 0.36rem; }
    .nav-brand-v2 .brand-block-main { font-size: 0.95rem; }
    .nav-brand-v2 .brand-sep { font-size: 0.6rem; margin: 0 4px; }
    .nav-brand-v2 .pm-green-dot { font-size: 0.95rem; }
    .nav-brand-v2 .sz-bolt-icon svg { width: 0.38rem; }
}
