@import url('https://fonts.googleapis.com/css2?family=Chakra+Petch:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,700&display=swap');

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --amarelo: #b3e600;
  --azul: #1a3bff;
  --destaque: #bad5ff;
  --preto: #000;
  --branco: #fff;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Chakra Petch', sans-serif;
  background: var(--preto);
  color: var(--branco);
  overflow-x: hidden;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ============================================================
   HERO
============================================================ */
.hero {
  position: relative;
  display: grid;
  grid-template-columns: 35% 64%;
  background-color: #000;
  min-height: 580px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('assets/image/bg-filtro-hero.png');
  background-repeat: repeat;
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
}

.hero-esq {
  position: relative;
  z-index: 2;
  padding-left: max(40px, calc((100vw - 1160px) / 2 + 40px));
  padding-top: 55px;
  padding-bottom: 50px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.hero-logo img {
  height: clamp(60px, 8vw, 100px);
  width: auto;
  display: block;
}

.hero-titulo {
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  line-height: 1;
  position: relative;
  z-index: 2;
}

.hero-titulo .txt-webinar {
  font-size: clamp(48px, 5vw, 84px);
  font-weight: 700;
  color: var(--destaque);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 0.95;
  display: block;
}

.hero-titulo .txt-gratuito {
  font-size: clamp(36px, 4vw, 62px);
  font-weight: 700;
  color: var(--branco);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1;
  display: block;
}

.hero-dir {
  position: relative;
  z-index: 0;
  overflow: hidden;
}

.hero-dir img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
  display: block;
}

/* ============================================================
   SUBTEXTO
============================================================ */
.hero-sub {
  background-color: #000;
  background-image: linear-gradient(rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.86)), url('assets/image/bg-filtro-hero.png');
  background-repeat: no-repeat, repeat;
  background-size: 100% 100%, 460px auto;
  position: relative;
  padding: 18px 0 24px;
}

.sub-conteudo {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.55;
  margin: 0;
  padding-left: calc(33vw + 34px);
  padding-right: 40px;
  width: 1200px;
}

.sub-conteudo .destaque {
  color: var(--destaque);
  font-weight: 600;
}


/* ============================================================
   TICKER
============================================================ */
.ticker-wrap {
  background: var(--preto);
  overflow: hidden;
  padding: 13px 0;
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: tick 30s linear infinite;
  will-change: transform;
}

.ticker-track img {
  height: 50px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

@keyframes tick {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ============================================================
   FORMULÁRIOS (TOPO E FOOTER)
============================================================ */

.form-bar {
  padding: 20px 0;
}

.download-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}

.download-msg {
  font-size: 18px;
  color: white;
  font-family: 'Chakra Petch', sans-serif;
  margin: 0;
  flex: 1;
  min-width: 200px;
}

@media (max-width: 600px) {
  .download-wrapper {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    gap: 16px;
  }

  .download-msg {
    min-width: unset;
  }
}

.custom-form-wrapper {
  width: 100%;
}

.custom-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 15px;
  align-items: center;
  width: 100%;
}

.custom-input {
  width: 100%;
  height: 58px;
  background: var(--branco);
  border: none;
  font-family: 'Chakra Petch', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #000;
  padding: 0 20px;
  outline: none;
}

.custom-input::placeholder {
  color: rgba(0, 0, 0, 0.7);
}

.custom-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 58px;
  padding: 0 32px;
  background: #eeeeee;
  border: none;
  font-family: 'Chakra Petch', sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  color: #000;
  cursor: pointer;
  transition: opacity 0.3s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.custom-btn:hover {
  opacity: 0.8;
}

.custom-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

@media (max-width: 768px) {
  .custom-form-grid {
    grid-template-columns: 1fr;
  }
}

/* Botão do footer */
.btn-footer-only {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

.btn-footer-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 58px;
  padding: 0 40px;
  background: var(--branco);
  color: #000;
  font-family: 'Chakra Petch', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  border: 4px solid transparent;
  transition: all 0.3s ease;
}

.btn-footer-link:hover {
  background: var(--amarelo);
  color: #000;
}

/* SP message invisível — nosso toast cuida da confirmação */
.sp-form-fields-wrapper .sp-message {
  display: none !important;
}

/* ============================================================
   PESQUISA — fundo AMARELO
============================================================ */
.s-pesquisa {
  background: var(--amarelo);
  position: relative;
  overflow: hidden;
  padding: 56px 0;
}

.s-pesquisa::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('assets/image/filtro-section-pesquisa.png');
  background-size: 100% auto;
  background-repeat: repeat-y;
  opacity: 0.25;
  pointer-events: none;
}

.pesquisa-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.pesquisa-label {
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.5);
  margin-bottom: 10px;
  display: block;
}

.pesquisa-titulo {
  font-size: clamp(22px, 2.8vw, 36px);
  font-weight: 700;
  line-height: 1.08;
  color: var(--preto);
  text-transform: uppercase;
}

.pesquisa-titulo em {
  display: block;
  font-style: italic;
  font-weight: 600;
  font-size: clamp(14px, 1.6vw, 20px);
  text-transform: none;
  margin-top: 8px;
  line-height: 1.3;
}

.pesquisa-texto p {
  font-size: 15px;
  color: rgba(0, 0, 0, 0.8);
  line-height: 1.7;
  margin-bottom: 12px;
  font-weight: 500;
}

.pesquisa-texto p strong {
  color: #000;
  font-weight: 700;
}

/* ============================================================
   ANITA — fundo PRETO com textura
============================================================ */
.s-anita {
  background: var(--preto);
  position: relative;
  overflow: hidden;
  padding: 60px 0;
}

.s-anita::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('assets/image/filtro-section-oquevaiaprender.png');
  background-size: 100% auto;
  background-repeat: repeat-y;
  opacity: 0.22;
  pointer-events: none;
}

.anita-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: center;
}

.anita-label {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: white;
  margin-bottom: 10px;
  display: block;
}

.anita-nome {
  font-size: 38px;
  font-weight: 700;
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--branco);
  margin-bottom: 18px;
}

.anita-nome span {
  color: var(--destaque);
}

.anita-lead {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.55;
  margin-bottom: 16px;
}

.anita-bio {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.65;
  margin-bottom: 28px;
}

.btn-yellow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: color(srgb 0.1091 0.2407 0.9997);
  color: white;
  font-family: 'Chakra Petch', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 12px 20px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.15s;
}

.btn-yellow:hover {
  opacity: 0.88;
}

.btn-yellow img {
  height: 14px;
  width: auto;
}

.anita-foto {
  position: relative;
  z-index: 1;
}

.anita-foto img {
  width: 100%;
  height: auto;
  display: block;
}

/* ============================================================
   O QUE VAI VER — fundo AZUL
============================================================ */
.s-oqvv {
  background: var(--azul);
  padding: 48px 0;
  position: relative;
  overflow: hidden;
}

.s-oqvv::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('assets/image/filtro-section-oquevaiaprender.png');
  background-size: 100% auto;
  background-repeat: repeat-y;
  opacity: 0.12;
  pointer-events: none;
}

.oqvv-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 48px;
  align-items: start;
}

.oqvv-top-label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

.oqvv-top-label img {
  height: 20px;
  width: auto;
}

.oqvv-top-label span {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.oqvv-titulo {
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 700;
  line-height: 1.05;
  text-transform: uppercase;
  color: var(--branco);
}

.oqvv-cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}

.oqvv-card {
  border-left: 2px solid var(--amarelo);
  padding-left: 14px;
}

.oqvv-card-titulo {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--destaque);
  margin-bottom: 8px;
}

.oqvv-card p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.55;
}

/* ============================================================
   INFORMAÇÕES — fundo AMARELO
============================================================ */
.s-info {
  background: var(--amarelo);
  padding: 18px 0;
}

.s-info .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.info-col-label .info-sup {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.45);
  display: block;
  margin-bottom: 2px;
}

.info-col-label .info-titulo {
  font-size: clamp(16px, 1.8vw, 22px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--preto);
}

.info-dados {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.info-dado span {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(0, 0, 0, 0.5);
  display: block;
  margin-bottom: 2px;
}

.info-dado strong {
  font-size: clamp(13px, 1.4vw, 16px);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--preto);
}

.info-desc {
  font-size: 15px;
  color: rgba(0, 0, 0, 0.65);
  line-height: 1.55;
  max-width: 350px;
  font-weight: 900;
}

/* ============================================================
   INSCRICAO FOOTER — fundo PRETO
============================================================ */
.s-inscricao {
  background: var(--preto);
  position: relative;
  overflow: hidden;
  padding: 64px 0 52px;
}

.s-inscricao::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('assets/image/filtro-section-footer.png');
  background-size: 100% auto;
  background-repeat: repeat-y;
  opacity: 0.18;
  pointer-events: none;
}

.inscricao-centro {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.inscricao-simbolo {
  margin-bottom: 18px;
}

.inscricao-simbolo img {
  height: 42px;
  width: auto;
}

.inscricao-titulo {
  font-size: clamp(18px, 2.4vw, 26px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--branco);
  margin-bottom: 10px;
}

.inscricao-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.55;
  max-width: 480px;
  margin-bottom: 32px;
}


/* ============================================================
   RODAPE
============================================================ */
.rodape {
  background: var(--preto);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px 0;
}

.rodape .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.rodape-copy {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
}

.rodape-site {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
}

.rodape-logo img {
  height: 34px;
  width: auto;
  opacity: 0.8;
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-esq {
    padding: 40px 20px;
    min-height: auto;
    align-items: center;
    text-align: center;
  }

  .hero-logo img {
    height: 70px;
  }

  .hero-titulo {
    margin-top: 40px;
    align-items: center;
  }

  .hero-titulo .txt-webinar {
    font-size: 42px;
  }

  .hero-titulo .txt-gratuito {
    font-size: 30px;
  }

  .hero-dir img {
    height: auto;
    min-height: auto;
  }

  .sub-conteudo {
    padding-left: 20px;
    padding-right: 20px;
    text-align: center;
    width: auto;

  }

  .pesquisa-grid,
  .anita-grid,
  .oqvv-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .anita-grid {
    text-align: center;
  }

  .anita-foto {
    order: -1;
    max-width: 280px;
    margin: 0 auto;
  }

  .oqvv-cards {
    grid-template-columns: 1fr 1fr;
  }

  .s-info .container {
    flex-direction: column;
    align-items: flex-start;
  }


}

@media (max-width: 600px) {
  .container {
    padding: 0 20px;
  }

  .hero-esq {
    padding: 30px 20px;
  }

  .hero-logo img {
    height: 55px;
  }

  .sub-conteudo {
    padding-left: 20px;
    padding-right: 20px;

  }

  .s-pesquisa,
  .s-anita,
  .s-oqvv,
  .s-inscricao {
    padding: 40px 0;
  }

  .oqvv-cards {
    grid-template-columns: 1fr;
  }

  .rodape .container {
    flex-direction: column;
    text-align: center;
    gap: 6px;
  }
}

/* ============================================================
   TOAST DE CONFIRMAÇÃO
============================================================ */
#sp-toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(16px);
  background: #0a0a0a;
  color: #fff;
  font-family: 'Chakra Petch', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 18px 36px;
  border-left: 5px solid var(--amarelo);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s;
  white-space: nowrap;
  max-width: 90vw;
  text-align: left;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
}

#sp-toast.sp-toast-show {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}