/* ============================================================
   HERO — IDEX Home
   Prefixo: .hero-*
   ============================================================ */
.hero {
    position: relative;
    min-height: 832px;
    display: flex;
    align-items: center;
    background-color: #0a0a0a;
    background-image: url('../../../../img/page-home/hero-bg-modelo.jpg');
    background-size: cover;
    background-position: center;
    padding-top: 76px;
    overflow: hidden;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.82) 0%,
        rgba(0, 0, 0, 0.55) 100%
    );
    z-index: 0;
}

.hero__container {
    position: relative;
    z-index: 1;
    width: min(100%, 1280px);
    margin: 0 auto;
    padding: 188px 54px 78px;
    max-width: 605px;
    margin-left: 50%;
}

.hero__subtitulo {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #0080ff;
    margin: 0 0 16px;
}

.hero__titulo {
    font-size: 40px;
    font-weight: 400;
    line-height: 45px;
    color: #fff;
    margin: 0 0 26px;
    letter-spacing: -0.02em;
}

.hero__descricao {
    font-size: 13px;
    line-height: 20px;
    color: rgba(209, 209, 209, 0.9);
    margin: 0 0 38px;
    max-width: 407px;
}

.hero__botoes {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.hero__btn-primary {
    min-width: 198px;
    min-height: 55px;
    border-radius: 12px;
    padding: 0 24px;
    font-size: 16.31px;
    font-weight: 400;
    background: #0080ff;
    color: #fff !important;
    border: 1.5px solid #0080ff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s;
}

.hero__btn-primary:hover {
    background: #006ad4;
    color: #fff !important;
}

.hero__btn-outline {
    min-width: 271px;
}

.btn--outline {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.6);
    min-height: 55px;
    padding: 12px 30px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.btn--outline:hover {
    background: #fff;
    color: #1d1d20;
    border-color: #fff;
}

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 1024px) {
    .hero__container {
        margin-left: 22px;
        max-width: 580px;
        padding-left: 22px;
        padding-right: 22px;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 520px;
    }
    .hero__container {
        margin-left: 0;
        padding: 100px 20px 48px;
    }
    .hero__titulo {
        font-size: 30px;
        line-height: 34px;
    }
    .hero__descricao {
        font-size: 14px;
        line-height: 20px;
    }
    .hero__botoes {
        flex-direction: column;
    }
    .btn--outline,
    .hero__btn-primary {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 414px) {
    .hero {
        min-height: 400px;
    }
    .hero__container {
        padding: 80px 16px 30px;
    }
    .hero__titulo {
        font-size: 24px;
        line-height: 28px;
        margin: 0 0 16px;
    }
    .hero__descricao {
        font-size: 13px;
        line-height: 18px;
    }
}