:root {
    --br4-azul: #0f5e78;
    --br4-azul-escuro: #0a4054;
    --br4-turquesa: #2fb7c3;
    --br4-turquesa-claro: #eaf9fb;
    --br4-verde: #25a96c;

    --texto: #1f2937;
    --texto-claro: #667085;

    --branco: #ffffff;
    --cinza-claro: #f6f8fa;
    --cinza-borda: #e4e7ec;

    --sombra: 0 18px 45px rgba(15, 94, 120, 0.12);
    --sombra-forte: 0 25px 65px rgba(15, 94, 120, 0.20);

    --radius: 22px;
    --radius-menor: 14px;

    --container: 1240px;
}


/* =========================================================
   RESET
========================================================= */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--branco);
    color: var(--texto);
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

.container {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
}


/* =========================================================
   TOPO
========================================================= */

.topo {
    position: sticky;
    top: 0;
    z-index: 999;
    width: 100%;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(15, 94, 120, 0.08);
}

.topo-conteudo {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.logo {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.logo img {
    width: 170px;
    height: auto;
}

.menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    margin-left: auto;
}

.menu a {
    position: relative;
    font-size: 14px;
    font-weight: 600;
    color: var(--texto);
    transition: 0.25s ease;
}

.menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 2px;
    border-radius: 10px;
    background: var(--br4-turquesa);
    transition: 0.25s ease;
}

.menu a:hover {
    color: var(--br4-azul);
}

.menu a:hover::after {
    width: 100%;
}

.btn-topo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 22px;
    border-radius: 50px;
    background: linear-gradient(
        135deg,
        var(--br4-azul),
        var(--br4-turquesa)
    );
    color: var(--branco);
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(47, 183, 195, 0.25);
    transition: 0.25s ease;
}

.btn-topo:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(47, 183, 195, 0.35);
}

.menu-mobile {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 12px;
    background: var(--br4-turquesa-claro);
    color: var(--br4-azul);
    font-size: 21px;
    cursor: pointer;
}


/* =========================================================
   BOTÕES
========================================================= */

.btn-principal,
.btn-final {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 58px;
    padding: 0 30px;
    border-radius: 50px;
    background: linear-gradient(
        135deg,
        var(--br4-azul),
        var(--br4-turquesa)
    );
    color: var(--branco);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.1px;
    box-shadow: 0 18px 38px rgba(15, 94, 120, 0.25);
    transition: 0.3s ease;
}

.btn-principal:hover,
.btn-final:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 48px rgba(15, 94, 120, 0.32);
}


/* =========================================================
   HERO
========================================================= */

.hero {
    position: relative;
    overflow: hidden;
    padding: 95px 0 90px;
    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(47, 183, 195, 0.16),
            transparent 33%
        ),
        radial-gradient(
            circle at 88% 10%,
            rgba(15, 94, 120, 0.10),
            transparent 30%
        ),
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f7fcfd 100%
        );
}

.hero::before {
    content: "";
    position: absolute;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    right: -240px;
    bottom: -250px;
    background: rgba(47, 183, 195, 0.09);
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.02fr 0.98fr;
    gap: 70px;
    align-items: center;
}

.hero-conteudo {
    max-width: 680px;
}

.hero-selo,
.tag-secao,
.titulo-secao > span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 17px;
    padding: 8px 15px;
    border-radius: 50px;
    background: var(--br4-turquesa-claro);
    color: var(--br4-azul);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.hero h1 {
    max-width: 760px;
    margin-bottom: 25px;
    font-size: clamp(38px, 5vw, 66px);
    line-height: 1.05;
    letter-spacing: -2.2px;
    color: var(--br4-azul-escuro);
}

.hero h1 strong {
    display: block;
    margin-top: 10px;
    color: var(--br4-turquesa);
    font-weight: 800;
}

.hero-texto {
    max-width: 650px;
    margin-bottom: 27px;
    font-size: 18px;
    color: var(--texto-claro);
}

.hero-pontos {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 22px;
    margin-bottom: 35px;
}

.hero-pontos div {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 14px;
    font-weight: 600;
    color: var(--texto);
}

.hero-pontos i {
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(37, 169, 108, 0.12);
    color: var(--br4-verde);
    font-size: 11px;
}

.hero-imagem {
    position: relative;
}

.hero-imagem::before {
    content: "";
    position: absolute;
    inset: 25px -20px -25px 25px;
    border-radius: 35px;
    background: linear-gradient(
        135deg,
        rgba(47, 183, 195, 0.22),
        rgba(15, 94, 120, 0.08)
    );
    z-index: 0;
}

.hero-imagem img {
    position: relative;
    z-index: 1;
    width: 100%;
    min-height: 520px;
    object-fit: cover;
    border-radius: 32px;
    box-shadow: var(--sombra-forte);
}


/* =========================================================
   TÍTULOS
========================================================= */

.titulo-secao {
    max-width: 790px;
    margin-bottom: 50px;
}

.titulo-secao.centralizado {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.titulo-secao h2,
.oportunidade h2,
.para-quem h2,
.suporte h2,
.sobre-br4 h2,
.renda-extra h2 {
    margin-bottom: 18px;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.15;
    letter-spacing: -1.4px;
    color: var(--br4-azul-escuro);
}

.titulo-secao p {
    font-size: 17px;
    color: var(--texto-claro);
}

.tag-secao.claro {
    background: rgba(255, 255, 255, 0.14);
    color: var(--branco);
}


/* =========================================================
   VÍDEO
========================================================= */

.video-apresentacao {
    padding: 100px 0;
    background: var(--branco);
}

.video-box {
    max-width: 980px;
    margin-inline: auto;
    overflow: hidden;
    border-radius: 28px;
    background: var(--br4-azul-escuro);
    box-shadow: var(--sombra-forte);
}

.video-placeholder {
    min-height: 530px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    text-align: center;
    color: var(--branco);
    background:
        linear-gradient(
            rgba(8, 60, 79, 0.86),
            rgba(8, 60, 79, 0.86)
        ),
        url("../img/banner-br4-viagens.jpg") center / cover;
}

.video-play {
    width: 86px;
    height: 86px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    border-radius: 50%;
    background: var(--branco);
    color: var(--br4-azul);
    font-size: 28px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.24);
}

.video-placeholder h3 {
    margin-bottom: 7px;
    font-size: 26px;
}

.video-placeholder p {
    color: rgba(255, 255, 255, 0.80);
}


/* =========================================================
   OPORTUNIDADE
========================================================= */

.oportunidade {
    padding: 110px 0;
    background: var(--cinza-claro);
}

.oportunidade-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.oportunidade-imagem img {
    width: 100%;
    min-height: 550px;
    object-fit: cover;
    border-radius: 28px;
    box-shadow: var(--sombra);
}

.oportunidade-conteudo p {
    margin-bottom: 18px;
    font-size: 16px;
    color: var(--texto-claro);
}

.destaque-texto {
    margin-top: 28px;
    padding: 22px 24px;
    border-left: 5px solid var(--br4-turquesa);
    border-radius: 0 14px 14px 0;
    background: var(--branco);
    color: var(--br4-azul-escuro);
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(15, 94, 120, 0.08);
}


/* =========================================================
   LIBERDADE
========================================================= */

.liberdade {
    padding: 110px 0;
    background: var(--branco);
}

.liberdade-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.card-imagem {
    position: relative;
    min-height: 500px;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: var(--sombra);
}

.card-imagem img {
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.card-imagem::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(4, 45, 61, 0.94) 0%,
        rgba(4, 45, 61, 0.40) 45%,
        transparent 72%
    );
}

.card-imagem:hover img {
    transform: scale(1.05);
}

.card-imagem-conteudo {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 30px;
    color: var(--branco);
}

.card-imagem-conteudo h3 {
    margin-bottom: 8px;
    font-size: 22px;
}

.card-imagem-conteudo p {
    color: rgba(255, 255, 255, 0.84);
    font-size: 14px;
}


/* =========================================================
   TREINAMENTO
========================================================= */

.treinamento {
    padding: 110px 0;
    background:
        linear-gradient(
            180deg,
            #f4fbfc 0%,
            #ffffff 100%
        );
}

.treinamento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.card-treinamento {
    padding: 35px 30px;
    border: 1px solid var(--cinza-borda);
    border-radius: 20px;
    background: var(--branco);
    box-shadow: 0 14px 35px rgba(15, 94, 120, 0.06);
    transition: 0.3s ease;
}

.card-treinamento:hover {
    transform: translateY(-7px);
    border-color: rgba(47, 183, 195, 0.40);
    box-shadow: var(--sombra);
}

.card-treinamento > i {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    border-radius: 16px;
    background: var(--br4-turquesa-claro);
    color: var(--br4-azul);
    font-size: 24px;
}

.card-treinamento h3 {
    margin-bottom: 10px;
    font-size: 20px;
    color: var(--br4-azul-escuro);
}

.card-treinamento p {
    font-size: 14px;
    color: var(--texto-claro);
}


/* =========================================================
   SUPORTE
========================================================= */

.suporte {
    padding: 110px 0;
    background: var(--branco);
}

.suporte-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 70px;
    align-items: center;
}

.suporte-conteudo > p {
    margin-bottom: 26px;
    color: var(--texto-claro);
}

.check-list {
    display: grid;
    gap: 14px;
}

.check-list > div {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--texto);
    font-weight: 600;
}

.check-list i {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
    border-radius: 50%;
    background: rgba(37, 169, 108, 0.12);
    color: var(--br4-verde);
    font-size: 11px;
}

.suporte-imagem img {
    width: 100%;
    min-height: 500px;
    object-fit: cover;
    border-radius: 28px;
    box-shadow: var(--sombra);
}


/* =========================================================
   SOBRE BR4
========================================================= */

.sobre-br4 {
    padding: 110px 0;
    color: var(--branco);
    background:
        radial-gradient(
            circle at 20% 20%,
            rgba(47, 183, 195, 0.25),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #083d51,
            #0f5e78
        );
}

.sobre-br4-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.sobre-br4-imagem img {
    width: 100%;
    min-height: 480px;
    object-fit: cover;
    border-radius: 28px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.22);
}

.sobre-br4 h2 {
    color: var(--branco);
}

.sobre-br4-conteudo > p {
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.78);
}

.br4-numeros {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 35px;
}

.br4-numeros > div {
    padding: 19px 16px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
}

.br4-numeros strong {
    display: block;
    margin-bottom: 4px;
    font-size: 17px;
}

.br4-numeros span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.68);
}


/* =========================================================
   COMO FUNCIONA
========================================================= */

.como-funciona {
    padding: 110px 0;
    background: var(--cinza-claro);
}

.passos {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.passos article {
    position: relative;
    z-index: 1;
    padding: 32px 25px;
    border-radius: 20px;
    background: var(--branco);
    box-shadow: 0 12px 30px rgba(15, 94, 120, 0.07);
}

.numero {
    margin-bottom: 18px;
    font-size: 34px;
    line-height: 1;
    font-weight: 800;
    color: var(--br4-turquesa);
}

.passos h3 {
    margin-bottom: 9px;
    font-size: 18px;
    color: var(--br4-azul-escuro);
}

.passos p {
    font-size: 14px;
    color: var(--texto-claro);
}


/* =========================================================
   RENDA EXTRA
========================================================= */

.renda-extra {
    padding: 110px 0;
    background: var(--branco);
}

.renda-extra-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.renda-extra p {
    margin-bottom: 18px;
    color: var(--texto-claro);
}

.renda-extra img {
    width: 100%;
    min-height: 500px;
    object-fit: cover;
    border-radius: 28px;
    box-shadow: var(--sombra);
}

.observacao-renda {
    padding: 18px 20px;
    border-radius: 14px;
    background: #fff8e8;
    color: #775b18 !important;
    font-size: 13px;
}


/* =========================================================
   INVESTIMENTO / OFERTA DE LANÇAMENTO
========================================================= */

.investimento {
    position: relative;
    overflow: hidden;
    padding: 110px 0;
    background:
        radial-gradient(
            circle at 10% 10%,
            rgba(47, 183, 195, 0.18),
            transparent 32%
        ),
        radial-gradient(
            circle at 90% 80%,
            rgba(15, 94, 120, 0.10),
            transparent 30%
        ),
        #f6fbfc;
}


/* =========================================================
   ALERTA DA PROMOÇÃO
========================================================= */

.oferta-alerta {
    max-width: 720px;
    margin: -10px auto 25px;
    padding: 17px 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;

    border: 1px solid rgba(255, 165, 0, 0.25);
    border-radius: 16px;

    background: linear-gradient(
        135deg,
        #fff9e8,
        #fff3ce
    );

    box-shadow: 0 10px 30px rgba(160, 112, 0, 0.08);
}

.oferta-alerta-icone {
    width: 46px;
    height: 46px;
    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #ffb020;
    color: #ffffff;

    font-size: 18px;
}

.oferta-alerta strong {
    display: block;
    margin-bottom: 2px;

    color: #765300;
    font-size: 15px;
    font-weight: 800;
}

.oferta-alerta span {
    display: block;

    color: #8a701f;
    font-size: 12px;
    line-height: 1.5;
}


/* =========================================================
   CONTADOR
========================================================= */

.contador-oferta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    margin: 0 auto 50px;
}

.contador-item {
    width: 82px;
    min-height: 86px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    border-radius: 16px;

    background: linear-gradient(
        145deg,
        var(--br4-azul-escuro),
        var(--br4-azul)
    );

    color: #ffffff;

    box-shadow: 0 14px 30px rgba(15, 94, 120, 0.18);
}

.contador-item strong {
    display: block;

    font-size: 30px;
    line-height: 1;
    font-weight: 800;
}

.contador-item span {
    display: block;
    margin-top: 7px;

    color: rgba(255, 255, 255, 0.72);

    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.contador-separador {
    margin-top: -18px;

    color: var(--br4-turquesa);

    font-size: 27px;
    font-weight: 800;
}


/* =========================================================
   CARDS DE PREÇO
========================================================= */

.precos {
    max-width: 960px;
    margin-inline: auto;

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    align-items: stretch;
}

.preco-card {
    position: relative;

    display: flex;
    flex-direction: column;

    padding: 42px 38px 38px;

    border: 1px solid var(--cinza-borda);
    border-radius: 26px;

    background: #ffffff;

    box-shadow:
        0 20px 50px rgba(15, 94, 120, 0.11);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.preco-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 28px 65px rgba(15, 94, 120, 0.18);
}

.preco-card.destaque {
    border: 2px solid var(--br4-turquesa);

    box-shadow:
        0 24px 60px rgba(47, 183, 195, 0.18);
}


/* =========================================================
   SELO DE OFERTA
========================================================= */

.selo-oferta {
    position: absolute;
    top: -15px;
    right: 24px;

    padding: 8px 16px;

    border-radius: 50px;

    background: linear-gradient(
        135deg,
        #ff9c1a,
        #ffb52e
    );

    color: #ffffff;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 0.6px;
    text-transform: uppercase;

    box-shadow:
        0 8px 20px rgba(255, 156, 26, 0.30);
}


/* =========================================================
   PAÍS
========================================================= */

.pais {
    align-self: flex-start;

    display: inline-flex;
    align-items: center;
    gap: 7px;

    margin-bottom: 24px;
    padding: 7px 13px;

    border-radius: 50px;

    background: var(--br4-turquesa-claro);

    color: var(--br4-azul);

    font-size: 13px;
    font-weight: 800;

    text-transform: uppercase;
}


/* =========================================================
   PREÇO ANTIGO
========================================================= */

.preco-anterior {
    margin-bottom: 2px;

    color: #8a94a3;

    font-size: 14px;
    font-weight: 600;
}

.preco-anterior span {
    position: relative;

    margin-left: 4px;

    color: #7c8490;

    font-size: 19px;
    font-weight: 700;

    text-decoration: line-through;
    text-decoration-color: #e74c3c;
    text-decoration-thickness: 2px;
}

.preco-por {
    margin-top: 2px;
    margin-bottom: 2px;

    color: var(--texto-claro);

    font-size: 13px;
    font-weight: 600;
}


/* =========================================================
   PREÇO PROMOCIONAL
========================================================= */

.valor {
    display: flex;
    align-items: flex-start;

    margin-bottom: 10px;

    color: var(--br4-azul-escuro);
}

.valor strong {
    font-size: 68px;
    line-height: 0.95;

    font-weight: 800;

    letter-spacing: -3px;
}

.valor small {
    padding-top: 8px;

    font-size: 21px;
    font-weight: 800;
}


/* =========================================================
   ECONOMIA
========================================================= */

.economia {
    align-self: flex-start;

    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin-bottom: 25px;
    padding: 8px 12px;

    border-radius: 9px;

    background: rgba(37, 169, 108, 0.10);

    color: #168554;

    font-size: 12px;
    font-weight: 800;
}

.economia i {
    font-size: 11px;
}


/* =========================================================
   DESCRIÇÃO
========================================================= */

.preco-card .descricao-preco {
    margin-bottom: 25px;

    color: var(--texto-claro);

    font-size: 14px;
}


/* =========================================================
   LISTA
========================================================= */

.preco-card ul {
    display: grid;
    gap: 13px;

    margin-bottom: 32px;

    list-style: none;
}

.preco-card li {
    display: flex;
    align-items: center;
    gap: 10px;

    color: var(--texto);

    font-size: 14px;
    font-weight: 600;
}

.preco-card li i {
    width: 21px;
    height: 21px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(37, 169, 108, 0.11);

    color: var(--br4-verde);

    font-size: 9px;
}


/* =========================================================
   BOTÃO DOS CARDS
========================================================= */

.preco-card .btn-principal {
    width: 100%;
    margin-top: auto;

    min-height: 60px;

    padding-left: 20px;
    padding-right: 20px;

    font-size: 13px;
}


/* =========================================================
   OBSERVAÇÃO FINAL
========================================================= */

.oferta-observacao {
    max-width: 750px;

    margin: 30px auto 0;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    text-align: center;

    color: var(--texto-claro);

    font-size: 11px;
}

.oferta-observacao i {
    color: var(--br4-turquesa);
}

.oferta-observacao p {
    margin: 0;
}


/* =========================================================
   RESPONSIVO DA OFERTA
========================================================= */

@media (max-width: 768px) {

    .oferta-alerta {
        align-items: flex-start;

        margin-bottom: 25px;
        padding: 16px;
    }

    .oferta-alerta-icone {
        width: 40px;
        height: 40px;

        font-size: 15px;
    }

    .contador-oferta {
        gap: 5px;

        margin-bottom: 40px;
    }

    .contador-item {
        width: 62px;
        min-height: 72px;

        border-radius: 12px;
    }

    .contador-item strong {
        font-size: 23px;
    }

    .contador-item span {
        font-size: 7px;
    }

    .contador-separador {
        margin-top: -16px;

        font-size: 20px;
    }

    .precos {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .preco-card {
        padding: 38px 25px 30px;
    }

    .preco-card.destaque {
        transform: none;
    }

    .selo-oferta {
        right: 18px;
    }

    .valor strong {
        font-size: 60px;
    }

    .oferta-observacao {
        align-items: flex-start;

        text-align: left;
    }
}


@media (max-width: 420px) {

    .contador-item {
        width: 56px;
        min-height: 67px;
    }

    .contador-item strong {
        font-size: 21px;
    }

    .contador-separador {
        font-size: 17px;
    }

    .valor strong {
        font-size: 55px;
    }

    .preco-card .btn-principal {
        font-size: 12px;
    }
}


/* =========================================================
   FAQ
========================================================= */

.duvidas {
    padding: 110px 0;
    background: var(--branco);
}

.faq {
    max-width: 900px;
    margin-inline: auto;
    display: grid;
    gap: 13px;
}

.faq details {
    overflow: hidden;
    border: 1px solid var(--cinza-borda);
    border-radius: 16px;
    background: var(--branco);
    transition: 0.25s ease;
}

.faq details[open] {
    border-color: rgba(47, 183, 195, 0.45);
    box-shadow: 0 12px 30px rgba(15, 94, 120, 0.07);
}

.faq summary {
    position: relative;
    padding: 20px 55px 20px 22px;
    list-style: none;
    cursor: pointer;
    color: var(--br4-azul-escuro);
    font-weight: 700;
}

.faq summary::-webkit-details-marker {
    display: none;
}

.faq summary::after {
    content: "+";
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--br4-turquesa);
    font-size: 26px;
    font-weight: 500;
}

.faq details[open] summary::after {
    content: "−";
}

.faq details p {
    padding: 0 22px 22px;
    color: var(--texto-claro);
    font-size: 14px;
}


/* =========================================================
   CTA FINAL
========================================================= */

.cta-final {
    padding: 90px 0;
    background: var(--branco);
}

.cta-final-box {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    padding: 55px 60px;
    border-radius: 30px;
    color: var(--branco);
    background:
        radial-gradient(
            circle at 90% 20%,
            rgba(47, 183, 195, 0.30),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            var(--br4-azul-escuro),
            var(--br4-azul)
        );
    box-shadow: var(--sombra-forte);
}

.cta-final-box::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    right: -120px;
    bottom: -190px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
}

.cta-final-box > div,
.cta-final-box > a {
    position: relative;
    z-index: 1;
}

.cta-final-box span {
    display: block;
    margin-bottom: 9px;
    color: #9ae8ee;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.cta-final-box h2 {
    max-width: 730px;
    margin-bottom: 10px;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.12;
}

.cta-final-box p {
    color: rgba(255, 255, 255, 0.76);
}

.btn-final {
    flex-shrink: 0;
    background: var(--branco);
    color: var(--br4-azul-escuro);
    box-shadow: none;
}

.btn-final:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}


/* =========================================================
   RODAPÉ
========================================================= */

.rodape {
    background: #07394b;
    color: #ffffff;
    padding: 0;
}

.rodape-conteudo {
    min-height: 190px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    padding-top: 45px;
    padding-bottom: 45px;
}

.rodape-logo {
    max-width: 450px;
}

.rodape-logo img {
    width: 165px;
    height: auto;
    margin-bottom: 18px;

    /* Fundo claro para a logo não desaparecer */
    background: #ffffff;
    padding: 8px 12px;
    border-radius: 10px;
}

.rodape-logo p {
    margin: 0;
    max-width: 430px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    line-height: 1.7;
}

.rodape-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 28px;
}

.rodape-links a {
    position: relative;
    color: rgba(255, 255, 255, 0.88);
    font-size: 13px;
    font-weight: 700;
    transition: 0.25s ease;
}

.rodape-links a:hover {
    color: #55c7d2;
}

.rodape-final {
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(0, 0, 0, 0.08);
}

.rodape-final p {
    margin: 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.55);
    font-size: 12px;
}


/* =========================================================
   RODAPÉ RESPONSIVO
========================================================= */

@media (max-width: 768px) {

    .rodape-conteudo {
        min-height: auto;
        display: block;
        padding-top: 40px;
        padding-bottom: 35px;
        text-align: center;
    }

    .rodape-logo {
        max-width: 100%;
        margin-bottom: 30px;
    }

    .rodape-logo img {
        margin-left: auto;
        margin-right: auto;
    }

    .rodape-logo p {
        margin-left: auto;
        margin-right: auto;
    }

    .rodape-links {
        justify-content: center;
        gap: 18px 25px;
    }

    .rodape-final {
        padding: 16px 0;
    }
}


/* =========================================================
   ANIMAÇÃO BÁSICA
========================================================= */

.hero-imagem,
.oportunidade-imagem,
.suporte-imagem,
.sobre-br4-imagem,
.renda-extra img {
    animation: aparecer 0.8s ease both;
}

@keyframes aparecer {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1024px) {

    .menu {
        display: none;
    }

    .btn-topo {
        margin-left: auto;
    }

    .menu-mobile {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .hero-grid,
    .oportunidade-grid,
    .suporte-grid,
    .sobre-br4-grid,
    .renda-extra-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 70px;
    }

    .hero-conteudo {
        max-width: 800px;
    }

    .hero-imagem img {
        min-height: 460px;
    }

    .liberdade-grid,
    .treinamento-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .passos {
        grid-template-columns: repeat(2, 1fr);
    }

    .sobre-br4-imagem {
        order: 2;
    }

    .sobre-br4-conteudo {
        order: 1;
    }
}


/* =========================================================
   CELULAR
========================================================= */

@media (max-width: 768px) {

    .container {
        width: min(calc(100% - 28px), var(--container));
    }

    .topo-conteudo {
        min-height: 72px;
        gap: 12px;
    }

    .logo img {
        width: 135px;
    }

    .btn-topo {
        display: none;
    }

    .hero {
        padding: 55px 0 65px;
    }

    .hero-grid {
        gap: 45px;
    }

    .hero h1 {
        font-size: 39px;
        letter-spacing: -1.5px;
    }

    .hero-texto {
        font-size: 16px;
    }

    .hero-pontos {
        display: grid;
        gap: 12px;
    }

    .hero-imagem::before {
        display: none;
    }

    .hero-imagem img {
        min-height: 390px;
        border-radius: 22px;
    }

    .btn-principal,
    .btn-final {
        width: 100%;
        min-height: 56px;
        padding-inline: 20px;
        text-align: center;
    }

    .video-apresentacao,
    .oportunidade,
    .liberdade,
    .treinamento,
    .suporte,
    .sobre-br4,
    .como-funciona,
    .renda-extra,
    .investimento,
    .duvidas {
        padding: 75px 0;
    }

    .video-placeholder {
        min-height: 380px;
        padding: 25px;
    }

    .titulo-secao {
        margin-bottom: 38px;
    }

    .titulo-secao h2,
    .oportunidade h2,
    .suporte h2,
    .sobre-br4 h2,
    .renda-extra h2 {
        font-size: 32px;
    }

    .oportunidade-grid,
    .suporte-grid,
    .sobre-br4-grid,
    .renda-extra-grid {
        gap: 40px;
    }

    .oportunidade-imagem img,
    .suporte-imagem img,
    .sobre-br4-imagem img,
    .renda-extra img {
        min-height: 390px;
        border-radius: 20px;
    }

    .liberdade-grid,
    .treinamento-grid,
    .passos,
    .precos {
        grid-template-columns: 1fr;
    }

    .card-imagem,
    .card-imagem img {
        min-height: 430px;
    }

    .card-imagem-conteudo {
        padding: 24px;
    }

    .br4-numeros {
        grid-template-columns: 1fr;
    }

    .preco-card {
        padding: 35px 25px;
    }

    .preco-card.destaque {
        transform: none;
    }

    .valor strong {
        font-size: 58px;
    }

    .cta-final {
        padding: 65px 0;
    }

    .cta-final-box {
        display: block;
        padding: 40px 25px;
        border-radius: 22px;
    }

    .cta-final-box p {
        margin-bottom: 28px;
    }

    .rodape-conteudo {
        display: block;
    }

    .rodape-logo {
        margin-bottom: 35px;
    }

    .rodape-links {
        display: grid;
        gap: 13px;
    }
}


/* =========================================================
   CELULARES PEQUENOS
========================================================= */

@media (max-width: 420px) {

    .hero h1 {
        font-size: 34px;
    }

    .hero-selo,
    .tag-secao,
    .titulo-secao > span {
        font-size: 10px;
    }

    .hero-imagem img {
        min-height: 330px;
    }

    .video-placeholder {
        min-height: 330px;
    }

    .card-treinamento {
        padding: 28px 22px;
    }

    .card-imagem,
    .card-imagem img {
        min-height: 390px;
    }
}

/* =========================================================
   COMPLEMENTOS DO JAVASCRIPT
   MENU MOBILE + ANIMAÇÕES
========================================================= */


/* =========================================================
   MENU MOBILE ABERTO
========================================================= */

@media (max-width: 1024px) {

    .topo-conteudo {
        position: relative;
    }

    .menu {
        position: absolute;
        top: calc(100% + 8px);
        left: 0;
        right: 0;

        display: none;
        flex-direction: column;
        align-items: stretch;

        gap: 0;

        margin: 0;
        padding: 12px;

        border: 1px solid rgba(15, 94, 120, 0.10);
        border-radius: 16px;

        background: rgba(255, 255, 255, 0.98);

        backdrop-filter: blur(18px);

        box-shadow:
            0 18px 45px rgba(15, 94, 120, 0.15);
    }

    .menu.menu-aberto {
        display: flex;
    }

    .menu a {
        width: 100%;

        padding: 13px 15px;

        border-radius: 10px;

        font-size: 14px;
    }

    .menu a:hover {
        background: var(--br4-turquesa-claro);
    }

    .menu a::after {
        display: none;
    }
}


/* =========================================================
   TOPO QUANDO A PÁGINA É ROLADA
========================================================= */

.topo {
    transition:
        box-shadow 0.25s ease,
        background 0.25s ease;
}

.topo.topo-rolagem {
    background: rgba(255, 255, 255, 0.985);

    box-shadow:
        0 8px 30px rgba(15, 94, 120, 0.10);
}


/* =========================================================
   ANIMAÇÕES AO ENTRAR NA TELA
========================================================= */

.animar-entrada {
    opacity: 0;

    transform: translateY(24px);

    transition:
        opacity 0.65s ease,
        transform 0.65s ease;
}

.animar-entrada.visivel {
    opacity: 1;

    transform: translateY(0);
}


/* PEQUENO EFEITO ESCALONADO */

.treinamento-grid .animar-entrada:nth-child(2),
.liberdade-grid .animar-entrada:nth-child(2),
.passos .animar-entrada:nth-child(2),
.precos .animar-entrada:nth-child(2) {
    transition-delay: 0.08s;
}

.treinamento-grid .animar-entrada:nth-child(3),
.liberdade-grid .animar-entrada:nth-child(3),
.passos .animar-entrada:nth-child(3) {
    transition-delay: 0.16s;
}

.treinamento-grid .animar-entrada:nth-child(4),
.passos .animar-entrada:nth-child(4) {
    transition-delay: 0.24s;
}

.treinamento-grid .animar-entrada:nth-child(5) {
    transition-delay: 0.32s;
}

.treinamento-grid .animar-entrada:nth-child(6) {
    transition-delay: 0.40s;
}


/* =========================================================
   CONTADOR ENCERRADO
========================================================= */

.contador-oferta.oferta-encerrada {
    opacity: 0.65;
}

.contador-oferta.oferta-encerrada .contador-item {
    background: #7d8792;
}


/* =========================================================
   ACESSIBILIDADE
   REDUZ ANIMAÇÕES SE O USUÁRIO PREFERIR
========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .animar-entrada {
        opacity: 1;
        transform: none;
    }
}

/* =========================================================
   AJUSTE FINAL PARA DESKTOP
   ESCALA MAIS EQUILIBRADA EM 100% DE ZOOM
========================================================= */

@media (min-width: 1025px) {

    /* ---------------------------------------------------------
       ÂNCORAS NÃO FICAM ESCONDIDAS PELO HEADER
    --------------------------------------------------------- */

    section {
        scroll-margin-top: 100px;
    }


    /* ---------------------------------------------------------
       CONTAINER
    --------------------------------------------------------- */

    :root {
        --container: 1180px;
    }


    /* ---------------------------------------------------------
       HEADER
    --------------------------------------------------------- */

    .topo-conteudo {
        min-height: 72px;
    }

    .logo img {
        width: 150px;
    }

    .menu {
        gap: 24px;
    }

    .menu a {
        font-size: 13px;
    }

    .btn-topo {
        min-height: 44px;
        padding: 0 20px;
        font-size: 13px;
    }


    /* ---------------------------------------------------------
       HERO
    --------------------------------------------------------- */

    .hero {
        padding: 65px 0 70px;
    }

    .hero-grid {
        gap: 55px;
    }

    .hero h1 {
        font-size: clamp(42px, 4vw, 56px);
        line-height: 1.04;
        letter-spacing: -1.8px;
    }

    .hero-texto {
        font-size: 16px;
        line-height: 1.7;
    }

    .hero-imagem img {
        min-height: 430px;
        max-height: 500px;
    }


    /* ---------------------------------------------------------
       ESPAÇAMENTO GERAL DAS SEÇÕES
    --------------------------------------------------------- */

    .video-apresentacao,
    .oportunidade,
    .liberdade,
    .treinamento,
    .suporte,
    .sobre-br4,
    .como-funciona,
    .renda-extra,
    .investimento,
    .duvidas {
        padding-top: 80px;
        padding-bottom: 80px;
    }


    /* ---------------------------------------------------------
       TÍTULOS
    --------------------------------------------------------- */

    .titulo-secao {
        max-width: 760px;
        margin-bottom: 38px;
    }

    .titulo-secao h2,
    .oportunidade h2,
    .suporte h2,
    .sobre-br4 h2,
    .renda-extra h2 {
        font-size: clamp(30px, 3vw, 39px);
        line-height: 1.15;
        letter-spacing: -1px;
    }

    .titulo-secao p {
        font-size: 15px;
    }

    .hero-selo,
    .tag-secao,
    .titulo-secao > span {
        font-size: 10px;
        padding: 7px 13px;
        margin-bottom: 14px;
    }


    /* ---------------------------------------------------------
       VÍDEO
    --------------------------------------------------------- */

    .video-box {
        max-width: 860px;
    }

    .video-placeholder {
        min-height: 450px;
    }

    .video-play {
        width: 72px;
        height: 72px;
        font-size: 23px;
    }


    /* ---------------------------------------------------------
       OPORTUNIDADE
    --------------------------------------------------------- */

    .oportunidade-grid {
        gap: 55px;
    }

    .oportunidade-imagem img {
        min-height: 450px;
        max-height: 500px;
    }

    .oportunidade-conteudo p {
        font-size: 14px;
        margin-bottom: 14px;
    }

    .destaque-texto {
        margin-top: 20px;
        padding: 18px 20px;
        font-size: 14px;
    }


    /* ---------------------------------------------------------
       TRÊS CARDS COM IMAGENS
    --------------------------------------------------------- */

    .liberdade-grid {
        max-width: 1080px;
        margin-inline: auto;
        gap: 22px;
    }

    .card-imagem,
    .card-imagem img {
        min-height: 390px;
        max-height: 430px;
    }

    .card-imagem-conteudo {
        padding: 24px;
    }

    .card-imagem-conteudo h3 {
        font-size: 18px;
    }

    .card-imagem-conteudo p {
        font-size: 12px;
    }


    /* ---------------------------------------------------------
       CARDS DO TREINAMENTO
    --------------------------------------------------------- */

    .treinamento-grid {
        max-width: 1050px;
        margin-inline: auto;
        gap: 18px;
    }

    .card-treinamento {
        padding: 28px 25px;
        min-height: 210px;
    }

    .card-treinamento > i {
        width: 50px;
        height: 50px;
        margin-bottom: 18px;
        font-size: 20px;
    }

    .card-treinamento h3 {
        font-size: 17px;
    }

    .card-treinamento p {
        font-size: 12px;
        line-height: 1.6;
    }


    /* ---------------------------------------------------------
       SUPORTE
    --------------------------------------------------------- */

    .suporte-grid {
        gap: 55px;
    }

    .suporte-imagem img {
        min-height: 430px;
        max-height: 500px;
    }

    .suporte-conteudo > p {
        font-size: 14px;
    }

    .check-list {
        gap: 11px;
    }

    .check-list > div {
        font-size: 14px;
    }


    /* ---------------------------------------------------------
       SOBRE A BR4
    --------------------------------------------------------- */

    .sobre-br4-grid {
        gap: 55px;
    }

    .sobre-br4-imagem img {
        min-height: 410px;
        max-height: 470px;
    }

    .sobre-br4-conteudo > p {
        font-size: 14px;
    }

    .br4-numeros {
        margin-top: 28px;
    }


    /* ---------------------------------------------------------
       COMO FUNCIONA
    --------------------------------------------------------- */

    .passos {
        max-width: 1050px;
        margin-inline: auto;
        gap: 16px;
    }

    .passos article {
        padding: 25px 22px;
        min-height: 190px;
    }

    .numero {
        font-size: 29px;
        margin-bottom: 15px;
    }

    .passos h3 {
        font-size: 16px;
    }

    .passos p {
        font-size: 12px;
    }


    /* ---------------------------------------------------------
       RENDA EXTRA
    --------------------------------------------------------- */

    .renda-extra-grid {
        gap: 55px;
    }

    .renda-extra img {
        min-height: 400px;
        max-height: 450px;
    }

    .renda-extra p {
        font-size: 14px;
    }


    /* ---------------------------------------------------------
       INVESTIMENTO
    --------------------------------------------------------- */

    .investimento {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .oferta-alerta {
        max-width: 680px;
    }

    .contador-oferta {
        margin-bottom: 42px;
    }

    .contador-item {
        width: 72px;
        min-height: 76px;
    }

    .contador-item strong {
        font-size: 25px;
    }

    .precos {
        max-width: 850px;
        gap: 25px;
    }

    .preco-card {
        padding: 36px 32px 32px;
    }

    .valor strong {
        font-size: 59px;
    }


    /* ---------------------------------------------------------
       FAQ
    --------------------------------------------------------- */

    .faq {
        max-width: 800px;
    }

    .faq summary {
        padding: 17px 50px 17px 20px;
        font-size: 13px;
    }

    .faq details p {
        font-size: 13px;
    }


    /* ---------------------------------------------------------
       CTA FINAL
    --------------------------------------------------------- */

    .cta-final {
        padding: 65px 0;
    }

    .cta-final-box {
        max-width: 1100px;
        padding: 40px 45px;
    }

    .cta-final-box h2 {
        font-size: clamp(28px, 3vw, 37px);
    }


    /* ---------------------------------------------------------
       FOOTER
    --------------------------------------------------------- */

    .rodape-conteudo {
        min-height: 165px;
        padding-top: 35px;
        padding-bottom: 35px;
    }

}

/* =========================================================
   ORDEM DA SEÇÃO OPORTUNIDADE NO MOBILE
========================================================= */

@media (max-width: 1024px) {

    .oportunidade-conteudo {
        order: 1;
    }

    .oportunidade-imagem {
        order: 2;
    }

}