/* =========================================================
   DESENTUPIDORA HIDRO PR — LANDING PAGE
   Paleta:
     --deep      #061A40   (azul escuro premium)
     --deep2     #082B63   (azul profundo)
     --brand     #0B6BFF   (azul vibrante)
     --yellow    #FFC400   (CTA principal)
     --yellowH   #FFD84D   (hover)
     --whatsapp  #25D366   (botões WhatsApp)
     --bg        #F4F7FB
========================================================= */

/* ============== TOKENS ============== */
:root {
  --deep:    #061A40;
  --deep2:   #082B63;
  --brand:   #0B6BFF;
  --accent:  #4A93FF;
  --yellow:  #FFC400;
  --yellowH: #FFD84D;
  --whatsapp:#25D366;
  --wa-dark: #128C7E;
  --bg:      #F4F7FB;
  --white:   #FFFFFF;
  --ink:     #0F1B33;
  --muted:   #5C6B82;
  --line:    rgba(15, 27, 51, 0.08);
  --line-d:  rgba(255, 255, 255, 0.10);

  --radius-sm: 12px;
  --radius:    18px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --shadow-sm: 0 4px 14px rgba(6, 26, 64, 0.06);
  --shadow:    0 14px 38px rgba(6, 26, 64, 0.10);
  --shadow-lg: 0 30px 60px rgba(6, 26, 64, 0.18);
  --shadow-brand: 0 14px 30px rgba(11, 107, 255, 0.28);
  --shadow-yellow: 0 12px 30px rgba(255, 196, 0, 0.40);

  --t: cubic-bezier(.2,.7,.2,1);
  --container: 1200px;
  --gutter: 24px;
  --header-h: 76px;
}

/* ============== RESET ============== */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  touch-action: manipulation;
}
body.menu-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; background: none; border: 0; outline: none; }
button { cursor: pointer; }
ul, ol { list-style: none; }
details > summary { list-style: none; }
details > summary::-webkit-details-marker { display: none; }

/* ============== TIPOGRAFIA ============== */
h1, h2, h3, h4 {
  font-family: 'Inter', sans-serif;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--ink);
  font-weight: 800;
}
.eyebrow {
  display: inline-block;
  padding: 7px 14px;
  background: rgba(11, 107, 255, 0.08);
  color: var(--brand);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.eyebrow-on-dark {
  background: rgba(255, 196, 0, 0.18);
  color: var(--yellow);
}
.hl {
  background: linear-gradient(120deg, var(--yellow) 0%, var(--yellowH) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* ============== LAYOUT ============== */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.section {
  padding: 88px 0;
  position: relative;
}
.section:not(.section-contact) {
  content-visibility: auto;
  contain-intrinsic-size: auto 780px;
}
.section-head {
  max-width: 820px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-head h2 {
  font-size: clamp(28px, 3.6vw, 40px);
  margin-bottom: 16px;
}
.lead {
  color: var(--muted);
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.7;
}

/* ============== BOTÕES ============== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 14px 24px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.005em;
  transition: transform .25s var(--t), box-shadow .25s var(--t), background .25s var(--t), color .25s var(--t), border-color .25s;
  cursor: pointer;
  position: relative;
  white-space: nowrap;
  border: 2px solid transparent;
}
.btn-lg { min-height: 56px; padding: 16px 28px; font-size: 17px; border-radius: 16px; }

.btn-yellow {
  background: var(--yellow);
  color: var(--deep);
  box-shadow: var(--shadow-yellow);
}
.btn-yellow:hover {
  background: var(--yellowH);
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(255, 216, 77, 0.45);
}
.btn-yellow-dark {
  background: var(--deep);
  color: var(--yellow);
}
.btn-yellow-dark:hover {
  background: #0a2050;
  transform: translateY(-2px);
}

.btn-wa {
  background: var(--whatsapp);
  color: #fff;
  box-shadow: 0 10px 26px rgba(37, 211, 102, 0.40);
}
.btn-wa:hover {
  background: #1ebe5b;
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(37, 211, 102, 0.50);
}

.btn-outline-wa {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.45);
}
.btn-outline-wa:hover {
  background: rgba(255,255,255,0.10);
  border-color: #fff;
}
.btn-wa-outline {
  background: transparent;
  color: var(--whatsapp);
  border-color: var(--whatsapp);
  box-shadow: none;
}
.btn-wa-outline:hover {
  background: var(--whatsapp);
  color: #fff;
}

.btn:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}

/* ============== HEADER ============== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 90;
  background: rgba(6, 26, 64, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background .3s var(--t), box-shadow .3s var(--t);
}
.header.scrolled {
  background: rgba(6, 26, 64, 0.92);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  flex-shrink: 0;
}
.brand-logo {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  box-shadow: 0 6px 18px rgba(255, 196, 0, 0.25), 0 0 0 2px rgba(255, 196, 0, 0.20);
  transition: transform .25s var(--t), box-shadow .25s var(--t);
}
.brand-logo:hover {
  transform: rotate(-4deg) scale(1.05);
  box-shadow: 0 10px 24px rgba(255, 196, 0, 0.40), 0 0 0 3px rgba(255, 196, 0, 0.30);
}
.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  border-radius: 8px;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text strong {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.brand-text small {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

/* BRAND SHOWCASE (logo oficial destacada) */
.brand-showcase {
  max-width: 880px;
  margin: 0 auto 56px;
  perspective: 1000px;
}
.brand-showcase-card {
  position: relative;
  background: linear-gradient(135deg, #ffffff 0%, #f6faff 100%);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow:
    0 30px 60px rgba(6, 26, 64, 0.10),
    0 8px 20px rgba(6, 26, 64, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  overflow: hidden;
  isolation: isolate;
}
.brand-showcase-card::before {
  content: '';
  position: absolute;
  inset: 0;
  padding: 2px;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--yellow) 0%, var(--brand) 50%, var(--yellow) 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  z-index: 1;
  pointer-events: none;
}
.brand-showcase-card::after {
  content: '';
  position: absolute;
  inset: -50%;
  background: conic-gradient(from 0deg, transparent, rgba(11,107,255,0.20), transparent 40%, rgba(255,196,0,0.30), transparent 70%);
  animation: brandSpin 8s linear infinite;
  z-index: 0;
  opacity: 0.5;
  pointer-events: none;
}
@keyframes brandSpin {
  to { transform: rotate(360deg); }
}
.brand-glow {
  position: absolute;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(11,107,255,0.18), transparent 70%);
  filter: blur(40px);
  top: -100px; right: -100px;
  z-index: 0;
  pointer-events: none;
  animation: glowPulse 6s ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50%      { opacity: 1; transform: scale(1.15); }
}
.brand-showcase-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 28px;
}
.brand-img-wrap {
  position: relative;
  flex-shrink: 0;
  width: 180px;
  height: 180px;
  border-radius: 28px;
  background: linear-gradient(135deg, #f4f7fb 0%, #ffffff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 18px 40px rgba(6, 26, 64, 0.14),
    0 0 0 4px rgba(255, 255, 255, 1),
    0 0 0 6px rgba(11, 107, 255, 0.15);
}
.brand-img-wrap img {
  width: 86%;
  height: 86%;
  object-fit: contain;
  filter: drop-shadow(0 6px 12px rgba(6, 26, 64, 0.18));
}
.brand-badge-tag {
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--yellow) 0%, var(--yellowH) 100%);
  color: var(--deep);
  font-size: 11px;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 999px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 6px 14px rgba(255, 196, 0, 0.45);
}
.brand-info { flex: 1; min-width: 0; }
.brand-info h3 {
  font-size: 32px;
  color: var(--deep);
  margin-bottom: 4px;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--deep) 0%, var(--brand) 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}
.brand-tagline {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 16px;
  font-weight: 500;
}
.brand-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.brand-pills li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: linear-gradient(135deg, rgba(11,107,255,0.08), rgba(11,107,255,0.03));
  border: 1px solid rgba(11,107,255,0.18);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--deep);
}
.brand-pills .dot {
  width: 6px; height: 6px;
  background: var(--brand);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--brand);
}

@media (max-width: 720px) {
  .brand-showcase-card { padding: 26px 22px; border-radius: 24px; }
  .brand-showcase-inner { flex-direction: column; gap: 20px; text-align: center; }
  .brand-img-wrap { width: 140px; height: 140px; border-radius: 22px; }
  .brand-info h3 { font-size: 24px; }
  .brand-pills { justify-content: center; }
}

.nav-list {
  display: flex;
  gap: 26px;
}
.nav-list a {
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  font-weight: 500;
  position: relative;
  padding: 6px 0;
  transition: color .2s;
}
.nav-list a:hover { color: #fff; }
.nav-list a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--t);
}
.nav-list a:hover::after { transform: scaleX(1); }

.header-cta {
  font-size: 14px;
  padding: 11px 18px;
  min-height: 44px;
}

.hamburger {
  display: none;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border-radius: 10px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .3s var(--t), opacity .2s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============== HERO ============== */
.hero {
  position: relative;
  padding: calc(var(--header-h) + 70px) 0 100px;
  color: #fff;
  overflow: hidden;
  background-color: #061A40;
  background-image:
    /* overlay escuro pra destacar texto à esquerda */
    linear-gradient(90deg,
      rgba(6, 26, 64, 0.98) 0%,
      rgba(6, 26, 64, 0.92) 32%,
      rgba(6, 26, 64, 0.62) 56%,
      rgba(6, 26, 64, 0.22) 78%,
      rgba(6, 26, 64, 0.36) 100%),
    /* vinheta pra cima e pra baixo pra integrar */
    linear-gradient(180deg,
      rgba(6, 26, 64, 0.66) 0%,
      rgba(6, 26, 64, 0.04) 34%,
      rgba(6, 26, 64, 0.05) 64%,
      rgba(6, 26, 64, 0.86) 100%),
    /* imagem do hidrojato */
    url('01.png');
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-size: cover, cover, cover;
  background-position: left center, center, center right;
}
/* overlay extra sutil de cor para reforçar a atmosfera */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(11, 107, 255, 0.18), transparent 55%),
    radial-gradient(ellipse at 85% 80%, rgba(255, 196, 0, 0.10), transparent 50%);
  pointer-events: none;
  z-index: 1;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(6, 26, 64, 0.20);
  pointer-events: none;
  z-index: 1;
  opacity: 0.4;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.6;
}
.glow-1 {
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(11,107,255,0.55), transparent 70%);
  top: -120px; left: -100px;
}
.glow-2 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(255,196,0,0.20), transparent 70%);
  bottom: -100px; right: -80px;
}
.waves {
  position: absolute;
  bottom: -1px;
  left: 0; right: 0;
  width: 100%; height: 160px;
  opacity: .8;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 680px) 1fr;
  gap: 56px;
  align-items: center;
  min-height: 600px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 16px;
  background: rgba(255, 196, 0, 0.10);
  border: 1px solid rgba(255, 196, 0, 0.30);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: var(--yellow);
  margin-bottom: 24px;
}
.badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 12px var(--yellow);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.4); opacity: 0.6; }
}

.hero-title {
  font-size: clamp(34px, 4.8vw, 54px);
  color: #fff;
  margin-bottom: 20px;
}
.hero-sub {
  font-size: clamp(16px, 1.7vw, 19px);
  color: rgba(255,255,255,0.85);
  margin-bottom: 16px;
  max-width: 620px;
}
.hero-reforco {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: rgba(11, 107, 255, 0.16);
  border: 1px solid rgba(11, 107, 255, 0.32);
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  color: #dceaff;
  margin-bottom: 24px;
}

.badges-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}
.badges-list li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.92);
}
.b-ico { font-size: 16px; }

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}
.hero .reveal {
  opacity: 1;
  transform: none;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.t-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.90);
}
.t-ico { font-size: 18px; }

/* Visual do hero */
.hero-visual {
  position: relative;
  display: none;
  justify-content: center;
  align-items: center;
}
.vis-card {
  width: 100%;
  max-width: 460px;
  background: linear-gradient(160deg, rgba(255,255,255,0.10), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-xl);
  padding: 24px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 40px 80px rgba(0,0,0,0.35);
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}
.vis-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: #fff;
  font-weight: 600;
}
.vis-pulse {
  width: 10px; height: 10px;
  background: #4ade80;
  border-radius: 50%;
  box-shadow: 0 0 14px #4ade80;
  animation: pulse 1.6s ease-in-out infinite;
}
.vis-top small { font-size: 14px; color: rgba(255,255,255,0.85); }

.hydro { width: 100%; height: auto; }

.vis-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 20px;
}
.vc {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px;
  padding: 14px 8px;
  text-align: center;
  color: #fff;
}
.vc-num { display: block; font-size: 20px; font-weight: 800; color: var(--yellow); }
.vc small { font-size: 11px; color: rgba(255,255,255,0.7); font-weight: 500; }

.float-glow {
  position: absolute;
  width: 380px; height: 200px;
  background: radial-gradient(ellipse, rgba(255, 196, 0, 0.30), transparent 70%);
  filter: blur(50px);
  bottom: -30px;
  z-index: -1;
}

/* ============== BARRA DE URGÊNCIA ============== */
.urgency {
  background: linear-gradient(90deg, var(--yellow) 0%, var(--yellowH) 100%);
  padding: 18px 0;
  position: relative;
  overflow: hidden;
}
.urgency::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, rgba(6,26,64,0.05) 0 12px, transparent 12px 24px);
}
.urgency-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  position: relative;
  z-index: 1;
}
.urgency p {
  flex: 1;
  min-width: 280px;
  font-size: 16px;
  color: var(--deep);
  font-weight: 500;
}
.urgency p strong { font-weight: 800; }
.urgency .btn { flex-shrink: 0; }

/* ============== ABOUT ============== */
.section-about { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.about-text p {
  color: var(--muted);
  font-size: 17px;
  margin-bottom: 18px;
}
.about-text p strong { color: var(--ink); }
.about-text .btn { margin-top: 12px; }

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.trust-card {
  position: relative;
  background: linear-gradient(135deg, #ffffff 0%, #f6faff 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  overflow: hidden;
  transition: transform .3s var(--t), box-shadow .3s var(--t), border-color .3s;
  isolation: isolate;
}
.trust-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--yellow));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--t);
  z-index: 1;
}
.trust-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 100%, rgba(11,107,255,0.12), transparent 65%);
  opacity: 0;
  transition: opacity .35s var(--t);
  pointer-events: none;
  z-index: -1;
}
.trust-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 22px 44px rgba(6, 26, 64, 0.14),
    0 0 0 1px rgba(11, 107, 255, 0.20),
    0 0 24px rgba(11, 107, 255, 0.16);
  border-color: rgba(11,107,255,0.40);
}
.trust-card:hover::before { transform: scaleX(1); }
.trust-card:hover::after  { opacity: 1; }
.ti { font-size: 28px; line-height: 1; }
.trust-card p { font-size: 14px; font-weight: 600; color: var(--ink); line-height: 1.35; }

/* ============== PAINS ============== */
.section-pains {
  background: linear-gradient(180deg, var(--bg), #fff);
}
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 36px;
}
.pain-card {
  position: relative;
  background: linear-gradient(160deg, #ffffff 0%, #fafcff 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
  transition: transform .35s var(--t), box-shadow .35s var(--t), border-color .35s;
}
.pain-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand), var(--yellow));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--t);
  z-index: 1;
}
.pain-card::after {
  content: '';
  position: absolute;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(255,196,0,0.18), transparent 65%);
  filter: blur(20px);
  top: -100px; left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity .4s var(--t);
  pointer-events: none;
  z-index: -1;
}
.pain-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255,196,0,0.50);
  box-shadow:
    0 26px 50px rgba(6, 26, 64, 0.14),
    0 0 0 1px rgba(255, 196, 0, 0.30),
    0 0 30px rgba(255, 196, 0, 0.18);
}
.pain-card:hover::before { transform: scaleX(1); }
.pain-card:hover::after  { opacity: 1; }
.pi { font-size: 44px; display: block; margin-bottom: 16px; }
.pain-card h3 { font-size: 17px; font-weight: 700; color: var(--ink); }
.pain-close {
  text-align: center;
  font-size: clamp(16px, 1.7vw, 19px);
  font-weight: 500;
  color: var(--brand);
  max-width: 760px;
  margin: 0 auto;
  padding: 20px 28px;
  background: linear-gradient(135deg, rgba(11,107,255,0.06), rgba(11,107,255,0.02));
  border-radius: var(--radius);
  border-left: 4px solid var(--brand);
  font-weight: 600;
}

/* ============== SERVICES ============== */
.section-services {
  background: var(--white);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.service-card {
  position: relative;
  background: linear-gradient(160deg, #ffffff 0%, #fafcff 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  isolation: isolate;
  transition: transform .35s var(--t), box-shadow .35s var(--t), border-color .35s;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand) 0%, var(--yellow) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s var(--t);
  z-index: 1;
}
.service-card::after {
  content: '';
  position: absolute;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(11,107,255,0.12), transparent 65%);
  filter: blur(30px);
  top: -120px; right: -120px;
  opacity: 0;
  transition: opacity .4s var(--t), transform .4s var(--t);
  pointer-events: none;
  z-index: -1;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 30px 60px rgba(6, 26, 64, 0.16),
    0 0 0 1px rgba(11, 107, 255, 0.25),
    0 0 30px rgba(11, 107, 255, 0.14);
  border-color: var(--brand);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover::after  { opacity: 1; transform: translate(-20px, 20px); }

.sc-ico {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--deep2) 100%);
  color: var(--yellow);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  box-shadow: var(--shadow-brand);
}
.sc-ico svg { width: 36px; height: 36px; }

.service-card h3 {
  font-size: 19px;
  margin-bottom: 12px;
  color: var(--ink);
}
.service-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
  flex: 1;
  margin-bottom: 18px;
}
.sc-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand);
  font-weight: 700;
  font-size: 15px;
  transition: gap .25s var(--t), color .25s;
}
.sc-link:hover { gap: 12px; color: var(--deep); }

/* ============== BENEFITS ============== */
.section-benefits {
  background: var(--bg);
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.ben-card {
  position: relative;
  background: linear-gradient(160deg, #ffffff 0%, #fafcff 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  overflow: hidden;
  isolation: isolate;
  transition: transform .35s var(--t), box-shadow .35s var(--t), border-color .35s;
}
.ben-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--yellow) 0%, var(--brand) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s var(--t);
  z-index: 1;
}
.ben-card::after {
  content: '';
  position: absolute;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(255,196,0,0.18), transparent 65%);
  filter: blur(30px);
  bottom: -100px; left: -80px;
  opacity: 0;
  transition: opacity .4s var(--t);
  pointer-events: none;
  z-index: -1;
}
.ben-card:hover {
  transform: translateY(-8px);
  border-color: rgba(11,107,255,0.35);
  box-shadow:
    0 26px 50px rgba(6, 26, 64, 0.14),
    0 0 0 1px rgba(255, 196, 0, 0.30),
    0 0 28px rgba(255, 196, 0, 0.18);
}
.ben-card:hover::before { transform: scaleX(1); }
.ben-card:hover::after  { opacity: 1; }
.bn-ico {
  width: 60px; height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--yellow) 0%, var(--yellowH) 100%);
  color: var(--deep);
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  box-shadow: 0 8px 20px rgba(255, 196, 0, 0.30);
}
.ben-card h3 { font-size: 20px; margin-bottom: 10px; }
.ben-card p { color: var(--muted); font-size: 15px; line-height: 1.65; }

/* ============== PROCESS ============== */
.section-process {
  position: relative;
  background: linear-gradient(135deg, #061A40 0%, #082B63 50%, #061A40 100%);
  color: #fff;
  overflow: hidden;
}
.section-process::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 10%, rgba(11,107,255,0.40), transparent 50%),
    radial-gradient(circle at 80% 90%, rgba(255,196,0,0.20), transparent 50%);
}
.section-process .container { position: relative; z-index: 2; }
.section-process .section-head h2 { color: #fff; }
.section-process .lead { color: rgba(255,255,255,0.75); }

.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}
.process-step {
  position: relative;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 40px 28px 28px;
  transition: transform .25s var(--t), background .25s, border-color .25s;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.process-step:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.10);
  border-color: rgba(255, 196, 0, 0.50);
}
.step-num {
  position: absolute;
  top: -28px; left: 28px;
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--yellow), var(--yellowH));
  color: var(--deep);
  font-size: 22px;
  font-weight: 800;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(255, 196, 0, 0.40);
}
.process-step h3 { font-size: 17px; margin-top: 4px; margin-bottom: 10px; color: #fff; }
.process-step p { font-size: 14px; color: rgba(255,255,255,0.80); line-height: 1.6; }

/* ============== CTA-MID ============== */
.section-cta-mid {
  background: linear-gradient(180deg, var(--bg), #fff);
}
.cta-card {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 36px;
  align-items: center;
  background: linear-gradient(135deg, var(--deep) 0%, var(--deep2) 100%);
  border-radius: var(--radius-xl);
  padding: 56px;
  color: #fff;
  box-shadow: 0 30px 80px rgba(6, 26, 64, 0.30);
  position: relative;
  overflow: hidden;
}
.cta-card::before {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(11,107,255,0.45), transparent 70%);
  filter: blur(60px);
  top: -100px; right: -100px;
  pointer-events: none;
}
.cta-card::after {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255,196,0,0.30), transparent 70%);
  filter: blur(50px);
  bottom: -120px; left: -80px;
  pointer-events: none;
}
.cta-content { position: relative; z-index: 1; }
.cta-content h2 {
  color: #fff;
  font-size: clamp(24px, 2.8vw, 36px);
  margin-bottom: 14px;
}
.cta-content > p {
  color: rgba(255,255,255,0.85);
  font-size: 17px;
  margin-bottom: 22px;
}
.cta-content > p strong { color: var(--yellow); font-weight: 800; }
.cta-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 20px 0;
}
.cta-list li {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.92);
  padding: 8px 0;
}
.cta-buttons { display: flex; flex-wrap: wrap; gap: 12px; }
.cta-visual {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============== PROOF ============== */
.section-proof { background: var(--white); }
.proof-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
}
.proof-pills span {
  padding: 12px 22px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  transition: transform .25s var(--t), border-color .25s;
}
.proof-pills span:hover { transform: translateY(-2px); border-color: var(--brand); }

.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial {
  position: relative;
  background: linear-gradient(160deg, #ffffff 0%, #fafcff 100%);
  border: 1px solid var(--line);
  border-top: 4px solid var(--yellow);
  border-radius: var(--radius-lg);
  padding: 32px;
  overflow: hidden;
  isolation: isolate;
  transition: transform .35s var(--t), box-shadow .35s var(--t), border-color .35s;
}
.testimonial::after {
  content: '';
  position: absolute;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(11,107,255,0.14), transparent 65%);
  filter: blur(30px);
  top: -100px; right: -80px;
  opacity: 0;
  transition: opacity .4s var(--t);
  pointer-events: none;
  z-index: -1;
}
.testimonial:hover {
  transform: translateY(-6px);
  border-color: rgba(255,196,0,0.40);
  box-shadow:
    0 26px 50px rgba(6, 26, 64, 0.14),
    0 0 28px rgba(255, 196, 0, 0.18);
}
.testimonial:hover::after { opacity: 1; }
.t-stars { color: var(--yellow); font-size: 18px; letter-spacing: 2px; margin-bottom: 14px; }
.testimonial p {
  font-size: 16px;
  color: var(--ink);
  font-style: italic;
  line-height: 1.65;
  margin-bottom: 18px;
}
.testimonial footer strong { display: block; font-size: 15px; color: var(--ink); }
.testimonial footer span { font-size: 13px; color: var(--muted); }

.placeholder-note {
  text-align: center;
  color: var(--muted);
  font-size: 13px;
  margin-top: 36px;
  font-style: italic;
}

/* ============== FAQ ============== */
.section-faq {
  background: linear-gradient(180deg, var(--white), var(--bg));
}
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}
.faq-item {
  position: relative;
  background: linear-gradient(160deg, #ffffff 0%, #fafcff 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  isolation: isolate;
  transition: border-color .3s, box-shadow .3s, transform .3s var(--t);
}
.faq-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--yellow));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--t);
  z-index: 1;
}
.faq-item[open] {
  border-color: var(--brand);
  box-shadow:
    0 20px 40px rgba(6, 26, 64, 0.10),
    0 0 0 1px rgba(11, 107, 255, 0.25),
    0 0 24px rgba(11, 107, 255, 0.14);
  transform: translateY(-2px);
}
.faq-item[open]::before { transform: scaleX(1); }
.faq-item:hover {
  border-color: rgba(11, 107, 255, 0.35);
  box-shadow: 0 16px 32px rgba(6, 26, 64, 0.10);
}
.faq-item summary {
  cursor: pointer;
  padding: 22px 28px;
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item summary::after {
  content: '+';
  width: 36px; height: 36px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  border-radius: 50%;
  font-size: 22px;
  font-weight: 700;
  color: var(--brand);
  transition: transform .3s var(--t), background .25s, color .25s;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
  background: var(--yellow);
  color: var(--deep);
}
.faq-body {
  padding: 0 28px 24px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}
.faq-item summary:hover { color: var(--brand); }

/* ============== CONTACT ============== */
.section-contact {
  background: linear-gradient(135deg, #061A40 0%, #082B63 60%, #061A40 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.section-contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0% 0%, rgba(11,107,255,0.30), transparent 50%),
              radial-gradient(circle at 100% 100%, rgba(255,196,0,0.18), transparent 50%);
}
.section-contact .container { position: relative; z-index: 1; }
.section-contact .section-head h2 { color: #fff; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
  align-items: stretch;
}
.contact-info {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-content: start;
}
.contact-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 22px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  transition: background .25s, border-color .25s, transform .25s var(--t);
}
.contact-card:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255, 196, 0, 0.50);
  transform: translateY(-2px);
}
.cc-ico {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.contact-card small { display: block; font-size: 12px; color: rgba(255,255,255,0.65); text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; }
.contact-card strong { display: block; font-size: 16px; color: #fff; margin-top: 2px; }

.contact-form {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  color: var(--ink);
  box-shadow: 0 30px 60px rgba(0,0,0,0.30);
}
.contact-form h3 { font-size: 22px; margin-bottom: 6px; color: var(--deep); }
.cf-sub { font-size: 14px; color: var(--muted); margin-bottom: 22px; }
.field {
  display: block;
  margin-bottom: 14px;
}
.field span {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 14px 16px;
  background: var(--bg);
  border: 1.5px solid var(--line);
  border-radius: 12px;
  font-size: 15px;
  color: var(--ink);
  transition: border-color .2s, background .2s;
}
.field textarea { min-height: 96px; resize: vertical; line-height: 1.5; padding-top: 12px; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--brand);
  background: #fff;
}
.cf-micro {
  font-size: 12px;
  color: var(--muted);
  margin-top: 12px;
  text-align: center;
}
.contact-form .btn { margin-top: 8px; }

/* ============== FOOTER ============== */
.footer {
  background: #03102a;
  color: rgba(255,255,255,0.75);
  padding: 64px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 36px;
  padding-bottom: 48px;
}
.brand-footer small { color: rgba(255,255,255,0.65); }
.brand-footer { margin-bottom: 16px; }
.brand-footer .brand-logo {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  padding: 6px;
  box-shadow: 0 8px 24px rgba(255,196,0,0.30), 0 0 0 2px rgba(255,196,0,0.20);
}
.brand-footer .brand-logo img { border-radius: 12px; }
.footer-col p { font-size: 14px; max-width: 340px; line-height: 1.7; }
.footer-col h4 {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: 0;
}
.footer-col ul { display: grid; gap: 10px; }
.footer-col a {
  font-size: 14px;
  color: rgba(255,255,255,0.70);
  transition: color .2s, padding .2s;
}
.footer-col a:hover { color: var(--yellow); padding-left: 4px; }
.footer-contact a { font-size: 14px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 22px 0;
  font-size: 13px;
  color: rgba(255,255,255,0.50);
}
.fbb-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

/* ============== FAB WHATSAPP ============== */
.fab-whatsapp {
  position: fixed;
  bottom: 96px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: var(--whatsapp);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.5);
  z-index: 95;
  transition: transform .25s var(--t);
}
.fab-whatsapp:hover { transform: scale(1.08); }
.fab-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--whatsapp);
  animation: fabPulse 2s ease-out infinite;
  pointer-events: none;
}
@keyframes fabPulse {
  0%   { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* ============== BOTTOM BAR (MOBILE) ============== */
.bottom-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 96;
  background: rgba(6, 26, 64, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 10px 12px;
  padding-bottom: calc(10px + env(safe-area-inset-bottom, 0));
  gap: 10px;
  box-shadow: 0 -10px 30px rgba(0,0,0,0.30);
}
.bb-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  transition: transform .2s var(--t), opacity .2s;
}
.bb-wa   { background: var(--whatsapp); color: #fff; }
.bb-call { background: var(--yellow);  color: var(--deep); }
.bb-btn:active { transform: scale(0.97); opacity: 0.85; }

/* ============== REVEAL ============== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--t), transform .7s var(--t);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============== RESPONSIVO ============== */
@media (max-width: 1080px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 920px) {
  .hero { padding: calc(var(--header-h) + 50px) 0 80px; }
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 48px;
  }
  .hero-sub, .hero-reforco, .badges-list, .hero-ctas, .hero-trust { margin-left: auto; margin-right: auto; justify-content: center; }
  .badges-list { justify-content: center; }
  .badge { margin: 0 auto 24px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials { grid-template-columns: 1fr; }
  .pain-grid { grid-template-columns: repeat(2, 1fr); }
  .process-list { grid-template-columns: repeat(2, 1fr); gap: 36px 20px; }
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .cta-card { grid-template-columns: 1fr; padding: 40px 32px; text-align: center; }
  .cta-visual { order: -1; max-width: 200px; margin: 0 auto; }
  .cta-buttons { justify-content: center; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    background: rgba(6, 26, 64, 0.98);
    backdrop-filter: blur(20px);
    padding: 24px;
    transform: translateY(-110%);
    transition: transform .35s var(--t);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
  }
  .nav.open { transform: translateY(0); }
  .nav-list { flex-direction: column; gap: 4px; }
  .nav-list a {
    display: block;
    padding: 14px 16px;
    font-size: 17px;
    border-radius: 10px;
  }
  .nav-list a:hover { background: rgba(255,255,255,0.06); }
  .hamburger { display: flex; }
  .header-cta { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 28px; padding-bottom: 28px; }
  .fab-whatsapp { bottom: 90px; right: 18px; width: 56px; height: 56px; }
  .bottom-bar { display: flex; }
  body { padding-bottom: calc(82px + env(safe-area-inset-bottom, 0px)); }
}

@media (max-width: 640px) {
  :root { --gutter: 18px; }
  body { font-size: 16px; }
  .section { padding: 64px 0; }
  .services-grid,
  .benefits-grid,
  .pain-grid,
  .process-list,
  .testimonials,
  .trust-grid { grid-template-columns: 1fr; }
  .urgency-inner { flex-direction: column; text-align: center; }
  .urgency p { text-align: center; }
  .cta-card { padding: 32px 22px; border-radius: 20px; }
  .cta-list { grid-template-columns: 1fr; }
  .contact-form { padding: 26px 22px; }
  .footer-inner { grid-template-columns: 1fr; gap: 24px; padding-bottom: 24px; }
  .fbb-inner { flex-direction: column; text-align: center; }
  .hero { padding: calc(var(--header-h) + 30px) 0 60px; }
  .hero-title { font-size: clamp(30px, 9vw, 36px); }
  .hero-visual { display: none; }
  .process-step { padding-top: 48px; }
  .step-num { left: 50%; transform: translateX(-50%); top: -28px; }
  .hero-ctas .btn { flex: 1; min-width: 100%; }
  .hero-ctas { flex-direction: column; width: 100%; }
  .hero-ctas .btn { width: 100%; }
}

@media (hover: none), (max-width: 640px) {
  .service-card::after,
  .ben-card::after,
  .pain-card::after,
  .testimonial::after,
  .trust-card::after,
  .cta-card::before,
  .cta-card::after { display: none; }
  .fab-pulse { animation: none; display: none; }
  .process-step { backdrop-filter: none; -webkit-backdrop-filter: none; }
}

/* ============== PREFERS REDUCED MOTION ============== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}

::selection { background: var(--yellow); color: var(--deep); }
