.hero {
    padding: 8rem 0 6rem;
    text-align: center;
    background: linear-gradient(180deg, rgba(247, 249, 250, 1) 0%, rgba(255, 255, 255, 1) 100%);
    position: relative;
    overflow: hidden;
}

/* Performance: Usar WebP quando disponível para reduzir tamanho do arquivo */
.hero-bg-reveal {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../../assets/bg.png');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: 1;
    pointer-events: none;
    mask-image: radial-gradient(circle 300px at var(--mouse-x, -100%) var(--mouse-y, -100%), black 20%, transparent 100%);
    -webkit-mask-image: radial-gradient(circle 300px at var(--mouse-x, -100%) var(--mouse-y, -100%), black 20%, transparent 100%);
}

/* Performance: WebP support detection via CSS (fallback automático) */
@supports (background-image: url('../../assets/bg.webp')) {
    .hero-bg-reveal {
        background-image: url('../../assets/bg.webp');
    }
}

/* Camada extra para revelação total no spotlight */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../../assets/bg.png');
    background-size: cover;
    background-position: center;
    z-index: 2;
    pointer-events: none;
    opacity: 0.1;
    mask-image: radial-gradient(circle 200px at var(--mouse-x, -100%) var(--mouse-y, -100%), black 0%, transparent 100%);
    -webkit-mask-image: radial-gradient(circle 200px at var(--mouse-x, -100%) var(--mouse-y, -100%), black 0%, transparent 100%);
}

@supports (background-image: url('../../assets/bg.webp')) {
    .hero::after {
        background-image: url('../../assets/bg.webp');
    }
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--primary);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero p {
    font-size: 1.25rem;
    color: var(--muted);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.micro-trust {
    font-size: 0.875rem;
    color: var(--muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.micro-trust i {
    color: var(--secondary);
}

@media (max-width: 768px) {
    .hero {
        padding: 5rem 0 3rem;
    }

    .hero h1 {
        font-size: 2.75rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .hero-actions {
        flex-direction: column;
        gap: 1rem;
        padding: 0 1rem;
    }
}