/* =========================
   HERO BASE
========================= */
.hero::before{
    content:'';
    position:absolute;
    inset:0;
    z-index:1;
    pointer-events:none;

    background:linear-gradient(
        90deg,
        rgba(5,6,8,.98) 0%,
        rgba(5,6,8,.90) 25%,
        rgba(5,6,8,.55) 45%,
        rgba(5,6,8,.15) 70%,
        transparent 100%
    );
}
/* =========================
   LAYOUT
========================= */
.hero-grid{
    position:relative;
    min-height:760px;

    display:flex;
    align-items:center;

    z-index:2;
}

.hero-copy{
    position:relative;
    z-index:3;

    width:48%;
    max-width:620px;
}

/* efeito lateral */
.hero-copy::after{
    content: '';
    position: absolute;
    top: 12%;
    right: -3.5rem;
    width: 3.5rem;
    height: 76%;
    opacity: .45;
    background: linear-gradient(
        90deg,
        rgba(5,5,5,.16),
        transparent
    );
    pointer-events: none;
}

/* =========================
   TYPOGRAPHY (HERO H1 PADRÃO)
========================= */
.hero-copy h1{
    font-size: clamp(2.4rem, 3.8vw, 4.4rem);
    line-height: 1.20;
    letter-spacing: -0.05em;
    margin: 14px 0 39px;
    color: var(--white);
    max-width: 18ch;
}

/* texto secundário */
.hero-text{
    max-width: 620px;
    font-size: 1.12rem;
    font-weight: 400;
    line-height: 1.75;
    color: rgba(255,255,255,.78);
    margin-bottom: 48px;
}

/* ações */
.hero-actions{
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

/* =========================
   VISUAL
========================= */
.hero-visual{
    position:absolute;

    top:0;
    right:0;
    bottom:0;
    left:0;

    background:url('../assets/images/01_hero.png')
               right center / cover no-repeat;

    z-index:0;
}
/* efeito visual */

.hero-visual::after{
    content:'';
    position:absolute;
    inset:0;

    background:
        linear-gradient(
            180deg,
            #050608 0%,
            transparent 20%,
            transparent 80%,
            #050608 100%
        );

    pointer-events:none;
}
/* =========================
   EYEBROW
========================= */
.eyebrow{
    display: inline-block;
    font-size: .78rem;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 30px;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1200px){

    .hero-copy{
        max-width: 45%;
        padding-top: 24px;

        /* desloca o texto mais para o lado (controle real de posição) */
        padding-left: 40px;
    }

    .hero-copy h1{
        font-size: 3.6rem;
        margin: 14px 0 30px; /* reduz margem superior/inferior */
    }

    .hero-text{
        margin-bottom: 60px;
    }

    .hero-visual{
        position: relative;
        width: 100%;
        min-height: 540px;
        margin-top: 32px;

        left: auto;
        right: auto;
    }
}

@media (max-width: 992px){
    .hero{
        min-height: auto;
        padding-top: 110px;
    }

    .hero-copy h1{
        font-size: 3.2rem;
        line-height: .92;
    }

    .hero-text{
        font-size: 1rem;
        max-width: 100%;
    }

    .hero-actions{
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-visual{
        min-height: 420px;
    }
}

@media (max-width: 768px){
    .hero-copy h1{
        font-size: 2.8rem;
    }

    .hero-text{
        font-size: .98rem;
        line-height: 1.8;
    }
}

@media (max-width: 480px){
    .hero-copy h1{
        font-size: 2.2rem;
    }

    .hero-text{
        font-size: .95rem;
    }

    .hero-visual{
        min-height: 360px;
    }
}