/* ============================================================
   LOTUS — style.css
   Cores: navy #1B3A6B | laranja #E87722 | amarelo #E8C34A | azul claro #2E7FCC
   Sem CSS custom properties (sem var())
============================================================ */

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* Compensa a altura do navbar fixo ao navegar pelas âncoras do menu */
#solucoes, #metodo, #conteudo, #contato {
  scroll-margin-top: 90px;
}
body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: #2C2C2C;
  background: #FFFFFF;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img, svg { display: block; max-width: 100%; }


/* ============================================================
   NAV
============================================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  background: #FFFFFF;
  border-bottom: 1px solid #E8EDF5;
  box-shadow: 0 1px 8px rgba(27,58,107,0.06);
  transition: box-shadow 0.3s;
}
#navbar.scrolled {
  box-shadow: 0 2px 20px rgba(27,58,107,0.12);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.nav-compass-img {
  height: 38px;
  width: 38px;
  object-fit: contain;
  display: block;
}
.nav-logo-text { display: flex; flex-direction: column; }
.nav-logo-name {
  font-family: 'Merriweather', serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #1B3A6B;
  line-height: 1;
}
.nav-logo-sub {
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  color: #7A8FA8;
  text-transform: uppercase;
  line-height: 1.2;
  margin-top: 2px;
}

/* Links */
.nav-links {
  display: flex;
  gap: 2.5rem;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: #3D5070;
  transition: color 0.2s;
  letter-spacing: 0.02em;
}
.nav-links a:hover { color: #1B3A6B; }

/* Ações */
.nav-actions { display: flex; align-items: center; gap: 1rem; }

/* Toggle de idioma */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  background: none;
  border: 1px solid #C8D4E8;
  border-radius: 4px;
  padding: 0.25rem 0.6rem;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #3D5070;
  transition: border-color 0.2s;
}
.lang-toggle:hover { border-color: #1B3A6B; }
.lang-opt { transition: color 0.2s; }
.lang-opt.active { color: #1B3A6B; }
.lang-sep { color: #C8D4E8; }

/* Hamburguer */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 38px; height: 38px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: #1B3A6B;
  border-radius: 2px;
  transition: transform 0.28s ease, opacity 0.2s ease;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Menu mobile */
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  bottom: 0;
  height: calc(100vh - 72px);
  height: calc(100dvh - 72px); /* dvh = altura real no iOS, descontando barras */
  z-index: 800;
  background: #FFFFFF;
  padding: 2rem 1.5rem;
  padding-bottom: calc(2rem + env(safe-area-inset-bottom)); /* notch/home bar */
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu ul { display: flex; flex-direction: column; }
.mobile-menu li { border-bottom: 1px solid #E8EDF5; }
.mobile-menu a {
  display: block;
  padding: 1rem 0;
  font-size: 1.05rem;
  font-weight: 500;
  color: #1B3A6B;
  transition: color 0.2s;
}
.mobile-menu a:hover { color: #E87722; }


/* ============================================================
   CONTAINERS & HELPERS
============================================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-kicker {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #E87722;
  margin-bottom: 1.5rem;
  text-align: center;
}

/* Botões */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #1B3A6B;
  color: #FFFFFF;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.85rem 2rem;
  border-radius: 3px;
  transition: background 0.2s, transform 0.15s;
  letter-spacing: 0.02em;
}
.btn-primary:hover { background: #142D55; transform: translateY(-1px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: #1B3A6B;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.85rem 2rem;
  border-radius: 3px;
  border: 1.5px solid #1B3A6B;
  transition: background 0.2s, color 0.2s;
}
.btn-ghost:hover { background: #1B3A6B; color: #FFFFFF; }

.btn-primary-dark {
  background: #1B3A6B;
  color: #FFFFFF;
}
.btn-primary-dark:hover { background: #142D55; }

/* Ícones animados (estado inicial para JS) */
.animate-icon {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.animate-icon.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ============================================================
   HERO
============================================================ */
#hero {
  padding-top: 72px;
  min-height: 100vh;
  background: #FCFAF8;
  display: flex;
  align-items: center;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-title {
  font-family: 'Merriweather', serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 700;
  line-height: 1.2;
  color: #1B3A6B;
  margin-bottom: 0.75rem;
}
.hero-dot { color: #E87722; }
.hero-subtitle {
  font-size: 1.05rem;
  font-weight: 600;
  color: #E87722;
  margin-bottom: 1.25rem;
  letter-spacing: 0.01em;
}
.hero-body {
  font-size: 0.92rem;
  line-height: 1.8;
  color: #4A5A70;
  max-width: 480px;
  margin-bottom: 2.25rem;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-illustration {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-img {
  width: 100%;
  max-width: 560px;
  height: auto;
  display: block;
  /* leve animação de entrada */
  animation: heroImgIn 0.9s cubic-bezier(0.4, 0, 0.2, 1) both;
}
@keyframes heroImgIn {
  from { opacity: 0; transform: translateY(16px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0)    scale(1); }
}


/* ============================================================
   TESE
============================================================ */
.section-tese {
  background: #F8F5F1;
  padding: 6rem 0;
  border-top: 1px solid #CCCCCC;
}
.tese-kicker {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #E87722;
  margin-bottom: 2.5rem;
}
.tese-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 0.9fr 1.3fr;
  gap: 2.5rem;
  align-items: center;
}
.tese-title {
  font-family: 'Merriweather', serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 700;
  color: #1B3A6B;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.tese-sub {
  font-size: 0.95rem;
  font-weight: 600;
  color: #E87722;
}
.tese-col p {
  font-size: 0.88rem;
  line-height: 1.85;
  color: #4A5A70;
}
.tese-method-title {
  font-size: 1rem;
  font-weight: 700;
  color: #1B3A6B;
  margin: 0.75rem 0;
}
.tese-col strong { color: #1B3A6B; }

/* Ilustração ao lado do texto */
.tese-col-illustration {
  display: flex;
  align-items: center;
  justify-content: center;
}
.tese-img {
  width: 100%;
  height: auto;
  display: block;
}


/* ============================================================
   ANTES / DEPOIS
============================================================ */
.section-antes-depois {
  background: #FCFAF8;
  padding: 5rem 0;
  border-top: 1px solid #CCCCCC;
}
.antes-depois-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: center;
  margin-top: 1rem;
}
.antes-card, .depois-card {
  background: #FFFFFF;
  border-radius: 6px;
  padding: 2.5rem 2rem;
  box-shadow: 0 2px 12px rgba(27,58,107,0.07);
}
.antes-title {
  font-family: 'Merriweather', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #E87722;
  margin-bottom: 1.5rem;
}
.depois-title {
  font-family: 'Merriweather', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #1B3A6B;
  margin-bottom: 1.5rem;
}
.antes-list li, .depois-list li {
  font-size: 0.88rem;
  color: #4A5A70;
  padding: 0.45rem 0 0.45rem 1.5rem;
  position: relative;
  border-bottom: 1px solid #F0F3F8;
}
.antes-list li:last-child, .depois-list li:last-child { border-bottom: none; }
.antes-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #E87722;
}
.depois-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #2E7FCC;
}
.antes-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.antes-arrow-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: transparent;
  border: 2px solid #1B3A6B;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1B3A6B;
  flex-shrink: 0;
}


/* ============================================================
   MÉTODO (6 passos)
============================================================ */
.section-metodo {
  background: #F8F5F1;
  padding: 6rem 0;
  border-top: 1px solid #CCCCCC;
}
.metodo-steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  margin-top: 1.5rem;
  position: relative;
}
.metodo-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 0.75rem;
  position: relative;
}
.step-num {
  width: 36px; height: 36px;
  border-radius: 50%;
  color: #FFFFFF;
  font-size: 0.9rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
/* linha conectora entre steps */
.step-connector {
  position: absolute;
  top: 17px;
  left: 50%;
  width: 100%;
  height: 1px;
  background: #C8D4E8;
  z-index: 0;
}
.metodo-step:last-child .step-connector { display: none; }
.step-icon {
  width: 40px; height: 40px;
  margin: 1rem auto 0.75rem;
}
.step-icon-img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  display: block;
  margin: 1rem auto 0.75rem;
}
.step-title {
  font-family: 'Merriweather', serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: #1B3A6B;
  margin-bottom: 0.5rem;
}
.step-desc {
  font-size: 0.78rem;
  color: #5A6A80;
  line-height: 1.65;
}


/* ============================================================
   SOLUÇÕES
============================================================ */
.section-solucoes {
  background: #FCFAF8;
  padding: 6rem 0;
  border-top: 1px solid #CCCCCC;
}
.solucoes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
}
.solucao-card {
  background: #FFFFFF;
  border-radius: 6px;
  padding: 2rem 1.75rem;
  box-shadow: 0 2px 12px rgba(27,58,107,0.06);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: transform 0.22s, box-shadow 0.22s;
}
.solucao-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(27,58,107,0.12);
}
.solucao-icon { width: 48px; height: 48px; }
.solucao-icon-img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  display: block;
}
.solucao-divider {
  width: 32px;
  height: 3px;
  border-radius: 2px;
}
.solucao-divider-blue   { background: #1B3A6B; }
.solucao-divider-orange { background: #E87722; }
.solucao-divider-yellow { background: #E8C34A; }
.solucao-divider-blue2  { background: #2E7FCC; }
.solucao-title {
  font-family: 'Merriweather', serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #1B3A6B;
  line-height: 1.3;
}
.solucao-desc {
  font-size: 0.82rem;
  color: #5A6A80;
  line-height: 1.7;
}


/* ============================================================
   POR QUE A LOTUS + CONTEÚDO
============================================================ */
.section-porque {
  background: #F8F5F1;
  padding: 6rem 0;
  border-top: 1px solid #CCCCCC;
}
.porque-grid {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 4rem;
  align-items: start;
}
.porque-divider {
  width: 1px;
  background: #D8E2F0;
  align-self: stretch;
  margin: 0;
}
.porque-title {
  font-family: 'Merriweather', serif;
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  font-weight: 700;
  color: #1B3A6B;
  line-height: 1.3;
  margin-bottom: 1rem;
}
.porque-body {
  font-size: 0.88rem;
  color: #5A6A80;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.porque-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.porque-list li {
  font-size: 0.88rem;
  color: #3D5070;
  padding-left: 2rem;
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 0;
}
/* Círculo com check — usando SVG como background */
.porque-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1.8px solid #2E7FCC;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18'%3E%3Cpath d='M4.5 9 L7.5 12 L13.5 6' stroke='%232E7FCC' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  flex-shrink: 0;
}



/* Ícones de conteúdo */
.conteudo-icons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}
.conteudo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  text-align: center;
  border: 1.5px solid #D0DAF0;
  border-radius: 6px;
  padding: 1rem 0.75rem 0.875rem;
  width: 88px;
  transition: border-color 0.2s, box-shadow 0.2s;
  background: transparent;
}
.conteudo-item:hover {
  border-color: #1B3A6B;
  box-shadow: 0 2px 12px rgba(27,58,107,0.08);
}
.conteudo-item svg {
  width: 36px; height: 36px;
}
.conteudo-icon-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  display: block;
}
.conteudo-item span {
  font-size: 0.65rem;
  font-weight: 600;
  color: #3D5070;
  line-height: 1.3;
  white-space: normal;
}


/* ============================================================
   CTA FINAL
============================================================ */
.section-cta {
  background: #F8F5F1;
  padding: 5rem 0;
  border-top: 1px solid #CCCCCC;
}
.cta-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 3rem;
  align-items: center;
}
.cta-compass { flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.cta-logo-img { width: 180px; height: 180px; object-fit: contain; display: block; transition: transform 0.2s ease-out; }
.cta-title {
  font-family: 'Merriweather', serif;
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  font-weight: 700;
  color: #1B3A6B;
  line-height: 1.25;
  margin-bottom: 0.5rem;
}
.cta-subtitle {
  display: block;
  font-style: italic;
  color: #E87722;
  font-weight: 400;
}
.cta-question {
  font-size: 0.9rem;
  color: #4A5A70;
  line-height: 1.7;
  margin-bottom: 0.75rem;
}
.cta-link {
  font-size: 1rem;
  font-weight: 700;
  color: #1B3A6B;
  text-decoration: underline;
  text-underline-offset: 3px;
}


/* ============================================================
   FOOTER — layout 2 colunas: esquerda links, direita form
============================================================ */
footer {
  background: #1B3A6B;
  padding: 5rem 0 0;
}

/* Grid principal: esquerda | direita */
.footer-main {
  display: grid;
  grid-template-columns: 0.65fr 1.4fr;
  gap: 5rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  align-items: center;
}

/* ── ESQUERDA ── */
.footer-left { display: flex; flex-direction: column; gap: 1.25rem; }

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.footer-compass-img {
  height: 40px;
  width: 40px;
  object-fit: contain;
  display: block;
  /* compasso já é transparente — filtro para deixar branco no footer escuro */
  filter: brightness(0) invert(1);
}
.footer-logo-name {
  font-family: 'Merriweather', serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #FFFFFF;
}
.footer-tagline {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  margin-top: -1rem;
}
.footer-tagline + .footer-tagline { margin-top: -0.5rem; }

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.25rem;
}
.footer-social a {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.55);
  transition: border-color 0.2s, color 0.2s;
}
.footer-social a:hover { border-color: #E8C34A; color: #E8C34A; }
.footer-social svg { width: 15px; height: 15px; }

/* Mini-colunas de navegação */
.footer-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 0.5rem;
}
.footer-col-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-bottom: 0.875rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer-col a:hover { color: #E8C34A; }

/* ── DIREITA: FORM ── */
.footer-right {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 2.5rem;
}

.footer-form-title {
  font-family: 'Merriweather', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.4rem;
}
.footer-form-sub {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.75rem;
}

.footer-form { display: flex; flex-direction: column; gap: 1rem; }

.footer-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.footer-fg { display: flex; flex-direction: column; gap: 0.35rem; }
.footer-fg label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.footer-fg input,
.footer-fg select,
.footer-fg textarea {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  color: #FFFFFF;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 4px;
  padding: 0.7rem 0.9rem;
  outline: none;
  width: 100%;
  transition: border-color 0.2s, background 0.2s;
}
.footer-fg input::placeholder,
.footer-fg textarea::placeholder { color: rgba(255,255,255,0.28); }
.footer-fg select option { background: #1B3A6B; color: #FFFFFF; }
.footer-fg input:focus,
.footer-fg select:focus,
.footer-fg textarea:focus {
  border-color: #E8C34A;
  background: rgba(255,255,255,0.1);
}
.footer-fg textarea { resize: vertical; min-height: 100px; }

.footer-form-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: #E87722;
  color: #FFFFFF;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  border: none;
  border-radius: 4px;
  padding: 0.875rem 2rem;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  align-self: flex-start;
  margin-top: 0.25rem;
}
.footer-form-btn:hover { background: #D06010; transform: translateY(-1px); }
.footer-form-btn svg { width: 16px; height: 16px; }

/* Mensagem de sucesso */
.footer-form-success {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(232,195,74,0.12);
  border: 1px solid rgba(232,195,74,0.3);
  border-radius: 4px;
  padding: 1rem 1.25rem;
  margin-top: 0.5rem;
}
.footer-form-success svg { width: 22px; height: 22px; flex-shrink: 0; }
.footer-form-success p { font-size: 0.88rem; color: #E8C34A; }

/* ── RODAPÉ INFERIOR ── */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer-bottom-links { display: flex; align-items: center; gap: 0.75rem; }
.footer-bottom-links a { color: rgba(255,255,255,0.3); transition: color 0.2s; }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.7); }


/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1100px) {
  .tese-grid { grid-template-columns: 1fr 1fr; }
  .tese-col-illustration { grid-column: 1 / -1; margin-top: 1rem; }
  .tese-img { max-width: 560px; margin: 0 auto; }
  .metodo-steps { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
  .step-connector { display: none; }
  .footer-main { grid-template-columns: 1fr; gap: 3rem; }
  .footer-right { padding: 2rem; }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .mobile-menu { display: flex; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-illustration { margin-top: 2rem; }
  .hero-img { max-width: 420px; margin: 0 auto; }
  .antes-depois-grid { grid-template-columns: 1fr; }
  .antes-arrow { text-align: center; justify-content: center; }
  .antes-arrow-circle svg { transform: rotate(90deg); }
  .solucoes-grid { grid-template-columns: repeat(2, 1fr); }
  .porque-grid { grid-template-columns: 1fr; }
  .porque-divider { display: none; }
  .cta-grid { grid-template-columns: 1fr; text-align: center; }
  .cta-compass { display: flex; justify-content: center; }
  .cta-logo-img { width: 120px; height: 120px; }
  .cta-action { display: flex; justify-content: center; }
  .footer-form-row { grid-template-columns: 1fr; }
}

/* Tablets pequenos / iPhone landscape */
@media (max-width: 600px) {
  .nav-inner { padding: 0 1.25rem; }
  .nav-logo-sub { display: none; }     /* esconde subtítulo p/ não quebrar o nav */
  .nav-compass-img { height: 34px; width: 34px; }
  .nav-logo-name { font-size: 1rem; }

  .container { padding: 0 1.25rem; }
  .hero-inner { padding: 3rem 1.25rem; }

  .tese-grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .tese-col-illustration { margin-top: 0.5rem; }
  .tese-img { max-width: 100%; }
  .metodo-steps { grid-template-columns: repeat(2, 1fr); gap: 2.5rem 1rem; }
  .solucoes-grid { grid-template-columns: 1fr; }
  .footer-nav { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .hero-btns a { width: 100%; justify-content: center; }

  /* Conteúdo e autoridade: caixinhas fluidas com espaçamento */
  .conteudo-icons {
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
  }
  .conteudo-item { width: calc(50% - 0.5rem); }

  /* Títulos não transbordam */
  .tese-title { font-size: clamp(1.8rem, 7vw, 2.4rem); }
  .porque-title { font-size: clamp(1.5rem, 6vw, 2rem); }
  .cta-title { font-size: clamp(1.6rem, 6.5vw, 2.2rem); }
  .solucao-title { font-size: 1.05rem; }

  /* Cards com padding interno menor */
  .solucao-card { padding: 1.75rem 1.5rem; }
  .antes-card, .depois-card { padding: 1.75rem 1.5rem; }
}

/* iPhone padrão (375–430px) */
@media (max-width: 430px) {
  .hero-title { font-size: clamp(1.9rem, 8vw, 2.4rem); }
  .hero-subtitle { font-size: 1rem; }
  .hero-img { max-width: 100%; }
  .section-tese,
  .section-antes-depois,
  .section-metodo,
  .section-solucoes,
  .section-porque,
  .section-cta { padding: 3.5rem 0; }

  .container { padding: 0 1rem; }

  .conteudo-item {
    width: calc(50% - 0.4rem);
    padding: 0.875rem 0.5rem 0.75rem;
  }
  .conteudo-item span { font-size: 0.6rem; }
  .conteudo-icon-svg { width: 32px; height: 32px; }

  .footer-right { padding: 1.5rem; }
  .footer-form-title { font-size: 1.3rem; }

  /* Tese: listas de texto menores p/ caber */
  .tese-col p { font-size: 0.85rem; }

  /* CTA logo menor */
  .cta-logo-img { width: 96px; height: 96px; }

  /* Step text não fica grudado */
  .metodo-steps { gap: 2.25rem 0.75rem; }
  .step-title { font-size: 0.92rem; }
  .step-desc { font-size: 0.78rem; }
}

/* iPhone SE / telas bem estreitas */
@media (max-width: 360px) {
  .metodo-steps { grid-template-columns: 1fr; }
  .conteudo-item { width: 100%; }
  .hero-title { font-size: clamp(1.7rem, 8.5vw, 2.1rem); }
  .tese-title { font-size: 1.7rem; }
  .nav-logo-name { font-size: 0.95rem; }
}

/* Seta do antes/depois: azul */
.antes-arrow-circle svg { stroke: #1B3A6B; }
