/*
Theme Name: Daiana Rocha
Theme URI: https://daianarochaestrategista.com.br
Author: Daiana Rocha
Description: Tema exclusivo do site Daiana Rocha — Especialista em LinkedIn para Negócios. Réplica fiel do site original em React.
Version: 1.0.0
Requires PHP: 7.4
Text Domain: daianarocha
*/

/* =========================================================
   DAIANA ROCHA — Design System v2
   ========================================================= */

:root {
  --pink: #FF00A6;
  --pink-soft: #FFE0F4;
  --pink-deep: #D9008C;
  --royal: #000E76;
  --royal-deep: #00084A;
  --cobalt: #0022FF;
  --navy: #000E76;
  --navy-2: #050B2E;
  --ink: #0A0F35;
  --muted: #5A5F86;
  --cream: #FEFDF0;
  --cream-2: #F5F3DE;
  --line: rgba(0, 14, 118, 0.18);
  --line-soft: rgba(0, 14, 118, 0.10);
  --card: #FFFFFF;
  --card-border: #E8E4CC;
  --dark-card: #0A1466;
  --dark-card-border: rgba(255, 255, 255, 0.10);

  /* Hero dark */
  --hero-bg: #050B2E;
  --hero-surface: rgba(255, 255, 255, 0.04);
  --hero-border: rgba(255, 255, 255, 0.08);
  --hero-text: #FFFFFF;
  --hero-sub: rgba(237, 239, 250, 0.70);
}

/* =========================================================
   RESET & BASE
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body {
  background: var(--cream);
  color: var(--ink);
  font-family: 'Montserrat', 'Inter', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.55;
}

img { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; margin: 0; }

/* =========================================================
   LAYOUT
   ========================================================= */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

@media (max-width: 720px) {
  .container { padding: 0 20px; }
}

.section { padding: 80px 0; position: relative; }
.section--dark { background: var(--navy); color: #EDEFFA; }
.section--cream-2 { background: var(--cream-2); }

/* Seção Sobre — grid quadriculado rosa da identidade visual */
.section--about {
  background-color: var(--cream-2);
  background-image:
    linear-gradient(rgba(255,0,166,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,0,166,0.035) 1px, transparent 1px);
  background-size: 36px 36px;
  color: var(--ink);
}

@media (max-width: 720px) {
  .section { padding: 56px 0; }
}

/* =========================================================
   TYPOGRAPHY
   ========================================================= */
.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--royal);
}

.section--dark .eyebrow { color: #6B8DFF; }

.h1, .h2, .h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0;
}

.h1 { font-size: clamp(40px, 5.5vw, 64px); }
.h2 { font-size: clamp(32px, 4vw, 48px); line-height: 1.08; }
.h3 { font-size: clamp(20px, 2vw, 24px); line-height: 1.2; letter-spacing: -0.01em; }

.em-pink {
  font-family: 'Poppins', sans-serif;
  font-style: italic;
  font-weight: 600;
  color: var(--pink);
}

.em-cobalt {
  font-family: 'Poppins', sans-serif;
  font-style: italic;
  font-weight: 600;
  color: var(--cobalt);
}

.lead {
  font-size: 18px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 640px;
}

.section--dark .lead { color: rgba(237, 239, 250, 0.72); }

/* Section header */
.sh {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 64px;
}

.sh .eyebrow { display: block; margin-bottom: 14px; }
.sh .lead { margin: 18px auto 0; }

/* CTA wrap (centered below grids) */
.section__cta-wrap {
  margin-top: 56px;
  text-align: center;
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-1px); }

.btn .arr {
  display: inline-flex;
  width: 22px; height: 22px;
  align-items: center; justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  transition: background 0.2s ease;
}

/* Standard pink button */
.btn-primary {
  background: var(--pink);
  color: #fff;
  box-shadow: 0 8px 22px rgba(255, 0, 166, 0.30);
}
.btn-primary:hover {
  background: var(--pink-deep);
  box-shadow: 0 12px 28px rgba(255, 0, 166, 0.40);
}

/* Ghost on light bg */
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-soft);
}
.btn-ghost:hover { background: rgba(0, 14, 118, 0.05); border-color: var(--line); }

/* Hero CTA — primary (cobalt/white on dark bg) */
.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 17px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 16px;
  background: var(--pink);
  color: #fff;
  border: none;
  box-shadow: 0 10px 36px rgba(255, 0, 166, 0.45);
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn-hero-primary:hover {
  background: var(--pink-deep);
  transform: translateY(-2px);
  box-shadow: 0 16px 44px rgba(255, 0, 166, 0.55);
}

.hero__btn-arr {
  display: inline-flex;
  width: 26px; height: 26px;
  align-items: center; justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.20);
}

/* Hero CTA — ghost on dark bg */
.btn-hero-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 17px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 16px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.14);
  transition: transform 0.15s ease, background 0.2s ease, border-color 0.2s ease;
}
.btn-hero-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.24);
  transform: translateY(-1px);
}

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(254, 253, 240, 0.90);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.nav.is-scrolled {
  border-bottom-color: var(--line-soft);
  background: rgba(254, 253, 240, 0.97);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav__logo { height: 34px; width: auto; }

.nav__links {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav__links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  opacity: 0.72;
  transition: opacity 0.15s ease;
}

.nav__links a:hover { opacity: 1; }

.nav__cta .btn-primary { padding: 11px 20px; font-size: 14px; }

.nav__burger {
  display: none;
  width: 40px; height: 40px;
  border-radius: 10px;
  align-items: center; justify-content: center;
  background: rgba(0, 14, 118, 0.06);
}

.nav__burger svg { width: 20px; height: 20px; }

@media (max-width: 900px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: inline-flex; }
}

.nav__sheet {
  position: absolute;
  left: 0; right: 0;
  top: 72px;
  background: var(--cream);
  border-bottom: 1px solid var(--line-soft);
  padding: 20px 0 28px;
  box-shadow: 0 20px 40px rgba(5, 11, 46, 0.10);
}

.nav__sheet a {
  display: block;
  padding: 12px 32px;
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  opacity: 0.80;
  transition: opacity 0.15s ease, padding-left 0.15s ease;
}

.nav__sheet a:hover { opacity: 1; padding-left: 38px; }
.nav__sheet .btn-primary { margin: 14px 32px 0; opacity: 1; color: #fff; padding: 13px 22px; }

/* =========================================================
   HERO — DARK PREMIUM
   ========================================================= */
.hero {
  position: relative;
  background: var(--hero-bg);
  color: var(--hero-text);
  overflow: hidden;
  padding: 0;
}

/* Background grid */
.hero__bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* Glow orbs */
.hero__bg-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
}

.hero__bg-glow--1 {
  width: 600px; height: 600px;
  left: -100px; top: -150px;
  background: radial-gradient(circle, rgba(0, 34, 255, 0.18), transparent 65%);
}

.hero__bg-glow--2 {
  width: 500px; height: 500px;
  right: 0; bottom: -100px;
  background: radial-gradient(circle, rgba(255, 0, 166, 0.14), transparent 65%);
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: end;
  padding-top: 88px;
  padding-bottom: 0;
  position: relative;
  z-index: 2;
}

@media (max-width: 980px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 56px;
    padding-top: 64px;
    padding-bottom: 32px;
  }
}

@media (max-width: 560px) {
  .hero {
    overflow-x: hidden;
    overflow-y: visible;
  }
  .hero__inner {
    gap: 0;
    padding-top: 20px;
    padding-bottom: 0;
    align-items: start;
  }
  .hero__h1 { font-size: clamp(28px, 8vw, 42px); }
  .hero__sub { font-size: 14px; margin-bottom: 18px; }
  .hero__ctas { gap: 10px; margin-bottom: 0; justify-content: center; }
  .hero__badge { justify-content: center; }
  .hero__copy { text-align: center; padding-bottom: 16px; }
}

/* Badge / pill */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(0, 34, 255, 0.15);
  border: 1px solid rgba(0, 34, 255, 0.30);
  font-size: 13px;
  font-weight: 500;
  color: #93AAFF;
  margin-bottom: 28px;
}

.hero__badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #4FFF8A;
  box-shadow: 0 0 8px rgba(79, 255, 138, 0.60);
  flex-shrink: 0;
}

/* Headline */
.hero__h1 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: clamp(44px, 5.8vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: #FFFFFF;
  margin: 0 0 24px;
}

.hero__h1-em {
  font-style: italic;
  color: var(--cobalt);
  position: relative;
}

/* Sub */
.hero__sub {
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.68;
  color: var(--hero-sub);
  max-width: 540px;
  margin: 0 0 36px;
}

/* CTAs */
.hero__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

/* Stats bar */
.hero__stats-bar {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  background: var(--hero-surface);
  border: 1px solid var(--hero-border);
  border-radius: 14px;
  padding: 16px 22px;
  flex-wrap: wrap;
}

.hero__stats-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero__stats-stars {
  display: flex;
  gap: 1px;
}

.hero__stats-val {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: #FFFFFF;
  letter-spacing: -0.02em;
  line-height: 1;
}

.hero__stats-lbl {
  font-size: 13px;
  color: rgba(237, 239, 250, 0.60);
  line-height: 1.3;
}

.hero__stats-divider {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.10);
  flex-shrink: 0;
}

@media (max-width: 560px) {
  .hero__stats-bar { flex-direction: column; align-items: flex-start; }
  .hero__stats-divider { width: 100%; height: 1px; }
}

/* Photo column */
.hero__photo-wrap {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  align-self: stretch;
  min-height: 520px;
  overflow: visible;
}

@media (max-width: 980px) {
  .hero__photo-wrap { min-height: 360px; }
}

@media (max-width: 560px) {
  .hero__photo-wrap {
    order: -1;
    min-height: 0;
    height: auto;
    align-items: flex-start;
    justify-content: center;
    overflow: visible;
    align-self: auto;
  }
  .hero__photo-person {
    max-width: 280px;
    width: 100%;
    margin: 0 auto;
    display: block;
    position: static;
  }
  .hero__photo-circle {
    width: 220px;
    height: 220px;
  }
  .hero__spark--1 { width: 20px; height: 20px; }
  .hero__spark--2 { width: 14px; height: 14px; }
  .hero__spark--3 { display: none; }
}

/* Círculo azul decorativo */
.hero__photo-circle {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: var(--cobalt);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
  opacity: 0.85;
}

.hero__photo-person {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 480px;
  display: block;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 16px 32px rgba(0, 0, 0, 0.5));
}

/* Sparkles decorativos da identidade visual */
.hero__spark {
  position: absolute;
  z-index: 4;
  animation: sparkle-float 3s ease-in-out infinite;
}
.hero__spark--1 { width: 28px; height: 28px; top: 12%;  left: 8%;  animation-delay: 0s; }
.hero__spark--2 { width: 18px; height: 18px; top: 35%;  right: 6%; animation-delay: 0.8s; }
.hero__spark--3 { width: 22px; height: 22px; bottom: 30%; left: 14%; animation-delay: 1.5s; }

@keyframes sparkle-float {
  0%, 100% { transform: translateY(0) rotate(0deg);   opacity: 1; }
  50%       { transform: translateY(-8px) rotate(20deg); opacity: 0.7; }
}

/* Cards de métricas flutuantes */
.hero__metric-card {
  position: absolute;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  padding: 10px 14px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.22);
  z-index: 2;
  min-width: 148px;
  max-width: 168px;
}

/* SSI — canto inferior esquerdo da foto */
.hero__metric-card--ssi   { left: 4%; bottom: 30%; }
/* Views — canto superior direito */
.hero__metric-card--views { right: 2%; top: 14%; }
/* Reach — canto inferior direito */
.hero__metric-card--reach { right: 2%; bottom: 14%; }

@media (max-width: 1100px) {
  .hero__metric-card--ssi   { left: 2%; }
  .hero__metric-card--views { right: 2%; }
  .hero__metric-card--reach { right: 2%; }
}

.hero__metric-card__label {
  font-size: 9px;
  font-weight: 700;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}

.hero__metric-card__row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero__metric-card__circle {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero__metric-card__num {
  position: absolute;
  font-size: 13px;
  font-weight: 800;
  color: var(--ink);
}

.hero__metric-card__big {
  font-size: 18px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
}

.hero__metric-card__sub {
  font-size: 10px;
  color: #999;
  margin-top: 2px;
}

.hero__metric-card__badge {
  margin-top: 6px;
  font-size: 9px;
  font-weight: 700;
  color: var(--cobalt);
  background: rgba(0,34,255,0.08);
  padding: 3px 7px;
  border-radius: 5px;
  display: inline-block;
}

.hero__metric-card__spark {
  width: 100%;
  height: 24px;
  display: block;
  margin-top: 5px;
}

.hero__metric-card__bars {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 26px;
  margin-top: 6px;
}

.hero__metric-card__bar {
  flex: 1;
  border-radius: 2px 2px 0 0;
  transition: height 0.3s ease;
}

/* Floating chips */
.hero__chip {
  position: absolute;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(5, 11, 46, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
  font-weight: 600;
  color: rgba(237, 239, 250, 0.92);
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.30);
}

.hero__chip--tl { top: 10%; left: -12%; }
.hero__chip--br { bottom: 14%; right: -8%; }

@media (max-width: 1100px) {
  .hero__chip--tl { left: 0; }
  .hero__chip--br { right: 0; }
}

@media (max-width: 980px) {
  .hero__chip--tl { top: 5%; left: 4%; }
  .hero__chip--br { bottom: 6%; right: 4%; }
}

/* Contact bar at bottom of hero */
.hero__contact-bar {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.04);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 18px 0;
}

.hero__contact-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero__contact-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(237, 239, 250, 0.65);
}

.hero__contact-link {
  color: rgba(237, 239, 250, 0.80);
  transition: color 0.15s ease;
}

.hero__contact-link:hover { color: #fff; }

.hero__contact-sep {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.20);
  flex-shrink: 0;
}

@media (max-width: 560px) {
  .hero__contact-inner { flex-direction: column; gap: 10px; }
  .hero__contact-sep { display: none; }
}

/* =========================================================
   NUMBERS STRIP
   ========================================================= */
.numbers-strip {
  background: var(--cream-2);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.numbers-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding: 64px 0;
  text-align: center;
}

@media (max-width: 760px) {
  .numbers-strip__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px 24px;
    padding: 48px 0;
  }
}

.numbers-strip__n {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: var(--cobalt);
  font-size: clamp(40px, 4.5vw, 60px);
  line-height: 1;
  letter-spacing: -0.03em;
}

.numbers-strip__l {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  max-width: 200px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.45;
}

/* =========================================================
   PAINS (light section)
   ========================================================= */
.section--pains {
  background-color: var(--cream);
  background-image:
    linear-gradient(rgba(255,0,166,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,0,166,0.035) 1px, transparent 1px);
  background-size: 36px 36px;
  color: var(--ink);
}

.section--pains .eyebrow { color: var(--pink); }
.section--pains .h2      { color: var(--ink); }
.section--pains .lead    { color: var(--muted); }

.pains-groups {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 56px;
}

@media (max-width: 1024px) { .pains-groups { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .pains-groups { grid-template-columns: 1fr; } }

.pain-group {
  background: #fff;
  border: 1px solid var(--card-border);
  border-radius: 18px;
  padding: 28px 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pain-group:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 14, 118, 0.10);
}

.pain-group__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.pain-group__icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(0, 14, 118, 0.07);
  color: var(--navy);
  display: inline-flex;
  align-items: center; justify-content: center;
  flex-shrink: 0;
}

.pain-group__icon svg { width: 18px; height: 18px; }

.pain-group__title {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin: 0;
  line-height: 1.3;
}

.pain-group__list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pain-group__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
}

.pain-group__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--navy);
  flex-shrink: 0;
  margin-top: 6px;
}

/* CTA da seção de dores */
.pains__cta {
  margin-top: 64px;
  text-align: center;
}

/* Rede de parceiros */
.partners__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.partner-card {
  background: #fff;
  border: 1.5px solid var(--line-soft);
  border-radius: 18px;
  padding: 28px 24px;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.partner-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 14, 118, 0.10);
  border-color: rgba(255, 0, 166, 0.30);
}

.partner-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(255, 0, 166, 0.10);
  color: var(--pink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.partner-card__icon svg { width: 22px; height: 22px; }

.partner-card__title {
  font-family: 'Poppins', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 10px;
}

.partner-card__desc {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}

@media (max-width: 980px) { .partners__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .partners__grid { grid-template-columns: 1fr; } }

.pains__cta-text {
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 620px;
  margin: 0 auto 28px;
}

.pains__cta-text strong { color: var(--ink); }

.pains__foot {
  margin-top: 56px;
  text-align: center;
  color: var(--muted);
  font-size: 15px;
}

.pains__foot strong { color: var(--ink); font-weight: 600; }

/* =========================================================
   SERVICES
   ========================================================= */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 900px) { .services__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .services__grid { grid-template-columns: 1fr; } }

.service-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 18px;
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--cobalt), var(--pink));
  opacity: 0;
  transition: opacity 0.2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 34, 255, 0.10);
  border-color: rgba(0, 34, 255, 0.20);
}

.service-card:hover::before { opacity: 1; }

.service-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.service-card__icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(0, 34, 255, 0.08);
  color: var(--cobalt);
  display: inline-flex;
  align-items: center; justify-content: center;
  flex-shrink: 0;
}

.service-card__icon svg { width: 22px; height: 22px; }

.service-card__tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
}

.service-card__title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 17px;
  color: var(--ink);
  line-height: 1.25;
  margin: 0;
  letter-spacing: -0.01em;
}

.service-card__desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
  flex: 1;
}

.service-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--cobalt);
  margin-top: auto;
  transition: gap 0.15s ease;
}

.service-card__cta:hover { gap: 10px; }

/* =========================================================
   AUDIENCE (4 cards)
   ========================================================= */
.audience {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  max-width: 880px;
  margin: 0 auto;
}

@media (max-width: 720px) { .audience { grid-template-columns: 1fr; } }

.audience__card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 18px;
  padding: 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.audience__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(0, 34, 255, 0.10);
  border-color: rgba(0, 34, 255, 0.18);
}

.audience__icon {
  width: 46px; height: 46px;
  border-radius: 13px;
  flex-shrink: 0;
  background: rgba(0, 34, 255, 0.08);
  color: var(--cobalt);
  display: inline-flex;
  align-items: center; justify-content: center;
}

.audience__icon svg { width: 22px; height: 22px; }

.audience__text {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink);
  font-weight: 500;
}

/* =========================================================
   PROCESS (6 steps)
   ========================================================= */
.process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

@media (max-width: 980px) { .process { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .process { grid-template-columns: 1fr; } }

.step {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 18px;
  padding: 28px 26px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
}

.step:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(0, 34, 255, 0.10);
  border-color: rgba(0, 34, 255, 0.18);
}

.step__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.step__num {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 48px;
  color: var(--cobalt);
  opacity: 0.22;
  line-height: 1;
  letter-spacing: -0.02em;
}

.step__icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: rgba(0, 34, 255, 0.08);
  color: var(--cobalt);
  display: inline-flex;
  align-items: center; justify-content: center;
}

.step__icon svg { width: 20px; height: 20px; }

.step__title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: var(--ink);
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}

.step__body {
  font-size: 14px;
  line-height: 1.60;
  color: var(--muted);
  margin: 0;
}

/* =========================================================
   ABOUT (expanded)
   ========================================================= */
.about {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: start;
}

@media (max-width: 980px) {
  .about {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

/* Photo column */
.about__photo-col { display: flex; flex-direction: column; gap: 20px; }

.about__photo {
  position: relative;
  aspect-ratio: 3/4;
  max-width: 420px;
  width: 100%;
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(160deg, #FF66C9 0%, #FF00A6 55%, #6B0048 100%);
  box-shadow: 0 32px 72px rgba(255, 0, 166, 0.22);
}

.about__photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
}

.about__badge {
  position: absolute;
  left: 16px; bottom: 16px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: 0 8px 24px rgba(5, 11, 46, 0.18);
  display: flex;
  gap: 12px;
  align-items: center;
}

.about__badge__icon {
  width: 36px; height: 36px;
  border-radius: 999px;
  background: var(--pink-soft);
  color: var(--pink-deep);
  display: inline-flex;
  align-items: center; justify-content: center;
  flex-shrink: 0;
}

.about__badge__icon svg { width: 18px; height: 18px; }

.about__badge__t {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
}

.about__badge__s { font-size: 11px; color: var(--muted); margin-top: 2px; }

/* Highlights grid */
.about__highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  max-width: 420px;
}

.about__hl-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 14px;
  padding: 16px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.about__hl-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 34, 255, 0.09);
}

.about__hl-icon {
  width: 34px; height: 34px;
  border-radius: 9px;
  background: rgba(0, 34, 255, 0.08);
  color: var(--cobalt);
  display: inline-flex;
  align-items: center; justify-content: center;
  flex-shrink: 0;
}

.about__hl-icon svg { width: 16px; height: 16px; }

.about__hl-value {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.02em;
}

.about__hl-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  margin-top: 3px;
}

.about__hl-desc {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.4;
  margin-top: 2px;
}

/* Copy */
.about__body p {
  color: rgba(10, 15, 53, 0.78);
  font-size: 14.5px;
  line-height: 1.65;
  margin: 14px 0 0;
}

.about__body p strong { color: var(--ink); font-weight: 600; }

.about__ctas {
  margin-top: 32px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* =========================================================
   SEGMENTS (dark)
   ========================================================= */
.segs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-width: 1000px;
  margin: 0 auto;
}

@media (max-width: 880px) { .segs { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .segs { grid-template-columns: repeat(2, 1fr); } }

.seg {
  text-align: center;
  padding: 18px 16px;
  background: var(--dark-card);
  border: 1px solid var(--dark-card-border);
  border-radius: 12px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: rgba(237, 239, 250, 0.88);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.seg:hover {
  background: #14225A;
  border-color: rgba(0, 34, 255, 0.45);
  transform: translateY(-2px);
  color: #fff;
}

.segs__foot {
  text-align: center;
  margin-top: 44px;
  font-style: italic;
  color: rgba(237, 239, 250, 0.50);
  font-size: 14px;
}

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testi__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

@media (max-width: 980px) { .testi__row { grid-template-columns: 1fr; } }

.testi {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 4px 14px rgba(5, 11, 46, 0.05);
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 280px;
}

.testi__stars {
  color: #F2A33A;
  display: flex;
  gap: 2px;
  margin-bottom: 14px;
}

.testi__stars svg { width: 15px; height: 15px; }

.testi__quote {
  color: rgba(10, 15, 53, 0.82);
  font-size: 15px;
  line-height: 1.65;
  flex: 1;
  margin: 0;
}

.testi__big-quote {
  position: absolute;
  right: 20px; top: 16px;
  font-family: 'Poppins', sans-serif;
  font-size: 80px;
  line-height: 1;
  color: rgba(0, 34, 255, 0.10);
  font-weight: 700;
  pointer-events: none;
}

.testi__divider {
  height: 1px;
  background: var(--line-soft);
  margin: 18px 0 14px;
}

.testi__author { display: flex; align-items: center; gap: 12px; }
.testi__photo { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; flex-shrink: 0; border: 2px solid var(--pink); }
.testi__name { font-weight: 700; font-size: 15px; color: var(--ink); }
.testi__role { font-size: 13px; color: var(--muted); margin-top: 3px; }

.testi__pager {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
}

.testi__dot {
  width: 8px; height: 8px;
  border-radius: 999px;
  background: rgba(0, 14, 118, 0.18);
  transition: background 0.2s ease, width 0.2s ease;
}

.testi__dot.is-active { background: var(--cobalt); width: 28px; }

/* Animação de entrada dos cards */
@keyframes testi-in {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes testi-out {
  from { opacity: 1; transform: translateY(0); }
  to   { opacity: 0; transform: translateY(-12px); }
}

.testi--animated {
  animation: testi-in 0.45s ease both;
}
.testi--animated:nth-child(2) { animation-delay: 0.07s; }
.testi--animated:nth-child(3) { animation-delay: 0.14s; }

.testi__row--exit .testi--animated {
  animation: testi-out 0.35s ease both;
}

/* Barra de progresso */
.testi__progress {
  width: 120px;
  height: 3px;
  background: rgba(0,14,118,0.1);
  border-radius: 99px;
  margin: 16px auto 0;
  overflow: hidden;
}
.testi__progress-bar {
  height: 100%;
  background: var(--pink);
  border-radius: 99px;
  animation: progress-fill 5s linear forwards;
}
@keyframes progress-fill {
  from { width: 0%; }
  to   { width: 100%; }
}

/* =========================================================
   BLOG / INSIGHTS
   ========================================================= */
.blog__controls {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.blog__search-wrap {
  position: relative;
  flex: 1;
  min-width: 200px;
  max-width: 360px;
}

.blog__search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  pointer-events: none;
}

.blog__search {
  width: 100%;
  padding: 12px 16px 12px 42px;
  border-radius: 999px;
  border: 1px solid var(--card-border);
  background: var(--card);
  font-size: 14px;
  color: var(--ink);
  outline: none;
  font-family: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.blog__search::placeholder { color: var(--muted); }

.blog__search:focus {
  border-color: var(--cobalt);
  box-shadow: 0 0 0 3px rgba(0, 34, 255, 0.10);
}

.blog__filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.blog__filter-btn {
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid var(--card-border);
  background: var(--card);
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.blog__filter-btn:hover {
  background: rgba(0, 34, 255, 0.05);
  border-color: rgba(0, 34, 255, 0.20);
  color: var(--cobalt);
}

.blog__filter-btn.is-active {
  background: var(--cobalt);
  border-color: var(--cobalt);
  color: #fff;
}

.blog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

@media (max-width: 980px) { .blog__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .blog__grid { grid-template-columns: 1fr; } }

.blog-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  position: relative;
  overflow: hidden;
}

.blog-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--cobalt), var(--pink));
  opacity: 0;
  transition: opacity 0.2s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(0, 34, 255, 0.09);
  border-color: rgba(0, 34, 255, 0.16);
}

.blog-card:hover::after { opacity: 1; }

.blog-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.blog-card__cat {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
}

.blog-card__read {
  font-size: 12px;
  color: var(--muted);
}

.blog-card__title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 17px;
  line-height: 1.25;
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.01em;
}

.blog-card__summary {
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
  margin: 0;
  flex: 1;
}

.blog-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--line-soft);
}

.blog-card__date {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--muted);
}

.blog-card__link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 600;
  color: var(--cobalt);
  transition: gap 0.15s ease;
}

.blog-card__link:hover { gap: 9px; }

/* Empty state */
.blog__empty {
  text-align: center;
  padding: 56px 24px;
  color: var(--muted);
  font-size: 16px;
}

.blog__empty-reset {
  color: var(--cobalt);
  font-weight: 600;
  font-size: 16px;
  text-decoration: underline;
  cursor: pointer;
}

/* Paginação do blog */
.blog__pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 48px;
}
.blog__page-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 999px;
  border: 1.5px solid var(--cobalt);
  color: var(--cobalt);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  background: transparent;
  transition: background 0.2s, color 0.2s;
}
.blog__page-btn:hover:not(:disabled) { background: var(--cobalt); color: #fff; }
.blog__page-btn:disabled { opacity: 0.35; cursor: not-allowed; }
.blog__page-info { font-size: 14px; color: var(--muted); font-weight: 500; }

/* =========================================================
   DIAGNÓSTICO (QUIZ)
   ========================================================= */
.quiz__body {
  background: var(--cream);
  padding: 64px 0 80px;
  min-height: 50vh;
}

/* Página escura no estilo hero */
.quiz__body--dark {
  position: relative;
  background: var(--hero-bg);
  margin-top: 72px;
  padding: 72px 0 96px;
  overflow: hidden;
}

.quiz__body--intro {
  display: flex;
  align-items: center;
  min-height: calc(100vh - 72px);
  padding: 48px 0;
}

.quiz__bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.quiz__bg-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
}
.quiz__bg-glow--1 {
  width: 600px; height: 600px;
  left: -120px; top: -160px;
  background: radial-gradient(circle, rgba(0, 34, 255, 0.20), transparent 65%);
}
.quiz__bg-glow--2 {
  width: 520px; height: 520px;
  right: -80px; bottom: -120px;
  background: radial-gradient(circle, rgba(255, 0, 166, 0.16), transparent 65%);
}

/* Hero do diagnóstico */
.quiz__hero {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.quiz__hero-eyebrow {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(237, 239, 250, 0.75);
  margin-bottom: 36px;
}

.quiz__hero-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: #FEFDF0;
  margin: 0 0 28px;
}

.quiz__hero-em {
  display: block;
  font-style: italic;
  color: var(--pink);
}

.quiz__hero-sub {
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.75;
  color: rgba(237, 239, 250, 0.70);
  max-width: 560px;
  margin: 0 0 36px;
}

.quiz__hero-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}

.quiz__hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  font-size: 13px;
  font-weight: 500;
  color: rgba(237, 239, 250, 0.85);
}

.quiz__hero-btn {
  font-size: 16px;
  padding: 17px 38px;
}

.quiz__hero-foot {
  margin-top: 22px;
  font-size: 13px;
  color: rgba(237, 239, 250, 0.45);
}

.quiz__card {
  background: #fff;
  border: 1.5px solid var(--line-soft);
  border-radius: 18px;
  padding: 40px 36px;
  max-width: 640px;
  margin: 0 auto 20px;
}

.quiz__card--intro,
.quiz__card--result {
  text-align: center;
}

.quiz__intro-emoji { font-size: 44px; display: block; margin-bottom: 16px; }

.quiz__h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 14px;
}

.quiz__h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 12px;
}

.quiz__p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
  margin: 0 0 20px;
}

.quiz__intro-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  color: var(--ink);
}

.quiz__btn { justify-content: center; }

/* Progresso */
.quiz__progress { margin-bottom: 28px; }

.quiz__progress-track {
  height: 8px;
  background: rgba(0, 14, 118, 0.08);
  border-radius: 99px;
  overflow: hidden;
  margin-bottom: 8px;
}

.quiz__progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--cobalt), var(--pink));
  border-radius: 99px;
  transition: width 0.3s ease;
}

.quiz__progress-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Pergunta + opções */
.quiz__question {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.35;
  margin: 0 0 24px;
}

.quiz__options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.quiz__option {
  text-align: left;
  padding: 16px 18px;
  border-radius: 12px;
  border: 1.5px solid var(--line-soft);
  background: var(--cream);
  font-size: 15px;
  font-family: 'Montserrat', sans-serif;
  color: var(--ink);
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, transform 0.15s ease;
}

.quiz__option:hover {
  border-color: var(--cobalt);
  background: rgba(0, 34, 255, 0.04);
  transform: translateX(4px);
}

.quiz__option.is-selected {
  border-color: var(--pink);
  background: rgba(255, 0, 166, 0.05);
}

.quiz__back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}
.quiz__back:hover { color: var(--cobalt); }

/* Lead form */
.quiz__lead-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 400px;
  margin: 0 auto;
}

/* Resultado */
.quiz__result-emoji { font-size: 56px; display: block; margin-bottom: 10px; }

.quiz__result-score {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: var(--cobalt);
  background: rgba(0, 34, 255, 0.08);
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.quiz__result-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(26px, 3.2vw, 36px);
  font-weight: 800;
  color: var(--ink);
  margin: 0 0 14px;
}

.quiz__rec-list { display: flex; flex-direction: column; gap: 12px; }

.quiz__rec-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border-radius: 12px;
  border: 1.5px solid var(--line-soft);
  background: var(--cream);
  text-decoration: none;
  color: var(--ink);
  transition: border-color 0.15s ease, transform 0.15s ease;
}

.quiz__rec-card:hover {
  border-color: var(--cobalt);
  transform: translateX(4px);
}

.quiz__rec-card strong {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  margin-bottom: 4px;
}

.quiz__rec-card p {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

.quiz__rec-card--extra { border-color: rgba(255, 0, 166, 0.35); }

.quiz__rec-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--pink);
  background: rgba(255, 0, 166, 0.10);
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 6px;
}

.quiz__card--cta {
  text-align: center;
  background: var(--navy);
  border-color: var(--navy);
}
.quiz__body--dark .quiz__card--cta {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.14);
}
.quiz__card--cta .quiz__h3 { color: #fff; }
.quiz__card--cta .quiz__p { color: rgba(237, 239, 250, 0.75); }

@media (max-width: 560px) {
  .quiz__card { padding: 28px 20px; }
}

/* =========================================================
   CONTACT PAGE
   ========================================================= */
.service-page__header--contact {
  background:
    linear-gradient(135deg, rgba(0,14,118,0.82) 0%, rgba(255,0,166,0.18) 100%),
    url('assets/img/servicos-header.jpg') center 60% / cover no-repeat;
}

.contact-page__body {
  background: var(--cream);
  padding: 64px 0 80px;
}

.contact-page__grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  align-items: start;
}

/* Formulário */
.contact-page__form { display: flex; flex-direction: column; gap: 20px; }

.contact-page__field { display: flex; flex-direction: column; gap: 6px; }

.contact-page__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-page__label {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}

.contact-page__input {
  padding: 13px 16px;
  border-radius: 10px;
  border: 1.5px solid var(--line-soft);
  background: #fff;
  font-size: 15px;
  font-family: 'Montserrat', sans-serif;
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
}

.contact-page__input:focus {
  outline: none;
  border-color: var(--cobalt);
  box-shadow: 0 0 0 3px rgba(0,34,255,0.08);
}

.contact-page__select { cursor: pointer; }

.contact-page__textarea { resize: vertical; min-height: 110px; }

.contact-page__btn { width: 100%; justify-content: center; padding: 16px; font-size: 16px; }

.contact-page__note {
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  margin: 0;
}

/* Success state */
.contact-page__success {
  text-align: center;
  padding: 48px 32px;
  background: #fff;
  border-radius: 18px;
  border: 1.5px solid var(--line-soft);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.contact-page__success-icon { font-size: 48px; }
.contact-page__success h2 { font-family: 'Poppins', sans-serif; color: var(--ink); }
.contact-page__success p { color: var(--muted); font-size: 15px; }

/* Info lateral */
.contact-page__info-card,
.contact-page__services-card {
  background: #fff;
  border: 1.5px solid var(--line-soft);
  border-radius: 18px;
  padding: 28px 24px;
  margin-bottom: 20px;
}

.contact-page__info-title {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 20px;
}

.contact-page__info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}
.contact-page__info-item:last-child { margin-bottom: 0; }

.contact-page__info-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 2px;
}

.contact-page__info-value {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  display: block;
}
.contact-page__info-value:hover { color: var(--cobalt); }

.contact-page__service-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  padding: 7px 0;
  border-bottom: 1px solid var(--line-soft);
  transition: color 0.15s ease;
}
.contact-page__service-link:last-child { border-bottom: none; }
.contact-page__service-link:hover { color: var(--cobalt); }

@media (max-width: 880px) {
  .contact-page__grid { grid-template-columns: 1fr; }
  .contact-page__info-col { order: -1; }
}
@media (max-width: 560px) {
  .contact-page__row { grid-template-columns: 1fr; }
}

/* =========================================================
   FAQ
   ========================================================= */
.faq__list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq__item {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.faq__item.is-open {
  border-color: rgba(0, 34, 255, 0.22);
}

.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  text-align: left;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.5;
  transition: background 0.15s ease;
}

.faq__q:hover { background: rgba(0, 34, 255, 0.03); }

.faq__chevron {
  flex-shrink: 0;
  color: var(--cobalt);
}

.faq__a {
  padding: 0 24px 22px;
  font-size: 15px;
  line-height: 1.70;
  color: var(--muted);
  border-top: 1px solid var(--line-soft);
  padding-top: 18px;
}

.faq__foot {
  text-align: center;
  margin-top: 44px;
  font-size: 15px;
  color: var(--muted);
}

.faq__foot-link {
  color: var(--cobalt);
  font-weight: 600;
  text-decoration: underline;
}

/* =========================================================
   FINAL CTA (dark)
   ========================================================= */
.cta-final {
  position: relative;
  text-align: center;
  padding: 130px 0 100px;
  background: var(--hero-bg);
  color: #EDEFFA;
  overflow: hidden;
}

.cta-final__glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(90px);
}

.cta-final__glow--1 {
  width: 700px; height: 700px;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(0, 34, 255, 0.18), transparent 60%);
}

.cta-final__glow--2 {
  width: 400px; height: 400px;
  right: -100px; bottom: -100px;
  background: radial-gradient(circle, rgba(255, 0, 166, 0.16), transparent 65%);
}

.cta-final__inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 32px;
}

.cta-final__h { color: #fff; }

.cta-final__lead {
  color: rgba(237, 239, 250, 0.70);
  margin: 20px auto 40px;
  max-width: 560px;
}

.cta-final__btns {
  display: inline-flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.cta-final__contacts {
  margin-top: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.cta-final__contact-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: rgba(237, 239, 250, 0.60);
  transition: color 0.15s ease;
}

.cta-final__contact-item:hover { color: rgba(237, 239, 250, 0.90); }

.cta-final__contact-sep {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  flex-shrink: 0;
}

@media (max-width: 560px) {
  .cta-final__contacts { flex-direction: column; gap: 12px; }
  .cta-final__contact-sep { display: none; }
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: #02061A;
  color: rgba(237, 239, 250, 0.72);
  padding-top: 80px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.2fr;
  gap: 56px;
  padding-bottom: 64px;
}

@media (max-width: 880px) {
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .footer__inner { grid-template-columns: 1fr; gap: 40px; }
}

.footer__logo { height: 56px; width: auto; }

.footer__tagline {
  font-size: 14px;
  line-height: 1.70;
  color: rgba(237, 239, 250, 0.55);
  margin: 18px 0 24px;
}

.footer__socials {
  display: flex;
  gap: 12px;
}

.footer__socials a {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.10);
  display: inline-flex;
  align-items: center; justify-content: center;
  color: rgba(237, 239, 250, 0.70);
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.footer__socials a:hover {
  background: rgba(0, 34, 255, 0.20);
  border-color: rgba(0, 34, 255, 0.35);
  color: #fff;
}

.footer__col-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(237, 239, 250, 0.40);
  margin-bottom: 20px;
}

.footer__links { display: flex; flex-direction: column; gap: 10px; }

.footer__links li a {
  font-size: 14px;
  color: rgba(237, 239, 250, 0.65);
  transition: color 0.15s ease;
}

.footer__links li a:hover { color: #fff; }

.footer__contacts { display: flex; flex-direction: column; gap: 12px; }

.footer__contacts li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(237, 239, 250, 0.65);
}

.footer__contacts li svg { flex-shrink: 0; margin-top: 1px; }

.footer__contacts a {
  color: rgba(237, 239, 250, 0.65);
  transition: color 0.15s ease;
}

.footer__contacts a:hover { color: #fff; }

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 22px 0;
}

.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  color: rgba(237, 239, 250, 0.38);
}

/* =========================================================
   REVEAL ANIMATIONS
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.in {
  opacity: 1;
  transform: none;
}

/* =========================================================
   BLOG POST PAGE
   ========================================================= */
.blog-post-page {
  background: var(--cream);
  min-height: 100vh;
}

.blog-post__header {
  background: var(--navy);
  color: #fff;
  padding: 48px 0 56px;
  margin-top: 72px; /* nav height */
}

.blog-post__back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-bottom: 24px;
  transition: color 0.2s;
}
.blog-post__back:hover { color: #fff; }

.blog-post__meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.blog-post__meta-info {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}

.blog-post__title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(24px, 3.5vw, 42px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #fff;
  max-width: 820px;
  margin: 0 0 18px;
}

.blog-post__summary {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(237,239,250,0.70);
  max-width: 680px;
  margin: 0;
}

/* Layout: article + sidebar */
.blog-post__layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  padding-top: 48px;
  padding-bottom: 80px;
  align-items: start;
}

@media (max-width: 900px) {
  .blog-post__layout { grid-template-columns: 1fr; }
  .blog-post__sidebar { order: -1; }
}

/* Article card */
.blog-post__card {
  background: #fff;
  border-radius: 20px;
  padding: 48px 52px;
  box-shadow: 0 4px 24px rgba(0,14,118,0.07);
}

@media (max-width: 600px) {
  .blog-post__card { padding: 28px 20px; }
}

.blog-post__p {
  font-size: 16px;
  line-height: 1.9;
  color: var(--ink);
  margin: 0 0 22px;
}

.blog-post__h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin: 44px 0 14px;
  padding-left: 14px;
  border-left: 3px solid var(--pink);
}

.blog-post__list {
  margin: 0 0 22px;
  padding-left: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.blog-post__list li {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
}
.blog-post__list li::marker { color: var(--pink); }

.blog-post__link {
  color: var(--cobalt);
  font-weight: 600;
  text-decoration: underline;
  word-break: break-word;
}
.blog-post__link:hover { color: var(--pink); }

.blog-post__figure {
  margin: 28px 0;
  text-align: center;
}
.blog-post__img {
  width: 100%;
  border-radius: 14px;
  border: 1.5px solid var(--line-soft);
  display: block;
}
.blog-post__caption {
  font-size: 13px;
  color: var(--muted);
  margin-top: 10px;
  font-style: italic;
}

.blog-post__inline-cta {
  margin-top: 48px;
  padding: 32px 36px;
  background: var(--navy);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.blog-post__inline-cta p {
  font-size: 15px;
  color: rgba(237,239,250,0.85);
  margin: 0;
  max-width: 380px;
  line-height: 1.6;
}

/* Sidebar */
.blog-post__sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: 100px;
}

.blog-post__author-card {
  background: #fff;
  border-radius: 18px;
  padding: 28px 24px;
  box-shadow: 0 4px 20px rgba(0,14,118,0.07);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.blog-post__author-img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--pink-soft);
  margin-bottom: 4px;
}

.blog-post__author-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
}

.blog-post__author-role {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.4;
}

.blog-post__author-bio {
  font-size: 12px;
  color: var(--cobalt);
  font-weight: 600;
  margin: 4px 0 12px;
  text-align: center;
}

/* More articles */
.blog-post__more {
  background: #fff;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0,14,118,0.07);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.blog-post__more-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--card-border);
}

.blog-post__more-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-decoration: none;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--card-border);
}
.blog-post__more-item:last-child { border-bottom: none; padding-bottom: 0; }

.blog-post__more-cat {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.blog-post__more-ttl {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.4;
  transition: color 0.2s;
}
.blog-post__more-item:hover .blog-post__more-ttl { color: var(--cobalt); }

/* =========================================================
   SERVICE PAGE
   ========================================================= */
.service-page {
  background: var(--cream);
  min-height: 100vh;
}

.service-page__header {
  background: var(--navy);
  color: #fff;
  padding: 48px 0 56px;
  margin-top: 72px;
}

/* Header com imagem de fundo — página /servicos */
.service-page__header--img {
  position: relative;
  background:
    linear-gradient(135deg, rgba(0,14,118,0.82) 0%, rgba(0,5,50,0.75) 100%),
    url('assets/img/servicos-header.jpg') center center / cover no-repeat;
  padding: 72px 0 80px;
  overflow: hidden;
}
.service-page__header--img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,14,118,0.5) 40%, transparent 100%);
  pointer-events: none;
}

/* Variação para o blog */
.service-page__header--blog {
  background:
    linear-gradient(135deg, rgba(0,14,118,0.80) 0%, rgba(255,0,166,0.20) 100%),
    url('assets/img/servicos-header.jpg') center center / cover no-repeat;
}

.service-page__tag-row { margin-bottom: 16px; }

.service-page__title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #fff;
  max-width: 720px;
  margin: 0 0 16px;
}

.service-page__desc {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(237,239,250,0.72);
  max-width: 620px;
  margin: 0 0 28px;
}

.service-page__body {
  padding-top: 56px;
  padding-bottom: 80px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 860px;
}

.service-page__h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 12px;
}

.service-page__h2--center { text-align: center; }

.service-page__p {
  font-size: 15px;
  line-height: 1.85;
  color: var(--ink);
  margin: 0 0 12px;
}
.service-page__p:last-child { margin-bottom: 0; }
.service-page__p--center { text-align: center; color: var(--muted); }

/* Section blocks */
.service-page__section {
  background: #fff;
  border-radius: 18px;
  padding: 32px 36px;
  box-shadow: 0 4px 20px rgba(0,14,118,0.06);
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.service-page__section--highlight {
  background: var(--cream-2);
  box-shadow: none;
  border: 1px solid var(--card-border);
}

.service-page__section-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-page__section-icon svg { width: 22px; height: 22px; }

@media (max-width: 600px) {
  .service-page__section { flex-direction: column; padding: 24px 20px; }
}

/* Process steps */
.service-page__process {
  background: #fff;
  border-radius: 18px;
  padding: 40px 36px;
  box-shadow: 0 4px 20px rgba(0,14,118,0.06);
}

.service-page__steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 32px;
  position: relative;
}

.service-page__step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  position: relative;
  padding-bottom: 28px;
}

.service-page__step:last-child { padding-bottom: 0; }

.service-page__step-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.service-page__step-line {
  position: absolute;
  left: 19px;
  top: 40px;
  width: 2px;
  height: calc(100% - 12px);
  background: linear-gradient(to bottom, var(--navy), rgba(0,14,118,0.15));
}

.service-page__step-label {
  padding-top: 9px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink);
  font-weight: 500;
}

/* Resultado */
/* Stats section */
.service-page__stats {
  padding: 48px 0 16px;
  text-align: center;
}
.service-page__stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 8px;
}
.service-page__stat-card {
  background: #fff;
  border: 1.5px solid rgba(0,34,255,0.10);
  border-radius: 16px;
  padding: 32px 20px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.service-page__stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,14,118,0.10);
}
.service-page__stat-value {
  font-family: 'Poppins', sans-serif;
  font-size: 44px;
  font-weight: 800;
  color: var(--pink);
  line-height: 1;
}
.service-page__stat-label {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
  text-align: center;
}
@media (max-width: 768px) {
  .service-page__stats-grid { grid-template-columns: repeat(2, 1fr); }
  .service-page__stat-value { font-size: 36px; }
}
@media (max-width: 480px) {
  .service-page__stats-grid { grid-template-columns: 1fr; }
}

.service-page__result {
  border-radius: 18px;
  background: var(--navy);
  padding: 40px 36px;
}

.service-page__result-inner { max-width: 640px; }

.service-page__result-icon {
  font-size: 22px;
  color: var(--pink);
  display: block;
  margin-bottom: 12px;
}

/* Complementar */
.service-page__complementary {
  background: rgba(255,0,166,0.06);
  border: 1px solid rgba(255,0,166,0.18);
  border-radius: 14px;
  padding: 24px 28px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.service-page__comp-icon { font-size: 20px; flex-shrink: 0; }

/* Investimento */
.service-page__invest {
  background: var(--cream-2);
  border: 1px solid var(--card-border);
  border-radius: 18px;
  padding: 32px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
