/* ============================================================
   V7 Coleta de Documentos — Pagina de Vendas
   ============================================================ */

/* ===== Variaveis ===== */
:root {
  --dark-navy: #0a1628;
  --dark-navy-deeper: #050d1a;
  --dark-surface: #142036;
  --dark-surface-2: #1e2a44;
  --cyan: #00b8d4;
  --cyan-light: #4fc3d7;
  --cyan-glow: rgba(0, 184, 212, 0.35);
  --cyan-glow-strong: rgba(0, 184, 212, 0.55);
  --white: #ffffff;
  --text-muted: #94a3b8;
  --text-subtle: #64748b;
  --bg-light: #f8fafc;
  --whatsapp: #25d366;
  --whatsapp-dark: #1da851;
  --success: #10b981;
  --border-dark: #1e293b;
  --border-light: #e2e8f0;
  --red: #ef4444;
  --red-soft: #fee2e2;
  --yellow: #f59e0b;

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --container: 1280px;
  --container-padding: 24px;

  --t-fast: 0.2s ease;
  --t-normal: 0.3s ease;
  --t-slow: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-full: 9999px;
}

/* ===== 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;
  font-weight: 400;
  line-height: 1.55;
  color: var(--white);
  background: var(--dark-navy);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, picture, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul, ol { list-style: none; }
input, textarea, select { font: inherit; }

/* ===== Layout helpers ===== */
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--container-padding); position: relative; }
.section { padding: 120px 0; position: relative; overflow: hidden; }
.section--dark { background: var(--dark-navy); color: var(--white); }
.section--light { background: var(--bg-light); color: var(--dark-navy); }
.section--deeper { background: var(--dark-navy-deeper); }

/* ===== Tipografia base ===== */
h1, h2, h3, h4, h5, h6 { font-weight: 800; line-height: 1.15; letter-spacing: -0.02em; }
h1 { font-size: clamp(28px, 5vw, 56px); }
h2 { font-size: clamp(26px, 4vw, 44px); }
h3 { font-size: clamp(20px, 2.5vw, 28px); }

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 18px;
}
.section--light .eyebrow { color: var(--cyan); }

/* Centraliza SO o eyebrow quando aparece junto com .section-title */
.eyebrow:has(+ .section-title) {
  display: block;
  text-align: center;
  width: 100%;
}

.section-title {
  text-align: center;
  margin-bottom: 18px;
}
.section-subtitle {
  text-align: center;
  font-size: clamp(14px, 1.4vw, 18px);
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto 56px;
  line-height: 1.6;
}
.section--light .section-subtitle { color: var(--text-subtle); }

/* ===== CTAs ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.01em;
  transition: all var(--t-fast);
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn--primary {
  background: var(--cyan);
  color: var(--dark-navy);
  box-shadow: 0 6px 20px var(--cyan-glow);
}
.btn--primary:hover {
  background: var(--cyan-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px var(--cyan-glow-strong);
}
.btn--primary::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 0; height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.5s, height 0.5s;
}
.btn--primary:hover::before { width: 300px; height: 300px; }
.btn--whatsapp {
  background: var(--whatsapp);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}
.btn--whatsapp:hover {
  background: var(--whatsapp-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.5);
}
.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.22);
}
.btn--outline:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  background: rgba(0, 184, 212, 0.08);
}
.section--light .btn--outline {
  color: var(--dark-navy);
  border-color: rgba(10, 22, 40, 0.2);
}
.section--light .btn--outline:hover {
  border-color: var(--cyan);
  color: var(--cyan);
}

/* ===== Glow background helper ===== */
.glow {
  position: absolute;
  border-radius: 50%;
  background: var(--cyan);
  filter: blur(120px);
  opacity: 0.18;
  pointer-events: none;
  z-index: 0;
}

/* ===== Reveal animations ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }
.reveal--delay-4 { transition-delay: 0.4s; }
.reveal--scale {
  transform: translateY(20px) scale(0.96);
}
.reveal--scale.is-visible { transform: translateY(0) scale(1); }

/* ===== Responsive base ===== */
@media (max-width: 768px) {
  :root { --container-padding: 20px; }
  .section { padding: 80px 0; }
  .btn { padding: 14px 24px; font-size: 15px; }
  .section-subtitle { margin-bottom: 40px; }
}

.text-cyan { color: var(--cyan); }
.dot-sep {
  display: inline-block;
  width: 4px; height: 4px;
  background: var(--text-muted);
  border-radius: 50%;
  margin: 0 8px;
  vertical-align: middle;
}

/* ============================================================
   BLOCO 1 — HERO
   ============================================================ */
.hero {
  padding: 160px 0 100px;
  position: relative;
  background: var(--dark-navy);
  overflow: hidden;
  min-height: 720px;
}
.hero__topbar {
  position: absolute;
  top: 18px;
  left: 0;
  right: 0;
  z-index: 5;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  display: flex;
  align-items: flex-start;
}
.hero__logo {
  display: inline-flex;
  transition: opacity var(--t-fast), transform var(--t-fast);
}
.hero__logo:hover { opacity: 0.85; transform: scale(1.04); }
.hero__logo img {
  width: 105px;
  height: 105px;
  display: block;
}
@media (max-width: 1024px) {
  .hero__topbar { justify-content: center; top: 12px; }
  .hero__logo img { width: 80px; height: 80px; }
}
.hero__bg-glow {
  position: absolute;
  top: -10%; right: -15%;
  width: 760px; height: 760px;
  background: radial-gradient(circle, var(--cyan-glow-strong) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
  animation: glow-pulse 6s ease-in-out infinite;
}
.hero__bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 184, 212, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 184, 212, 0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at 70% 50%, black 0%, transparent 60%);
  -webkit-mask-image: radial-gradient(ellipse at 70% 50%, black 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}
@keyframes glow-pulse {
  0%, 100% { opacity: 0.55; transform: scale(1); }
  50%      { opacity: 0.9;  transform: scale(1.06); }
}
.hero__container {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero__content { max-width: 620px; }
.hero__title {
  font-size: clamp(34px, 4.4vw, 52px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin-bottom: 26px;
}
.hero__subtitle {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 40px;
  max-width: 560px;
}
.hero__ctas { display: flex; gap: 16px; margin-bottom: 36px; flex-wrap: wrap; }
.hero__trust {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px 0;
}

/* === Mockup === */
.hero__visual { position: relative; }
.mockup {
  position: relative;
  background: var(--white);
  border-radius: 14px;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.55),
    0 12px 32px rgba(0, 184, 212, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.05);
  overflow: hidden;
  transform: perspective(1400px) rotateY(-3deg) rotateX(2deg);
  transition: transform var(--t-slow);
  z-index: 1;
}
.mockup:hover { transform: perspective(1400px) rotateY(0) rotateX(0); }
.mockup__shadow {
  position: absolute;
  inset: -10% -5% -20%;
  background: radial-gradient(ellipse at center, var(--cyan-glow) 0%, transparent 60%);
  filter: blur(40px);
  z-index: 0;
}
.mockup__bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  background: #f1f5f9;
  border-bottom: 1px solid #e2e8f0;
}
.mockup__dot { width: 11px; height: 11px; border-radius: 50%; flex-shrink: 0; }
.mockup__dot--red { background: #ef4444; }
.mockup__dot--yellow { background: #f59e0b; }
.mockup__dot--green { background: #10b981; }
.mockup__url {
  margin-left: 16px;
  background: #fff;
  border-radius: 6px;
  padding: 5px 14px;
  font-size: 11px;
  color: #64748b;
  font-weight: 500;
  border: 1px solid #e2e8f0;
}
.mockup__body {
  background: var(--white);
  font-size: 0;
}
.mockup__screenshot {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1200 / 840;
}

/* Hero responsive */
@media (max-width: 1024px) {
  .hero { padding: 120px 0 64px; min-height: 0; }
  .hero__container { grid-template-columns: 1fr; gap: 50px; }
  .hero__content { max-width: 100%; text-align: center; margin: 0 auto; }
  .hero__subtitle { margin-left: auto; margin-right: auto; }
  .hero__ctas { justify-content: center; }
  .hero__trust { justify-content: center; }
  .mockup { max-width: 540px; margin: 0 auto; transform: none; }
  .hero__bg-glow { width: 500px; height: 500px; right: -25%; }
}
@media (max-width: 580px) {
  .hero { padding: 110px 0 48px; }
  .hero__title { font-size: 28px; }
  .hero__subtitle { font-size: 14px; margin-bottom: 32px; }
  .hero__ctas { flex-direction: column; align-items: stretch; gap: 12px; margin-bottom: 28px; }
  .hero__ctas .btn { width: 100%; }
  .hero__trust { font-size: 11px; }
  .dot-sep { margin: 0 6px; }
  .mockup__url { font-size: 10px; padding: 4px 10px; }
}

/* ============================================================
   BOTAO WHATSAPP FLUTUANTE
   ============================================================ */
.wpp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 64px; height: 64px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  color: var(--white);
  z-index: 999;
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}
.wpp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.6);
}
.wpp-float__pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--whatsapp);
  animation: wpp-pulse 2s ease-out infinite;
}
@keyframes wpp-pulse {
  0%   { transform: scale(1);   opacity: 0.7; }
  100% { transform: scale(1.6); opacity: 0;   }
}
.wpp-float__icon { width: 30px; height: 30px; position: relative; z-index: 1; }
.wpp-float__tooltip {
  position: absolute;
  right: calc(100% + 14px);
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  background: #0f172a;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-fast), transform var(--t-fast);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}
.wpp-float__tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: #0f172a;
}
.wpp-float:hover .wpp-float__tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}
@media (max-width: 580px) {
  .wpp-float { width: 56px; height: 56px; bottom: 20px; right: 20px; }
  .wpp-float__icon { width: 26px; height: 26px; }
  .wpp-float__tooltip { display: none; }
}

/* ============================================================
   BLOCO 2 — VIDEO
   ============================================================ */
.video {
  background: var(--dark-navy);
  border-top: 1px solid var(--border-dark);
  text-align: center;
}
.video__player {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  cursor: pointer;
}
.video__glow {
  position: absolute;
  inset: -60px;
  background: radial-gradient(ellipse at center, var(--cyan-glow-strong) 0%, transparent 65%);
  filter: blur(60px);
  z-index: 0;
  opacity: 0.55;
  animation: glow-pulse 5s ease-in-out infinite;
}
.video__frame {
  position: relative;
  z-index: 1;
  background: var(--dark-surface);
  border-radius: var(--radius-lg);
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid var(--border-dark);
  background-image:
    radial-gradient(circle at 30% 20%, rgba(0, 184, 212, 0.08), transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(0, 184, 212, 0.06), transparent 50%);
  transition: transform var(--t-slow), box-shadow var(--t-slow);
}
.video__player:hover .video__frame {
  transform: translateY(-4px);
  box-shadow: 0 30px 80px rgba(0, 184, 212, 0.25);
}
.video__play {
  width: 96px; height: 96px;
  border-radius: 50%;
  background: var(--cyan);
  color: var(--dark-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 8px 32px var(--cyan-glow-strong);
  transition: transform var(--t-fast);
}
.video__play::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid rgba(0, 184, 212, 0.4);
  animation: play-pulse 2.5s ease-out infinite;
}
@keyframes play-pulse {
  0%   { transform: scale(1);   opacity: 0.9; }
  100% { transform: scale(1.4); opacity: 0;   }
}
.video__player:hover .video__play { transform: scale(1.08); }
.video__play-icon { font-size: 36px; line-height: 0; margin-left: 6px; }
.video__duration {
  position: absolute;
  bottom: 22px; right: 22px;
  background: rgba(10, 22, 40, 0.85);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 14px;
  backdrop-filter: blur(8px);
}
@media (max-width: 580px) {
  .video__play { width: 64px; height: 64px; }
  .video__play-icon { font-size: 24px; }
  .video__duration { font-size: 10px; padding: 4px 10px; bottom: 14px; right: 14px; }
}

/* ============================================================
   BLOCO 3 — DOR
   ============================================================ */
.dor { background: var(--bg-light); color: #0f172a; }
.dor .section-title { color: #0f172a; }
.dor__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}
.pain {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 28px 28px 26px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.05);
  border: 1px solid transparent;
  transition: transform var(--t-fast), box-shadow var(--t-fast), border-color var(--t-fast);
  position: relative;
  overflow: hidden;
}
.pain::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--cyan-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-normal);
}
.pain:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1);
  border-color: rgba(0, 184, 212, 0.2);
}
.pain:hover::before { transform: scaleX(1); }
.pain__emoji {
  display: block;
  font-size: 32px;
  margin-bottom: 18px;
  line-height: 1;
}
.pain__title {
  font-size: 17px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
  line-height: 1.3;
}
.pain__text {
  font-size: 14px;
  color: #64748b;
  line-height: 1.55;
}
.dor__close {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
}
.dor__close strong { color: var(--cyan); }
@media (max-width: 1024px) {
  .dor__grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
}
@media (max-width: 580px) {
  .dor__grid { grid-template-columns: 1fr; gap: 14px; margin-bottom: 36px; }
  .pain { padding: 18px 18px 16px; display: grid; grid-template-columns: auto 1fr; gap: 4px 16px; align-items: start; }
  .pain__emoji { font-size: 24px; margin-bottom: 0; grid-row: span 2; align-self: center; }
  .pain__title { font-size: 14px; margin-bottom: 4px; }
  .pain__text { font-size: 12px; }
  .pain::before { display: none; }
  .dor__close { font-size: 14px; }
}

/* ============================================================
   BLOCO 4 — O QUE É
   ============================================================ */
.oquee {
  background: var(--dark-navy);
  position: relative;
  overflow: hidden;
}
.oquee__bg-glow {
  position: absolute;
  top: 50%; left: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--cyan-glow) 0%, transparent 65%);
  filter: blur(80px);
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 0;
}
.oquee__container {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.oquee__title {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.025em;
  margin-bottom: 26px;
}
.oquee__text {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 28px;
}
.oquee__bullets { display: flex; flex-direction: column; gap: 14px; }
.oquee__bullets li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
}
.bullet-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  flex-shrink: 0;
  box-shadow: 0 0 12px var(--cyan-glow-strong);
}

/* === Phone mockup === */
.oquee__visual { display: flex; justify-content: center; }
.phone {
  width: 280px;
  background: #1e293b;
  border-radius: 38px;
  padding: 14px 10px;
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.05),
    0 8px 32px rgba(0, 184, 212, 0.15);
  position: relative;
  transition: transform var(--t-slow);
}
.phone:hover { transform: translateY(-6px); }
.phone__notch {
  width: 96px; height: 24px;
  background: #1e293b;
  border-radius: 12px;
  position: absolute;
  top: 14px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.phone__screen {
  background: #ffffff;
  border-radius: 32px;
  padding: 50px 22px 22px;
  min-height: 540px;
  display: flex;
  flex-direction: column;
}
.phone__progress { margin-bottom: 30px; }
.phone__step {
  font-size: 10px;
  font-weight: 600;
  color: #64748b;
  display: block;
  margin-bottom: 8px;
}
.phone__progress-bar {
  background: #e2e8f0;
  border-radius: 2px;
  height: 4px;
  width: 100%;
  overflow: hidden;
}
.phone__progress-fill {
  display: block;
  background: var(--cyan);
  height: 100%;
  width: 38%;
  border-radius: 2px;
  animation: progress-grow 1.2s 0.3s ease both;
  transform-origin: left;
}
@keyframes progress-grow { from { transform: scaleX(0); } to { transform: scaleX(1); } }
.phone__field { margin-bottom: 18px; }
.phone__label { font-size: 16px; font-weight: 700; color: #0f172a; margin: 0 0 4px; }
.phone__hint { font-size: 11px; color: #64748b; display: block; margin-bottom: 14px; }
.phone__input {
  background: #f1f5f9;
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 16px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 8px;
}
.phone__valid {
  background: #dcfce7;
  color: #15803d;
  font-size: 12px;
  font-weight: 700;
  padding: 8px 12px;
  border-radius: 8px;
  display: inline-block;
}
.phone__upload {
  background: #f8fafc;
  border: 1.5px dashed #cbd5e1;
  border-radius: 10px;
  padding: 24px;
  text-align: center;
  margin-bottom: 18px;
}
.phone__upload-icon { display: block; font-size: 22px; margin-bottom: 6px; }
.phone__upload-text { font-size: 12px; font-weight: 600; color: #64748b; }
.phone__btn {
  margin-top: auto;
  background: var(--cyan);
  color: var(--dark-navy);
  border-radius: 10px;
  padding: 14px;
  font-weight: 700;
  font-size: 14px;
  width: 100%;
}

@media (max-width: 1024px) {
  .oquee__container { grid-template-columns: 1fr; gap: 50px; text-align: center; }
  .oquee__bullets { display: inline-flex; text-align: left; }
}
@media (max-width: 580px) {
  .oquee__title { font-size: 24px; }
  .oquee__text { font-size: 14px; }
  .oquee__bullets li { font-size: 13px; }
  .phone { width: 230px; padding: 10px 8px; }
  .phone__screen { padding: 40px 16px 16px; min-height: 460px; }
}

/* ============================================================
   BLOCO 5 — COMO FUNCIONA
   ============================================================ */
.como { background: var(--bg-light); }
.como .section-title { color: #0f172a; }
.como__steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 16px;
  align-items: stretch;
  margin-top: 40px;
}
.step {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  border: 1px solid transparent;
  transition: transform var(--t-fast), box-shadow var(--t-fast), border-color var(--t-fast);
  position: relative;
}
.step:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
  border-color: rgba(0, 184, 212, 0.18);
}
.step__head {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 28px;
}
.step__number {
  width: 72px; height: 72px;
  background: var(--cyan);
  color: var(--dark-navy);
  font-size: 32px;
  font-weight: 900;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 20px var(--cyan-glow-strong);
  transition: transform var(--t-fast);
}
.step:hover .step__number { transform: rotate(-8deg) scale(1.05); }
.step__icon { font-size: 44px; line-height: 1; margin-left: auto; }
.step__title {
  font-size: 22px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 14px;
  line-height: 1.25;
}
.step__text {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
}
.step__connector {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 300;
  color: var(--cyan);
}
@media (max-width: 1024px) {
  .como__steps { grid-template-columns: 1fr; gap: 20px; }
  .step__connector { transform: rotate(90deg); padding: 4px 0; }
}
@media (max-width: 580px) {
  .step { padding: 24px 22px; }
  .step__number { width: 56px; height: 56px; font-size: 26px; }
  .step__icon { font-size: 36px; }
  .step__title { font-size: 18px; }
  .step__text { font-size: 13px; }
}

/* ============================================================
   BLOCO 6 — FUNCIONALIDADES
   ============================================================ */
.features { background: var(--dark-navy); }
.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 16px;
}
.feature {
  background: var(--dark-surface);
  border-radius: var(--radius-md);
  padding: 28px 28px 26px;
  transition: transform var(--t-fast), background var(--t-fast), box-shadow var(--t-fast);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}
.feature::after {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at center, var(--cyan-glow) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--t-normal);
  pointer-events: none;
}
.feature:hover {
  transform: translateY(-6px);
  background: var(--dark-surface-2);
  border-color: rgba(0, 184, 212, 0.25);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}
.feature:hover::after { opacity: 0.5; }
.feature__icon {
  width: 44px; height: 44px;
  background: var(--cyan);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
  transition: transform var(--t-fast);
}
.feature:hover .feature__icon { transform: rotate(-6deg) scale(1.08); }
.feature__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}
.feature__text {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
  position: relative;
  z-index: 1;
}
@media (max-width: 1024px) {
  .features__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 580px) {
  .features__grid { grid-template-columns: 1fr; gap: 14px; }
  .feature { padding: 18px; display: grid; grid-template-columns: auto 1fr; gap: 4px 16px; align-items: start; }
  .feature__icon { width: 40px; height: 40px; font-size: 20px; margin-bottom: 0; grid-row: span 2; align-self: center; }
  .feature__title { font-size: 15px; margin-bottom: 4px; }
  .feature__text { font-size: 12px; }
}

/* ============================================================
   BLOCO 7 — POR NICHO
   ============================================================ */
.nicho { background: var(--bg-light); }
.nicho .section-title { color: #0f172a; }
.nicho__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 16px;
}
.niche {
  --niche-color: var(--cyan);
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 36px 28px 28px;
  position: relative;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}
.niche:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.12);
}
.niche__bar {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 5px;
  background: var(--niche-color);
}
.niche__icon {
  width: 64px; height: 64px;
  background: var(--niche-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin: 0 auto 22px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  transition: transform var(--t-fast);
}
.niche:hover .niche__icon { transform: rotate(-8deg) scale(1.08); }
.niche__title {
  font-size: 22px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 14px;
  line-height: 1.2;
}
.niche__text {
  font-size: 13px;
  color: #64748b;
  line-height: 1.6;
}
.niche--cyan   { --niche-color: #00b8d4; }
.niche--purple { --niche-color: #8b5cf6; }
.niche--orange { --niche-color: #f59e0b; }
.niche--green  { --niche-color: #10b981; }
@media (max-width: 1024px) {
  .nicho__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 580px) {
  .nicho__grid { grid-template-columns: 1fr; gap: 16px; }
  .niche { padding: 28px 22px 22px; text-align: left; display: grid; grid-template-columns: auto 1fr; gap: 0 18px; }
  .niche__icon { width: 56px; height: 56px; font-size: 26px; margin: 0; grid-row: span 2; align-self: center; }
  .niche__title { font-size: 18px; margin-top: 4px; margin-bottom: 6px; }
  .niche__text { font-size: 13px; grid-column: span 2; margin-top: 6px; }
}

/* ============================================================
   BLOCO 8 — ANTES x DEPOIS
   ============================================================ */
.ad { background: var(--dark-navy); }
.ad__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 32px;
}
.ad__col {
  background: var(--dark-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-dark);
}
.ad__header {
  padding: 24px 32px;
  font-size: 19px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.01em;
}
.ad__header--before { background: var(--red); color: #fef2f2; }
.ad__header--after  { background: var(--cyan); color: var(--dark-navy); }
.ad__list { padding: 14px 32px 24px; }
.ad__list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-dark);
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
  transition: transform var(--t-fast), color var(--t-fast);
}
.ad__col--after .ad__list li { color: var(--white); font-weight: 600; }
.ad__list li:last-child { border-bottom: none; }
.ad__list li:hover { transform: translateX(4px); }
.ad__col--after .ad__list li:hover { color: var(--cyan); }
.ad__icon {
  width: 22px; height: 22px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  font-weight: 900;
  flex-shrink: 0;
}
.ad__icon--x { background: rgba(239, 68, 68, 0.15); color: var(--red); }
.ad__icon--ok { background: rgba(0, 184, 212, 0.15); color: var(--cyan); }
@media (max-width: 1024px) {
  .ad__grid { grid-template-columns: 1fr; gap: 24px; }
}
@media (max-width: 580px) {
  .ad__header { padding: 18px 22px; font-size: 15px; }
  .ad__list { padding: 8px 22px 18px; }
  .ad__list li { padding: 12px 0; font-size: 13px; gap: 12px; }
  .ad__icon { width: 20px; height: 20px; font-size: 11px; }
}

/* ============================================================
   BLOCO 9 — PROVA SOCIAL
   ============================================================ */
.social { background: var(--bg-light); }
.social .section-title { color: #0f172a; }
.social__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 16px;
}
.testi {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 32px 28px 28px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  display: flex;
  flex-direction: column;
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}
.testi:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.12);
}
.testi__stars {
  color: var(--yellow);
  font-size: 16px;
  letter-spacing: 4px;
  margin-bottom: 18px;
}
.testi__quote {
  font-size: 15px;
  font-weight: 500;
  color: #0f172a;
  line-height: 1.6;
  margin-bottom: 28px;
  flex-grow: 1;
}
.testi__author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
}
.testi__avatar {
  width: 44px; height: 44px;
  background: var(--cyan);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
  flex-shrink: 0;
}
.testi__author strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 2px;
}
.testi__author small { font-size: 12px; color: #64748b; font-weight: 500; }
@media (max-width: 1024px) {
  .social__grid { grid-template-columns: 1fr; max-width: 560px; margin-left: auto; margin-right: auto; }
}
@media (max-width: 580px) {
  .testi { padding: 24px 22px; }
  .testi__quote { font-size: 13px; margin-bottom: 22px; }
}

/* ============================================================
   BLOCO 10 — PLANOS
   ============================================================ */
.planos { background: var(--dark-navy); position: relative; overflow: hidden; }
.planos__bg-glow {
  position: absolute;
  top: 35%; left: 50%;
  width: 720px; height: 480px;
  background: radial-gradient(ellipse at center, var(--cyan-glow-strong) 0%, transparent 65%);
  filter: blur(80px);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
  opacity: 0.55;
  animation: glow-pulse 6s ease-in-out infinite;
}
.plan-card {
  position: relative;
  z-index: 1;
  background: var(--dark-surface);
  border-radius: 20px;
  padding: 56px 56px 44px;
  max-width: 540px;
  margin: 32px auto 24px;
  text-align: center;
  border: 1px solid rgba(0, 184, 212, 0.25);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(0, 184, 212, 0.08),
    0 8px 32px var(--cyan-glow);
}
.plan-card__badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--cyan);
  color: var(--dark-navy);
  font-size: 11px;
  font-weight: 800;
  padding: 8px 18px;
  border-radius: 16px;
  letter-spacing: 0.06em;
  box-shadow: 0 4px 16px var(--cyan-glow-strong);
}
.plan-card__name {
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}
.plan-card__price {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 4px;
  margin-bottom: 38px;
}
.plan-card__currency {
  font-size: 26px;
  font-weight: 700;
  color: var(--cyan);
  margin-bottom: 14px;
}
.plan-card__value {
  font-size: 84px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.04em;
}
.plan-card__period {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.plan-card__features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
  margin-bottom: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border-dark);
}
.plan-card__features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
}
.plan-card__check {
  width: 20px; height: 20px;
  background: rgba(0, 184, 212, 0.15);
  color: var(--cyan);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 900;
  flex-shrink: 0;
}
.plan-card__cta {
  width: 100%;
  padding: 18px 24px;
  font-size: 16px;
  margin-bottom: 16px;
}
.plan-card__link {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  text-align: center;
  transition: color var(--t-fast);
}
.plan-card__link:hover { color: var(--cyan); }
.planos__trust {
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-subtle);
  margin-top: 32px;
  position: relative;
  z-index: 1;
}
@media (max-width: 580px) {
  .plan-card { padding: 40px 28px 32px; margin: 28px auto 20px; }
  .plan-card__name { font-size: 18px; }
  .plan-card__value { font-size: 64px; }
  .plan-card__currency { font-size: 22px; margin-bottom: 10px; }
  .plan-card__period { font-size: 13px; margin-bottom: 10px; }
  .plan-card__features li { font-size: 13px; }
  .planos__trust { font-size: 11px; }
}

/* ============================================================
   BLOCO 11 — FAQ
   ============================================================ */
.faq { background: var(--bg-light); }
.faq .section-title { color: #0f172a; }
.container--narrow { max-width: 920px; }
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
}
.faq__item {
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}
.faq__item[open] {
  border-color: rgba(0, 184, 212, 0.25);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}
.faq__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 28px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
  list-style: none;
  user-select: none;
}
.faq__trigger::-webkit-details-marker { display: none; }
.faq__icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  font-weight: 700;
  flex-shrink: 0;
  position: relative;
  transition: background var(--t-fast), color var(--t-fast), transform var(--t-fast);
}
.faq__icon::before, .faq__icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  border-radius: 1px;
}
.faq__icon::before { width: 12px; height: 2px; }
.faq__icon::after  { width: 2px; height: 12px; transition: transform var(--t-fast); }
.faq__item[open] .faq__icon { background: rgba(0, 184, 212, 0.15); color: var(--cyan); }
.faq__item[open] .faq__icon::after { transform: scaleY(0); }
.faq__answer {
  padding: 0 28px 22px;
  color: #475569;
  font-size: 14px;
  line-height: 1.65;
  font-weight: 400;
}
.faq__bottom {
  text-align: center;
  margin-top: 32px;
  font-size: 14px;
  font-weight: 700;
}
.faq__bottom a { color: var(--cyan); transition: opacity var(--t-fast); }
.faq__bottom a:hover { opacity: 0.85; text-decoration: underline; }
@media (max-width: 580px) {
  .faq__trigger { padding: 16px 18px; font-size: 13px; }
  .faq__answer { padding: 0 18px 16px; font-size: 12px; }
  .faq__icon { width: 24px; height: 24px; }
  .faq__icon::before { width: 10px; }
  .faq__icon::after { height: 10px; }
}

/* ============================================================
   BLOCO 12 — CTA FINAL
   ============================================================ */
.cta-final {
  background: var(--dark-navy);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-final__bg-glow {
  position: absolute;
  top: 50%; left: 50%;
  width: 900px; height: 520px;
  background: radial-gradient(ellipse at center, var(--cyan-glow-strong) 0%, transparent 65%);
  filter: blur(80px);
  transform: translate(-50%, -50%);
  pointer-events: none;
  opacity: 0.55;
  z-index: 0;
  animation: glow-pulse 5s ease-in-out infinite;
}
.cta-final__content { position: relative; z-index: 1; max-width: 920px; margin: 0 auto; }
.cta-final__rocket {
  font-size: 52px;
  margin-bottom: 18px;
  animation: rocket-float 3s ease-in-out infinite;
  display: inline-block;
}
@keyframes rocket-float {
  0%, 100% { transform: translateY(0)    rotate(-5deg); }
  50%      { transform: translateY(-10px) rotate(5deg);  }
}
.cta-final__title {
  font-size: clamp(28px, 4.2vw, 46px);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 22px;
  letter-spacing: -0.025em;
}
.cta-final__subtitle {
  font-size: clamp(14px, 1.5vw, 18px);
  color: var(--text-muted);
  margin-bottom: 40px;
  line-height: 1.6;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.cta-final__ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.cta-final__ctas .btn { padding: 18px 36px; font-size: 16px; min-width: 240px; }
.cta-final__trust {
  font-size: 13px;
  color: var(--text-subtle);
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 580px) {
  .cta-final__rocket { font-size: 40px; }
  .cta-final__ctas { flex-direction: column; align-items: stretch; gap: 12px; }
  .cta-final__ctas .btn { width: 100%; min-width: 0; }
  .cta-final__trust { font-size: 11px; gap: 4px 0; }
}

/* ============================================================
   BLOCO 13 — FOOTER
   ============================================================ */
.footer {
  background: var(--dark-navy-deeper);
  padding: 56px 0 28px;
  position: relative;
  border-top: 2px solid var(--cyan);
}
.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border-dark);
}
.footer__logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer__logo img { width: 40px; height: 40px; }
.footer__brand-text { display: flex; flex-direction: column; line-height: 1; }
.footer__brand-text strong {
  font-size: 22px; font-weight: 800; color: var(--white); letter-spacing: -0.02em;
}
.footer__brand-text span {
  font-size: 9px; font-weight: 700; color: var(--cyan);
  letter-spacing: 0.18em; margin-top: 4px;
}
.footer__about {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 420px;
}
.footer__col h6 {
  font-size: 11px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col a {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
  transition: color var(--t-fast);
}
.footer__col a:hover { color: var(--cyan); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__bottom small {
  font-size: 12px;
  color: var(--text-subtle);
  font-weight: 500;
}
@media (max-width: 1024px) {
  .footer__top { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 580px) {
  .footer { padding: 40px 0 24px; }
  .footer__top { grid-template-columns: 1fr; gap: 28px; padding-bottom: 24px; }
  .footer__col h6 { margin-bottom: 12px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; padding-top: 18px; }
  .footer__bottom small { font-size: 11px; }
}
