/* HERO - VERSÃO ESTÁTICA (SEM PARALLAX) */

.hero {
    min-height: 100vh;
    min-height: 100svh;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    isolation: isolate;

    --hero-space: clamp(16px, 3vw, 24px);
    --hero-header-offset: 88px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    background: linear-gradient(to bottom, #111115 0%, #141419 45%, #161616 100%);
}

/* BACKGROUND ESTÁTICO - Sem mouse tracking */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at 50% 30%,
        rgba(251, 4, 124, 0.07),
        transparent 58%
    );
    mix-blend-mode: screen;
    pointer-events: none;
    z-index: 0;
}

.hero::after {
    content: "";
    position: absolute;
    inset: -8%;
    background: radial-gradient(
        circle 140px at 50% 50%,
        rgba(255, 255, 255, 0.08),
        rgba(251, 4, 124, 0.05) 34%,
        transparent 58%
    );
    filter: blur(12px);
    opacity: 0.4;
    pointer-events: none;
    z-index: 0;
}

@keyframes logoFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: drop-shadow(0 0 10px rgba(251, 4, 124, 0.35));
    }
}

/* BLOBS ESTÁTICOS - Sem animação de movimento */
.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.hero-bg-left::before,
.hero-bg-right::before,
.hero-bg-left::after,
.hero-bg-right::after {
    content: none;
}

.hero-bg-left > .hero-blob,
.hero-bg-right > .hero-blob,
.hero-bg-left > .hero-particles,
.hero-bg-right > .hero-particles {
    position: absolute;
    pointer-events: none;
}

/* BLOBS - Sem animação, apenas estáticos */
.hero-bg-left > .hero-blob {
    width: 26rem;
    height: 26rem;
    left: -5rem;
    top: -3rem;
    background: radial-gradient(
        circle at 30% 30%,
        rgba(251, 4, 124, 0.25),
        rgba(251, 4, 124, 0.10) 40%,
        transparent 72%
    );
    border-radius: 60% 40% 55% 45% / 45% 55% 40% 60%;
    filter: blur(20px);
    /* ANIMAÇÃO REMOVIDA */
}

.hero-bg-right > .hero-blob {
    width: 20rem;
    height: 20rem;
    right: 4rem;
    bottom: -3rem;
    background: radial-gradient(
        circle at 70% 70%,
        rgba(255, 120, 200, 0.15),
        rgba(251, 4, 124, 0.08) 45%,
        transparent 76%
    );
    border-radius: 45% 55% 60% 40% / 60% 40% 55% 45%;
    filter: blur(22px);
    /* ANIMAÇÃO REMOVIDA */
}

/* PARTICLES ESTÁTICOS */
.hero-bg-left > .hero-particles {
    inset: 0;
    opacity: 0.3;
    background: radial-gradient(circle, rgba(255,255,255,0.12) 0 1px, transparent 2px) 12% 18% / 180px 180px;
    /* ANIMAÇÃO REMOVIDA */
}

.hero-bg-right > .hero-particles {
    inset: 0;
    opacity: 0.3;
    background: radial-gradient(circle, rgba(251,4,124,0.12) 0 1px, transparent 2px) 70% 58% / 180px 180px;
    /* ANIMAÇÃO REMOVIDA */
}

/* HERO CONTENT - Mantido igual */
.hero-container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: inherit;
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-content {
    width: min(100%, 760px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0;
    transform: translateY(clamp(-10px, -2vw, 0px));
}

.hero-logo {
    position: relative;
    margin: 0 0 14px 0;
}

.hero-logo img {
    position: relative;
    z-index: 1;
    width: clamp(90px, 12vw, 150px);
    height: auto;
    display: block;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    animation: logoFadeIn 0.4s ease forwards;
}

.hero-title-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    margin: 0 0 var(--hero-space) 0;
}

.hero-content h2 {
    font-size: clamp(2.2rem, 6vw, 4rem);
    line-height: 1;
    margin: 0;
}

.hero-content p {
    width: min(100%, 640px);
    margin: -0.65rem 0 var(--hero-space) 0;
    font-size: clamp(0.95rem, 2.5vw, 1.1rem);
    line-height: 1.15;
}

.hero-content .btn-primary,
#btn-hero {
    margin: -6px 0 var(--hero-space) 0;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin: 0;
}

.hero-stat-card {
    width: clamp(260px, 28vw, 320px);
    border-radius: 1.2rem;
    padding: 2rem 1rem;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(6px);
    text-align: center;
    transition: 0.2s;
}

.hero-stat-card:hover {
    border-color: rgba(251,4,124,0.4);
    transform: translateY(-2px);
}

.hero-stat-icon svg {
    width: 100%;
    height: 100%;
}

.hero-stat-label {
    display: block;
    font-size: 1.2rem;
    opacity: 0.72;
    margin-bottom: 0.3rem;
}

.hero-stat-value {
    font-size: 2.7rem;
    font-weight: 1200;
}

.hero-content > * {
    flex-shrink: 0;
}

/* FADE-IN */
.hero-content h2,
.hero-content p,
.hero-content .btn-primary,
.hero-stats {
    opacity: 0;
    transform: translateY(22px);
    animation: heroFadeUp 0.8s ease forwards;
}

.hero-content h2:first-of-type {
    animation-delay: 0.18s;
}

.hero-content h2:last-of-type {
    animation-delay: 0.32s;
}

.hero-content p {
    animation-delay: 0.46s;
}

.hero-content .btn-primary {
    animation-delay: 0.60s;
}

.hero-stats {
    animation-delay: 0.74s;
}

.hero-stat-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    margin-bottom: 0.5rem;
    color: rgba(251, 4, 124, 0.9);
}

@keyframes heroFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================
   RESPONSIVIDADE
========================= */
@media (max-width: 768px) {
    .hero {
        overflow: hidden;
    }

    .hero-container {
        width: 100%;
        padding: 0;
    }

    .hero-content {
        width: min(100%, 42rem);
        padding-inline: 1rem;
        transform: none;
    }

    .hero-logo {
        margin: 0 0 0.75rem 0;
    }

    .hero-logo img {
        width: clamp(4.75rem, 22vw, 7rem);
    }

    .hero-title-group {
        gap: 0.25rem;
        margin-bottom: 1rem;
    }

    .hero-content h2 {
        font-size: clamp(2rem, 9vw, 3.2rem);
        line-height: 0.98;
    }

    .hero-content p {
        width: min(100%, 34rem);
        margin: 0 0 1rem 0;
        font-size: clamp(1rem, 4vw, 1.1rem);
        line-height: 1.3;
    }

    .hero-content .btn-primary,
    #btn-hero {
        margin: 0 0 1.25rem 0;
        width: min(100%, 18rem);
    }

    .hero-stats {
        width: 100%;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .hero-stat-card {
        width: min(100%, 20rem);
        padding: 1.5rem 1rem;
    }

    .hero-stat-label {
        font-size: 1.05rem;
    }

    .hero-stat-value {
        font-size: clamp(2.2rem, 10vw, 3.2rem);
    }

    .hero-bg-left > .hero-blob {
        width: 18rem;
        height: 18rem;
        left: -8rem;
        top: 2rem;
        filter: blur(16px);
    }

    .hero-bg-right > .hero-blob {
        width: 14rem;
        height: 14rem;
        right: -5rem;
        bottom: 4rem;
        filter: blur(16px);
    }

    .hero-bg-left > .hero-particles,
    .hero-bg-right > .hero-particles {
        opacity: 0.2;
    }

    .hero::after {
        inset: -2%;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: auto;
        padding: 6.5rem 0 3.5rem;
    }

    .hero-content {
        padding-inline: 0.875rem;
    }

    .hero-content h2 {
        font-size: clamp(1.9rem, 10vw, 2.9rem);
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-stat-card {
        width: min(100%, 18rem);
        border-radius: 1rem;
        padding: 1.25rem 0.875rem;
    }

    .hero-stat-icon {
        width: 2.5rem;
        height: 2.5rem;
    }

    .hero-bg-left > .hero-blob {
        width: 14rem;
        height: 14rem;
        left: -7rem;
        top: 4rem;
    }

    .hero-bg-right > .hero-blob {
        width: 11rem;
        height: 11rem;
        right: -4rem;
        bottom: 6rem;
    }
}