:root {
  /* Cores base */
  --black: #000000;
  --white: #ffffff;
  --green-dark: #677e5b;
  --green: #7ad18a;
  --gray: #3d3d3d;

  /* Layout */
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 26px;

  /* Sombra */
  --shadow-lg: 0 30px 80px rgba(0, 0, 0, 0.45);
  --shadow-md: 0 18px 40px rgba(0, 0, 0, 0.25);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;

}


/* ==============================
   BOTÕES – BASE
============================== */

.btn--primary,
.btn--outline {
  transition: background 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease,
    color 0.25s ease;
}

.btn--primary:hover {
  background: #478360;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}


body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--black);
  color: var(--white);
}

/* Elementos básicos */
img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Container padrão */
.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.about .container {
  width: min(1120px, calc(100% - 24px));
  /* 12px de cada lado */
}


/* ==================================================
   UTILITIES
================================================== */

.small {
  font-size: 12px;
}

.center {
  display: flex;
  justify-content: center;
}

/* Use só quando o fundo for branco */
.text-gray {
  color: var(--gray);
}

/* Animação padrão de entrada */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms ease, transform 700ms ease;
  will-change: opacity, transform;
}

/* Quando entra na tela */
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Variante: entrar da esquerda/direita (opcional) */
.reveal.from-left {
  transform: translateX(-18px);
}

.reveal.from-right {
  transform: translateX(18px);
}

.reveal.from-left.is-visible,
.reveal.from-right.is-visible {
  transform: translateX(0);
}

/* Acessibilidade: se a pessoa preferir sem animação */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    transition: none;
    opacity: 1;
    transform: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .reveal.participantes {
    transition: none;
    opacity: 0;
    transform: none;
  }
}

.reveal.is-visible {
  transition-delay: var(--delay, 0ms);
}

/* ==================================================
   HERO
================================================== */

.hero {
  position: relative;
  padding: 64px 0 80px;
  overflow: visible;
}

.hero::after {
  content: "";
  position: absolute;

  top: -120px;
  right: -160px;

  width: 700px;
  height: 900px;

  background: radial-gradient(ellipse at top right,
      var(--green-dark) 25%,
      var(--green-dark) 0%,

      var(--gray) 55%,
      var(--black) 75%,

      transparent 80%);

  pointer-events: none;
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  /* grid-template-columns: 1fr auto;  */
  align-items: center;
  gap: 32px;
  /* gap: 40px; */
  z-index: 1;
}

.hero__card {
  position: relative;
  /* width: 640px; */
  background: var(--white);
  color: var(--black);
  border-radius: var(--radius-lg);
  padding: clamp(40px, 4vw, 72px);
  box-shadow: var(--shadow-lg);
  width: min(1120px, 100%);
  max-width: 1120px;
  padding-left: 88px;
  padding-right: clamp(180px, 22vw, 420px);
  z-index: 2;
}

.hero__title {
  margin: 20px 0 14px;
  text-align: left;
  font-size: clamp(34px, 3.6vw, 50px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 900;
}

.hero__title span {
  text-transform: uppercase;
}

/* Subtítulo */
.hero__subtitle {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 22px;
}

.hero__actions {
  display: flex;
  font-weight: 900;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Botão principal da hero */
.hero .btn--primary {
  background: var(--green);
  color: var(--black);
}

.hero .btn--primary:hover {
  background: #478360;
  /* verde um pouco mais claro */
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.hero .btn--primary {
  background: var(--green);
  color: var(--black);
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}


/* Imagem da hero */
.hero__media {
  justify-self: end;
  position: absolute;
  right: clamp(-60px, -6vw, -10px);
  bottom: 0;

  width: clamp(280px, 32vw, 480px);

  z-index: 3;
  pointer-events: none;
}

.hero__media img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 24px 36px rgba(0, 0, 0, 0.45));

  transform: translateY(100px);
}

/* linha: logo à esquerda + conteúdo central */
.hero__row {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 26px;
  align-items: start;
}

.hero__logoWrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__logo {
  width: 200px;
  height: auto;
}

.hero__content {
  text-align: center;
}

.hero__subtitle--caps {
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--gray);
}

.hero__date {
  margin: 0 0 26px;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.02em;
}

/* CTA central */

.hero__cta {
  padding: 14px 22px;
  border-radius: 999px;
  background: var(--green);
  color: var(--black);
  border: 2px solid var(--black);
  /* contorno do botão */
  font-size: 16px;
}

/* logo + título juntos */
.hero__header {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 26px;
}

/* logo */
.hero__logo {
  width: 190px;
  height: auto;
  flex-shrink: 0;
}

/* resto centralizado */
.hero__content {
  text-align: center;
}

@media (max-width: 780px) {
  .hero__media {
    position: relative;
    width: min(420px, 92%);
    right: auto;
    margin: 18px auto 0;
  }

  .hero__media img {
    transform: none;
  }
}

@media (max-width: 980px) {

  .hero {
    padding: 40px 0 56px;
  }

  .hero__card {
    width: 100%;
    max-width: none;
    padding-right: 26px;
    padding: 34px 26px;
  }

  .hero__header {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 16px;
    margin-bottom: 18px;
  }

  .hero__logo {
    width: 160px;
  }

  .hero__title {
    text-align: center;
    font-size: clamp(30px, 8vw, 40px);
    line-height: 1.05;
  }

  .hero__content {
    text-align: center;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__media {
    display: none;
  }

  /* exibe a foto em baixo
   .hero__media{
  display: block;
  position: relative;
  right: auto;
  bottom: auto;
  width: min(320px, 86%);
  margin: 18px auto 0;
} */
}

/* ==================================================
   ABOUT
================================================== */
.about {
  background: var(--black);
  color: var(--white);
  padding: 64px 0;
}

.about__header {
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin-bottom: 26px;
}

.about__title {
  margin: 0;
  font-size: clamp(34px, 4.2vw, 56px);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-top: 6px;
}

.about__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0.95;
}

.about__brandLogo {
  width: 58px;
  height: auto;
}

.about__brandText {
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
  font-size: 18px;
}

.about__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 34px;
  align-items: start;
}

.about__text {
  margin: 0 0 22px;
  font-size: clamp(18px, 2.1vw, 28px);
  line-height: 1.25;
}

.about__accent {
  color: var(--green);
  font-weight: 800;
}

.about .btn--primary {
  background: var(--green);
  color: var(--black);
  border: 2px solid var(--black);
  border-radius: 999px;
  padding: 16px 26px;
  font-weight: 900;
}

/* pills (cards fininhos da direita) */
.about__right {
  display: grid;
  gap: 14px;
}

.pill {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--gray);
  border-radius: 10px;
  padding: 14px 16px;
}

.pill__icon {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  font-weight: 900;
  line-height: 1;
}

.pill span:last-child {
  font-size: 18px;
  font-weight: 700;
}

/* responsivo */
@media (max-width: 980px) {
  .about__header {
    flex-direction: column;
    gap: 10px;
  }

  .about__grid {
    grid-template-columns: 1fr;
  }

  .pill span:last-child {
    font-size: 16px;
  }
}


/* ==================================================
   Publico
================================================== */

/* seção clara */
.section--alt {
  background: #f6f6f6;
  color: var(--black);
  padding-block: clamp(96px, 10vw, 140px);
}

/* título central e grande */
.section--alt .section__title {
  text-align: center;
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 900;
  margin: 0 0 54px;
}

/* Público-alvo (cards com ícone + texto) */
.gridCards {
  display: grid;
  gap: 34px;

  /* deixa a grade “encolher” e centraliza o conjunto */
  grid-template-columns: repeat(auto-fit, minmax(180px));
  justify-content: center;
  justify-items: center;
}

/* card “invisível” */
.miniCard {
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
  text-align: center;
}



/* ícone */
.miniCard__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.miniCard__icon img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

/* texto */
.miniCard p {
  margin: 0;
  max-width: 220px;
  margin-inline: auto;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.65);
}

/* Tablet */
@media (max-width: 1100px) {
  .gridCards {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
    gap: 28px;
  }

  .miniCard p {
    max-width: 320px;
  }
}

/* Mobile */
@media (max-width: 720px) {
  .gridCards {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .miniCard p {
    max-width: 320px;
    font-size: 16px;
    line-height: 1.55;
  }
}

/* grade com 5 colunas (e quebra no responsivo) */
/* .gridCards {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 34px;
} */

/* card “invisível” (no print parece só conteúdo solto) */
/* .miniCard {
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
  text-align: center;
} */

/* ícone redondo verde com um alvo (pode trocar depois pelo SVG/check) */
/* .miniCard__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  position: relative;
}

.miniCard__icon img {
  width: 56px;
  height: 56px;
  object-fit: contain;
} */

/* título pequeno e cinza */
/* .miniCard h3 {
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 800;
  color: rgba(0, 0, 0, 0.7);
  letter-spacing: 0.02em;
} */

/* texto com “coluna estreita” pra quebrar bonito */
.miniCard p {
  margin: 0;
  max-width: 180px;
  margin-inline: auto;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.65);
}

/* callout inferior centralizado */
/* .callout {
  margin-top: 74px;
  text-align: center;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.65);
} */

/* responsivo */
@media (max-width: 1100px) {
  /* .gridCards {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 34px;
    justify-items: center;
  } */


  /* centraliza os dois últimos */
  /* .gridCards > .miniCard:last-child {
    grid-column: 2 / span 2; 
    justify-self: center;
  } */

  /* .gridCards>.miniCard:nth-last-child(2) {
    grid-column: 2;
  } */
}

@media (max-width: 720px) {
  /* .gridCards {
    grid-template-columns: 1fr;
    gap: 32px;
  } */

  /* remove qualquer regra de "último card centralizado" */
  /* .gridCards>.miniCard:last-child {
    grid-column: auto;
    justify-self: stretch;
    max-width: 100%;
  } */

  /* texto pode respirar mais no mobile */
  /* .miniCard p {
    max-width: 320px;
    font-size: 16px;
    line-height: 1.55;
  } */
/* 
  .callout {
    margin-top: 42px;
  } */
}

/* força 1 por linha em telas realmente estreitas */
@media (max-width: 600px) {
  /* .gridCards {
    grid-template-columns: 1fr !important;
  }

  .gridCards>.miniCard {
    grid-column: auto !important;
    justify-self: center;
    width: 100%;
  }

  .miniCard p {
    max-width: 320px;
    margin-inline: auto;
  }
}

@media (max-width: 480px) {
  .gridCards {
    gap: 26px;
  } */
}


/* ==================================================
   experiência
================================================== */

.section--dark {
  padding-block: clamp(96px, 10vw, 140px);

}

.experience {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}

.experience__left {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.experience__logo {
  width: 92px;
  height: auto;
}

.experience__text {
  font-size: clamp(22px, 2.2vw, 34px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0;
}

.experience__cta {
  width: fit-content;
}

/* Pills */
.experience__right {
  display: grid;
  gap: 14px;
}

/* Responsivo */
@media (max-width: 980px) {
  .experience {
    grid-template-columns: 1fr;
  }

}


/* ==================================================
   programção
================================================== */

/* Programação */
#programacao .section__title {
  text-align: center;
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 900;
  margin: 0 0 50px;
}

#programacao .timeline {
  list-style: none;
  padding: 0;
  margin: 0 auto 56px;
  max-width: 620px;

  display: flex;
  flex-direction: column;
  gap: 18px;

  text-align: center;
}

#programacao .timeline li {
  position: relative;
  padding-left: 0;

  text-transform: uppercase;
  letter-spacing: 0.10em;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
}

#programacao .timeline .dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  margin-right: 12px;
  vertical-align: middle;
}

#programacao .btn--primary {
  background: var(--green);
  color: var(--black);
  border: 2px solid var(--black);
  border-radius: 999px;
  padding: 16px 26px;
  font-weight: 900;
}


/* ==================================================
   palestrantes
================================================== */

.speakersGrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.speakerCard {
  background: var(--white);
  color: var(--gray);
  border-radius: var(--radius-md);
  padding: 18px 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .25s ease, box-shadow .25s ease;
}

.speakerCard .muted {
  font-size: 14px;
  line-height: 1.45;
  color: rgba(0, 0, 0, 0.65);
  text-align: center;
}

.speakerCard h3 {
  margin: 6px 0 0;
  font-size: 18px;
  font-weight: 900;
  text-align: center;
}

.speakerCard:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}


@media (max-width: 1100px) {
  .speakersGrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .speakersGrid {
    grid-template-columns: 1fr;
  }
}

/* ==================================================
   como participar
================================================== */

.twoCols {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 46px);
  align-items: center;
}

/* quando só existir um card */
.twoCols>.card:only-child {
  grid-column: 1 / -1;
  max-width: 640px;
  /* controla a largura do card */
  margin: 0 auto;
}


.card {
  background: #343434;
  color: var(--white);
  border-radius: 14px;
  padding: 26px 26px 28px;
  box-shadow: none;
}

.partic__title {
  margin: 20px 0 14px;
  text-align: left;
  font-size: clamp(34px, 3.6vw, 50px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 900;
  margin-bottom: 30px;
}

.miniCard__icon__ptc {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  position: relative;
}

.cardHeader {
  /* display: flex; */
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  /* espaço “fantasma” do lado direito */
  gap: 12px;
  /* margin-bottom: 18px; */
}

.cardHeader h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 900;
  text-transform: uppercase;
}

.cardIcon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(122, 209, 138, 0.18);
  color: var(--green);
  font-size: 18px;
}

.section--dark .center {
  margin-top: 25px;
}

@media (max-width: 900px) {
  .twoCols {
    grid-template-columns: 1fr;
  }
}


/* ==================================================
INGRESSOS
================================================== */

.pricingGrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 40px);
  align-items: stretch;
}

.pricingGrid.twoItems {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 900px;
  margin: 0 auto;
}

.priceCard {
  background: #bff0c9;
  color: #000;
  border-radius: 18px;
  padding: 32px 28px 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  height: 100%;
}

.priceCard--featured {
  background: #b6edc3;
  transform: translateY(-6px);
}

.priceCard h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
}

.priceIcon {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: #000;
  color: #bff0c9;
  display: grid;
  place-items: center;
  font-size: 14px;
}

.checklist--compact {
  margin: 6px 0 0;
}

.checklist--compact li {
  font-size: 15px;
  line-height: 1.45;
}

.btn--outline {
  margin-top: auto;
  align-self: center;
  background: #e9f8ed;
  color: #000;
  border: 2px solid #000;
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 700;
}

@media (max-width: 520px) {
  .pricingGrid {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }

  .priceCard {
    padding: 22px 18px 26px;
  }
}



/* ==================================================
POR QUE PARTICIPAR
================================================== */

.section--alt .gridCards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(28px, 4vw, 56px);
  justify-items: center;
  align-items: center;
}

/* círculo base */
.miniCard--strong {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 26px;
  box-shadow: none;
  transition: transform 0.25s ease;
}

.miniCard--strong:hover {
  transform: translateY(-4px);
}

/* texto */
.miniCard--strong h3 {
  margin: 0;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.35;
  letter-spacing: 0.06em;
  max-width: 180px;
}

/* alternância visual */
.miniCard--strong:nth-child(odd) {
  background: var(--green);
  color: var(--black);
}

.miniCard--strong:nth-child(even) {
  background: var(--white);
  color: var(--black);
  border: 1.5px solid rgba(0, 0, 0, 0.75);
}

/* callout inferior */
.section--alt .callout {
  margin-top: 64px;
  text-align: center;
  font-size: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.7);
}

/* ===== RESPONSIVO ===== */

@media (max-width: 1100px) {
  .section--alt .gridCards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .section--alt .gridCards {
    grid-template-columns: 1fr;
  }

  .miniCard--strong {
    width: 220px;
    height: 220px;
  }
}


/* ==============================
   FINAL CTA
============================== */

.finalCta {
  background: var(--black);
  color: var(--white);
  padding-block: clamp(90px, 10vw, 140px);
}

.finalCta__inner {
  display: grid;
  justify-items: center;
}

.finalCta__content {
  text-align: center;
  width: min(980px, 100%);
}

/* Logo/título */
.finalCta__content h2 {
  margin: 0 0 18px;
  font-size: 0;
  /* pra não sobrar espaço se você trocar por img */
}

/* Se você quer o LOGO + texto do congresso igual print, use um bloco acima do texto.
   (se já tem logo no HTML, ignore isso e só estiliza a img) */
.finalCta__logo {
  width: 240px;
  max-width: 70vw;
  height: auto;
  margin: 0 auto 22px;
}

/* texto principal */
.finalCta .lead {
  margin: 0 auto 34px;
  font-size: clamp(24px, 3vw, 40px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  max-width: 900px;
}

/* infos */
.finalInfo {
  margin: 0 auto 34px;
  display: grid;
  gap: 10px;
  justify-items: center;
}

.finalInfo p {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 15px;
  line-height: 1.35;
}

.finalInfo strong {
  font-weight: 900;
}

.finalInfo .muted {
  text-transform: none;
  letter-spacing: 0.06em;
  opacity: 0.85;
  font-size: 13px;
  max-width: 860px;
}

/* alerta */
.finalInfo .alertText {
  margin-top: 8px;
  letter-spacing: 0.14em;
  font-weight: 900;
}

/* botão */
.finalCta .btn--primary.btn--lg {
  margin-top: 10px;
  border-radius: 999px;
  padding: 16px 26px;
  font-weight: 900;
}

/* responsivo */
@media (max-width: 520px) {
  .finalInfo p {
    font-size: 13px;
    letter-spacing: 0.12em;
  }
}


/* ==============================
   QUEM SOMOS
============================== */

.who {
  position: relative;
  background: var(--black);
  overflow: hidden;
}

/* glow/degradê do print */
/* .who::after{
  content: "";
  position: absolute;
  inset: -120px -160px auto auto;
  width: 720px;
  height: 520px;
  background: radial-gradient(
    circle at top right,
    rgba(122, 209, 138, 0.28),
    rgba(61, 61, 61, 0.18) 45%,
    transparent 70%
  );
  pointer-events: none;
} */

.who .container {
  position: relative;
  z-index: 1;
}

.who__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

/* header (logo + título) */
.who__header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.who__logo {
  width: 56px;
  height: auto;
  flex-shrink: 0;
}

.who__title {
  margin: 0;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 900;
  letter-spacing: -0.02em;
}

.who__text p {
  font-size: 18px;
  line-height: 1.6;
  opacity: 0.92;
  margin: 0 0 18px;
}

/* imagem */
.who__media {
  position: relative;
  display: flex;
  justify-content: center;
  overflow: hidden;
}

.who__media::before {
  content: "";
  position: absolute;
  inset: 0px 0px 0px 0px;
  background: radial-gradient(circle at center,
      rgba(122, 209, 138, 0.30) 40%,
      rgba(61, 61, 61, 0.18) 60%,
      transparent 72%);
  pointer-events: none;
  z-index: 0;
}

.who__media img {
  position: relative;
  z-index: 1;
}

.who__cta {
  margin-top: 32px;
  text-align: center;
  display: grid;
  gap: 18px;
  justify-items: center;
}

.who__ctaText {
  margin: 0;
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 800;
  max-width: 860px;
  line-height: 1.25;
  opacity: 0.95;
}

/* responsivo */
@media (max-width: 900px) {
  .who__grid {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .who__media {
    order: 2;
  }

  .who__media img {
    max-width: 340px;
  }

  .who__cta {
    text-align: center;
  }
}


/* Footer */
.footer {
  background: #000;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 0;
  font-size: 14px;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* lado esquerdo */
.footer__left {
  opacity: 0.8;
}

/* lado direito */
.footer__right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer__copy {
  margin: 0;
  opacity: 0.85;
}

.footer__brand {
  font-weight: 700;
  color: var(--green);
}

.footer__brand:hover {
  text-decoration: underline;
}

.footer__social img {
  width: 18px;
  height: 18px;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.footer__social img:hover {
  opacity: 1;
}

.heart {
  display: inline-block;
  margin: 0 2px;
}

/* RESPONSIVO */
@media (max-width: 720px) {
  .footer__inner {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .footer__right {
    flex-direction: column;
    gap: 8px;
  }
}


/* ==============================
   PREÇOS - INGRESSOS
============================== */

.priceBox {
  margin: 24px 0;
  text-align: center;
}

.priceInstallment {
  font-size: clamp(16px, 4.2vw, 18px);
  font-weight: 700;
  margin: 0;
  color: var(--black);
}

.priceValue {
  font-size: clamp(32px, 8vw, 50px);
  font-weight: 900;
  margin-left: 4px;
  line-height: 1;
}

.priceCash {
  margin-top: 10px;
  font-size: 14px;
  opacity: 0.7;
  text-transform: uppercase;
}



.priceFooter {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}



.hero .btn--primary {
  background: var(--green);
  color: var(--black);
}

.finalCta .btn--primary.btn--lg {
  margin-top: 10px;
  border-radius: 999px;
  padding: 16px 26px;
  font-weight: 900;
}

.about .btn--primary,
#programacao .btn--primary {
  background: var(--green);
  color: var(--black);
  border: 2px solid var(--black);
  border-radius: 999px;
  padding: 16px 26px;
  font-weight: 900;
}

.btn--outline:hover {
  background: #000;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.section.contact {
  padding: 96px 0;
}

.section.contact .section__title {
  text-align: center;
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 900;
  margin: 0 0 50px;
}

.faq__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  /* espaço entre texto e botão */
}

.faq__item p {
  font-size: 1.2rem;
  /* ~18px */
  line-height: 1.6;
}


/* =========================================
   BOLINHAS (Por que Participar)
========================================= */

.strongCircles {
  display: grid;
  grid-template-columns: repeat(4, minmax(180px, 1fr));
  gap: clamp(18px, 3vw, 56px);
  justify-items: center;
  align-items: start;
}

/* responsivo: 2 por linha */
@media (max-width: 1100px) {
  .strongCircles {
    grid-template-columns: repeat(2, minmax(180px, 1fr));
  }
}

/* responsivo: 1 por linha */
@media (max-width: 520px) {
  .strongCircles {
    grid-template-columns: 1fr;
  }
}