/* === Inter Tight local (variable) === */
@font-face {
    font-family: 'Inter Tight';
    src: url('../fonts/InterTight-VariableFont.woff2') format('woff2-variations');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter Tight';
    src: url('../fonts/InterTight-Italic-VariableFont.woff2') format('woff2-variations');
    font-weight: 100 900;
    font-style: italic;
    font-display: swap;
}

/* Força site inteiro a usar Inter Tight */
html,
body {
    font-family: 'Inter Tight', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif !important;
}

/* ===== Reset & base ===== */
*,
*::before,
*::after {
    box-sizing: border-box
}

html:focus-within {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.5;
    background: var(--bg);
    color: var(--ink)
}

img {
    max-width: 100%;
    display: block
}

a {
    text-decoration: none;
    color: inherit
}

/* ===== Paleta ===== */
:root {
    --bg: #16273f;
    /* azul do fundo */
    --ink: #e9edf2;
    /* texto padrão */
    --muted: #b9c7d3;
    /* texto suave */
    --teal: #49c5c0;
    /* título */
    --orange: #d57329;
    /* CTA e nomes */
    --chip: #192733;
    /* chip fundo */
    --chip-border: #233847;
    /* chip borda */

    --wrap: 1250px;
    --radius: 22px;
}

/* ===== Container ===== */
.wrap {
    max-width: var(--wrap);
    margin: 0 auto;
    padding: 0 24px
}

/* ===== HERO ===== */
.hero {
    padding: 34px 0 52px;
    background: var(--bg);
    position: relative;
    overflow: hidden
}

/* LOGO topo */
.brand {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 36px 0 56px;
    /* topo 36px, baixo 56px */
}

.brand img {
    height: 200px;
    width: auto;
    filter: drop-shadow(0 8px 26px rgba(0, 0, 0, .35));
}

@media (max-width:1100px) {
    .brand img {
        height: 120px
    }
}

@media (max-width:720px) {
    .brand img {
        height: 96px
    }
}

/* GRID principal */
.hero__grid {
    display: grid;
    gap: 44px;
    align-items: center;
    grid-template-columns: 1.1fr 0.9fr
}

@media (max-width:980px) {
    .hero__grid {
        grid-template-columns: 1fr
    }
}

/* ESQUERDA */
.hero__copy h1 {
    margin: .3rem 0 1.1rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--teal);
    letter-spacing: .2px;
    font-size: clamp(1.7rem, 1.8vw + 1.2rem, 2.6rem);
    max-width: 600px;
}

.hero__copy .lead {
    margin: 0 0 1.2rem;
    color: var(--ink);
    font-size: clamp(1rem, 1.1vw + .6rem, 1.2rem);
    /* igual ao split */
    line-height: 1.45;
}

.meta {
    display: flex;
    flex-wrap: wrap;
    gap: .8rem 1rem;
    margin: .6rem 0 1.6rem
}

.chip {
    padding: .52rem .9rem;
    border-radius: 999px;
    background: var(--chip);
    border: 1px solid var(--chip-border);
    color: #d7e0e8;
    font-weight: 700
}

/* ===== DIREITA (layout antigo - mantido caso precise) ===== */
.people {
    display: flex;
    align-items: flex-end;
    justify-content: center
}

.people__stage {
    position: relative;
    width: min(560px, 100%)
}

.mentor {
    position: relative;
    z-index: 2;
    text-align: center;
    margin: 0
}

.mentor img {
    width: min(420px, 80%);
    margin: 0 auto;
    filter: drop-shadow(0 14px 30px rgba(0, 0, 0, .55))
}

.mentor .name {
    position: absolute;
    right: 6%;
    top: 8%;
    font-weight: 800;
    color: var(--orange);
    text-shadow: 0 2px 8px rgba(0, 0, 0, .6);
    font-size: clamp(1rem, 1.2vw + .5rem, 1.3rem)
}

.crew {
    display: flex;
    gap: 18px;
    justify-content: center;
    align-items: flex-end;
    margin-top: -22px
}

.crew figure {
    margin: 0;
    text-align: center
}

.crew img {
    width: 150px;
    filter: drop-shadow(0 12px 24px rgba(0, 0, 0, .5))
}

.crew figcaption {
    margin-top: 6px;
    font-size: .85rem;
    color: #f1b874;
    font-weight: 700
}

@media (max-width:1100px) {
    .mentor img {
        width: min(360px, 85%)
    }

    .crew img {
        width: 120px
    }
}

@media (max-width:980px) {
    .people {
        margin-top: 10px
    }

    .mentor .name {
        position: static;
        display: block;
        margin: .25rem 0 0;
        text-align: center
    }
}

/* ===== DIREITA (imagem única com labels) ===== */
.people--single {
    position: relative;
    display: block;
    max-width: min(700px, 100%);
    margin: 0 auto
}

.people--single>img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 12px 26px rgba(0, 0, 0, .45))
}

/* ===== MARQUEE / TICKER (contínuo, sem salto) ===== */
.ticker {
    background: #c6d600;
    /* ajuste fino da cor se quiser: #c8d80a */
    color: #1a2530;
    margin: 40px 0;
    overflow: hidden;
    white-space: nowrap;
}

.ticker__belt {
    display: flex;
    flex-wrap: nowrap;
    width: fit-content;
    animation: ticker-move 20s linear infinite;
    will-change: transform;
}

.ticker__group {
    display: flex;
    flex: 0 0 auto;
    gap: 2rem;
    align-items: center;
    font-weight: 800;
    font-size: 1.1rem;
    padding: 8px 0;
}

/* espaço entre um grupo e o próximo (igual ao gap) */
.ticker__group::after {
    content: "";
    display: inline-block;
    width: 2rem;
    flex: 0 0 2rem;
}

@keyframes ticker-move {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}


@media (prefers-reduced-motion:reduce) {
    .ticker__belt {
        animation: none
    }
}

/* ===== Seção texto + imagem ===== */
.section {
    padding: 64px 0;
}

.section--split {
    background: var(--bg);
    /* mesmo fundo do herói */
}

.split {
    display: grid;
    gap: 36px;
    align-items: center;
    grid-template-columns: 1.05fr .95fr;
    /* texto maior que mídia */
}

@media (max-width: 980px) {
    .section {
        padding: 42px 0;
    }

    .split {
        grid-template-columns: 1fr;
    }
}

/* Tipografia da seção */
.split__copy h2 {
    margin: 0 0 20px;
    font-weight: 800;
    line-height: 1.25;
    /* ajusta altura da linha */
    color: #eaf0f5;
    font-size: clamp(1.4rem, 1.3vw + 1rem, 2rem);
    /* menor que antes */
    letter-spacing: .2px;
    max-width: 520px;
    /* limita largura p/ não estourar */
}

.split__copy .muted {
    color: #cbd6df;
    font-size: clamp(1rem, 1.1vw + .55rem, 1.2rem);
    margin: 0 0 22px;
    line-height: 1.45;
    /* melhora leitura */
}

.split__copy .muted strong {
    color: #ffffff;
    font-weight: 700;
}

.split__copy .emphasis {
    margin: 22px 0 0;
    color: #eaf0f5;
    font-weight: 800;
    font-size: clamp(1.4rem, 1.6vw + 1rem, 2.2rem);
    line-height: 1.3;
}


/* Mídia à direita (imagem ou vídeo) */
.split__media {
    margin: 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .35);
}

/* Imagens */
.split__media img {
    display: block;
    width: 100%;
    height: auto;
}

/* Vídeo responsivo */
.split__media .video-embed {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    /* browsers modernos */
    background: #0a0a0a;
    overflow: hidden;
}

.split__media .video-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

@supports not (aspect-ratio: 16 / 9) {
    .split__media .video-embed {
        padding-top: 56.25%;
        /* fallback */
        height: 0;
    }

    .split__media .video-embed iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
}

/* ===== Seção: benefícios (título + grid) ===== */
.section--benefits {
    background: var(--bg);
    padding: 48px 0 64px;
}

.benefits__title {
    text-align: center;
    margin: 0 0 28px;
    color: var(--teal);
    font-weight: 800;
    letter-spacing: .2px;
    line-height: 1.25;
    font-size: clamp(1.3rem, 1vw + 1rem, 1.8rem);
    /* MANTIDO maior */
}

/* === GRID com cards === */
.benefits__grid {
    display: grid;
    gap: 28px 32px;
    grid-template-columns: repeat(3, 340px);
    /* cards um pouco maiores */
    justify-content: center;
    margin: 10px auto 0;
}

@media (max-width: 1200px) {
    .benefits__grid {
        grid-template-columns: repeat(2, 340px);
    }
}

@media (max-width: 760px) {
    .benefits__grid {
        grid-template-columns: 1fr;
    }
}

/* === CARD ajustado === */
.benefit {
    width: 340px;
    /* maior que 300px, menor que 360px */
    height: 140px;
    /* intermediário */
    background: #63c9cf;
    color: #fff;
    border-radius: 22px;
    padding: 20px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 700;
    line-height: 1.35;
    font-size: clamp(1rem, 0.6vw + .9rem, 1.15rem);
    /* texto mais legível */
    box-shadow: 0 10px 22px rgba(0, 0, 0, .2);
    transition: transform .15s ease, box-shadow .15s ease;
}

.benefit:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, .25);
}

/* Container do botão */
.benefits__cta {
    text-align: center;
    margin-top: 40px;
}

/* Botão estilizado */
.cta-button {
    display: inline-block;
    background: #a4391f;
    /* cor do print */
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1rem;
    /* menor que antes */
    padding: 12px 36px;
    /* reduzido */
    border-radius: 40px;
    border: 2px solid #fff;
    /* mais fino */
    text-decoration: none;
    transition: all 0.2s ease;
}

.cta-button:hover {
    background: #872f19;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, .25);
}

.section--why {
    background: var(--bg);
    padding: 44px 0 56px;
}

.why__grid {
    display: grid;
    grid-template-columns: 0.96fr 1.04fr;
    gap: 24px 44px;
    align-items: stretch;
    /* 🔧 estica os dois lados até a mesma altura */
}

/* ESQUERDA */
.why__left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* 🔧 centraliza verticalmente */
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
    height: 100%;
    /* 🔧 ocupa a altura total do grid */
}

.why__title {
    margin: 0 0 12px;
    color: var(--teal);
    font-weight: 800;
    line-height: 1.12;
    font-size: clamp(1.28rem, 0.95vw + 1.02rem, 1.9rem);
}

.why__title span {
    display: block;
}

.why__lead {
    margin: 6px 0 14px;
    color: var(--ink);
    font-weight: 600;
    line-height: 1.24;
    font-size: clamp(.98rem, 0.52vw + .88rem, 1.16rem);
}

.why__line {
    margin: 4px 0;
    color: var(--ink);
    font-weight: 600;
    line-height: 1.24;
    font-size: clamp(.98rem, 0.54vw + .88rem, 1.18rem);
}

.why__line .accent {
    color: var(--teal);
    font-weight: 800;
}

.why__cta {
    margin-top: 18px;
}

.section--why .cta-button {
    font-size: .95rem;
    padding: 10px 32px;
    border-radius: 38px;
}

/* DIREITA */
.why__right {
    max-width: 980px;
}

.why__item {
    margin: 0 0 24px;
}

.why__item h3 {
    margin: 0 0 6px;
    color: #e58b3e;
    font-weight: 800;
    line-height: 1.14;
    font-size: clamp(1.02rem, 0.78vw + .92rem, 1.38rem);
}

.why__item p {
    margin: 0;
    color: var(--ink);
    font-weight: 600;
    line-height: 1.30;
    font-size: clamp(.96rem, 0.5vw + .86rem, 1.10rem);
    max-width: 60ch;
}

/* Responsivo */
@media (max-width: 920px) {
    .why__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .why__left {
        height: auto;
    }

    .why__right {
        max-width: none;
    }
}

/* ===== Seção: Acessos ===== */
.section--access {
    background: var(--bg);
    padding: 56px 0 64px;
}

.access__title {
    text-align: center;
    margin: 0 0 24px;
    color: var(--teal);
    font-weight: 800;
    line-height: 1.2;
    font-size: clamp(1.25rem, 1vw + 1rem, 1.8rem);
}

.access__grid {
    display: grid;
    gap: 22px;
    grid-template-columns: repeat(4, 1fr);
    align-items: stretch;
}

.access__card {
    background: #6a7432;
    /* oliva do print */
    border-radius: 18px;
    padding: 26px 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 230px;
    /* mesmo tamanho para todas */
    box-shadow: 0 10px 24px rgba(0, 0, 0, .25);
}

.access__card p {
    margin: 0;
    color: #fff;
    font-weight: 800;
    line-height: 1.28;
    font-size: clamp(1rem, .55vw + .9rem, 1.18rem);
}

.access__cta {
    text-align: center;
    margin-top: 60px;
}

/* Responsivo */
@media (max-width: 1200px) {
    .access__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .access__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .access__grid {
        grid-template-columns: 1fr;
    }
}

/* =========================
   Seção: Speakers / Mentor
   ========================= */
.section--speakers {
    background: var(--bg);
    padding: 56px 0 64px;
}

.speakers__title {
    margin: 0 0 10px;
    text-align: center;
    color: var(--teal);
    font-weight: 800;
    line-height: 1.25;
    font-size: clamp(1.3rem, 1vw + 1rem, 1.9rem);
}

.speakers__subtitle {
    margin: 0 auto 14px;
    text-align: center;
    color: var(--ink);
    font-weight: 600;
    line-height: 1.35;
    font-size: clamp(1rem, .55vw + .9rem, 1.12rem);
    max-width: 980px;
}

.speakers__tag {
    margin: 8px 0 22px;
    text-align: center;
    color: #dfe7ee;
    letter-spacing: .06em;
    font-weight: 400;
    font-size: 1rem;
}

.mentor {
    display: grid;
    justify-items: center;
    gap: 10px;
    margin-bottom: 28px;
}

.mentor__photo {
    width: clamp(200px, 22vw, 280px);
    aspect-ratio: 1 / 1;
    border-radius: 999px;
    position: relative;
    display: grid;
    place-items: center;
    /* aro estilizado ao fundo (sutil) */

    box-shadow: 0 16px 40px rgba(0, 0, 0, .35);
    overflow: hidden;
}

.mentor__photo img {
    width: 86%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 24px rgba(0, 0, 0, .45));
}

.mentor__name {
    margin: 8px 0 4px;
    color: #f3b35f;
    font-weight: 800;
    font-size: clamp(1.05rem, .7vw + 1rem, 1.35rem);
}

.mentor__bio {
    margin: 0;
    text-align: center;
    color: var(--ink);
    font-weight: 600;
    line-height: 1.45;
    font-size: clamp(.98rem, .55vw + .86rem, 1.08rem);
    max-width: 1000px;
}

/* convidados */
.speakers__gridTitle {
    margin: 28px 0 18px;
    text-align: center;
    color: var(--ink);
    opacity: .9;
    font-weight: 400;
    letter-spacing: .02em;
    font-size: clamp(.95rem, .5vw + .9rem, 1.05rem);
}

.guests {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px 28px;
    align-items: start;
}

.guest {
    text-align: center;
    padding: 6px 10px 0;
}

.guest__avatar {
    width: clamp(140px, 14vw, 190px);
    aspect-ratio: 1/1;
    border-radius: 999px;
    margin: 0 auto 8px;
    position: relative;
    display: grid;
    place-items: center;
    box-shadow: 0 10px 28px rgba(0, 0, 0, .35);
    overflow: hidden;
}

.guest__avatar img {
    width: 86%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, .4));
}

.guest__name {
    margin: 6px 0 6px;
    color: #f3b35f;
    font-weight: 800;
    font-size: clamp(1rem, .6vw + .95rem, 1.2rem);
}

.guest__bio {
    margin: 0;
    color: var(--ink);
    font-weight: 600;
    line-height: 1.4;
    font-size: clamp(.95rem, .5vw + .85rem, 1.05rem);
    max-width: 36ch;
    margin-inline: auto;
}

.speakers__cta {
    text-align: center;
    margin-top: 70px;
}

.section--speakers .cta-button {
    /* usa a MESMA classe global; só um “empurrão” de respiro */
    margin-top: 4px;
}

/* responsivo */
@media (max-width: 980px) {
    .guests {
        grid-template-columns: 1fr;
        gap: 16px 0;
    }
}

/* =========================
   Seção: Por que participar
   ========================= */
.section--reasons {
    background: var(--bg);
    padding: 56px 0 64px;
}

.section--reasons .wrap {
    max-width: 1180px;
    /* controla a largura como no PDF */
}

/* Título e subtítulo */
.reasons__title {
    margin: 0 0 6px;
    text-align: center;
    color: var(--teal);
    font-weight: 800;
    line-height: 1.15;
    font-size: clamp(1.4rem, 1.2vw + 1.1rem, 2.1rem);
}

.reasons__subtitle {
    margin: 0 0 28px;
    text-align: center;
    color: var(--ink);
    font-weight: 600;
    line-height: 1.25;
    font-size: clamp(1rem, .6vw + .9rem, 1.2rem);
}

/* Grid dos motivos (2 colunas no desktop) */
.reasons__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 38px 64px;
    /* linha x coluna */
    align-items: start;
    justify-items: center;
    /* centraliza cada card */
    margin-top: 6px;
}

/* Card */
.reason {
    text-align: center;
    display: flex;
    flex-direction: column;
    /* ícone em cima, texto embaixo */
    align-items: center;
    max-width: 560px;
}

/* Ícone em cima */
.reason__icon {
    width: clamp(56px, 5.4vw, 88px);
    height: auto;
    margin-bottom: 12px;
    display: block;
}

/* Título laranja do card */
.reason__heading {
    margin: 4px 0 6px;
    line-height: 1.18;
    font-size: clamp(1.05rem, .9vw + 1rem, 1.5rem);
    font-weight: 800;
    color: #e58b3e;
    /* laranja do PDF */
}

.reason__heading span {
    color: #e58b3e;
}

/* Texto do card */
.reason__text p {
    margin: 0;
    color: var(--ink);
    font-weight: 600;
    line-height: 1.32;
    font-size: clamp(1rem, .6vw + .86rem, 1.18rem);
    max-width: 46ch;
    /* coluna confortável */
    margin-inline: auto;
}

/* CTA centralizado (usa a mesma classe cta-button) */
.reasons__cta {
    text-align: center;
    margin-top: 70px;
}

.section--reasons .cta-button {
    font-size: 1rem;
    padding: 12px 36px;
    border-radius: 40px;
}

/* Responsivo */
@media (max-width: 980px) {
    .reasons__grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

/* ===== Seção de Lotes / Preços (compacta) ===== */
.section--pricing {
    background: var(--bg);
    padding: 36px 0 48px;
    /* ↓ um pouco */
}

.pricing__title {
    margin: 0 0 20px;
    text-align: center;
    color: var(--teal);
    font-weight: 800;
    line-height: 1.15;
    font-size: clamp(1.15rem, 0.9vw + 0.9rem, 1.8rem);
    /* ↓ leve */
}

/* Grid */
.pricing__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    /* ↓ leve */
    align-items: stretch;
}

@media (max-width: 980px) {
    .pricing__grid {
        grid-template-columns: 1fr;
    }
}

/* Card base */
.price-card {
    background: #f0a64f;
    border-radius: 20px;
    /* ↓ leve */
    padding: 24px 22px;
    /* ↓ leve */
    text-align: center;
    color: #fff;
    box-shadow: 0 12px 28px rgba(0, 0, 0, .22);
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 250px;
    /* ↓ leve */
}

/* Títulos e textos do card */
.price-card__lot {
    margin: 0 0 6px;
    font-weight: 800;
    letter-spacing: .5px;
    font-size: clamp(0.95rem, 0.7vw + 0.85rem, 1.25rem);
}

.price-card__price {
    margin: 0 0 6px;
    font-weight: 800;
    font-size: clamp(1.25rem, 1vw + 1rem, 1.8rem);
}

.price-card__terms {
    margin: 0 0 10px;
    font-weight: 800;
    font-size: clamp(0.95rem, 0.6vw + 0.8rem, 1.1rem);
}

/* Badges */
.price-card__badge {
    margin: 2px 0 0;
    font-weight: 900;
    letter-spacing: .5px;
    font-size: clamp(0.9rem, 0.6vw + 0.85rem, 1.2rem);
    color: #6b1f0e;
}

.price-card__badge--alert {
    color: #7a2a15;
}

/* Botão dentro do card (mesma classe cta-button) */
.price-card__cta {
    margin: 14px auto 0;
    /* ↓ leve */
    display: inline-block;
    font-size: 0.95rem;
    /* ↓ leve */
    padding: 10px 28px;
    /* ↓ leve */
}

/* Destaque sutil para o card atual */
.price-card--current {
    transform: translateY(-1px);
}

.price-card--current:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 34px rgba(0, 0, 0, .26);
}

/* ===== FAQ ===== */
.section--faq {
    background: var(--bg);
    padding: 48px 0 56px;
    /* mesma cadência das outras seções */
}

.section--faq .wrap {
    max-width: 1100px;
    /* largura confortável para leitura central */
}

/* Título */
.faq__title {
    margin: 0 0 18px;
    text-align: center;
    color: var(--teal);
    font-weight: 800;
    line-height: 1.15;
    font-size: clamp(1.25rem, 1.05vw + 1rem, 1.9rem);
}

/* Blocos Q/A */
.faq__item {
    text-align: center;
    margin: 22px auto 26px;
}

/* Pergunta (laranja, bold, central) */
.faq__q {
    margin: 0 0 10px;
    color: #e58b3e;
    font-weight: 800;
    line-height: 1.18;
    letter-spacing: .2px;
    font-size: clamp(1.05rem, 0.9vw + 1rem, 1.6rem);
}

/* Resposta (central, largura controlada) */
.faq__a {
    margin: 0 auto;
    color: var(--ink);
    font-weight: 600;
    line-height: 1.35;
    font-size: clamp(1rem, 0.6vw + .9rem, 1.18rem);
    max-width: 85ch;
    /* deixa o parágrafo confortável */
}

/* Responsivo */
@media (max-width: 820px) {
    .faq__title {
        margin-bottom: 14px;
    }

    .faq__item {
        margin: 18px auto 22px;
    }

    .faq__a {
        max-width: 68ch;
    }
}

/* ===== Marcas / Rodapé visual ===== */
.section--brands {
    background: var(--bg);
    padding: 40px 0 46px;
}

.section--brands .wrap {
    max-width: 1000px;
    /* próximo ao layout do PDF */
}

/* Eyebrow (ORGANIZADO POR / APOIADO POR) */
.brands__eyebrow {
    margin: 0 0 12px;
    text-align: center;
    color: #cbd6df;
    font-weight: 700;
    letter-spacing: .08em;
    font-size: clamp(.75rem, .4vw + .65rem, .9rem);
}

/* Linha do organizador (escudo + wordmark) */
.brands__organizer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(14px, 3.5vw, 26px);
    margin: 0 auto 26px;
}

.brands__shield {
    height: clamp(72px, 9vw, 140px);
    width: auto;
}

.brands__wordmark {
    height: clamp(44px, 6.5vw, 96px);
    width: auto;
}

/* Apoiadores em fila */
.brands__supporters {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(18px, 4.2vw, 48px);
    margin: 6px auto 28px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.brands__supporters img {
    height: clamp(28px, 4.2vw, 64px);
    width: auto;
    display: block;
}

/* Bloco WhatsApp */
.brands__contact {
    text-align: center;
    margin: 10px 0 20px;
}

.brands__contact p {
    margin: 0 0 10px;
    color: var(--ink);
    font-weight: 700;
    letter-spacing: .02em;
    font-size: clamp(.9rem, .6vw + .75rem, 1.05rem);
}

.brands__whatsapp img {
    height: clamp(72px, 10vw, 140px);
    width: auto;
    display: inline-block;
    transition: transform .2s ease, filter .2s ease;
    filter: drop-shadow(0 10px 24px rgba(0, 0, 0, .35));
    margin-bottom: 50px;
}

.brands__whatsapp:hover img {
    transform: scale(1.03);
}

/* Copyright */
.brands__copy {
    margin: 20px 0 0;
    text-align: center;
    color: #cbd6df;
    font-weight: 700;
    letter-spacing: .06em;
    font-size: clamp(.78rem, .45vw + .68rem, .95rem);
}

/* Responsivo estreito */
@media (max-width: 680px) {
    .brands__organizer {
        flex-direction: column;
    }
}



/* ===== Seção Palestra ===== */
.palestra__content {
    max-width: 620px;
    color: var(--ink);
}

.palestra__title {
    margin: 0 0 18px;
    font-weight: 800;
    font-size: clamp(1.6rem, 1.8vw + 1.2rem, 2.4rem);
    line-height: 1.25;
    color: var(--teal);
}

.palestra__title span {
    color: var(--orange);
}

.palestra__subtitle {
    margin: 0 0 16px;
    font-weight: 700;
    font-size: clamp(1.1rem, 0.9vw + 1rem, 1.4rem);
    line-height: 1.35;
    color: var(--ink);
}

.palestra__subtitle em {
    font-style: italic;
    color: #fff;
}

.palestra__details {
    list-style: none;
    margin: 0 0 20px;
    padding: 0;
    display: grid;
    gap: 10px;
    font-weight: 600;
    line-height: 1.4;
    font-size: clamp(1rem, 0.8vw + .9rem, 1.15rem);
}

.palestra__details li strong {
    color: #fff;
}

.palestra__note {
    margin: 0 0 22px;
    font-weight: 600;
    color: var(--muted);
    line-height: 1.4;
    font-size: clamp(.95rem, 0.6vw + .9rem, 1.1rem);
}

.palestra__cta {
    margin-top: 16px;
}

/* Grid principal da seção palestra */
.palestra__grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    /* esquerda maior que direita */
    gap: 40px;
    align-items: start;
}

/* Caixinha de aviso */
.palestra__alert {
    background: #fff;
    color: #1d2b3a;
    border-left: 6px solid #e58b3e;
    /* destaque laranja */
    border-radius: 12px;
    padding: 18px 22px;
    margin: 22px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.palestra__alert h4 {
    margin: 0 0 8px;
    font-size: 1.1rem;
    font-weight: 800;
    color: #e58b3e;
}

.palestra__alert p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    font-weight: 500;
}


/* Responsivo: uma coluna só no mobile */
@media (max-width: 960px) {
    .palestra__grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}