/* ══════════════════════════════════════════
   IDK EAD — Landing Page Styles
   Mobile-first · WCAG AA · CSS Custom Properties
══════════════════════════════════════════ */

/* ── Variables ──────────────────────────── */
:root {
  --navy:        #025a85;
  --navy-dark:   #013f5e;
  --navy-mid:    #026a9d;
  --orange:      #f6931c;
  --orange-h:    #d97d0f;
  --orange-lt:   #fef4e3;
  --white:       #FFFFFF;
  --gray-50:     #F8F9FA;
  --gray-100:    #F1F3F5;
  --gray-200:    #E9ECEF;
  --gray-400:    #9CA3AF;
  --gray-600:    #4B5563;
  --gray-800:    #1F2937;

  --font:        'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --r-sm:  8px;
  --r-md:  12px;
  --r-lg:  16px;
  --r-xl:  24px;

  --sh-sm: 0 2px 8px rgba(27,43,107,.08);
  --sh-md: 0 4px 20px rgba(27,43,107,.12);
  --sh-lg: 0 8px 40px rgba(27,43,107,.18);

  --t:     .22s ease;
  --t-md:  .35s ease;

  --max:   1320px;
  --g:     clamp(16px, 4vw, 32px);
  --sec:   clamp(56px, 9vw, 96px);
}

/* ── Reset ──────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-800);
  background: var(--white);
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }
address { font-style: normal; }
em { font-style: normal; }

/* ── Accessibility ──────────────────────── */
:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
  border-radius: 4px;
}
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ── Container ──────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--g);
}

/* ── Shared section header ──────────────── */
.section-logo-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
.section-logo { height: 36px; width: auto; }

.section-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-align: center;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(26px, 3.5vw, 46px);
  font-weight: 900;
  color: var(--navy-dark);
  text-align: center;
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: -1px;
  margin-bottom: 16px;
}
.section-title em {
  color: var(--orange);
  font-style: normal;
}
.section-sub {
  font-size: clamp(14px, 1.8vw, 16px);
  color: var(--gray-600);
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
}

/* ── Buttons ────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 700;
  border-radius: var(--r-md);
  transition: background var(--t), color var(--t), transform var(--t), box-shadow var(--t);
  cursor: pointer;
  white-space: nowrap;
  padding: 14px 28px;
  font-size: 15px;
  border: 2px solid transparent;
  text-decoration: none;
  position: relative;
}
.btn:active { transform: scale(.97); }
.btn--primary {
  background: var(--orange);
  color: var(--white);
}
.btn--primary:hover { background: var(--orange-h); box-shadow: 0 4px 16px rgba(244,123,32,.35); }
.btn--full { width: 100%; font-size: 16px; padding: 16px 28px; }
.btn--outline {
  background: transparent;
  color: var(--orange);
  border-color: var(--orange);
}
.btn--outline:hover { background: var(--orange); color: var(--white); }
.btn--sm { padding: 10px 20px; font-size: 14px; }
.btn--whatsapp {
  background: var(--orange);
  color: var(--white);
  padding: 18px 36px;
  font-size: 17px;
  border-radius: var(--r-lg);
  gap: 10px;
}
.btn--whatsapp:hover {
  background: var(--orange-h);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(244,123,32,.4);
}
.btn--sticky {
  padding: 14px 28px;
  font-size: 15px;
  border-radius: 40px;
  box-shadow: 0 4px 20px rgba(244,123,32,.45);
}

/* Spinner */
.spin {
  animation: spin .8s linear infinite;
  display: block;
}
@keyframes spin { to { transform: rotate(360deg); } }


/* ══════════════════════════════════════════
   S01 · HERO
══════════════════════════════════════════ */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* ── Fundo gradiente ─────────────────── */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(125.11deg, #026190 0%, #013f5e 100%);
}

/* ── Navbar ──────────────────────────── */
.hero__nav {
  position: relative;
  z-index: 2;
}
.hero__nav-inner {
  max-width: var(--max);
  margin-inline: auto;
  padding: 16px clamp(24px, 4vw, 60px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hero__logo {
  height: 58px;
  width: auto;
  /* Converte a logo para branco sólido — fundo do header é azul escuro */
  filter: brightness(0) invert(1);
}
.hero__nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border: 1.5px solid white;
  border-radius: 999px;
  color: white;
  font-size: 14px;
  font-weight: 600;
  transition: background var(--t), color var(--t);
  white-space: nowrap;
}
.hero__nav-cta:hover {
  background: white;
  color: var(--navy);
}

/* ── Conteúdo: 3 colunas ─────────────── */
.hero__content {
  position: relative;
  z-index: 2;
  flex: 1;
}
.hero__content-inner {
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: clamp(24px, 4vw, 60px);
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-bottom: 120px; /* space for wave + features */
}

/* Col 1: foto */
.hero__photo-col {
  display: none; /* mobile: esconde a foto */
  align-items: flex-end;
  align-self: flex-end;
  flex-shrink: 0;
}
.hero__photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* Col 2: headline */
.hero__headline-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border: 1.5px solid white;
  border-radius: 999px;
  color: white;
  font-size: 14px;
  font-weight: 600;
  width: fit-content;
  letter-spacing: 0.5px;
}
.hero__title {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -3.2px;
}
.hero__title em {
  color: var(--orange);
  font-style: normal;
}
.hero__subtitle {
  font-size: clamp(16px, 1.8vw, 20px);
  color: rgba(255,255,255,.9);
  line-height: 1.5;
}

/* Col 3: formulário */
.hero__form-col { width: 100%; }

.form-card {
  background: var(--white);
  border-radius: 4px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 8px 40px rgba(0,0,0,.25);
}
.form-card__title {
  font-size: 24px;
  font-weight: 600;
  color: #000;
  line-height: 1.2;
  letter-spacing: -1.2px;
  text-align: center;
}
.form-card__sub {
  font-size: 14px;
  color: #000;
  line-height: 1.5;
  text-align: center;
  margin-top: -8px;
}

/* Form fields */
.form { display: flex; flex-direction: column; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 4px; }
.field__label {
  font-size: 13px;
  font-weight: 400;
  color: #000;
}
.field__wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.field__icon {
  position: absolute;
  right: 16px;
  display: flex;
  pointer-events: none;
  z-index: 1;
}
.field__input {
  width: 100%;
  height: 42px;
  padding: 8px 42px 8px 16px;
  border: 1px solid #CCC;
  border-radius: 4px;
  font-size: 13px;
  font-family: var(--font);
  color: var(--gray-800);
  background: var(--white);
  transition: border-color var(--t);
  outline: none;
  overflow: hidden;
}
.field__input::placeholder { color: #CCC; }
.field__input:focus { border-color: var(--navy); }
.field__input.is-error { border-color: #DC2626; }
.field__input.is-valid { border-color: #16A34A; }

.field__select-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.field__select {
  width: 100%;
  height: 42px;
  padding: 8px 40px 8px 16px;
  border: 1px solid #CCC;
  border-radius: 4px;
  font-size: 13px;
  font-family: var(--font);
  color: #CCC;
  background: var(--white);
  appearance: none;
  -webkit-appearance: none;
  transition: border-color var(--t);
  outline: none;
  cursor: pointer;
  overflow: hidden;
}
.field__select:focus { border-color: var(--navy); }
.field__select.is-error { border-color: #DC2626; }
.field__select-arrow {
  position: absolute;
  right: 16px;
  pointer-events: none;
  display: flex;
}
.field__error {
  font-size: 12px;
  color: #DC2626;
  min-height: 16px;
  display: block;
}

.form-privacy {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 11px;
  color: #AAA;
  line-height: 1.4;
}
.form-privacy svg { flex-shrink: 0; margin-top: 1px; }

/* ── Features bar ────────────────────── */
.hero__features {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 4;
  background: #F6931C;
  background: linear-gradient(45deg, rgba(246,147,28,1) 0%, rgba(246,147,28,1) 65%, rgba(1,63,94,0) 65%, rgba(1,63,94,0) 100%);
}
.hero__features-inner {
  max-width: var(--max);
  margin-inline: auto;
  padding: 18px clamp(24px, 4vw, 60px) 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 40px;
}
.hero-feature {
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-feature__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  backdrop-filter: blur(11px);
  -webkit-backdrop-filter: blur(11px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero-feature__icon i {
  font-size: 22px;
  color: white;
  line-height: 1;
}
.hero-feature__text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.hero-feature__text strong {
  font-size: 15px;
  font-weight: 600;
  color: rgba(51,51,51,.9);
  letter-spacing: -0.15px;
  line-height: 1.3;
}
.hero-feature__text span {
  font-size: 14px;
  font-weight: 500;
  color: rgba(51,51,51,.8);
  letter-spacing: -0.1px;
  line-height: 1.3;
}

/* ── Numbers / Stats ─────────────────── */
.stats {
  background: #F6931C;
  overflow: hidden;
}
.stats__track {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}
.stat-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: clamp(28px, 4vw, 48px) clamp(40px, 5vw, 80px);
  white-space: nowrap;
  flex-shrink: 0;
}
.stat-item__icon {
  font-size: 40px;
  color: var(--orange);
  flex-shrink: 0;
  line-height: 1;
}
.stat-item__content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.stat-item__number {
  font-size: clamp(40px, 4.5vw, 64px);
  font-weight: 800;
  color: white;
  line-height: 1;
  letter-spacing: -2.5px;
}
.stat-item__label {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  line-height: 1.3;
}
.stat-item__icon {
  font-size: 40px;
  color: rgba(255,255,255,.75);
  flex-shrink: 0;
  line-height: 1;
}

/* ── Desktop: 3 colunas a partir de 1024px ── */
@media (min-width: 1024px) {
  .hero__content-inner {
    flex-direction: row;
    align-items: center;
    padding-top: 0;
    padding-bottom: 90px;
    max-height: 700px;
    gap: 0;
  }
  .hero__photo-col {
    display: flex;
    width: 360px;
    flex-shrink: 0;
    height: 630px;
    overflow: hidden;
    margin-bottom: 0;
    align-self: flex-end;
  }
  .hero__photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
  }
  .hero__headline-col {
    flex: 1;
    padding: 48px 32px 48px 40px;
    align-self: center;
  }
  .hero__form-col {
    width: 380px;
    flex-shrink: 0;
    align-self: center;
  }
}

@media (min-width: 1280px) {
  .hero__photo-col { width: 440px; }
  .hero__form-col { width: 400px; }
  .hero__headline-col { padding: 56px 48px 56px 48px; }
}


/* ══════════════════════════════════════════
   S02 · CURSOS (carousel)
══════════════════════════════════════════ */
.courses {
  padding: var(--sec) 0 calc(var(--sec) - 16px);
  background: var(--gray-50);
  overflow: hidden;
}
.courses .section-label,
.courses .section-title,
.courses .section-sub {
  padding-inline: var(--g);
}

.carousel-wrap {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 40px;
  max-width: var(--max);
  margin-inline: auto;
}
.carousel-nav {
  position: absolute;
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: var(--sh-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  transition: background var(--t), color var(--t), transform var(--t);
  flex-shrink: 0;
}
.carousel-nav:hover { background: var(--navy); color: var(--white); transform: scale(1.08); }
.carousel-nav--prev { left: 8px; }
.carousel-nav--next { right: 8px; }

.carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
  cursor: grab;
  user-select: none;
}
.carousel:active { cursor: grabbing; }

/* Máscara nas bordas — cobre o "vazamento" do próximo card na
   área reservada (padding) para os botões de navegação */
.carousel::before,
.carousel::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 56px;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(to right, var(--gray-50) 55%, rgba(248,249,250,0) 100%);
}
.carousel::before { left: 0; }
.carousel::after { right: 0; transform: scaleX(-1); }

.carousel__track {
  display: flex;
  gap: 20px;
  padding: 16px 56px 56px;
  transition: transform .45s cubic-bezier(.25,.46,.45,.94);
  will-change: transform;
}

/* Course cards */
.course-card {
  background: var(--white);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-sm);
  overflow: hidden;
  flex: 0 0 280px;
  transition: transform var(--t-md), box-shadow var(--t-md);
  border: 1.5px solid transparent;
}
.course-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-lg);
  border-color: var(--orange);
}
.course-card.is-active {
  transform: scale(1.03);
  box-shadow: var(--sh-lg);
  border-color: var(--orange);
}

.course-card__img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: var(--gray-100);
}
.course-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.course-card:hover .course-card__img { transform: scale(1.05); }

.course-card__img-fallback {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.course-card__img-fallback--blue   { background: linear-gradient(135deg,#1B2B6B,#3b5ab8); }
.course-card__img-fallback--teal   { background: linear-gradient(135deg,#0d7377,#14a085); }
.course-card__img-fallback--orange { background: linear-gradient(135deg,#d4530b,#F47B20); }
.course-card__img-fallback--purple { background: linear-gradient(135deg,#6135b7,#8b5cf6); }
.course-card__img-fallback--green  { background: linear-gradient(135deg,#166534,#15803d); }

.course-card__img-wrap.course-card__img-wrap--error .course-card__img { display: none; }
.course-card__img:not([src=""]) + .course-card__img-fallback { display: none; }

.course-card__body { padding: 20px; }
.course-card__icon { margin-bottom: 12px; display: inline-flex; }
.course-card__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.3;
}
.course-card__line {
  width: 32px;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
  margin-bottom: 10px;
}
.course-card__desc {
  font-size: 13.5px;
  color: var(--gray-600);
  line-height: 1.55;
  margin-bottom: 16px;
}
.course-cta { transition: background var(--t), color var(--t); }

/* Dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding-top: 4px;
}
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gray-200);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background var(--t), transform var(--t), width var(--t);
}
.carousel-dot.is-active {
  background: var(--orange);
  width: 22px;
  border-radius: 4px;
}

@media (min-width: 768px) {
  .course-card { flex: 0 0 320px; }
}
@media (min-width: 1100px) {
  /* Exatamente 3 colunas visíveis no desktop */
  .course-card { flex: 0 0 calc((100% - 40px) / 3); }
  .carousel-nav--prev { left: clamp(8px, 3vw, 32px); }
  .carousel-nav--next { right: clamp(8px, 3vw, 32px); }
}


/* ══════════════════════════════════════════
   S03 · BENEFÍCIOS
══════════════════════════════════════════ */
.benefits {
  padding: var(--sec) 0;
  background: linear-gradient(150deg, #013f5e 0%, #025a85 100%);
  position: relative;
  overflow: hidden;
}
.benefits .container { position: relative; z-index: 1; }

/* Blob laranja suave — topo direito */
.benefits::before {
  content: '';
  position: absolute;
  top: -220px; right: -220px;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(246,147,28,.14) 0%, transparent 65%);
  animation: blob-drift 16s ease-in-out infinite;
  pointer-events: none; z-index: 0;
}
/* Blob branco suave — baixo esquerdo */
.benefits::after {
  content: '';
  position: absolute;
  bottom: -200px; left: -120px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(255,255,255,.05) 0%, transparent 65%);
  animation: blob-drift 22s ease-in-out infinite reverse;
  pointer-events: none; z-index: 0;
}

/* Anéis pulsantes — sobrepostos no topo direito */
.benefits__geo {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.benefits__geo::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 520px; height: 520px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.08);
  animation: ring-pulse 8s ease-in-out infinite;
}
.benefits__geo::after {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 340px; height: 340px;
  border-radius: 50%;
  border: 1px solid rgba(246,147,28,.14);
  animation: ring-pulse 8s ease-in-out infinite 2.5s;
}

/* Textos adaptados ao fundo escuro */
.benefits .section-label { color: var(--orange); }
.benefits .section-title { color: var(--white); }
.benefits .section-title em { color: var(--orange); }
.benefits .section-sub { color: rgba(255,255,255,.7); }

/* Cards */
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 40px;
}
.benefit-card {
  background: rgba(255,255,255,.06);
  border: 1.5px solid rgba(255,255,255,.1);
  border-radius: var(--r-lg);
  padding: 24px 20px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: border-color var(--t), box-shadow var(--t), transform var(--t);
}
.benefit-card:hover {
  border-color: var(--orange);
  box-shadow: 0 4px 24px rgba(0,0,0,.3);
  transform: translateY(-2px);
}
.benefit-card__icon { flex-shrink: 0; display: flex; }
.benefit-card__icon circle { fill: rgba(246,147,28,.18); }
.benefit-card__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
  line-height: 1.3;
}
.benefit-card__desc {
  font-size: 13.5px;
  color: rgba(255,255,255,.65);
  line-height: 1.55;
}

@media (min-width: 600px) {
  .benefits-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 900px) {
  .benefits-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .benefit-card { flex-direction: column; }
}


/* ══════════════════════════════════════════
   S04 · COMO FUNCIONA
══════════════════════════════════════════ */
.how {
  padding: var(--sec) 0;
  background: linear-gradient(135deg, #f6931c 0%, #d97d0f 100%);
  position: relative;
  overflow: hidden;
}
.how .container { position: relative; z-index: 1; }

/* Blob branco suave — topo esquerdo */
.how::before {
  content: '';
  position: absolute;
  top: -180px; left: -180px;
  width: 650px; height: 650px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(255,255,255,.15) 0%, transparent 65%);
  animation: blob-drift 18s ease-in-out infinite;
  pointer-events: none; z-index: 0;
}
/* Blob escuro suave — baixo direito */
.how::after {
  content: '';
  position: absolute;
  bottom: -180px; right: -120px;
  width: 550px; height: 550px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(1,63,94,.15) 0%, transparent 65%);
  animation: blob-drift 14s ease-in-out infinite reverse;
  pointer-events: none; z-index: 0;
}

/* Anéis pulsantes — canto superior esquerdo */
.how__geo {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.how__geo::before {
  content: '';
  position: absolute;
  top: -100px; left: -100px;
  width: 480px; height: 480px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.14);
  animation: ring-pulse 10s ease-in-out infinite;
}
.how__geo::after {
  content: '';
  position: absolute;
  bottom: -80px; right: -80px;
  width: 360px; height: 360px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.1);
  animation: ring-pulse 10s ease-in-out infinite 3s;
}

.how__header {
  margin-bottom: 40px;
}
.how__label {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,.9);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}
.how__title {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 900;
  color: var(--navy-dark);
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: -1px;
}
.how__title em {
  color: var(--white);
  font-style: normal;
}

/* ── Keyframes compartilhados ──────────── */
@keyframes blob-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(-28px, -18px) scale(1.04); }
  66%       { transform: translate(18px, 14px) scale(0.97); }
}
@keyframes ring-pulse {
  0%, 100% { opacity: .35; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.07); }
}
.how__grid {
  display: grid;
  grid-template-columns: 1fr;
  background: var(--white);
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,.06);
}
.how-step {
  padding: 36px 32px;
  border-bottom: 1px solid #e5e7eb;
}
.how-step:last-child {
  border-bottom: none;
}
.how-step__icon {
  font-size: 28px;
  color: var(--orange);
  margin-bottom: 20px;
  display: block;
}
.how-step__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.how-step__etapa {
  font-size: 11px;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.how-step__tag {
  display: inline-block;
  background: #f3f4f6;
  color: #6b7280;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 4px 12px;
  border-radius: 999px;
}
.how-step__title {
  font-size: 18px;
  font-weight: 900;
  color: #1a1a2e;
  text-transform: uppercase;
  line-height: 1.15;
  letter-spacing: -0.3px;
  margin-bottom: 10px;
}
.how-step__desc {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.65;
}

@media (min-width: 900px) {
  .how__grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .how-step {
    border-bottom: none;
    border-right: 1px solid #e5e7eb;
  }
  .how-step:last-child {
    border-right: none;
  }
}


/* ══════════════════════════════════════════
   S05 · CREDIBILIDADE
══════════════════════════════════════════ */
.creds {
  padding: var(--sec) 0;
  background: var(--white);
}
.creds-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 44px;
}
.cred-card {
  background: var(--white);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--r-xl);
  padding: 32px 24px 24px;
  text-align: center;
  position: relative;
  transition: box-shadow var(--t), transform var(--t);
}
.cred-card:hover {
  box-shadow: var(--sh-md);
  transform: translateY(-4px);
}
.cred-card--featured {
  border-color: var(--orange);
  background: var(--orange-lt);
  box-shadow: var(--sh-sm);
}
.cred-card__check {
  position: absolute;
  top: 16px;
  right: 16px;
}
.cred-card__icon { display: flex; justify-content: center; margin-bottom: 16px; }
.cred-card__title {
  font-size: 17px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}
.cred-card--featured .cred-card__title { color: var(--orange); }
.cred-card__desc {
  font-size: 13.5px;
  color: var(--gray-600);
  line-height: 1.55;
  margin-bottom: 20px;
}
.cred-card__badge {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 12px 16px;
  border: 1px solid var(--gray-200);
}
.cred-card--featured .cred-card__badge { background: white; }
.cred-card__badge-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 4px;
}
.cred-card__badge-value {
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -.5px;
}

@media (min-width: 768px) {
  .creds-grid { grid-template-columns: repeat(3, 1fr); }
}


/* ══════════════════════════════════════════
   S06 · FAQ
══════════════════════════════════════════ */
.faq {
  padding: var(--sec) 0;
  background: var(--gray-50);
}
.faq__container {
  max-width: 760px;
}
.faq-list {
  margin-top: 44px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1.5px solid var(--gray-200);
  background: var(--white);
  transition: border-color var(--t);
}
.faq-item--open {
  background: var(--navy);
  border-color: var(--navy);
}

.faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  transition: color var(--t);
  cursor: pointer;
  background: none;
  border: none;
}
.faq-item--open .faq-btn { color: var(--white); }

.faq-btn__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: background var(--t);
}
.faq-item--open .faq-btn__icon { background: rgba(255,255,255,.2); }

/* Show correct icon */
.faq-btn .icon-minus { display: none; }
.faq-btn .icon-plus  { display: block; }
.faq-item--open .faq-btn .icon-minus { display: block; }
.faq-item--open .faq-btn .icon-plus  { display: none; }

.faq-btn > span:nth-child(2) { flex: 1; }

.faq-btn__chevron {
  flex-shrink: 0;
  color: var(--orange);
  transition: transform var(--t);
}
.faq-item--open .faq-btn__chevron {
  color: rgba(255,255,255,.7);
  transform: rotate(0deg);
}
/* Closed = chevron pointing down */
.faq-item:not(.faq-item--open) .faq-btn__chevron { transform: rotate(0deg); }

.faq-answer {
  overflow: hidden;
  max-height: 0;
  padding: 0 20px;
  visibility: hidden;
  /* visibility hidden fires after max-height closes (0.35s delay) */
  transition: max-height .35s ease, padding .3s ease, visibility 0s .35s;
}
.faq-item--open .faq-answer {
  max-height: 400px;
  padding: 0 20px 18px;
  visibility: visible;
  /* visibility visible fires immediately on open */
  transition: max-height .35s ease, padding .3s ease, visibility 0s 0s;
}
.faq-answer p {
  font-size: 14.5px;
  color: rgba(255,255,255,.85);
  line-height: 1.65;
  background: rgba(255,255,255,.08);
  border-radius: var(--r-sm);
  padding: 14px 16px;
}


/* ══════════════════════════════════════════
   S07 · CTA FINAL
══════════════════════════════════════════ */
.cta-final {
  padding: var(--sec) var(--g);
  background: var(--gray-50);
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(244,123,32,.06) 0%, transparent 70%);
  pointer-events: none;
}
.cta-final::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(27,43,107,.06) 0%, transparent 70%);
  pointer-events: none;
}
.cta-final__inner {
  max-width: 640px;
  margin-inline: auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.cta-logo {
  height: 44px;
  width: auto;
  margin: 0 auto 28px;
  display: block;
}
.cta-final__title {
  font-size: clamp(26px, 3.5vw, 46px);
  font-weight: 900;
  color: var(--navy-dark);
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: -1px;
  margin-bottom: 16px;
}
.cta-final__title em { color: var(--orange); font-style: normal; }
.cta-final__sub {
  font-size: clamp(15px, 2vw, 17px);
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 36px;
}


/* ══════════════════════════════════════════
   RODAPÉ
══════════════════════════════════════════ */
.footer {
  background: var(--navy-dark);
  padding-top: 56px;
}
.footer__top {
  max-width: var(--max);
  margin-inline: auto;
  padding: 0 var(--g) 48px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}
.footer__logo-link {
  display: inline-flex;
  align-items: center;
  background: var(--white);
  padding: 8px 14px;
  border-radius: var(--r-md);
}
.footer-logo { height: 42px; width: auto; display: block; }
.footer__brand-desc {
  font-size: 13.5px;
  color: rgba(255,255,255,.55);
  line-height: 1.65;
  margin-top: 14px;
  max-width: 260px;
}
.footer__nav-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.footer__nav-list { display: flex; flex-direction: column; gap: 10px; }
.footer__link {
  font-size: 13.5px;
  color: rgba(255,255,255,.6);
  transition: color var(--t);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}
.footer__link:hover { color: var(--orange); }
.footer__link--icon { align-items: flex-start; }
.footer__link--icon svg { margin-top: 2px; flex-shrink: 0; }
.footer__link--addr { cursor: default; }
.footer__link--addr:hover { color: rgba(255,255,255,.6); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 18px var(--g);
  max-width: var(--max);
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,.4);
}
.footer__privacy {
  color: var(--orange);
  transition: color var(--t);
  margin-left: auto;
}
.footer__privacy:hover { color: var(--orange-h); }

@media (min-width: 768px) {
  .footer__top { grid-template-columns: 1.5fr 1fr 1fr 1.4fr; gap: 32px; }
}


/* ══════════════════════════════════════════
   STICKY CTA (mobile)
══════════════════════════════════════════ */
.sticky-cta {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  z-index: 100;
  transition: transform .4s cubic-bezier(.34,1.56,.64,1);
  pointer-events: none;
}
.sticky-cta.is-visible {
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
@media (min-width: 900px) {
  .sticky-cta { display: none; }
}


/* ══════════════════════════════════════════
   WHATSAPP FLOAT (ícone fixo, todas as telas)
══════════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 110;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(0,0,0,.28);
  transition: transform var(--t), box-shadow var(--t);
}
.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(0,0,0,.35);
}
@media (max-width: 899px) {
  .whatsapp-float { right: 16px; bottom: 88px; width: 50px; height: 50px; }
}


/* ══════════════════════════════════════════
   MOBILE — ajustes visuais (< 1024px)
══════════════════════════════════════════ */
@media (max-width: 1023px) {

  /* ── Hero: features bar deixa de ser absolute ────
     Sem isso ela sobrepõe o formulário no mobile      */
  .hero__content-inner {
    padding-bottom: 24px;
  }
  .hero__features {
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
    /* Remove gradiente que deixava metade transparente/marinha
       — sem a foto a direita fica feia no mobile         */
    background: #F6931C;
  }
  .hero__features-inner {
    justify-content: center;
    gap: 12px 28px;
    padding: 20px clamp(16px, 4vw, 40px);
  }

  /* ── Badge: menor e centralizado ──────────────── */
  .hero__badge {
    align-self: center;
    font-size: 11px;
    padding: 5px 14px;
    letter-spacing: 0.8px;
  }

  /* ── Headline col: centraliza badge e subtítulo ─ */
  .hero__headline-col {
    align-items: center;
    gap: 16px;
  }
  .hero__title {
    letter-spacing: -1.5px;
    text-align: center;
  }
  .hero__subtitle {
    text-align: center;
    font-size: 15px;
  }

  /* ── Features text: melhor legibilidade no mobile ─ */
  .hero-feature__text strong { font-size: 13px; }
  .hero-feature__text span   { font-size: 12px; }
  .hero-feature__icon        { width: 40px; height: 40px; }
  .hero-feature__icon i      { font-size: 18px; }
}
@media print {
  .whatsapp-float { display: none; }
}


/* ══════════════════════════════════════════
   Utilities & misc
══════════════════════════════════════════ */
.hide-mobile { display: none; }
@media (min-width: 768px) {
  .hide-mobile { display: inline; }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.is-revealed {
  opacity: 1;
  transform: none;
}

/* Success state */
.form--success .form-card__title::after {
  content: ' ✓';
  color: #16A34A;
}

/* Print */
@media print {
  .sticky-cta, .carousel-nav, .hero__stats { display: none; }
}

/* High contrast / reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  html { scroll-behavior: auto; }
}
