/* -------------------------------------------------------------------------
   hero.css — banner da campanha, textos da direita e régua de filtros.

     .hero              container principal (480px)
     .hero-conteudo     container de conteúdo (duas colunas)
     .hero-col          50% cada; textos só na segunda
     .hero-filtros      nav dos atalhos
   ------------------------------------------------------------------------- */

.hero {
    position: relative;
    height: 480px;
    background: var(--azul-marinho);
    overflow: hidden;
    margin-bottom: -1px;
}

/* ------------------------------------------------------------- fotografia -- */

.hero-fundo,
.hero-fundo img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
}

.hero-fundo img {
    object-fit: cover;
    object-position: center;
}

/* -------------------------------------- container de conteúdo: 2 colunas -- */

.hero-conteudo {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
    height: 100%;
}

.hero-col {
    width: 50%;
    flex: 0 0 50%;
    box-sizing: border-box;
}

/* Coluna da direita: textos + botão.
   width é a área de conteúdo; o padding esquerdo entra a mais. */
.hero-col:last-child {
    box-sizing: content-box;
    width: 281px;
    flex: 0 0 auto;
    max-width: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    margin-left: 170px;
    padding-left: 0;
}

.hero-faixa {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 4px;
    border-radius: var(--raio-pill);
    background: #2E1A47;
    color: #fff;
    font-family: var(--fonte-texto);
    font-size: 20px;
    font-weight: 700;
    line-height: 120%;
}

.hero-faixa + .hero-faixa { margin-top: 4px; }

.hero-linha {
    margin-top: 16px;
    font-family: var(--fonte-titulo);
    font-size: 24px;
    font-weight: 700;
    line-height: 118%;
    color: #2E1A47;
}

.hero-titulo {
    font-family: var(--fonte-titulo);
    font-size: 36px;
    font-weight: 700;
    line-height: 122%;
    color: #F68D2E;
    letter-spacing: -0.01em;
}

.hero-sub {
    margin-top: 12px;
    font-family: var(--fonte-texto);
    font-size: 16px;
    font-weight: 500;
    line-height: 125%;
    color: #2E1A47;
}

.hero-whatsapp {
    margin-top: 24px;
    margin-bottom: 12px;
    padding-left: 24px;
    padding-right: 24px;
}

/* ---------------------------------------------------------------- filtros -- */

.hero-filtros {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 17px;
    z-index: 3;
}

.hero-filtros-lista {
    display: flex;
    justify-content: center;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.hero-filtros-lista::-webkit-scrollbar { display: none; }

.hero-filtro {
    display: flex;
    align-items: center;
    height: 40px;
    padding: 0 18px;
    border-radius: var(--raio-pill);
    background: #fff;
    color: var(--laranja-grad-escuro);
    font-family: var(--fonte-texto);
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    transition: background-color .2s ease, color .2s ease;
}

.hero-filtro.is-active {
    background: var(--laranja-grad);
    color: #fff;
}

.hero-filtro:hover:not(.is-active) {
    background: var(--laranja-suave);
}

.hero-filtro:focus-visible {
    outline: 3px solid #fff;
    outline-offset: 2px;
}

/* ------------------------------------------------------------- responsivo -- */

@media (max-width: 1100px) {
    .hero-col:last-child {
        margin-left: 0;
        padding-left: 35px;
    }
}

@media (max-width: 560px) {
    .hero-col:last-child {
        width: 182px;
        flex: 0 0 auto;
        max-width: none;
        margin-left: 8px;
        padding-left: 0;
    }

    .hero-faixa {
        font-size: 16px;
        font-weight: 700;
        line-height: 125%;
        color: #fff;
    }

    .hero-linha {
        font-size: 18px;
        font-weight: 700;
        line-height: 130%;
        color: #2E1A47;
    }

    .hero-titulo {
        font-size: 24px;
        font-weight: 700;
        line-height: 118%;
        color: #F68D2E;
        letter-spacing: 0;
    }

    .hero-sub { width: 140px; }

    .hero-whatsapp {
        margin-top: 24px;
        margin-bottom: 52px;
    }

    .hero-filtros-lista { justify-content: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
    .hero-whatsapp,
    .hero-filtro { transition: none; }
}
