html {
    scroll-behavior: smooth;
}

body {
    background: #ffffff;
}

h1 {
    font-size: clamp(2.75em, 4.6em, 5em)
}

h2 {
    font-size: clamp(2.25em, 3.75em, 4.5em);
    color: var(--cor1);
}

h1, h2 {
    line-height: 1;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    text-wrap: balance;
    font-family: "Barlow Condensed", sans-serif;
}

h3 {
    line-height: 1;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    font-family: "Barlow Condensed", sans-serif;
}

p {
    line-height: 1.6;
    font-size: 1.05rem;
}

.btn {
    display: flex;
    width: fit-content;
    align-items: center;
    justify-content: center;
    padding: 1rem 1.4rem;
    min-height: 52px;
    border: 1px solid var(--cor2);
    background: var(--cor2);
    color: var(--branco);
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: 0.3s;
}

.btn:hover {
    filter: brightness(1.25);
}

body.modal-aberto {
    overflow: hidden;
}

.link {
    position: relative;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}

.link:hover::after {
    transform: scaleX(1);
}

.modal-lojas {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    z-index: 90;
}

.modal-lojas.ativo {
    opacity: 1;
    pointer-events: auto;
}

.fundo-modal-lojas {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.78);
}

.janela-modal-lojas {
    position: relative;
    width: 100%;
    max-width: 560px;
    padding: 40px 36px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: #ffffff;
    box-shadow: 0 28px 70px rgba(2, 6, 23, 0.18);
}

.fechar-modal-lojas {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 50;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(15, 23, 42, 0.1);
    background: transparent;
    color: var(--cor1);
    transition: background 0.25s ease, border-color 0.25s ease;
}

.fechar-modal-lojas:hover {
    border-color: rgba(37, 99, 235, 0.72);
    background: rgba(37, 99, 235, 0.12);
}

.fechar-modal-lojas svg {
    width: 18px;
    height: 18px;
}

.conteudo-modal-lojas {
    position: relative;
    z-index: 1;
    text-align: center;
}

.titulo-modal-lojas {
    display: block;
    max-width: 250px;
    margin: 0 auto;
    color: var(--cor1);
    font-size: clamp(2rem, 5vw, 2.6rem);
    line-height: 0.95;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    font-family: "Barlow Condensed", sans-serif;
}

.texto-modal-lojas {
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(15, 23, 42, 0.7);
}

.lista-lojas {
    flex-direction: row;
    justify-content: center;
    flex-wrap: nowrap;
}

.link-loja {
    display: flex;
    width: 100%;
    max-width: 220px;
    padding: 0;
    border: 0;
    background: transparent;
    text-align: center;
    transition: transform 0.25s ease, filter 0.25s ease;
}

.link-loja:hover {
    transform: translateY(-2px);
    filter: brightness(1.06);
}

.link-loja img {
    display: block;
    width: 100%;
    max-width: none;
}

.barra-app-mobile {
    display: none;
}

.limite {
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    max-width: 1320px;
}

.badge {
    display: block;
    margin-bottom: 0.75rem;
    color: var(--cor2);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.18em;
}

#menu {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 40;
    /* margin-bottom: -92px; */
    /* padding-top: 16px; */
    border-bottom: 1px solid rgba(255, 255, 255, 0.075);
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    overflow: hidden;
    transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, backdrop-filter 0.25s ease;
}

.menu-site {
    padding: 12px 0;
}

#menu::before {
    content: "";
    position: absolute;
    inset: 0;
    /*background:
        linear-gradient(120deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.04) 26%, rgba(255, 255, 255, 0) 46%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 100%);*/
    background: linear-gradient(120deg, rgb(0 0 0 / 20%) 0%, rgb(5 28 71 / 4%) 26%, rgba(255, 255, 255, 0) 46%), linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.25s ease;
}

#menu .limite {
    position: relative;
    z-index: 1;
}

#menu.menu-ativo {
    border-color: rgba(255, 255, 255, 0.2);
    background: linear-gradient(135deg, rgba(7, 16, 29, 0.9) 0%, rgba(7, 16, 29, 0.7) 100%);
    box-shadow: 0 20px 50px rgba(2, 6, 23, 0.34);
    backdrop-filter: blur(12px) saturate(160%);
    -webkit-backdrop-filter: blur(18px) saturate(160%);
}

#menu.menu-ativo::before {
    opacity: 1;
}

.marca-menu,
.links-menu,
.btn-menu {
    position: relative;
}

.marca-menu {
    flex: 0 0 auto;
}

.marca-menu img {
    width: 48px;
    height: 48px;
    display: block;
    flex: 0 0 48px;
}

.identidade-menu strong,
.identidade-menu span {
    display: block;
}

.identidade-menu strong {
    color: var(--branco);
    font-size: 1.4rem;
    line-height: 1;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-family: "Barlow Condensed", sans-serif;
}

.identidade-menu span {
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.links-menu {
    flex: 1;
    justify-content: center;
}

.item-menu {
    padding: 0.8rem 0.95rem;
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    transition: color 0.25s ease, background 0.25s ease;
}

.item-menu:hover {
    color: var(--branco);
}

.btn-menu {
    min-height: 48px;
    padding: 0.9rem 1.2rem;
    border-color: rgba(37, 99, 235, 0.72);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

#hero {
    width: 100%;
    min-height: 100dvh;
    position: relative;
    display: flex;
    align-items: center;
}

#hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.92) 0%, rgba(15, 23, 42, 0.76) 34%, rgba(15, 23, 42, 0.18) 72%, rgba(15, 23, 42, 0.06) 100%), url("../media/bg.jpg") center/cover no-repeat;
    filter: saturate(0.7) contrast(1.1);
}

#hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(15, 23, 42, 0.08) 0%, rgba(15, 23, 42, 0.68) 100%),
        radial-gradient(circle, rgba(255, 255, 255, 0.075) 1px, transparent 1.6px);
    background-size: auto, 18px 18px;
    background-position: center, 0 0;
}

#hero-conteudo {
    position: relative;
    padding-top: 125px;
    padding-bottom: 125px;
}

#hero-indicadores {
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;

    svg {
        width: 32px;
        height: 32px;
        stroke: white;
    }
}

.indicador-item {

    h2 {
        font-size: 1.37rem;
        line-height: 0.9;
        text-transform: uppercase;
        letter-spacing: 0.02em;
    }

    span {
        font-size: 0.65rem;
        color: rgba(255, 255, 255, 0.72);
        text-transform: uppercase;
        letter-spacing: 0.08em;
    }
}

.card-resultado {
    position: relative;
    min-height: 220px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: linear-gradient(310deg, rgb(71 128 255 / 10%) 0%, rgb(37 99 235 / 0%) 38%), linear-gradient(135deg, rgb(8 15 30 / 92%) 0%, rgb(4 9 22 / 0%) 100%);
    overflow: hidden;
}

.card-linha {
    display: block;
    width: 56px;
    height: 3px;
    margin-bottom: 8px;
    background: var(--cor2);
}

.card-resultado strong,
.card-resultado p {
    position: relative;
    z-index: 1;
}

.card-resultado strong {
    display: block;
    margin-bottom: 12px;
    color: var(--branco);
    font-size: clamp(3.6rem, 5vw, 4.8rem);
    line-height: 0.9;
    letter-spacing: -0.02em;
    font-family: "Barlow Condensed", sans-serif;
}

.card-resultado p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.5;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

#choose-program {
    padding: 80px 0;
    background:
        linear-gradient(180deg, rgba(15, 23, 42, 0.04) 0%, rgba(255, 255, 255, 0) 120px),
        linear-gradient(180deg, #f3f4f6 0%, #ffffff 100%);
}

.cabecalho-programa {
    max-width: 840px;
    margin: 0 auto 32px auto;
}

.descricao-programa {
    max-width: 720px;
    margin: 0 auto;
}

.abas-programa {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-bottom: 1px solid rgba(15, 23, 42, 0.2);
}

.aba-programa {
    padding: 16px 10px;
    border: 0;
    border-bottom: 4px solid transparent;
    background: transparent;
    color: rgba(15, 23, 42, 0.56);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.aba-programa:hover,
.aba-programa.ativa {
    color: var(--cor1);
}

.aba-programa.ativa {
    border-bottom-color: var(--cor2);
}

.conteudo-programa {
    padding-top: 28px;
    align-items: center;
}

.midia-programa {
    min-width: 0;
}

.quadro-programa {
    position: relative;
    min-height: 560px;
    overflow: hidden;
    background: var(--cor1);
}

.foto-programa,
.camada-programa {
    position: absolute;
}

.foto-programa {
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.75) contrast(1.05);
}

.camada-programa {
    inset: 0;
    background:
        linear-gradient(180deg, rgba(15, 23, 42, 0.08) 0%, rgba(15, 23, 42, 0.26) 100%);
}

.texto-programa {
    min-width: 0;
}

.topo-programa {
    padding-bottom: 18px;
}

.topo-programa .badge {
    margin-bottom: 12px;
}

.topo-programa h3 {
    color: var(--cor1);
    font-size: clamp(2.6rem, 4vw, 4rem);
    margin-bottom: 10px;
}

.bloco-programa {
    padding: 18px 0;
    border-top: 1px solid rgba(15, 23, 42, 0.14);
}

.bloco-programa strong {
    display: block;
    margin-bottom: 12px;
    color: var(--cor1);
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.lista-programa {
    display: grid;
    gap: 12px;
}

.item-programa {
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 4px;
    align-items: center;
}

.item-programa svg {
    width: 16px;
    height: 16px;
    margin-top: 2px;
    stroke: var(--cor2);
    stroke-width: 2.2;
}

.item-programa.positivo svg {
    stroke: var(--cor4);
}

.item-programa p {
    color: var(--texto1);
    font-size: 1rem;
}

#conteudo-app {
    position: relative;
    padding: 96px 0;
    background:
        radial-gradient(circle at 16% 20%, rgba(37, 99, 235, 0.14) 0%, rgba(37, 99, 235, 0) 26%),
        radial-gradient(circle at 82% 18%, rgba(59, 130, 246, 0.1) 0%, rgba(59, 130, 246, 0) 24%),
        radial-gradient(circle at 50% 120%, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0) 34%),
        radial-gradient(circle, rgba(255, 255, 255, 0.085) 1px, transparent 1.6px),
        linear-gradient(180deg, #050914 0%, #09101c 46%, #0c1424 100%);
    background-size: auto, auto, auto, 18px 18px, auto;
    background-position: center, center, center, 0 0, center;
    isolation: isolate;
    overflow: hidden;
}

#conteudo-app::before,
#conteudo-app::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    filter: blur(18px);
    opacity: 0.9;
    pointer-events: none;
    z-index: 0;
}

#conteudo-app::before {
    top: -140px;
    left: -120px;
    width: 460px;
    height: 460px;
    background:
        radial-gradient(circle, rgba(37, 99, 235, 0.22) 0%, rgba(37, 99, 235, 0.08) 34%, rgba(37, 99, 235, 0) 74%);
    animation: flutuar-azul 18s ease-in-out infinite;
}

#conteudo-app::after {
    right: -180px;
    bottom: -220px;
    width: 560px;
    height: 560px;
    background:
        radial-gradient(circle, rgba(96, 165, 250, 0.16) 0%, rgba(96, 165, 250, 0.05) 34%, rgba(96, 165, 250, 0) 76%);
    animation: flutuar-azul 22s ease-in-out infinite reverse;
}

.conteudo-app-grid {
    position: relative;
    z-index: 1;
    align-items: center;
}

.conteudo-app-visual::after {
    content: "";
    position: absolute;
    inset: 18% 22%;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0) 100%);
    transform: rotate(-8deg);
    z-index: 0;
}

@keyframes flutuar-azul {
    0% {
        transform: translate3d(0, 0, 0) scale(1);
    }

    50% {
        transform: translate3d(30px, 24px, 0) scale(1.08);
    }

    100% {
        transform: translate3d(0, 0, 0) scale(1);
    }
}

.conteudo-app-texto {
    max-width: 690px;
}

.acao-conteudo-app .btn {
    min-width: 240px;
}

.conteudo-app-lista {
    align-items: start;
}

.item-conteudo-app {
    padding: 20px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.item-conteudo-app h4 {
    display: block;
    margin-bottom: 6px;
    color: var(--branco);
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    font-family: 'Barlow Condensed';
}

.item-conteudo-app p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 1rem;
}

.conteudo-app-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.conteudo-app-visual::before {
    content: "";
    position: absolute;
    inset: 12% 12% 12% 12%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.32) 0%, rgba(37, 99, 235, 0) 72%);
    filter: blur(18px);
}

.moldura-app {
    position: relative;
    width: min(100%, 420px);
    padding: 28px 36px;
}

.moldura-app img {
    position: relative;
    z-index: 2;
    display: block;
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
    filter: drop-shadow(0 28px 40px rgba(0, 0, 0, 0.34));
}

.faixa-app {
    position: absolute;
    top: 14%;
    bottom: 14%;
    width: 1px;
    background: linear-gradient(180deg, rgba(37, 99, 235, 0) 0%, rgba(37, 99, 235, 0.75) 18%, rgba(255, 255, 255, 0.32) 50%, rgba(37, 99, 235, 0.75) 82%, rgba(37, 99, 235, 0) 100%);
}

.faixa-app-esquerda {
    left: 16px;
}

.faixa-app-direita {
    right: 16px;
}

#container-secoes {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(180deg, #f3f4f6 0%, #ffffff 22%, #eef3f9 64%, #ffffff 100%);
}

#container-secoes::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 16% 10%, rgba(37, 99, 235, 0.1) 0%, rgba(37, 99, 235, 0) 22%),
        radial-gradient(circle at 84% 18%, rgba(15, 23, 42, 0.06) 0%, rgba(15, 23, 42, 0) 20%),
        radial-gradient(circle at 20% 54%, rgba(37, 99, 235, 0.08) 0%, rgba(37, 99, 235, 0) 18%),
        radial-gradient(circle at 82% 74%, rgba(96, 165, 250, 0.1) 0%, rgba(96, 165, 250, 0) 20%),
        linear-gradient(180deg, rgba(15, 23, 42, 0.03) 0%, rgba(15, 23, 42, 0) 140px),
        radial-gradient(circle, rgba(15, 23, 42, 0.04) 1px, transparent 1.6px);
    background-size: auto, auto, auto, auto, auto, 18px 18px;
    background-position: center, center, center, center, center, 0 0;
    pointer-events: none;
}

#resultados,
#depoimentos,
#experts,
#faq,
#cta {
    position: relative;
}

#resultados,
#depoimentos,
#experts,
#faq {
    padding: 96px 0;
}

#container-secoes .limite {
    position: relative;
    z-index: 1;
}

.cabecalho-resultados {
    max-width: 760px;
    margin: 0 auto;
}

.cabecalho-resultados p {
    color: rgba(15, 23, 42, 0.7);
}

.grade-resultados {
    margin-top: 52px;
}

.item-dado {
    padding: 28px 18px 0;
    border-top: 1px solid rgba(15, 23, 42, 0.12);
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.item-dado:hover {
    transform: translateY(-4px);
    border-color: rgba(37, 99, 235, 0.55);
}

.item-dado strong,
.item-dado span,
.item-dado p {
    display: block;
}

.item-dado strong {
    margin-bottom: 10px;
    color: var(--cor2);
    font-size: clamp(4.2rem, 7vw, 5.8rem);
    line-height: 0.9;
    letter-spacing: -0.03em;
    font-family: "Barlow Condensed", sans-serif;
}

.item-dado span {
    margin-bottom: 12px;
    color: var(--cor1);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.item-dado p {
    color: rgba(15, 23, 42, 0.68);
    max-width: 240px;
    margin: 0 auto;
}

.acao-resultados .btn {
    min-width: 240px;
}

.cabecalho-depoimentos {
    max-width: 760px;
    margin: 0 auto;
}

.cabecalho-depoimentos p {
    color: rgba(15, 23, 42, 0.7);
}

.grade-depoimentos {
    margin-top: 40px;
}

.card-depoimento {
    position: relative;
    min-height: 360px;
    padding: 22px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, #ffffff 100%);
    overflow: hidden;
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.card-depoimento::before,
.card-depoimento::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

.card-depoimento::after {
    right: 18px;
    bottom: 18px;
    width: 72px;
    height: 72px;
    border-right: 1px solid rgba(37, 99, 235, 0.16);
    border-bottom: 1px solid rgba(37, 99, 235, 0.16);
}

.card-depoimento:hover {
    transform: translateY(-6px);
    border-color: rgba(37, 99, 235, 0.42);
}

.topo-avaliacao,
.autor-depoimento {
    position: relative;
    z-index: 1;
}

.estrelas-avaliacao svg {
    width: 14px;
    height: 14px;
    stroke: var(--cor2);
    fill: var(--cor2);
}

.nota-avaliacao {
    color: var(--cor1);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.autor-depoimento {
    margin-top: 18px;
}

.autor-depoimento strong,
.origem-depoimento {
    display: block;
}

.autor-depoimento strong {
    margin-bottom: 6px;
    color: var(--cor1);
    font-size: 1.2rem;
    line-height: 1;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    font-family: "Barlow Condensed", sans-serif;
}

.origem-depoimento {
    color: rgba(15, 23, 42, 0.56);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.marca-depoimento {
    position: absolute;
    top: 44px;
    right: 18px;
    color: rgba(15, 23, 42, 0.06);
    font-size: 8rem;
    line-height: 1;
    font-family: "Barlow Condensed", sans-serif;
    pointer-events: none;
}

.texto-depoimento {
    position: relative;
    z-index: 1;
    margin-top: 26px;
    padding-top: 20px;
    border-top: 1px solid rgba(15, 23, 42, 0.1);
    color: rgba(15, 23, 42, 0.76);
    min-height: 220px;
}

#experts {
    padding-bottom: 112px;
}

.cabecalho-experts {
    max-width: 820px;
    margin: 0 auto;
}

.cabecalho-experts p {
    color: rgba(15, 23, 42, 0.7);
}

.grade-experts {
    margin-top: 44px;
    align-items: stretch;
}

.card-expert {
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: rgba(255, 255, 255, 0.96);
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.card-expert:hover {
    transform: translateY(-6px);
    border-color: rgba(37, 99, 235, 0.42);
}

.midia-expert {
    position: relative;
    aspect-ratio: 1 / 1.04;
    overflow: hidden;
    background: linear-gradient(180deg, #dbe5f1 0%, #f8fafc 100%);
}

.midia-expert::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(15, 23, 42, 0.06) 0%, rgba(15, 23, 42, 0) 36%, rgba(15, 23, 42, 0.16) 100%);
    pointer-events: none;
}

.foto-expert {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.8) contrast(1.04);
}

.foto-expert-2 {
    object-position: center 18%;
    filter: saturate(0.72) contrast(1.02) brightness(0.98);
}

.foto-expert-3 {
    object-position: center 24%;
    filter: saturate(0.66) contrast(1.08);
}

.foto-expert-4 {
    object-position: center 12%;
    filter: saturate(0.74) contrast(1.06) brightness(0.96);
}

.conteudo-expert {
    padding: 22px 22px 26px;
}

.nome-expert,
.cargo-expert {
    display: block;
}

.nome-expert {
    color: var(--cor1);
    margin: 0;
    font-size: 1.56rem;
    line-height: 0.95;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    font-family: "Barlow Condensed", sans-serif;
}

.cargo-expert {
    margin-top: 8px;
    color: var(--cor2);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.texto-expert {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(15, 23, 42, 0.1);
    color: rgba(15, 23, 42, 0.76);
}

#faq {
    padding-bottom: 120px;
}

.cabecalho-faq {
    max-width: 780px;
    margin: 0 auto;
}

.cabecalho-faq p {
    color: rgba(15, 23, 42, 0.7);
}

.lista-faq {
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    gap: 18px;
}

.item-faq {
    border: 1px solid rgba(15, 23, 42, 0.1);
    background: rgba(255, 255, 255, 0.94);
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.item-faq:hover {
    transform: translateY(-2px);
    border-color: rgba(37, 99, 235, 0.28);
}

.item-faq.ativa {
    border-color: rgba(37, 99, 235, 0.36);
}

.pergunta-faq {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 28px 32px;
    border: 0;
    background: transparent;
    color: var(--cor1);
    text-align: left;
}

.titulo-faq {
    color: var(--cor1);
    font-size: clamp(1.32rem, 2vw, 1.7rem);
    line-height: 1;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    font-family: "Barlow Condensed", sans-serif;
}

.icone-faq {
    position: relative;
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
}

.icone-faq::before,
.icone-faq::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 24px;
    height: 2px;
    background: var(--cor1);
    transform: translate(-50%, -50%);
    transition: transform 0.25s ease, background 0.25s ease;
}

.icone-faq::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.item-faq.ativa .icone-faq::before {
    background: var(--cor2);
    transform: translate(-50%, -50%) rotate(45deg);
}

.item-faq.ativa .icone-faq::after {
    background: var(--cor2);
    transform: translate(-50%, -50%) rotate(-45deg);
}

.resposta-faq {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.28s ease, border-color 0.28s ease;
    border-top: 1px solid transparent;
}

.item-faq.ativa .resposta-faq {
    grid-template-rows: 1fr;
    /*border-top-color: rgba(15, 23, 42, 0.1);*/
}

.texto-faq {
    min-height: 0;
    overflow: hidden;
    padding: 0 32px 0;
    color: rgba(15, 23, 42, 0.76);
}

.item-faq.ativa .texto-faq {
    padding-bottom: 30px;
}

#cta {
    padding: 0 0 120px;
}

.bloco-cta {
    max-width: 860px;
    margin: 0 auto;
    padding: 88px 0 0;
}

.bloco-cta .badge {
    margin-bottom: 16px;
}

.titulo-cta {
    margin: 0 auto;
    color: var(--cor1);
    font-size: clamp(3rem, 4.5vw, 5rem);
}

.descricao-cta {
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(15, 23, 42, 0.7);
    font-size: 1.12rem;
}

.acao-cta .btn {
    min-width: 260px;
}

#rodape {
    position: relative;
    padding: 48px 0 32px;
    background: #151518;
    background-size: auto, auto, 18px 18px, auto;
    background-position: center, center, 0 0, center;
    overflow: hidden;
}

#rodape::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0) 120px);
    pointer-events: none;
}

#rodape .limite {
    position: relative;
    z-index: 1;
}

.rodape-topo {
    align-items: start;
}

.coluna-rodape {
    min-width: 0;
}

.coluna-marca-rodape {
    padding-right: 20px;
}

.marca-rodape {
    width: fit-content;
}

.marca-rodape img {
    width: 56px;
    height: 56px;
    display: block;
    flex: 0 0 56px;
}

.identidade-rodape strong,
.identidade-rodape span {
    display: block;
}

.identidade-rodape strong {
    color: var(--branco);
    font-size: 1.5rem;
    line-height: 1;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-family: "Barlow Condensed", sans-serif;
}

.identidade-rodape span {
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.titulo-rodape {
    display: block;
    color: var(--cor2);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.lista-links-rodape {
    align-items: flex-start;
}

.link-rodape {
    position: relative;
    width: fit-content;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.95rem;
    transition: color 0.25s ease;
}

.link-rodape::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}

.link-rodape:hover {
    color: var(--branco);
}

.link-rodape:hover::after {
    transform: scaleX(1);
}

.lista-sociais-rodape {
    align-items: center;
}

.social-rodape {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.03);
    color: var(--branco);
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.social-rodape:hover {
    transform: translateY(-3px);
    border-color: rgba(37, 99, 235, 0.7);
    background: rgba(37, 99, 235, 0.16);
}

.social-rodape img {
    width: 24px;
    height: 24px;
    display: block;
    object-fit: contain;
}

.faixa-rodape {
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.link-rodape-topo {
    color: var(--cor2);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.pagina-legal {
    min-height: 100vh;
    background:
        radial-gradient(circle at 18% 14%, rgba(37, 99, 235, 0.1) 0%, rgba(37, 99, 235, 0) 22%),
        linear-gradient(180deg, #edf2f8 0%, #ffffff 100%);
}

#legal {
    padding: 48px 0 72px;
}

.caixa-legal {
    width: 100%;
    padding: 32px;
    border: 1px solid rgba(15, 23, 42, 0.1);
    background: rgba(255, 255, 255, 0.92);
}

.topo-legal {
    width: 100%;
}

.voltar-legal {
    position: relative;
    width: fit-content;
    color: var(--cor1);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.voltar-legal::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 1px;
    background: currentColor;
}

.cabecalho-legal h1 {
    color: var(--cor1);
}

.corpo-legal {
    display: grid;
    gap: 0;
}

.bloco-legal {
    padding: 24px 0;
    border-top: 1px solid rgba(15, 23, 42, 0.1);
}

.titulo-bloco-legal {
    display: block;
    color: var(--cor1);
    font-size: 1.2rem;
    line-height: 1;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-family: "Barlow Condensed", sans-serif;
}

.rodape-legal {
    width: 100%;
    padding-top: 24px;
    border-top: 1px solid rgba(15, 23, 42, 0.1);
}

@media (max-width: 1100px) {
    .menu-site {
        flex-wrap: wrap;
    }

    .links-menu {
        width: 100%;
        order: 3;
        justify-content: flex-start;
        overflow-x: auto;
        padding-top: 12px;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
    }

    #hero-conteudo,
    .conteudo-programa,
    .conteudo-app-grid {
        grid-template-columns: 1fr;
    }

    .grade-resultados {
        grid-template-columns: 1fr 1fr;
    }

    .grade-depoimentos {
        grid-template-columns: 1fr 1fr;
    }

    .grade-experts {
        grid-template-columns: 1fr 1fr;
    }

    .rodape-topo {
        grid-template-columns: 1fr 1fr;
    }

    #hero {
        min-height: auto;
    }

    .quadro-programa {
        min-height: 500px;
    }

    .conteudo-app-texto {
        max-width: none;
    }

    .conteudo-app-texto h2,
    .conteudo-app-texto > p {
        max-width: none;
    }
}

@media (max-width: 760px) {
    .barra-app-mobile {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        display: block;
        padding: 0px 0px calc(0px + env(safe-area-inset-bottom));
        opacity: 0;
        pointer-events: none;
        transform: translateY(calc(100% + 16px));
        transition: opacity 0.25s ease, transform 0.25s ease;
        z-index: 45;
    }

    .barra-app-mobile.ativa {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .barra-app-conteudo {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        padding: 12px 14px;
        border: 1px solid rgba(15, 23, 42, 0.12);
        background: rgba(255, 255, 255, 0.98);
        box-shadow: 0 18px 40px rgba(2, 6, 23, 0.18);
    }

    .texto-barra-app {
        min-width: 0;
        flex: 1;
    }

    .titulo-barra-app {
        display: block;
        color: var(--cor1);
        font-size: 1.1rem;
        line-height: 1;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        font-family: "Barlow Condensed", sans-serif;
    }

    .descricao-barra-app {
        margin-top: 4px;
        color: rgba(15, 23, 42, 0.68);
        font-size: 0.76rem;
        line-height: 1.3;
    }

    .botao-barra-app {
        flex: 0 0 auto;
        width: min(44vw, 170px);
        padding: 0;
        border: 0;
        background: transparent;
    }

    .botao-barra-app img {
        display: block;
        width: 100%;
    }

    #barra-menu {
        margin-bottom: -126px;
        padding-top: 12px;
    }

    .menu-site {
        padding: 12px 0;
        gap: 12px;
    }

    .marca-menu img {
        width: 42px;
        height: 42px;
        flex-basis: 42px;
    }

    .identidade-menu strong {
        font-size: 1.2rem;
    }

    .identidade-menu span {
        display: none;
    }

    .links-menu {
        display: none;
    }

    .links-menu::-webkit-scrollbar {
        display: none;
    }

    .item-menu {
        padding: 0.75rem 0.9rem;
        font-size: 0.74rem;
        white-space: nowrap;
    }

    .btn-menu {
        width: fit-content;
        min-width: 0;
        padding-left: 1rem;
        padding-right: 1rem;
        font-size: 0.8rem;
    }

    .modal-lojas {
        padding: 16px;
    }

    .janela-modal-lojas {
        padding: 24px 20px;
    }

    .titulo-modal-lojas,
    .texto-modal-lojas {
        max-width: none;
    }

    .lista-lojas {
        gap: 12px;
    }

    .limite {
        padding: 0 20px;
    }

    #hero-conteudo {
        padding-top: 170px;
        padding-bottom: 80px;
    }

    #hero-indicadores {
        grid-template-columns: 1fr;
    }

    .hero-acoes {
        flex-direction: column;
        align-items: flex-start;
    }

    #choose-program {
        padding: 72px 0;
    }

    .cabecalho-programa {
        margin-bottom: 24px;
    }

    .abas-programa {
        grid-template-columns: 1fr 1fr;
    }

    .aba-programa {
        font-size: 0.8rem;
        padding: 14px 10px;
    }

    .conteudo-programa {
        padding-top: 24px;
        gap: 24px;
    }

    .quadro-programa {
        min-height: 380px;
    }

    .acao-programa {
        width: 100%;
        min-width: 0;
    }

    #conteudo-app {
        padding: 72px 0;
    }

    #resultados {
        padding: 72px 0;
    }

    #depoimentos {
        padding: 72px 0;
    }

    #experts {
        padding: 72px 0;
    }

    #faq {
        padding: 72px 0;
    }

    #cta {
        padding: 0 0 72px;
    }

    .conteudo-app-grid {
        gap: 32px;
    }

    #conteudo-app::before {
        top: -140px;
        left: -120px;
        width: 320px;
        height: 320px;
    }

    #conteudo-app::after {
        right: -160px;
        bottom: -180px;
        width: 360px;
        height: 360px;
    }

    .conteudo-app-texto h2 {
        font-size: clamp(3rem, 18vw, 4.4rem);
    }

    .conteudo-app-lista {
        grid-template-columns: 1fr;
    }

    .acao-conteudo-app .btn {
        width: 100%;
        min-width: 0;
    }

    .moldura-app {
        padding: 12px 10px;
    }

    .conteudo-app-visual::after {
        inset: 20% 10%;
    }

    .faixa-app-esquerda {
        left: 0;
    }

    .faixa-app-direita {
        right: 0;
    }

    .grade-resultados {
        margin-top: 36px;
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .grade-depoimentos {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .grade-depoimentos {
        margin-top: 32px;
    }

    .grade-experts {
        margin-top: 32px;
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .card-depoimento {
        min-height: auto;
        padding: 20px;
    }

    .texto-depoimento {
        min-height: 0;
    }

    .texto-expert {
        min-height: 0;
    }

    .item-dado {
        padding-top: 22px;
    }

    .item-dado p {
        max-width: none;
    }

    .acao-resultados .btn {
        width: 100%;
    }

    .cabecalho-experts {
        max-width: none;
    }

    .conteudo-expert {
        padding: 20px;
    }

    .lista-faq {
        margin-top: 32px;
    }

    .pergunta-faq {
        padding: 22px 20px;
        gap: 16px;
    }

    .titulo-faq {
        font-size: 1.16rem;
    }

    .texto-faq {
        padding: 0 20px 0;
    }

    .item-faq.ativa .texto-faq {
        padding-bottom: 22px;
    }

    .bloco-cta {
        padding: 56px 0 0;
    }

    .titulo-cta {
        font-size: clamp(2.5rem, 14vw, 3.8rem);
    }

    .descricao-cta {
        font-size: 1rem;
    }

    .acao-cta .btn {
        width: 100%;
        min-width: 0;
    }

    #rodape {
        padding-top: 40px;
        padding-bottom: calc(120px + env(safe-area-inset-bottom));
    }

    .rodape-topo {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .coluna-marca-rodape {
        padding-right: 0;
    }

    .faixa-rodape {
        flex-direction: column;
        align-items: flex-start;
    }

    #legal {
        padding: 32px 0 56px;
    }

    .caixa-legal {
        padding: 20px;
    }

    .cabecalho-legal h1 {
        font-size: clamp(2.4rem, 14vw, 3.6rem);
    }

    .bloco-legal {
        padding: 20px 0;
    }
}
