/* =============================================================
   Base / reset (do Base.astro)
   ============================================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
html,
body {
  margin: 0;
  padding: 0;
  background: #00274e;
  color: #fff;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
body {
  overflow-x: hidden;
}

/* =============================================================
   Desktop zoom-lock: preserva proporções do design 1920px em
   qualquer resolução acima do breakpoint mobile (≤ 900px).
   ============================================================= */
@media (min-width: 901px) {
  html {
    overflow-x: hidden;
  }
  body {
    zoom: calc(100vw / 1920px);
  }
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: 0;
  background: none;
  padding: 0;
  color: inherit;
}
input,
select,
textarea {
  font-family: inherit;
}
p {
  margin: 0;
}
a {
  color: inherit;
}

/* ===== Reveal-on-scroll ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
  will-change: opacity, transform;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  html {
    scroll-behavior: auto;
  }
}

/* ===== Form error / success ===== */
.field-error {
  outline: 2px solid #e53935 !important;
}
.lead-sent {
  margin: 4px 0 8px 0;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 500;
  color: #4ade80;
  background: rgba(74, 222, 128, 0.12);
  border: 1px solid rgba(74, 222, 128, 0.35);
  border-radius: 6px;
  text-align: center;
  animation: leadSentFadeIn 0.2s ease-out;
}
@keyframes leadSentFadeIn {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}
.iti { width: 100%; display: block !important; }
.iti input { width: 100% !important; }
/* DDI / dial code preto sobre fundo branco do input */
.iti__selected-dial-code,
.iti--separate-dial-code .iti__selected-dial-code,
.iti__country-list .iti__dial-code { color: #000 !important; }
.iti__selected-flag { color: #000 !important; }

/* =============================================================
   DESKTOP (1920px design) — wraps everything in a 1920px frame
   O mobile assume em <= 900px
   ============================================================= */

/* ============ TOP BAR ============ */
.top-bar {
  width: 100%;
  height: 40px;
  background: #D62828;
  display: flex;
  align-items: center;
  justify-content: center;
}
.top-bar-inner {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  line-height: 19.5px;
  letter-spacing: 0.15px;
  padding: 0 16px;
  text-align: center;
}
.top-bar-inner strong {
  font-weight: 700;
}
.top-bar-inner .dash {
  margin: 0 2px;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  height: 697.77px;
  overflow: hidden;
}
.hero-bg-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 210px;
  height: 100%;
  max-width: 1920px;
  margin: 0 auto;
}
.hero-left {
  width: 690px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 88px;
  padding-bottom: 27.61px;
  gap: 25.1px;
}
.hero-logo {
  width: 202px;
  height: 68.36px;
  object-fit: contain;
}
.hero-headline {
  font-family: 'Ruda', serif;
  font-weight: 400;
  font-size: 32px;
  line-height: 38.4px;
  color: #fff;
  margin: 0;
  width: 648.59px;
}
.hero-headline .underline {
  text-decoration: underline;
  text-decoration-thickness: 1px;
}
.form {
  width: 579.59px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-wide {
  width: 595.19px;
}
:is(.FormName, .FormEmail, .FormPhone),
.FormQuestion {
  width: 100%;
  height: 40px;
  background: #fff;
  border: 0;
  border-radius: 6px;
  padding: 10px 12px;
  font-size: 16px;
  color: #000;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
:is(.FormName, .FormEmail, .FormPhone)::placeholder {
  color: #757575;
  font-weight: 400;
}
.FormQuestion {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><polygon points='0,0 12,0 6,8' fill='%23555'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 32px;
  color: #757575;
}
.FormQuestion:valid,
.FormQuestion option:checked:not(:first-child) ~ * {
  color: #000;
}
.submit {
  width: 100%;
  height: 40px;
  background: #119c02;
  color: #fff;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  filter: drop-shadow(0 6px 7px rgba(0, 0, 0, 0.25));
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s ease, transform 0.18s ease;
}
.submit:hover {
  background: #0e8801;
  transform: translateY(-1px);
}
.submit:active {
  transform: translateY(0);
}
.disclaimer {
  width: 628px;
  font-size: 11.3px;
  color: #fff;
  line-height: 16.8px;
  margin: 0;
  max-width: 100%;
}
.hero-right {
  width: 760px;
  height: 429px;
}

/* ============ O QUE É ============ */
.oqeh {
  width: 100%;
  height: 257.64px;
  background: #00274e;
  display: flex;
  gap: 60px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
}
.oqeh-text {
  width: 582px;
  display: flex;
  flex-direction: column;
  gap: 23.12px;
}
.oqeh-title {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 34px;
  line-height: 43.2px;
  color: #f5f5f5;
  margin: 0;
}
.oqeh-body {
  width: 500px;
  max-width: 100%;
  font-size: 15.1px;
  line-height: 22.4px;
  color: #fff;
  margin: 0;
}
.oqeh-logo {
  width: 452px;
  height: 152.98px;
  object-fit: contain;
}

/* ============ POR QUE FAZER ============ */
.pqfazer {
  width: 100%;
  height: 466.19px;
  background: #00274e;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  justify-content: center;
  padding: 50px 24px;
}
.pqfazer-head {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.pqfazer-title {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 36px;
  line-height: 43.2px;
  color: #f5f5f5;
  text-align: center;
  margin: 0;
}
.pqfazer-sub {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 28px;
  line-height: 33.6px;
  color: #f5f5f5;
  text-align: center;
  margin: 0;
}
.pqfazer-cards {
  width: 1180px;
  max-width: 100%;
  height: 239.39px;
  display: flex;
  gap: 15px;
  justify-content: center;
}
.pqfazer-cards img {
  width: 383.33px;
  height: 239.39px;
  object-fit: contain;
}

/* ============ RHANDERSON ============ */
.rhanderson {
  width: 100%;
  height: 932px;
  background: #01172e;
  display: flex;
  gap: 33px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.rh-text {
  width: 744px;
  height: 698.8px;
}
.rh-title {
  font-family: 'Ruda', serif;
  font-weight: 400;
  font-size: 36px;
  line-height: 43.2px;
  color: #fff;
  margin: 0 0 35px 0;
}
.rh-body {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.rh-body p {
  font-family: 'Ruda', serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  color: #fff;
  margin: 0;
}
.rh-disclaimer {
  margin-top: 32px;
  font-family: 'Ruda', serif;
  font-size: 12px;
  line-height: 16.8px;
  color: #fff;
  max-width: 671px;
}
.rh-photo {
  width: 759px;
  height: 932px;
  object-fit: cover;
}

/* ============ COMO FUNCIONA ============ */
.como {
  width: 100%;
  background: #00274e;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  padding: 49px 24px 50px;
}
.como-title {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 39.5px;
  line-height: 50.4px;
  color: #fff;
  text-align: center;
  margin: 0;
  width: 100%;
}
.modulo {
  display: flex;
  align-items: center;
  overflow: hidden;
  max-width: 100%;
}
.modulo-intro { width: 1105px; }
.modulo-teoricos { width: 1088px; }
.modulo-foto {
  flex-shrink: 0;
  border-radius: 12px;
  border: 1px solid #000;
  overflow: hidden;
}
.modulo-intro .modulo-foto { width: 296px; height: 396px; }
.modulo-teoricos .modulo-foto { width: 300px; height: 396px; }
.modulo-foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.modulo-texto {
  background: #001b37;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.modulo-intro .modulo-texto {
  width: 809px;
  height: 271px;
  border-radius: 0 20px 20px 0;
}
.modulo-teoricos .modulo-texto {
  width: 787px;
  height: 316px;
  border-radius: 20px 0 0 20px;
}
.modulo-texto p {
  width: 719px;
  margin: 0;
  font-family: 'Ruda', serif;
  font-weight: 400;
  font-size: 28px;
  line-height: 39.2px;
  color: #fff;
  padding: 0 16px;
}
.modulo-teoricos .modulo-texto p { width: 723px; }
.como-block-text {
  width: 1075px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 39.2px;
}
.como-block-text p {
  margin: 0;
  font-family: 'Ruda', serif;
  font-weight: 400;
  font-size: 28px;
  line-height: 39.2px;
  color: #fff;
}
.carrossel {
  display: flex;
  gap: 50px;
  width: 971px;
  max-width: 100%;
  height: 320px;
  justify-content: center;
}
.carrossel figure {
  margin: 0;
  width: 290.33px;
  height: 320px;
}
.carrossel img {
  width: 290.33px;
  height: 320px;
  object-fit: cover;
}

/* ============ CONQUISTAS ============ */
.conquistas {
  width: 100%;
  background: #01172e;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 49px 24px 50px;
}
.conquistas-title {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 36px;
  line-height: 43.2px;
  color: #f6f6f9;
  margin: 0;
}
.conquistas-grid {
  width: 1305.59px;
  max-width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 592.8px);
  gap: 20px;
  padding: 50px 0;
  justify-content: center;
}
.conq-card {
  height: 269px;
  border: 2px solid #012d5c;
  display: flex;
  gap: 20px;
  padding: 20px;
  overflow: hidden;
  box-sizing: border-box;
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.conq-card:hover {
  border-color: #3bbaff;
  transform: translateY(-2px);
}
.conq-img {
  width: 206px;
  height: 229px;
  flex-shrink: 0;
  overflow: hidden;
}
.conq-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.conq-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
  overflow: hidden;
}
.conq-name {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 27px;
  line-height: 33.6px;
  color: #f6f6f9;
}
.conq-name.bold { font-weight: 700; font-size: 27.7px; }
.conq-body p {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 19.2px;
  line-height: 24px;
  color: #f6f6f9;
  margin: 0;
}

/* ============ DEPOIMENTOS ============ */
.depoimentos {
  width: 100%;
  background: #00274e;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 39px;
  padding: 50px 24px;
}
.dep-title {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 33.9px;
  line-height: 43.2px;
  color: #fff;
  margin: 0;
}
.videos {
  width: 1478.39px;
  max-width: 100%;
  height: 695px;
  position: relative;
}
.video {
  position: absolute;
  width: 595px;
  height: 331px;
  border-radius: 15px;
  overflow: hidden;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
}
.video img:not(.play img) {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video .play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 48px;
  transition: transform 0.2s ease;
}
.video:hover .play { transform: translate(-50%, -50%) scale(1.08); }
.video .play img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
}
.video iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.v1 { top: 1px; left: calc(50% - 313.52px - 297.5px); }
.v2 { top: 1px; left: calc(50% + 313.48px - 297.5px); }
.v3 { top: 364px; left: calc(50% - 297.5px); }
.dep-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 25px;
  align-items: center;
}
.dep-headline p {
  margin: 0;
  text-align: center;
  font-family: 'Ruda', serif;
  font-weight: 400;
  font-size: 32px;
  line-height: 38.4px;
  color: #fff;
}
.dep-disclaimer {
  width: 920px;
  max-width: 100%;
  margin: 0;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 15.1px;
  line-height: 19.2px;
  color: #fff;
}

/* ============ FAQ ============ */
.faq {
  width: 100%;
  background: #00274e;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 41px;
  padding: 50px 24px 91px;
}
.faq-title {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 30.4px;
  line-height: 38.4px;
  color: #fff;
  text-align: center;
  margin: 0;
}
.faq-card {
  width: 1091.19px;
  max-width: 100%;
  background: #022140;
  border-radius: 20px;
  padding: 10px 80px 20px 40px;
}
.faq-line {
  height: 1px;
  width: 100%;
  background: rgba(255, 255, 255, 0.08);
}
.faq-item { width: 100%; }
.faq-question {
  width: 100%;
  min-height: 64px;
  display: flex;
  align-items: center;
  padding: 20px 0 20px 40px;
  color: #f5fdff;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  text-align: left;
  position: relative;
  transition: color 0.2s ease;
}
.faq-question:hover { color: #3bbaff; }
.plus {
  position: absolute;
  left: 0;
  top: 24px;
  width: 16px;
  height: 16px;
  opacity: 0.5;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.faq-item.open .plus {
  opacity: 1;
  transform: rotate(45deg);
}
.plus-h {
  position: absolute;
  top: 7px;
  left: 0;
  width: 16px;
  height: 2px;
  background: #3bbaff;
  border-radius: 10px;
}
.plus-v {
  position: absolute;
  top: 0;
  left: 7px;
  width: 2px;
  height: 16px;
  background: #3bbaff;
  border-radius: 10px;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 40px;
  color: #fafafa;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer {
  padding: 4px 40px 22px 40px;
}
.faq-answer a {
  color: #3bbaff;
  text-decoration: underline;
  word-break: break-word;
}
.faq-answer a:hover { color: #18b5d8; }
.faq-answer strong { color: #fff; font-weight: 600; }

/* ============ FOOTER ============ */
.footer {
  width: 100%;
  height: 128px;
  background: #01172e;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer img {
  width: 277px;
  height: 93.75px;
  object-fit: contain;
}

/* =============================================================
   MOBILE — banner em cima, seções empilhadas em coluna única
   ============================================================= */
@media (max-width: 900px) {
  .top-bar {
    height: auto;
    min-height: 40px;
    padding: 8px 12px;
  }
  .top-bar-inner {
    font-size: 13px;
    flex-wrap: wrap;
    justify-content: center;
  }

  /* HERO vira coluna: imagem primeiro, depois conteúdo */
  .hero {
    height: auto;
    min-height: auto;
    overflow: visible;
  }
  .hero-bg-wrap {
    position: relative;
    inset: auto;
    width: 100%;
    height: 240px;
    display: block;
  }
  .hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  .hero-inner {
    position: static;
    flex-direction: column;
    padding: 24px 20px 32px;
    gap: 0;
    background: #00274e;
  }
  .hero-left {
    width: 100%;
    padding: 0;
    gap: 18px;
  }
  .hero-logo {
    width: 160px;
    height: auto;
    margin: 0 auto;
  }
  .hero-headline {
    width: 100%;
    font-size: 22px;
    line-height: 30px;
    text-align: center;
  }
  .form, .form-wide { width: 100%; }
  .disclaimer {
    width: 100%;
    font-size: 11px;
    text-align: center;
  }
  .hero-right { display: none; }

  /* O que é */
  .oqeh {
    flex-direction: column;
    height: auto;
    gap: 24px;
    padding: 36px 20px;
    text-align: center;
  }
  .oqeh-text { width: 100%; align-items: center; gap: 16px; }
  .oqeh-title { font-size: 24px; line-height: 32px; text-align: center; }
  .oqeh-body { width: 100%; font-size: 15px; text-align: center; }
  .oqeh-logo {
    width: 280px;
    height: auto;
    max-width: 90%;
  }

  /* Por que fazer */
  .pqfazer {
    height: auto;
    padding: 36px 16px;
    gap: 24px;
  }
  .pqfazer-title { font-size: 22px; line-height: 28px; }
  .pqfazer-sub { font-size: 17px; line-height: 22px; }
  .pqfazer-cards {
    flex-direction: column;
    width: 100%;
    height: auto;
    gap: 16px;
    align-items: center;
  }
  .pqfazer-cards img {
    width: 100%;
    max-width: 380px;
    height: auto;
  }

  /* Rhanderson */
  .rhanderson {
    flex-direction: column-reverse;
    height: auto;
    gap: 0;
  }
  .rh-photo {
    width: 100%;
    height: 360px;
    object-fit: cover;
    object-position: center top;
  }
  .rh-text {
    width: 100%;
    height: auto;
    padding: 32px 20px;
  }
  .rh-title { font-size: 26px; line-height: 32px; margin-bottom: 20px; }
  .rh-body { gap: 16px; }
  .rh-body p { font-size: 15px; line-height: 22px; }
  .rh-disclaimer { margin-top: 18px; font-size: 11px; }

  /* Como funciona */
  .como { padding: 36px 16px; gap: 28px; }
  .como-title { font-size: 24px; line-height: 32px; }
  .modulo,
  .modulo-intro,
  .modulo-teoricos {
    width: 100%;
    flex-direction: column;
  }
  .modulo-teoricos { flex-direction: column-reverse; }
  .modulo-intro .modulo-foto,
  .modulo-teoricos .modulo-foto {
    width: 100%;
    max-width: 280px;
    height: auto;
    aspect-ratio: 296 / 396;
  }
  .modulo-foto img {
    object-fit: cover;
  }
  .modulo-intro .modulo-texto,
  .modulo-teoricos .modulo-texto {
    width: 100%;
    height: auto;
    padding: 22px 18px;
    border-radius: 0 0 16px 16px;
  }
  .modulo-teoricos .modulo-texto { border-radius: 16px 16px 0 0; }
  .modulo-texto p {
    width: 100%;
    font-size: 16px;
    line-height: 24px;
    padding: 0;
    text-align: center;
  }
  .como-block-text { width: 100%; gap: 18px; }
  .como-block-text p { font-size: 16px; line-height: 24px; text-align: center; }
  .carrossel {
    flex-direction: column;
    width: 100%;
    height: auto;
    gap: 16px;
    align-items: center;
  }
  .carrossel figure,
  .carrossel img {
    width: 100%;
    max-width: 320px;
    height: auto;
    aspect-ratio: 290 / 320;
  }

  /* Conquistas */
  .conquistas { padding: 36px 16px; }
  .conquistas-title { font-size: 26px; line-height: 32px; }
  .conquistas-grid {
    grid-template-columns: 1fr;
    width: 100%;
    gap: 14px;
    padding: 24px 0;
  }
  .conq-card {
    flex-direction: column;
    height: auto;
    padding: 16px;
    align-items: center;
    text-align: center;
  }
  .conq-img { width: 180px; height: 200px; }
  .conq-text { width: 100%; align-items: center; gap: 14px; }
  .conq-name, .conq-name.bold { font-size: 22px; line-height: 28px; }
  .conq-body p { font-size: 15px; line-height: 22px; }

  /* Depoimentos */
  .depoimentos { padding: 36px 16px; gap: 24px; }
  .dep-title { font-size: 24px; line-height: 30px; }
  .videos {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: center;
  }
  .video, .v1, .v2, .v3 {
    position: static;
    width: 100%;
    max-width: 480px;
    height: auto;
    aspect-ratio: 595 / 331;
    left: auto;
    top: auto;
  }
  .dep-form { gap: 18px; }
  .dep-headline p { font-size: 19px; line-height: 24px; padding: 0 8px; }
  .dep-disclaimer {
    width: 100%;
    font-size: 12px;
    line-height: 17px;
    padding: 0 4px;
  }

  /* FAQ */
  .faq { padding: 36px 12px 56px; gap: 22px; }
  .faq-title { font-size: 24px; line-height: 30px; }
  .faq-card {
    width: 100%;
    padding: 8px 16px 16px 16px;
    border-radius: 14px;
  }
  .faq-question {
    padding: 16px 0 16px 28px;
    font-size: 14px;
    line-height: 20px;
    min-height: 56px;
  }
  .plus { top: 19px; }
  .faq-answer { padding: 0 28px; font-size: 14px; }
  .faq-item.open .faq-answer { padding: 4px 28px 18px 28px; }

  /* Footer */
  .footer { height: 96px; }
  .footer img { width: 200px; height: auto; }
}
