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

:root {
  --azul-escuro: #0b1e3d;
  --azul-medio: #053F96;
  --azul-claro: #053F96;
  --azul-brilhante: #053F96;
  --branco: #ffffff;
  --cinza-claro: #f1f5f9;
  --texto-suave: #cbd5e1;
  --verde: #22c55e;
  --laranja: #f97316;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
  background-color: #ffffff;
  color: #0f172a;
  overflow-x: hidden;
  max-width: 100%;
}

/* ── Textura grain global ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.18;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
}

/* ───────── NAVBAR ───────── */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(11, 30, 61, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(5, 63, 150, 0.2);
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.navbar-logo img {
  width: 36px;
  height: 36px;
}

.navbar-logo span {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--branco);
  letter-spacing: 1px;
}

.navbar-logo span em {
  color: var(--azul-brilhante);
  font-style: normal;
}

.navbar-cta {
  background: linear-gradient(135deg, var(--azul-claro), #053F96);
  color: var(--branco);
  border: none;
  padding: 10px 24px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.navbar-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(5, 63, 150, 0.5);
}

/* ───────── HERO ───────── */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 60px 5%;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../imagens/fundo diabetes.png');
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.93) 0%,
    rgba(255, 255, 255, 0.82) 30%,
    rgba(255, 255, 255, 0.30) 55%,
    rgba(255, 255, 255, 0.00) 72%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.hero-text {
  max-width: 520px;
}

.hero-text h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 44px;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 22px;
  color: #0f172a;
  font-weight: 500;
}

.hero-text h1 strong {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  color: #053F96;
  text-decoration: none;
  letter-spacing: -0.03em;
}

.hero-text .subtitulo {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: -0.01em;
  color: #0f172a;
  font-weight: 400;
  max-width: 460px;
}

/* Botão hero */
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 28px;
  background: linear-gradient(135deg, #16a34a, #22c55e, #15803d, #16a34a);
  background-size: 300% 300%;
  animation: grad-flow 3.5s ease infinite;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 20px 40px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 8px 28px rgba(22, 163, 74, 0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}

.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(22, 163, 74, 0.50);
}

.hero-cta:hover .btn-arrow {
  transform: translateX(5px);
}

/* ebook mockup (mantido para outras seções) */
.hero-visual {
  display: none;
}

.ebook-mockup {
  position: relative;
  width: 280px;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.6));
  animation: float 4s ease-in-out infinite;
}

.ebook-mockup img {
  width: 100%;
  border-radius: 12px;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-18px); }
}

.ebook-badge {
  position: absolute;
  bottom: -16px;
  right: -20px;
  background: linear-gradient(135deg, var(--laranja), #dc2626);
  color: var(--branco);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 10px 16px;
  border-radius: 50px;
  white-space: nowrap;
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
  animation: wiggle 2s ease-in-out infinite;
}

@keyframes wiggle {
  0%, 100% { transform: rotate(-3deg); }
  50%       { transform: rotate(3deg); }
}

/* ───────── TICKER ───────── */
.ticker-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-top: 1px solid rgba(255, 255, 255, 0.45);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.06);
  border-radius: 10px 10px 0 0;
  padding: 26px 0;
  width: 100%;
  overflow: hidden;
}

.ticker-track {
  display: flex;
  width: max-content;
  white-space: nowrap;
  animation: ticker-scroll 25s linear infinite;
  will-change: transform;
}

.ticker-track:hover {
  animation-play-state: paused;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: #0f172a;
  padding: 0 52px;
  flex-shrink: 0;
  letter-spacing: -0.01em;
}

.ticker-item svg {
  flex-shrink: 0;
  color: #053F96;
}

@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ───────── SEÇÃO PROBLEMA (container 2) ───────── */
.problema-sec {
  background: #ffffff;
  padding: 80px 5% 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Bloco abertura tipográfico */
.prob-abertura {
  text-align: center;
  max-width: 680px;
  margin-bottom: 64px;
}

.prob-tag {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #053F96;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 50px;
  padding: 6px 18px;
  margin-bottom: 24px;
}

.prob-intro {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 14px;
}

.prob-headline {
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 36px;
}

.prob-headline em {
  font-style: normal;
  color: #053F96;
}

.prob-divisor {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.prob-divisor span:not(.prob-divisor-dot) {
  display: block;
  width: 48px;
  height: 1px;
  background: #e2e8f0;
}

.prob-divisor-dot {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #053F96;
}

/* Label */
.prob-label {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: #94a3b8;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
  text-align: center;
}

/* Grid 2×2 */
.prob-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  width: 100%;
  max-width: 760px;
  margin-bottom: 52px;
}

.prob-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 26px 24px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  transition: background 0.5s ease, border-color 0.5s ease, box-shadow 0.5s ease, transform 0.5s ease;
  will-change: transform;
}

.prob-card:hover {
  border-color: #93c5fd;
  box-shadow: 0 8px 28px rgba(5, 63, 150, 0.12);
  transform: translateY(-4px);
}

.prob-card--active {
  background: #053F96 !important;
  border-color: #053F96 !important;
  box-shadow: 0 12px 36px rgba(5, 63, 150, 0.35) !important;
  transform: translateY(-4px);
}

.prob-card--active .prob-card-icon {
  background: rgba(255,255,255,0.15);
}

.prob-card--active .prob-card-icon svg * {
  stroke: #ffffff;
}

.prob-card--active .prob-card-txt strong {
  color: #ffffff;
}

.prob-card--active .prob-card-txt span {
  color: rgba(255,255,255,0.75);
}

.prob-card-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  min-width: 56px;
  background: #eff6ff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.prob-card-icon svg {
  width: 26px;
  height: 26px;
}

.prob-card-txt {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-top: 4px;
}

.prob-card-txt strong {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.3;
}

.prob-card-txt span {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #64748b;
  line-height: 1.6;
}

/* Frase de fechamento */
.prob-fechamento {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 400;
  font-style: italic;
  color: #94a3b8;
  text-align: center;
}

/* ───────── SEÇÃO URGÊNCIA (container 3) ───────── */
.urgencia-sec {
  background: #f8faff;
  border-top: 1px solid #e8eef8;
  padding: 88px 5% 80px;
  overflow: hidden;
}

.urgencia-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.urg-headline {
  font-family: 'Poppins', sans-serif;
  font-size: 38px;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-bottom: 12px;
}

.urg-sub {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 600;
  font-style: italic;
  color: #053F96;
  margin-bottom: 52px;
}

.urg-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 52px;
}

.urg-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 36px 20px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  box-shadow: 0 2px 16px rgba(5, 63, 150, 0.05);
  transition: transform 0.9s ease-in-out, box-shadow 0.9s ease-in-out,
              border-color 0.9s ease-in-out, filter 0.9s ease-in-out,
              opacity 0.9s ease-in-out;
  cursor: default;
}

.urg-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(5, 63, 150, 0.12);
  border-color: #bfdbfe;
}


.urg-grid--ready .urg-card {
  filter: blur(1.2px);
  opacity: 0.60;
}

.urg-grid--ready .urg-card--focus {
  filter: none;
  opacity: 1;
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(5, 63, 150, 0.16);
  border-color: #bfdbfe;
  z-index: 2;
}

.urg-icon {
  width: 64px;
  height: 64px;
  background: #eff6ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.25s;
}

.urg-card:hover .urg-icon {
  background: #dbeafe;
}

.urg-icon svg {
  width: 28px;
  height: 28px;
}

.urg-card span {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #0f172a;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: center;
  line-height: 1.4;
}

.urg-rodape {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #94a3b8;
  font-style: italic;
}

/* ───────── SEÇÃO DESCOBERTA (container 4) ───────── */
.descoberta-sec {
  background: linear-gradient(135deg, #053F96 0%, #06103a 100%);
  padding: 88px 5% 88px;
}

.descoberta-inner {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

/* Imagem esquerda */
.desc-img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.desc-foto {
  width: 100%;
  border-radius: 20px;
  display: block;
  filter: drop-shadow(0 16px 40px rgba(5, 63, 150, 0.2));
}

.desc-tag {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #053F96;
  background: #ffffff;
  border-radius: 50px;
  padding: 5px 14px;
  width: fit-content;
  margin-bottom: 8px;
}

.desc-quote {
  font-family: 'Poppins', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.desc-quote-dest {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 600;
  font-style: italic;
  color: #93c5fd;
  line-height: 1.5;
}

/* Coluna direita */
.desc-dir {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.desc-intro {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #cbd5e1;
  line-height: 1.75;
}

.desc-bloco {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 18px;
  padding: 28px;
}

.desc-bloco-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.desc-bloco-icon {
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.desc-bloco-icon svg {
  width: 22px;
  height: 22px;
}

.desc-bloco-titulo {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2px;
}

.desc-bloco-sub {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 400;
  font-style: italic;
  color: #94a3b8;
}

/* Grid numerado 2×2 */
.desc-num-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.desc-num-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: border-color 0.2s, background 0.2s;
}

.desc-num-card:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.3);
}

.desc-num {
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #93c5fd;
}

.desc-num-card strong {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.3;
}

@media (max-width: 800px) {
  .descoberta-inner {
    grid-template-columns: 1fr;
  }
}

/* ───────── SEÇÃO ESPONJA (container 5) ───────── */
.esponja-sec {
  background: #ffffff;
  padding: 88px 5%;
  border-top: 1px solid #e8eef8;
}

.esponja-inner {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 56px;
}

/* Topo */
.esponja-topo {
  text-align: center;
}

.esponja-headline {
  font-family: 'Poppins', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
}

.esponja-headline em {
  font-style: normal;
  color: #053F96;
}

.esponja-estados {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 24px;
}

.esponja-estados span {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: -0.01em;
}

.esponja-p {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #475569;
  line-height: 1.75;
  max-width: 580px;
  margin: 0 auto;
}

/* Meio: texto + imagem */
.esponja-meio {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.esponja-meio-txt {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.esponja-callout {
  background: #f8faff;
  border-left: 3px solid #053F96;
  border-radius: 0 12px 12px 0;
  padding: 18px 22px;
  margin-bottom: 0;
}

.esponja-callout p {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-style: italic;
  font-weight: 400;
  color: #475569;
  line-height: 1.7;
}

.esponja-destaque-verde {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 700;
  font-style: italic;
  color: #053F96;
  line-height: 1.55;
  margin-top: 24px;
  margin-bottom: 10px;
}

.esponja-negrito {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.4;
  text-decoration: underline;
  text-decoration-color: #053F96;
  text-underline-offset: 3px;
}

/* Slot de imagem */
.esponja-img-slot {
  display: flex;
  align-items: center;
  justify-content: center;
}

.esponja-img {
  width: 100%;
  border-radius: 20px;
  filter: drop-shadow(0 12px 32px rgba(5, 63, 150, 0.12));
  display: block;
}

/* Callout final */
.esponja-callout-final {
  background: linear-gradient(135deg, #f8faff, #eff6ff);
  border: 1px solid #bfdbfe;
  border-radius: 16px;
  padding: 28px 36px;
  text-align: center;
}

.esponja-callout-final p {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-style: italic;
  color: #475569;
  line-height: 1.6;
}

.esponja-callout-final strong {
  color: #0f172a;
  font-weight: 700;
}

.esponja-callout-azul {
  color: #053F96 !important;
  font-weight: 600 !important;
  margin-top: 4px;
}

@media (max-width: 700px) {
  .esponja-meio {
    grid-template-columns: 1fr;
  }
  .esponja-estados {
    flex-wrap: wrap;
    gap: 12px;
  }
}

/* ───────── SEÇÃO DEPOIMENTOS (container 6) ───────── */
.depoi-sec {
  background: #f8faff;
  border-top: 1px solid #e8eef8;
  padding: 88px 5% 80px;
}

.depoi-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 28px;
}

.depoi-alerta-icon {
  width: 52px;
  height: 52px;
}

.depoi-alerta-icon svg {
  width: 100%;
  height: 100%;
}

.depoi-label {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #94a3b8;
}

.depoi-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.depoi-pills span {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #053F96;
  border: 1.5px solid #053F96;
  border-radius: 50px;
  padding: 5px 16px;
}

.depoi-frase {
  font-family: 'Poppins', sans-serif;
  font-size: 17px;
  font-weight: 500;
  color: #334155;
  line-height: 1.65;
  font-style: italic;
}

.depoi-headline {
  font-family: 'Poppins', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.025em;
  line-height: 1.2;
  font-style: italic;
}

/* Grid vídeos */
.depoi-videos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
  max-width: 760px;
  margin-top: 8px;
}

.depoi-video-card {
  border-radius: 16px;
  overflow: hidden;
  background: #000;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 16px rgba(5, 63, 150, 0.07);
  transition: transform 0.25s, box-shadow 0.25s;
  cursor: pointer;
  position: relative;
}

.depoi-video-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(5, 63, 150, 0.14);
}

.depoi-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 9/16;
  overflow: hidden;
}

.depoi-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}

.depoi-video-card:hover .depoi-thumb img {
  transform: scale(1.04);
}

.depoi-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(5, 20, 60, 0.25);
  transition: background 0.25s;
}

.depoi-video-card:hover .depoi-play {
  background: rgba(5, 20, 60, 0.15);
}

.depoi-play svg {
  width: 48px;
  height: 48px;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.25));
  transition: transform 0.2s;
}

.depoi-video-card:hover .depoi-play svg {
  transform: scale(1.1);
}

.depoi-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 18px 20px;
  text-align: left;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.0) 100%);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.depoi-info strong {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

.depoi-info span {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

/* Disclaimer */
.depoi-disclaimer {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 400;
  color: #94a3b8;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 1.7;
  max-width: 560px;
}

/* CTA */
.depoi-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #16a34a, #15803d);
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 18px 48px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 8px 28px rgba(22, 163, 74, 0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}

.depoi-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(22, 163, 74, 0.45);
}

@media (max-width: 700px) {
  .depoi-videos {
    grid-template-columns: 1fr;
  }
}

/* ───────── SEÇÃO EBOOK / AUTOR (container 7) ───────── */
.ebook-sec {
  background: #ffffff;
  border-top: 1px solid #e8eef8;
  padding: 88px 5% 80px;
}

.ebook-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 64px;
  align-items: center;
}

/* Capa */
.ebook-capa-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}

.ebook-capa-img {
  width: 100%;
  max-width: 320px;
  border-radius: 16px;
  filter: drop-shadow(0 20px 48px rgba(5, 63, 150, 0.20));
  display: block;
}

.ebook-metodo-badge {
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(5, 63, 150, 0.35);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: 50px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 6px 24px rgba(5, 63, 150, 0.20);
}

/* Coluna direita */
.ebook-dir {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Autor */
.ebook-autor {
  display: flex;
  align-items: center;
  gap: 14px;
}

.ebook-avatar-img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid #e2e8f0;
}

.ebook-autor-nome {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.3;
}

.ebook-autor-cargo {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: #94a3b8;
  letter-spacing: 0.04em;
}

/* Título */
.ebook-titulo {
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

/* Descrição */
.ebook-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #64748b;
  line-height: 1.75;
}

/* Lista */
.ebook-lista {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ebook-lista li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.ebook-check {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #053F96;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.ebook-lista li span {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #334155;
  line-height: 1.6;
}

.ebook-lista li span strong {
  font-weight: 700;
  color: #0f172a;
}

/* Disclaimer */
.ebook-disclaimer {
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  font-weight: 600;
  color: #94a3b8;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-top: 1px solid #e2e8f0;
  padding-top: 16px;
  line-height: 1.6;
}

@media (max-width: 760px) {
  .ebook-inner {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .ebook-capa-img {
    max-width: 260px;
    margin: 0 auto;
  }
}

/* ───────── SEÇÃO GARANTIA + PREÇO (container 8-9) ───────── */
.garantia-preco-sec {
  background: #f0f4fb;
  padding: 80px 5%;
  overflow: hidden;
}

.garantia-preco-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

/* Garantia dentro do grid — ajusta tamanhos dos anéis */
.garantia-preco-inner .garantia-orbita {
  min-height: 560px;
}

.garantia-preco-inner .garantia-anel-1 { width: 460px; height: 460px; }
.garantia-preco-inner .garantia-anel-2 { width: 350px; height: 350px; }
.garantia-preco-inner .garantia-anel-3 { width: 250px; height: 250px; }
.garantia-preco-inner .garantia-anel-4 { width: 560px; height: 560px; }
.garantia-preco-inner .garantia-anel-5 { display: none; }

/* Preço dentro do grid */
.garantia-preco-inner .preco-card {
  position: relative;
  margin: 0;
}

@media (max-width: 900px) {
  .garantia-preco-inner {
    grid-template-columns: 1fr;
  }
  .garantia-preco-inner .garantia-anel-4 { width: 400px; height: 400px; }
}

@media (max-width: 640px) {
  .garantia-preco-sec { padding: 56px 5%; }
  .garantia-preco-inner .garantia-orbita { min-height: 440px; }
  .garantia-preco-inner .garantia-anel-1 { width: 300px; height: 300px; }
  .garantia-preco-inner .garantia-anel-2 { width: 230px; height: 230px; }
  .garantia-preco-inner .garantia-anel-3 { width: 160px; height: 160px; }
  .garantia-preco-inner .garantia-anel-4 { width: 360px; height: 360px; }
}

/* ───────── SEÇÃO PREÇO / CTA (container 8) ───────── */
.preco-sec {
  background: #f0f4fb;
  padding: 88px 5% 80px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.preco-card {
  position: relative;
  background: linear-gradient(145deg, #0d1e3d 0%, #06103a 60%, #031028 100%);
  border-radius: 24px;
  padding: 60px 56px 48px;
  max-width: 580px;
  width: 100%;
  text-align: center;
  box-shadow: 0 24px 64px rgba(5, 10, 40, 0.35);
  border: 1px solid rgba(255,255,255,0.07);
  overflow: hidden;
}

/* Glow sutil no topo */
.preco-card::before {
  content: '';
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 200px;
  background: radial-gradient(ellipse, rgba(5, 63, 150, 0.4) 0%, transparent 70%);
  pointer-events: none;
}

/* Badge 85% OFF */
.preco-off-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: linear-gradient(135deg, #16a34a, #15803d);
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.10em;
  padding: 8px 20px;
  border-radius: 0 24px 0 16px;
}

/* Headline */
.preco-headline {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.35;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
  position: relative;
}

/* Preço riscado */
.preco-de {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #64748b;
  text-decoration: line-through;
  margin-bottom: 8px;
}

/* Preço principal */
.preco-principal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 14px;
}

.preco-por {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 500;
  font-style: italic;
  color: #94a3b8;
}

.preco-valor {
  font-family: 'Poppins', sans-serif;
  font-size: 80px;
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
  letter-spacing: -0.04em;
}

.preco-vista {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 500;
  font-style: italic;
  color: #94a3b8;
}

/* Subtext */
.preco-sub {
  font-family: 'Poppins', sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: #475569;
  text-transform: uppercase;
  margin-bottom: 36px;
}

/* Botão CTA */
.preco-cta {
  display: block;
  background: linear-gradient(135deg, #16a34a, #15803d);
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 20px 40px;
  border-radius: 14px;
  text-decoration: none;
  box-shadow: 0 8px 32px rgba(22, 163, 74, 0.40);
  transition: transform 0.2s, box-shadow 0.2s;
  margin-bottom: 36px;
}

.preco-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(22, 163, 74, 0.55);
}

/* Trust */
.preco-trust {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: nowrap;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 28px;
}

.preco-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: #475569;
}

.preco-trust-item svg {
  color: #334155;
}

.preco-trust-item span {
  font-family: 'Poppins', sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: #475569;
}

@media (max-width: 640px) {
  .preco-card {
    padding: 48px 28px 40px;
  }
  .preco-valor {
    font-size: 64px;
  }
  .preco-trust {
    gap: 16px;
  }
}

/* ───────── SEÇÃO GARANTIA (container 9) ───────── */
.garantia-sec {
  background: #f0f4fb;
  padding: 80px 5%;
  overflow: hidden;
}

.garantia-orbita {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 700px;
}

/* Anéis */
.garantia-anel {
  position: absolute;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.garantia-anel-1 {
  width: 560px;
  height: 560px;
  border: 1.5px dashed rgba(5, 63, 150, 0.20);
  animation: spin-cw 32s linear infinite;
  transform-origin: center center;
}

.garantia-anel-2 {
  width: 420px;
  height: 420px;
  border: 1.5px dashed rgba(5, 63, 150, 0.14);
  animation: spin-ccw 22s linear infinite;
  transform-origin: center center;
}

.garantia-anel-3 {
  width: 300px;
  height: 300px;
  border: 1.5px dashed rgba(5, 63, 150, 0.10);
  animation: spin-cw 14s linear infinite;
  transform-origin: center center;
}

.garantia-anel-4 {
  width: 700px;
  height: 700px;
  border: 1px dashed rgba(5, 63, 150, 0.13);
  animation: spin-ccw 48s linear infinite;
  transform-origin: center center;
}

.garantia-anel-5 {
  width: 860px;
  height: 860px;
  border: 1px dashed rgba(5, 63, 150, 0.07);
  animation: spin-cw 70s linear infinite;
  transform-origin: center center;
}

/* Ponto brilhante em cada anel */
.garantia-dot {
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #053F96;
  opacity: 0.5;
  box-shadow: 0 0 8px rgba(5, 63, 150, 0.6);
}

@keyframes spin-cw {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes spin-ccw {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(-360deg); }
}

/* Conteúdo central */
.garantia-centro {
  position: relative;
  z-index: 10;
  max-width: 420px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  background: #f0f4fb;
  padding: 16px 24px;
}

/* Ícone escudo */
.garantia-icon-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Headline */
.garantia-headline {
  font-family: 'Poppins', sans-serif;
  font-size: 34px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-top: 8px;
}

.garantia-headline em {
  font-style: italic;
  color: #053F96;
}

/* Parágrafo */
.garantia-p {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #475569;
  line-height: 1.8;
}

/* Callout */
.garantia-callout {
  background: #ffffff;
  border-left: 3px solid #053F96;
  border-radius: 0 12px 12px 0;
  padding: 16px 20px;
  text-align: left;
}

.garantia-callout p {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #1e293b;
  line-height: 1.75;
}

.garantia-callout strong {
  font-weight: 700;
  color: #0f172a;
}

@media (max-width: 640px) {
  .garantia-anel-1 { width: 340px; height: 340px; }
  .garantia-anel-2 { width: 260px; height: 260px; }
  .garantia-anel-3 { width: 190px; height: 190px; }
  .garantia-headline { font-size: 22px; }
  .garantia-orbita { min-height: 480px; }
}

/* ───────── SEÇÃO FAQ (container 10) ───────── */
.faq-sec {
  background: linear-gradient(160deg, #0d1e3d 0%, #06103a 60%, #031028 100%);
  padding: 88px 5% 80px;
}

.faq-inner {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.faq-titulo {
  font-family: 'Poppins', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: #ffffff;
  text-align: center;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.faq-titulo em {
  font-style: italic;
  color: #93c5fd;
}

.faq-lista {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Item */
.faq-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.25s, background 0.25s;
}

.faq-item.open {
  background: rgba(255,255,255,0.08);
  border-color: rgba(5, 63, 150, 0.60);
}

/* Botão pergunta */
.faq-pergunta {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.faq-pergunta span {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #e2e8f0;
  line-height: 1.45;
}

.faq-item.open .faq-pergunta span {
  color: #ffffff;
}

/* Chevron */
.faq-chevron {
  flex-shrink: 0;
  color: #64748b;
  transition: transform 0.3s ease, color 0.25s;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  color: #93c5fd;
}

/* Resposta */
.faq-resposta {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s ease;
}

.faq-item.open .faq-resposta {
  max-height: 200px;
}

.faq-resposta p {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 400;
  font-style: italic;
  color: #93c5fd;
  line-height: 1.75;
  padding: 0 24px 22px;
}

/* ───────── SEÇÃO DECISÃO / CTA FINAL (container 11) ───────── */
.decisao-sec {
  background: #f0f4fb;
  padding: 96px 5% 88px;
}

.decisao-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.decisao-headline {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(26px, 3.8vw, 40px);
  font-weight: 900;
  color: #0f172a;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.decisao-destaque {
  color: #ef4444;
  text-decoration: none;
}

.decisao-sub {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 400;
  font-style: italic;
  color: #475569;
  line-height: 1.75;
}

.decisao-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #16a34a, #15803d);
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 22px 56px;
  border-radius: 14px;
  text-decoration: none;
  box-shadow: 0 10px 36px rgba(22, 163, 74, 0.40);
  transition: transform 0.2s, box-shadow 0.2s;
  margin-top: 8px;
}

.decisao-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 44px rgba(22, 163, 74, 0.55);
}

@media (max-width: 640px) {
  .decisao-cta {
    padding: 18px 32px;
    font-size: 14px;
  }
}

/* ───────── GRADIENTE ANIMADO NOS BOTÕES ───────── */
@keyframes grad-flow {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Botões verdes */
.depoi-cta,
.preco-cta,
.decisao-cta {
  background: linear-gradient(135deg, #16a34a, #22c55e, #15803d, #16a34a);
  background-size: 300% 300%;
  animation: grad-flow 3.5s ease infinite;
}

/* Botão azul navbar */
.navbar-cta {
  background: linear-gradient(135deg, #053F96, #1a6fd4, #053F96);
  background-size: 300% 300%;
  animation: grad-flow 3.5s ease infinite;
}

/* Seta maior nos botões */
.btn-arrow {
  font-size: 1.5em;
  line-height: 1;
  display: inline-block;
  vertical-align: middle;
  margin-left: 4px;
  transition: transform 0.25s ease;
}

.depoi-cta:hover .btn-arrow,
.preco-cta:hover .btn-arrow {
  transform: translateX(5px);
}

/* ───────── SEÇÃO GENÉRICA ───────── */
.section {
  padding: 80px 5%;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 12px;
}

.section-title span {
  color: var(--azul-brilhante);
}

.section-sub {
  text-align: center;
  color: var(--texto-suave);
  max-width: 600px;
  margin: 0 auto 52px;
  line-height: 1.7;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(5, 63, 150, 0.2);
  border-radius: 16px;
  padding: 32px 28px;
  transition: transform 0.3s, border-color 0.3s;
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(5, 63, 150, 0.6);
}

.card-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--azul-claro), #053F96);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.card p {
  font-size: 0.9rem;
  color: var(--texto-suave);
  line-height: 1.65;
}

/* ───────── SEÇÃO SOLUÇÃO ───────── */
.solucao {
  background: linear-gradient(135deg, rgba(26,58,107,0.4) 0%, rgba(11,30,61,0.8) 100%);
  border-top: 1px solid rgba(59,130,246,0.15);
  border-bottom: 1px solid rgba(59,130,246,0.15);
}

.solucao-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.solucao-img {
  display: flex;
  justify-content: center;
}

.solucao-img img {
  width: 240px;
  border-radius: 16px;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
}

.solucao-lista {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.solucao-lista li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.check-icon {
  width: 26px;
  height: 26px;
  background: linear-gradient(135deg, var(--verde), #16a34a);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.solucao-lista p {
  font-size: 0.95rem;
  color: var(--texto-suave);
  line-height: 1.65;
}

.solucao-lista strong {
  color: var(--branco);
}

/* ───────── DEPOIMENTOS ───────── */
.depoimentos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.depoimento {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(59,130,246,0.18);
  border-radius: 16px;
  padding: 28px 24px;
}

.estrelas {
  color: #facc15;
  font-size: 1rem;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.depoimento blockquote {
  font-size: 0.92rem;
  color: var(--texto-suave);
  line-height: 1.7;
  margin-bottom: 18px;
  font-style: italic;
}

.depoimento-autor {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--azul-claro), #7c3aed);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--branco);
  flex-shrink: 0;
}

.depoimento-autor span {
  font-size: 0.9rem;
}

.depoimento-autor span strong {
  display: block;
  color: var(--branco);
}

/* ───────── FORMULÁRIO ───────── */
.form-section {
  background: linear-gradient(135deg, rgba(26,58,107,0.5), rgba(11,30,61,0.9));
  border-top: 1px solid rgba(59,130,246,0.15);
}

.form-box {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(59,130,246,0.25);
  border-radius: 20px;
  padding: 48px 40px;
  max-width: 600px;
  margin: 0 auto;
}

.form-box h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  text-align: center;
}

.form-box p {
  text-align: center;
  color: var(--texto-suave);
  margin-bottom: 32px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--texto-suave);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(59,130,246,0.3);
  border-radius: 10px;
  padding: 14px 16px;
  color: var(--branco);
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.3);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--azul-brilhante);
  box-shadow: 0 0 0 3px rgba(59,130,246,0.2);
}

.form-group select option {
  background: var(--azul-escuro);
  color: var(--branco);
}

.btn-enviar {
  width: 100%;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: var(--branco);
  border: none;
  border-radius: 50px;
  padding: 16px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 8px 30px rgba(34,197,94,0.3);
}

.btn-enviar:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(34,197,94,0.5);
}

.form-feedback {
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: 10px;
  text-align: center;
  font-size: 0.95rem;
  display: none;
}

.form-feedback.success {
  background: rgba(34,197,94,0.15);
  border: 1px solid rgba(34,197,94,0.4);
  color: #4ade80;
}

.form-feedback.error {
  background: rgba(239,68,68,0.15);
  border: 1px solid rgba(239,68,68,0.4);
  color: #f87171;
}

/* ───────── RODAPÉ ───────── */
footer {
  background: rgba(0,0,0,0.4);
  border-top: 1px solid rgba(59,130,246,0.1);
  padding: 36px 5%;
  text-align: center;
}

footer p {
  color: rgba(255,255,255,0.4);
  font-size: 0.85rem;
  line-height: 1.7;
}

footer a {
  color: var(--azul-brilhante);
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* ───────── RODAPÉ SIMPLES ───────── */
.rodape-simples {
  background: #0a0a0a;
  padding: 20px 5%;
  text-align: center;
}

.rodape-simples p {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #4b5563;
  letter-spacing: 0.03em;
}

/* ───────── RESPONSIVO ───────── */

/* Tablet */
@media (max-width: 900px) {
  .hero-text h1       { font-size: 36px; }
  .hero-text .subtitulo { font-size: 15px; max-width: 100%; }
  .urg-grid           { grid-template-columns: repeat(2, 1fr); }
  .prob-grid          { grid-template-columns: 1fr; }
  .solucao-grid       { grid-template-columns: 1fr; }
  .solucao-img        { order: -1; }
}

/* ── Mobile (≤ 640px) ── */
@media (max-width: 640px) {

  /* Navbar */
  .navbar { padding: 12px 5%; }
  .navbar-logo span { font-size: 1rem; }
  .navbar-cta { font-size: 0.78rem; padding: 8px 16px; }

  /* Hero — layout fluido para todos os aparelhos */
  .hero {
    padding: clamp(40px, 10vw, 72px) 6% clamp(52px, 10vw, 64px);
    min-height: 100vh;
    min-height: 100svh;
    align-items: flex-start;
  }
  .hero-content { align-items: flex-start; padding-top: 0; margin-top: 0; }
  .hero-bg {
    background-image: url('../imagens/fundo diabetes mobile.png');
    background-position: center bottom;
    background-size: cover;
  }
  .hero-overlay {
    background: linear-gradient(
      to bottom,
      rgba(255,255,255,0.97) 0%,
      rgba(255,255,255,0.93) 42%,
      rgba(255,255,255,0.55) 62%,
      rgba(255,255,255,0.04) 100%
    );
  }
  .hero-text { display: flex; flex-direction: column; align-items: flex-start; }
  .hero-text h1 {
    font-size: clamp(22px, 6.8vw, 30px);
    line-height: 1.22;
    text-align: left;
    margin-bottom: 16px;
  }
  .hero-text .subtitulo {
    font-size: clamp(13px, 3.8vw, 15px);
    max-width: 90%;
    text-align: left;
  }
  .hero-cta {
    font-size: clamp(14px, 3.8vw, 16px);
    padding: 16px 24px;
    width: 100%;
    justify-content: center;
    margin-top: 22px;
  }

  /* Ticker */
  .ticker-item { font-size: clamp(0.72rem, 2.4vw, 0.85rem); padding: 0 24px; }

  /* Problema */
  .problema-sec { padding: 52px 6% 44px; }
  .prob-headline { font-size: clamp(20px, 6vw, 26px); }
  .prob-grid { grid-template-columns: 1fr; gap: 12px; }

  /* Urgência */
  .urgencia-sec { padding: 52px 6% 44px; }
  .urg-headline { font-size: clamp(22px, 6.5vw, 28px); }
  .urg-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .urg-card { padding: 22px 10px 18px; }
  .urg-card span { font-size: clamp(12px, 3.2vw, 14px); }

  /* Descoberta */
  .descoberta-sec { padding: 52px 6% 52px; }
  .descoberta-inner { grid-template-columns: 1fr; gap: 28px; }
  .desc-img-wrap { display: none; }
  .desc-intro { font-size: clamp(15px, 4.2vw, 18px); }

  /* Esponja */
  .esponja-sec { padding: 52px 6%; }
  .esponja-headline { font-size: clamp(22px, 6.5vw, 28px); }
  .esponja-meio { grid-template-columns: 1fr; }
  .esponja-estados { flex-wrap: wrap; gap: 10px; }
  .esponja-callout-final { padding: 22px 18px; }

  /* Depoimentos */
  .depoi-sec { padding: 52px 6% 44px; }
  .depoi-headline { font-size: clamp(22px, 6.5vw, 28px); }
  .depoi-videos {
    grid-template-columns: 1fr;
    max-width: min(280px, 80vw);
    margin-left: auto;
    margin-right: auto;
  }
  .depoi-cta { font-size: clamp(13px, 3.5vw, 15px); padding: 16px 24px; width: 100%; justify-content: center; }

  /* Ebook / Autor */
  .ebook-sec { padding: 52px 6% 44px; }
  .ebook-inner { grid-template-columns: 1fr; gap: 40px; }
  .ebook-capa-img { max-width: min(220px, 60vw); }
  .ebook-titulo { font-size: clamp(20px, 5.5vw, 24px); }

  /* Garantia + Preço */
  .garantia-preco-sec { padding: 52px 6%; }
  .garantia-preco-inner { grid-template-columns: 1fr; gap: 40px; }
  .garantia-preco-inner .garantia-orbita { min-height: 420px; }
  .garantia-preco-inner .garantia-anel-1 { width: min(290px, 82vw); height: min(290px, 82vw); }
  .garantia-preco-inner .garantia-anel-2 { width: min(220px, 62vw); height: min(220px, 62vw); }
  .garantia-preco-inner .garantia-anel-3 { width: min(155px, 44vw); height: min(155px, 44vw); }
  .garantia-preco-inner .garantia-anel-4 { width: min(350px, 98vw); height: min(350px, 98vw); }
  .garantia-headline { font-size: clamp(22px, 6.5vw, 28px); }
  .garantia-centro { max-width: 100%; padding: 14px 6px; }
  .preco-card { padding: 44px 20px 32px; }
  .preco-headline { font-size: clamp(16px, 4.5vw, 20px); }
  .preco-valor { font-size: clamp(52px, 16vw, 72px); }
  .preco-cta { font-size: clamp(12px, 3.4vw, 14px); padding: 18px 20px; border-radius: 10px; width: 100%; text-align: center; }
  .preco-trust { flex-wrap: nowrap; justify-content: space-between; gap: 6px; }
  .preco-trust-item span { font-size: clamp(7px, 2vw, 9px); }

  /* FAQ */
  .faq-sec { padding: 52px 6%; }
  .faq-titulo { font-size: clamp(22px, 6.5vw, 28px); }
  .faq-pergunta span { font-size: clamp(13px, 3.5vw, 15px); }

  /* Decisão */
  .decisao-sec { padding: 60px 6% 52px; }
  .decisao-headline { font-size: clamp(24px, 7vw, 30px); }
  .decisao-sub { font-size: clamp(13px, 3.8vw, 15px); }
  .decisao-cta { font-size: clamp(12px, 3.4vw, 14px); padding: 18px 20px; border-radius: 10px; width: 100%; text-align: center; }

  /* Footer */
  .rodape-simples { padding: 28px 6%; }
  .rodape-simples p { font-size: 11px; }
}

/* ── Telas muito pequenas (≤ 375px — Samsung Galaxy A, iPhone SE) ── */
@media (max-width: 375px) {
  .hero-text h1 { font-size: 21px; }
  .hero-text .subtitulo { font-size: 13px; max-width: 95%; }
  .hero-cta { font-size: 14px; padding: 15px 20px; }
  .prob-headline,
  .urg-headline,
  .esponja-headline,
  .depoi-headline,
  .garantia-headline,
  .faq-titulo,
  .decisao-headline { font-size: 21px; }
  .urg-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .urg-card span { font-size: 12px; }
  .preco-valor { font-size: 50px; }
  .preco-trust-item span { font-size: 7px; }
  .decisao-cta { font-size: 12px; }
}
