﻿html {
    scroll-behavior: smooth;
}

body {
    font-family: system-ui, -apple-system, 'Segoe UI', Roboto, Ubuntu, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif;
    color: #23262b;
    overflow-x: hidden;
    background: #ffffff;
}

.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    padding-top: 90px;
    background: linear-gradient(rgba(10, 12, 16, 0.44), rgba(10, 12, 16, 0.64)), url('/img/bg/inicio/hero.webp') center center / cover no-repeat;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(56rem 18rem at 50% 0%, rgba(251, 115, 5, 0.12), transparent 62%), linear-gradient(to bottom, rgba(255, 255, 255, 0.02), rgba(0, 0, 0, 0.10));
}

.nav-blur {
    background: transparent;
    /* backdrop-filter: saturate(140%) blur(6px); */
}

.navbar-scrolled {
    background: rgba(15, 18, 22, 0.92);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 0, 0, 0.24);
    border: 1px solid rgba(255, 255, 255, 0.14);
    padding: 0.58rem 0.95rem;
    border-radius: 999px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.94);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.625rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
}

.eyebrow-dark {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #ffb26d;
}

.card-premium {
    border-radius: 1.5rem;
    border: 1px solid rgba(226, 232, 240, 0.85);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 10px 24px rgba(15, 18, 22, 0.06);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
    will-change: transform;
}

    .card-premium:hover {
        transform: translateY(-4px);
        box-shadow: 0 18px 44px rgba(15, 18, 22, 0.08);
        border-color: rgba(251, 115, 5, 0.18);
    }

.panel-dark {
    border-radius: 1.75rem;
    background: linear-gradient(180deg, #11151c 0%, #0b0d11 100%);
    box-shadow: 0 24px 60px rgba(15, 18, 22, 0.12);
}

.btn-primary-premium {
    box-shadow: 0 14px 30px rgba(251, 115, 5, 0.22);
}

    .btn-primary-premium:hover {
        box-shadow: 0 18px 36px rgba(251, 115, 5, 0.26);
    }

.muted-copy {
    color: #5f6b7a;
}

.btn-primary-premium-cta,
.btn-secondary-premium-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 999px;
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease, background-color 0.24s ease, color 0.24s ease;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    will-change: transform;
}

.btn-primary-premium-cta {
    padding: 0.34rem;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 16px 36px rgba(8, 10, 14, 0.22);
}

.btn-primary-premium-cta__inner {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 12.5rem;
    padding: 0.98rem 1.8rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.96);
    color: #11151c;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.btn-primary-premium-cta__label {
    font-size: 0.96rem;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.btn-primary-premium-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 42px rgba(8, 10, 14, 0.28);
    border-color: rgba(255, 255, 255, 0.24);
}

.btn-secondary-premium-cta {
    gap: 0.9rem;
    min-width: 12.5rem;
    padding: 0.88rem 1.4rem 0.88rem 1.6rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 14px 30px rgba(8, 10, 14, 0.16);
    color: rgba(255, 255, 255, 0.94);
}

.btn-secondary-premium-cta__label {
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.01em;
}

.btn-secondary-premium-cta__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.9rem;
}

.btn-secondary-premium-cta:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.10);
    border-color: rgba(255, 255, 255, 0.24);
    box-shadow: 0 18px 34px rgba(8, 10, 14, 0.22);
    color: #ffffff;
}

@media (max-width: 639px) {
    .btn-primary-premium-cta,
    .btn-secondary-premium-cta {
        width: 100%;
        max-width: 22rem;
    }

    .btn-primary-premium-cta__inner,
    .btn-secondary-premium-cta {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .card-premium,
    .btn-primary-premium-cta,
    .btn-secondary-premium-cta {
        transition: none;
    }

        .card-premium:hover,
        .btn-primary-premium-cta:hover,
        .btn-secondary-premium-cta:hover {
            transform: none;
        }
}

@supports not ((backdrop-filter: blur(10px)) or (-webkit-backdrop-filter: blur(10px))) {
    .hero-badge,
    .btn-primary-premium-cta,
    .btn-secondary-premium-cta {
        background: rgba(15, 18, 22, 0.72);
    }

    .btn-primary-premium-cta__inner {
        background: #ffffff;
    }
}
