:root {
    --color-navy: #0A2540;
    --color-teal: #2DD4BF;
    --color-teal-hover: #26B8A5;
    --color-teal-active: #1F9A8A;
    --color-blue: #3B82F6;
    --color-bg-dark: #0B0F14;
    --color-surface: #111827;
    --color-border: #1F2937;
    --color-dark-nav: #090C10;
    --color-text-primary: #E5E7EB;
    --color-text-muted: #94A3B8;
    --gold-1: #C9A24D;
    --gold-2: #B08D3C;
    --gold-a08: rgba(201,162,77,0.08);
    --gold-a12: rgba(201,162,77,0.12);
    --gold-a14: rgba(201,162,77,0.14);
    --gold-a18: rgba(201,162,77,0.18);
    --gold-a20: rgba(201,162,77,0.20);
    --gold-a28: rgba(201,162,77,0.28);
    --gold-a32: rgba(201,162,77,0.32);
}

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background: var(--color-bg-dark);
    color: var(--color-text-primary);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #ffffff;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 48px;
    text-align: center;
    color: #ffffff;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #ffffff;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-bg-dark) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(43, 212, 191, 0.08) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    border-radius: 50%;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text .subheadline {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    margin-bottom: 32px;
    line-height: 1.5;
}

.hero-text .accent {
    color: var(--color-teal);
    font-weight: 700;
}

.for-who {
    margin: 40px 0;
}

.for-who-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 24px;
}

.for-who-box {
    background: rgba(17, 24, 39, 0.6);
    outline: 2px solid var(--gold-a20);
    outline-offset: -2px;
    border: none;
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s;
    box-shadow: 0 0 0 1px var(--gold-a08), 0 18px 55px var(--gold-a08);
}

.for-who-box:hover {
    outline-color: var(--gold-a32);
    box-shadow: 0 0 0 1px var(--gold-a14), 0 0 0 6px var(--gold-a08);
}

.for-who-box h4 {
    font-size: 1.1rem;
    margin-bottom: 16px;
    color: var(--color-teal);
}

.for-who-box.not-for h4 {
    color: #ef4444;
}

.for-who-box ul {
    list-style: none;
}

.for-who-box li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
}

.for-who-box li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-teal);
    font-weight: bold;
}

.for-who-box.not-for li::before {
    content: '✗';
    color: #ef4444;
}

.form-container {
    background: var(--color-surface);
    backdrop-filter: blur(10px);
    outline: 2px solid var(--gold-a20);
    outline-offset: -2px;
    border: none;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 0 0 1px var(--gold-a08), 0 18px 55px var(--gold-a08), 0 20px 60px rgba(45, 212, 191, 0.15);
    transition: all 0.3s;
}

.form-container:hover {
    outline-color: var(--gold-a32);
    box-shadow: 0 0 0 1px var(--gold-a14), 0 0 0 6px var(--gold-a08), 0 20px 60px rgba(45, 212, 191, 0.15);
}

.form-container h3 {
    text-align: center;
    margin-bottom: 24px;
    color: var(--color-teal);
}

.form-group {
    margin-bottom: 24px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--color-text-primary);
}

input[type="email"],
input[type="tel"] {
    width: 100%;
    padding: 14px 16px;
    background: var(--color-bg-dark);
    border: 2px solid var(--color-border);
    border-radius: 8px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s;
}

input[type="email"]:focus,
input[type="tel"]:focus,
input[type="email"]:focus-visible,
input[type="tel"]:focus-visible {
    outline: none;
    border-color: var(--gold-1);
    background: rgba(17, 24, 39, 0.8);
    box-shadow: 0 0 0 4px var(--gold-a20);
}

input.error {
    border-color: #ef4444;
}

.error-message {
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 6px;
    display: none;
}

.error-message.show {
    display: block;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 24px;
}

input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    cursor: pointer;
    flex-shrink: 0;
    accent-color: var(--gold-1);
}

input[type="checkbox"]:focus-visible {
    box-shadow: 0 0 0 4px var(--gold-a20);
    outline: none;
}

.checkbox-group label {
    margin: 0;
    font-size: 0.875rem;
    color: var(--color-text-muted);
    cursor: pointer;
}

.btn {
    width: 100%;
    padding: 18px 32px;
    background: var(--color-teal);
    color: #0B0F14;
    border: none;
    border-radius: 8px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(45, 212, 191, 0.25);
}

.btn:hover {
    background: var(--color-teal-hover);
    transform: translateY(-2px);
    box-shadow: 0 0 0 4px var(--gold-a14), 0 15px 40px rgba(45, 212, 191, 0.35);
}

.btn:active {
    background: var(--color-teal-active);
}

.btn:focus,
.btn:focus-visible {
    outline: none;
    box-shadow: 0 0 0 4px var(--gold-a14), 0 10px 30px rgba(45, 212, 191, 0.25);
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.privacy-text {
    text-align: center;
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin-top: 16px;
    line-height: 1.5;
}

.success-message {
    background: rgba(34, 197, 94, 0.1);
    border: 2px solid #22c55e;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    color: #22c55e;
    display: none;
    margin-top: 24px;
}

.success-message.show {
    display: block;
}

.benefits {
    background: var(--color-bg-dark);
    position: relative;
}

.benefits::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-teal), transparent);
    box-shadow: 0 0 30px rgba(45, 212, 191, .6), 0 0 60px rgba(45, 212, 191, .3);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.benefit-card {
    background: var(--color-surface);
    outline: 2px solid var(--gold-a20);
    outline-offset: -2px;
    border: none;
    border-radius: 12px;
    padding: 32px;
    transition: all 0.3s;
    box-shadow: 0 0 0 1px var(--gold-a08), 0 18px 55px var(--gold-a08);
}

.benefit-card:hover {
    transform: translateY(-4px);
    outline-color: var(--gold-a32);
    box-shadow: 0 0 0 1px var(--gold-a14), 0 0 0 6px var(--gold-a08);
}

.benefit-number {
    width: 44px;
    height: 44px;
    background: var(--color-navy);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 20px;
    outline: 2px solid var(--gold-a32);
    outline-offset: -2px;
    box-shadow: 0 0 0 4px var(--gold-a08);
}

.benefit-card p {
    color: var(--color-text-muted);
    line-height: 1.7;
}

.how-it-works {
    background: linear-gradient(180deg, var(--color-bg-dark) 0%, var(--color-navy) 100%);
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 48px;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--color-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: #0B0F14;
    margin: 0 auto 24px;
    box-shadow: 0 10px 30px rgba(45, 212, 191, 0.25);
}

.step h3 {
    margin-bottom: 12px;
}

.step p {
    color: var(--color-text-muted);
    line-height: 1.7;
}

.packs {
    background: var(--color-bg-dark);
}

.packs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.pack-card {
    background: var(--color-surface);
    outline: 2px solid var(--gold-a20);
    outline-offset: -2px;
    border: none;
    border-radius: 16px;
    padding: 40px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 0 1px var(--gold-a08), 0 18px 55px var(--gold-a08);
}

.pack-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--color-teal);
}

.pack-card:hover {
    transform: translateY(-8px);
    outline-color: var(--gold-a32);
    box-shadow: 0 0 0 1px var(--gold-a14), 0 0 0 6px var(--gold-a08);
}

.pack-card h3 {
    font-size: 1.75rem;
    margin-bottom: 16px;
    color: var(--color-teal);
}

.pack-card .pack-description {
    color: var(--color-text-muted);
    margin-bottom: 24px;
    font-size: 1.05rem;
}

.pack-features {
    list-style: none;
}

.pack-features li {
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    color: var(--color-text-primary);
    border-bottom: 1px solid var(--gold-a12);
}

.pack-features li:last-child {
    border-bottom: none;
}

.pack-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-teal);
    font-weight: bold;
    font-size: 1.2rem;
}

.trust {
    background: linear-gradient(180deg, var(--color-navy) 0%, var(--color-bg-dark) 100%);
    text-align: center;
}

.trust-content {
    max-width: 800px;
    margin: 0 auto;
}

.trust-content p {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    margin-bottom: 24px;
    line-height: 1.8;
}

.faq {
    background: var(--color-bg-dark);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--color-surface);
    outline: 2px solid var(--gold-a20);
    outline-offset: -2px;
    border: none;
    border-radius: 12px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: 0 0 0 1px var(--gold-a08), 0 18px 55px var(--gold-a08);
}

.faq-item:hover {
    outline-color: var(--gold-a32);
    box-shadow: 0 0 0 1px var(--gold-a14), 0 0 0 6px var(--gold-a08);
}

.faq-question {
    padding: 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.1rem;
    color: #ffffff;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--color-teal);
    transition: transform 0.3s;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding: 0 24px 24px;
    color: var(--color-text-muted);
    line-height: 1.7;
}

.cta-final {
    background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-bg-dark) 100%);
    text-align: center;
    padding: 100px 0;
    position: relative;
}

.cta-final::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-teal), transparent);
    box-shadow: 0 0 30px rgba(45, 212, 191, .6), 0 0 60px rgba(45, 212, 191, .3);
}

.cta-final h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
}

.cta-final p {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    margin-bottom: 48px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-final .form-container {
    max-width: 1100px;
    margin: 0 auto;
}

footer {
    background: #000000;
    padding: 60px 0 30px;
    border-top: 1px solid var(--gold-a12);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    color: var(--color-teal);
    margin-bottom: 16px;
}

.footer-brand p {
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: 12px;
}

.footer-links h4 {
    color: #ffffff;
    margin-bottom: 16px;
    font-size: 1.1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links a {
    color: var(--color-text-muted);
    text-decoration: none;
    display: block;
    padding: 8px 0;
    transition: color 0.3s;
    position: relative;
}

.footer-links a:hover {
    color: var(--color-teal);
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-decoration-color: var(--gold-1);
    text-underline-offset: 4px;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-1);
    opacity: 0.8;
    transition: width 0.3s;
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-gif {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-gif-img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    filter: none !important;
    -webkit-filter: none !important;
    color-scheme: only light;           
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--gold-a12);
    color: #666;
    font-size: 0.875rem;
}

@media (max-width: 968px) {
    h1 {
        font-size: 2.25rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .for-who-grid {
        grid-template-columns: 1fr;
    }

    section {
        padding: 60px 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-gif-img {
        max-width: 200px;
    }
}

@media (max-width: 640px) {
    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .form-container {
        padding: 24px;
    }

    .benefit-card,
    .pack-card {
        padding: 24px;
    }

    .footer-gif-img {
        max-width: 150px;
    }
}

/* NAVEGACIÓN */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--color-dark-nav);
    backdrop-filter: blur(10px);
    border-bottom: none;
    z-index: 1002;
    transition: all 0.3s;
}

.navbar.scrolled {
    background: var(--color-dark-nav);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    background: rgba(9, 12, 16, 1);
}

.nav-brand {
    display: flex;
    align-items: center;
    pointer-events: auto;
}

.brand-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-teal);
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    background: rgba(9, 12, 16, 0.98);
}

.nav-links a {
    color: var(--color-text-primary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
}

.nav-links a:hover,
.nav-links a:focus-visible {
    color: var(--color-teal);
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-decoration-color: var(--gold-1);
    text-underline-offset: 8px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-1);
    opacity: 0.8;
    transition: width 0.3s;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
    width: 100%;
}

.nav-links a:focus-visible {
    outline: none;
}

.nav-cta {
    background: var(--color-teal);
    color: #0B0F14 !important;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
}

.nav-cta:hover {
    background: var(--color-teal-hover);
    transform: translateY(-2px);
    box-shadow: 0 0 0 4px var(--gold-a14);
    text-decoration: none !important;
}

.nav-cta:focus-visible {
    box-shadow: 0 0 0 4px var(--gold-a14);
}

.nav-cta::after {
    display: none;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--color-teal);
    transition: all 0.3s;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* AJUSTE PARA COMPENSAR NAVBAR FIJA */
.hero {
    padding-top: 80px;
}

/* RESPONSIVE */
@media (max-width: 968px) {
    .nav-content {
        padding: 20px 0; 
        background: var(--color-dark-nav);
    }

    .nav-toggle {
        display: flex;
        background: var(--color-dark-nav);
    }

    .nav-links {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: var(--color-dark-nav);
        flex-direction: column;
        gap: 0;
        padding: 20px 0;
        border-bottom: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-links.active {
        max-height: 400px;
    }

    .nav-links a {
        width: 100%;
        padding: 16px 20px;
        text-align: center;
        border-bottom: none;
    }

    .nav-links a:last-child {
        border-bottom: none;
    }

    .nav-cta {
        margin: 12px 20px;
        width: calc(100% - 40px);
        text-align: center;
    }

    .hero {
        padding-top: 100px;
    }
}

/*ajuste para imagen hero*/
.nav-brand {
    display: flex;
    align-items: center;
}

.nav-logo {
    height: 50px;
    width: auto;
    margin-right: 12px;
    object-fit: contain;
    filter: none !important;
    -webkit-filter: none !important;
    color-scheme: only light;
}

.brand-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-teal);
    letter-spacing: -0.5px;
}

/*CHECKBOXES SERVICIOS*/
.services-label {
    display: block;
    margin-bottom: 16px;
    font-weight: 600;
    color: var(--color-text-primary);
    font-size: 1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.service-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: var(--color-bg-dark);
    border: 2px solid var(--color-border);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    margin: 0;
}

.service-checkbox:hover {
    border-color: var(--gold-a28);
    background: rgba(201, 162, 77, 0.05);
}

.service-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
    cursor: pointer;
    accent-color: var(--gold-1);
}

.service-checkbox input[type="checkbox"]:focus-visible {
    box-shadow: 0 0 0 4px var(--gold-a20);
    outline: none;
}

.service-checkbox span {
    font-size: 0.9rem;
    color: var(--color-text-primary);
    font-weight: 500;
}

.service-checkbox input[type="checkbox"]:checked + span {
    color: var(--color-teal);
}

@media (max-width: 640px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* ANIMACIÓN HERO BRAND - CON FONDO COMPLETO */
.hero-brand {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    z-index: 1001;
    pointer-events: none;
    transition: none;
}

.hero-brand-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    padding: 48px 100px;
    border-radius: 24px;
    border: none;
    background: transparent;
    box-shadow: none;
    max-width: none;
    width: auto;
}

.hero-brand-logo {
    height: 120px;
    width: auto;
    filter: none !important;
    -webkit-filter: none !important;
}

.hero-brand-text {
    font-size: 4rem;
    font-weight: 900;
    color: var(--color-teal);
    letter-spacing: -2px;
    text-align: center;
    white-space: nowrap;
    text-shadow: 0 0 40px rgba(45, 212, 191, 0.5);
    cursor: pointer;
    pointer-events: auto;
}

/* Efecto texto */
.hero-brand-text:hover {
    animation: playfulWobble 1s ease;
    filter: brightness(1.3) drop-shadow(0 0 30px rgba(45, 212, 191, 0.8));
}

@keyframes playfulWobble {
    0%, 100% { transform: rotate(0deg) scale(1); }
    25% { transform: rotate(-3deg) scale(1.05); }
    50% { transform: rotate(3deg) scale(1.08); }
    75% { transform: rotate(-2deg) scale(1.05); }
}

/* FONDO COMPLETO DETRÁS DEL BRAND */
.hero-brand-overlay {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-bg-gif {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0.2;
}

/* Ocultar el brand de la navbar original */
.nav-brand {
    opacity: 0;
    pointer-events: none;
}

/* AJUSTE HERO SECTION */
.hero {
    position: relative;
    z-index: 1;
}

/* RESPONSIVE */
@media (max-width: 968px) {
    .hero-brand-text {
        font-size: 4rem;
        white-space: normal;
        max-width: 90vw;
        line-height: 1.2;
    }
    
    .hero-brand-logo {
        height: 80px;
    }
    
    .hero-brand-content {
        padding: 32px 40px;
        max-width: 90vw
    }
}

@media (max-width: 640px) {
    .hero-brand-text {
        font-size: 3.5rem;
        white-space: normal;
        max-width: 90vw;
        line-height: 1.2;
    }
    
    .hero-brand-logo {
        height: 60px;
    }
}

/* SECCIÓN ESPACIADORA */
.hero-spacer {
    height: 100vh;
    background: var(--color-bg-dark);
}

/* Barra de progreso de carga */
.progress-container {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 9999;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--color-teal), #3B82F6);
    width: 0%;
    transition: width 0.1s ease;
    box-shadow: 0 0 10px var(--color-teal);
}

/* PERSONAJE ANIMADO CON SCROLL */
.scroll-character {
    position: fixed;
    bottom: -26px;
    left: 0;
    width: 80px;
    height: 80px;
    z-index: 10000;
    pointer-events: none;
    transition: left 0.05s linear;
    transform: translateX(-40px);
}

.character-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    color-scheme: only light;
}

/* QUICK CARD */
.quick-card {
    position: fixed;
    top: 50%;
    left: 350px;
    transform: translate(-50%, -50%) translateY(-10px);
    width: 650px;
    background: var(--color-surface);
    outline: 2px solid var(--gold-a20);
    outline-offset: -2px;
    border: none;
    border-radius: 12px;
    box-shadow: 0 0 0 1px var(--gold-a08), 0 18px 55px var(--gold-a08), 0 10px 40px rgba(0, 0, 0, 0.5);
    z-index: 10001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    pointer-events: none;
}

.quick-card.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) translateY(0);
    pointer-events: auto;
}

.quick-card-content {
    padding: 24px;
}

.quick-card-list {
    margin: 0;
}

.quick-card-row {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--gold-a12);
}

.quick-card-row:last-of-type {
    border-bottom: none;
}

.quick-card-row dt {
    font-weight: 600;
    color: var(--gold-1);
    font-size: 0.9rem;
}

.quick-card-row dd {
    margin: 0;
    color: var(--color-text-primary);
    font-size: 0.9rem;
}

.quick-card-disclaimer {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--gold-a12);
    font-size: 0.8rem;
    color: var(--color-text-muted);
    font-style: italic;
    line-height: 1.5;
}

.quick-card-note {
    margin-top: 8px;
    font-size: 0.85rem;
    color: var(--gold-1);
    font-weight: 500;
}

@media (max-width: 968px) {
    .quick-card {
        left: 50%;
        right: auto;
        width: 90vw;
        max-width: 600px;
    }
}

@media (max-width: 640px) {
    .quick-card {
        left: 50%;
        right: auto;
        width: 90vw;
        max-width: 550px;
    }
}

/* CASO REAL */
.case-study {
    background: var(--color-surface);
    outline: 2px solid var(--gold-a32);
    outline-offset: -2px;
    border: none;
    border-left: 4px solid var(--gold-1);
    border-radius: 12px;
    padding: 40px;
    margin: 48px 0 0 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    transition: all 0.3s;
    box-shadow: 0 0 0 1px var(--gold-a08), 0 18px 55px var(--gold-a08);
}

.case-study:hover {
    outline-color: var(--gold-a32);
    border-left-color: var(--gold-1);
    box-shadow: 0 0 0 1px var(--gold-a14), 0 0 0 6px var(--gold-a08);
}

.case-study-header {
    text-align: center;
    margin-bottom: 32px;
}

.case-study-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gold-1);
    margin: 0 0 12px 0;
}

.case-study-subtitle {
    font-size: 1rem;
    color: var(--color-text-muted);
    margin: 0;
}

.case-study-challenge {
    background: rgba(10, 37, 64, 0.3);
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 32px;
    text-align: center;
    border-top: 1px solid var(--gold-a18);
}

.case-study-challenge h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-teal);
    margin: 0 0 16px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.case-study-challenge p {
    font-size: 1rem;
    color: var(--color-text-primary);
    line-height: 1.7;
    margin: 0;
}

.case-study-solution {
    margin-top: 32px;
    margin-bottom: 32px;
    text-align: center;
}

.case-study-solution h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-teal);
    margin: 0 0 16px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.case-study-solution p {
    font-size: 1rem;
    color: var(--color-text-primary);
    line-height: 1.7;
    margin: 0;
}

.case-study-results {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-top: 32px;
}

.result-item {
    background: rgba(201, 162, 77, 0.05);
    border: 1px solid var(--gold-a18);
    padding: 24px 16px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s;
}

.result-item:hover {
    transform: translateY(-2px);
    border-color: var(--gold-a28);
    box-shadow: 0 4px 12px var(--gold-a12);
}

.result-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gold-1);
    margin-bottom: 8px;
}

.result-label {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.4;
}

.case-study-disclaimer {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--gold-a12);
    font-size: 0.875rem;
    color: var(--color-text-muted);
    font-style: italic;
    text-align: center;
    line-height: 1.6;
}

@media (max-width: 640px) {
    .case-study {
        padding: 24px;
    }

    .case-study-title {
        font-size: 1.75rem;
    }

    .case-study-results {
        grid-template-columns: 1fr;
    }
}