/* ============================================================
   ZOE EVOLUTION — Design system
   Paleta: navy quase-preto + branco + dourado
   ============================================================ */

/* Fontes hospedadas localmente (evita a busca externa ao Google Fonts,
   que bloqueava a renderização inicial da página). */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../assets/fonts/inter.woff2") format("woff2");
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../assets/fonts/poppins600.woff2") format("woff2");
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../assets/fonts/poppins700.woff2") format("woff2");
}

:root {
  --navy-950: #05070d;
  --navy-900: #0a0e1a;
  --navy-800: #0e1424;
  --navy-700: #141b30;
  --navy-600: #1b2440;
  --navy-line: rgba(255, 255, 255, 0.08);

  --gold-200: #f3dfa3;
  --gold-400: #e2c274;
  --gold-500: #cda354;
  --gold-600: #b6852f;
  --gold-700: #8f6a24;
  --gold-grad: linear-gradient(135deg, #f6e3ab 0%, #d9b568 35%, #b6852f 70%, #8f6a24 100%);

  --white: #ffffff;
  --off-white: #f6f5f2;
  --ink-70: rgba(255, 255, 255, 0.72);
  --ink-50: rgba(255, 255, 255, 0.5);
  --navy-ink-70: rgba(10, 14, 26, 0.72);
  --navy-ink-50: rgba(10, 14, 26, 0.62);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;

  --shadow-gold: 0 8px 30px rgba(205, 163, 84, 0.25);
  --shadow-soft: 0 20px 60px rgba(5, 7, 13, 0.35);

  --container: 1180px;
  --font-head: "Poppins", "Segoe UI", sans-serif;
  --font-body: "Inter", "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--off-white);
  color: var(--navy-900);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.15;
  margin: 0 0 .5em;
  font-weight: 700;
}

p { line-height: 1.7; margin: 0 0 1em; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-700);
  margin-bottom: 16px;
}
/* Em fundos escuros o dourado claro já tem contraste alto; em fundos claros
   usamos um dourado mais escuro (--gold-700) para atender WCAG AA. */
.hero .eyebrow,
.section-dark .eyebrow,
.section-navy-700 .eyebrow,
.page-hero .eyebrow,
.contact-info-card .eyebrow {
  color: var(--gold-400);
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--gold-grad);
  display: inline-block;
}

.section { padding: 110px 0; position: relative; }
.section-dark { background: var(--navy-900); color: var(--ink-70); }
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-light { background: var(--off-white); }
.section-navy-700 { background: var(--navy-800); color: var(--ink-70); }

.section-head { max-width: 680px; margin: 0 0 60px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(28px, 3.6vw, 42px); }
.section-head p { color: var(--navy-ink-70); font-size: 17px; }
.section-dark .section-head p { color: var(--ink-70); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: 999px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .3px;
  border: none;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold-grad);
  color: var(--navy-950);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(205, 163, 84, .38); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,.35);
}
.btn-outline:hover { border-color: var(--gold-400); color: var(--gold-200); }
.btn-outline-navy {
  background: transparent;
  color: var(--navy-900);
  border: 1px solid rgba(10,14,26,.25);
}
.btn-outline-navy:hover { border-color: var(--gold-600); color: var(--gold-600); }
.btn-block { width: 100%; }
.btn svg { width: 18px; height: 18px; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  padding: 18px 0;
  background: rgba(5, 7, 13, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: background .3s ease, padding .3s ease;
}
.site-header.is-scrolled {
  background: rgba(5, 7, 13, 0.92);
  padding: 12px 0;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand { display: flex; align-items: center; gap: 10px; }
.brand-mark { width: 40px; height: 40px; flex-shrink: 0; }
.brand-logo {
  height: 48px;
  width: auto;
  object-fit: contain;
  transition: transform .45s cubic-bezier(.22,1,.36,1), filter .45s ease;
  will-change: transform;
}
.brand.is-flying .brand-logo {
  transform: translateX(8px) translateY(-4px) rotate(-14deg) scale(1.08);
  filter: drop-shadow(0 6px 14px rgba(205,163,84,.55));
}
.brand-word {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 19px;
  color: var(--white);
  letter-spacing: .5px;
  line-height: 1.1;
}
.brand-word span {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--gold-400);
}

.main-nav ul { display: flex; align-items: center; gap: 36px; }
.main-nav a {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-70);
  position: relative;
  padding: 6px 0;
  transition: color .2s ease;
}
.main-nav a:hover, .main-nav a.active { color: var(--white); }
.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: var(--gold-grad);
}

.header-cta { display: flex; align-items: center; gap: 18px; }
.header-cta .btn { padding: 13px 24px; font-size: 14px; }
.header-cta .btn-gold {
  padding: 15px 32px;
  font-size: 16px;
  animation: pulse-gold 2.6s ease-in-out infinite;
}
@keyframes pulse-gold {
  0%, 100% { box-shadow: var(--shadow-gold); }
  50% { box-shadow: 0 8px 30px rgba(205, 163, 84, .55), 0 0 0 6px rgba(205, 163, 84, .12); }
}

.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  background: transparent;
  color: var(--white);
  align-items: center;
  justify-content: center;
}
.nav-toggle svg { width: 20px; height: 20px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 190px 0 130px;
  background:
    radial-gradient(60% 60% at 82% 8%, rgba(205,163,84,.16) 0%, rgba(205,163,84,0) 60%),
    radial-gradient(50% 50% at 10% 100%, rgba(205,163,84,.10) 0%, rgba(205,163,84,0) 60%),
    linear-gradient(180deg, var(--navy-950) 0%, var(--navy-900) 55%, var(--navy-800) 100%);
  color: var(--white);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(60% 60% at 60% 30%, black, transparent 75%);
  pointer-events: none;
}
.hero .container {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 60px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(36px, 4.4vw, 58px);
  letter-spacing: -0.5px;
}
.hero h1 em {
  font-style: normal;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-lead { font-size: 18px; color: var(--ink-70); max-width: 540px; }
.hero-actions { display: flex; align-items: center; gap: 20px; margin-top: 36px; flex-wrap: wrap; }
.hero-note { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--ink-50); }
.hero-note svg { width: 16px; height: 16px; color: var(--gold-400); flex-shrink: 0; }

.hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--navy-line);
  flex-wrap: wrap;
}
.hero-stats .stat-num {
  font-family: var(--font-head);
  font-size: 30px;
  font-weight: 700;
  color: var(--white);
}
.hero-stats .stat-num span { color: var(--gold-400); }
.hero-stats .stat-label { font-size: 12.5px; color: var(--ink-50); letter-spacing: .3px; }

.hero-visual {
  position: relative;
  aspect-ratio: 1 / 1.05;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -36px;
  transition: transform .6s cubic-bezier(.22,1,.36,1);
  will-change: transform;
}
.hero-visual .brand-logo { width: 82%; height: auto; filter: drop-shadow(0 20px 40px rgba(205,163,84,.25)); animation: float 5s ease-in-out infinite; }
.hero-logo-video {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(205,163,84,.25));
  animation: none;
  transition: opacity .6s ease;
}
.hero-logo-video.is-hidden { opacity: 0; }
.hero-logo-static.hero-reveal {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity .6s ease;
}
.hero-logo-static.hero-reveal.is-visible {
  opacity: 1;
  animation: float-centered 5s ease-in-out infinite;
}
@keyframes float-centered {
  0%, 100% { transform: translate(-50%, -50%) translateY(0); }
  50% { transform: translate(-50%, -50%) translateY(-14px); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-logo-static.hero-reveal.is-visible { animation: none; transform: translate(-50%, -50%); }
}
.hero-visual.is-flying {
  transform: rotate(-5deg) translateX(16px) translateY(-10px);
}

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

/* ---------- Logos / carrossel de clientes ---------- */
.marquee-wrap { border-top: 1px solid rgba(10,14,26,.08); border-bottom: 1px solid rgba(10,14,26,.08); background: var(--white); padding: 34px 0; }
.marquee-label { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--navy-ink-50); text-align: center; margin-bottom: 24px; }
.clients-viewport {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}
.clients-track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: 72px;
  animation: clients-scroll 46s linear infinite;
}
.clients-viewport:hover .clients-track { animation-play-state: paused; }
.clients-track img {
  height: 56px;
  width: auto;
  flex-shrink: 0;
  filter: grayscale(1);
  opacity: .55;
  transition: opacity .25s ease, filter .25s ease, transform .25s ease;
}
.clients-track img:hover { filter: none; opacity: 1; transform: translateY(-2px); }
@keyframes clients-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .clients-track { animation: none; flex-wrap: wrap; justify-content: center; }
}

/* ---------- Pain / agitation ---------- */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 20px;
}
.pain-card {
  background: var(--white);
  border: 1px solid rgba(10,14,26,.08);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.pain-card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(10,14,26,.08); }
.pain-card .ic {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: rgba(10,14,26,.06);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  color: var(--navy-900);
}
.pain-card .ic svg { width: 22px; height: 22px; }
.pain-card h3 { font-size: 18px; }
.pain-card p { color: var(--navy-ink-70); font-size: 15px; margin: 0; }

/* ---------- Método 5X ---------- */
.method-wrap { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; counter-reset: step; }
.method-card {
  position: relative;
  background: var(--navy-800);
  border: 1px solid var(--navy-line);
  border-radius: var(--radius-md);
  padding: 30px 22px;
  overflow: hidden;
}
.method-card::before {
  counter-increment: step;
  content: "0" counter(step);
  position: absolute;
  top: -10px; right: -6px;
  font-family: var(--font-head);
  font-size: 60px;
  font-weight: 700;
  color: rgba(255,255,255,.05);
}
.method-card .letter {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--gold-grad);
  color: var(--navy-950);
  font-family: var(--font-head);
  font-weight: 700;
  margin-bottom: 16px;
}
.method-card h3 { font-size: 17px; color: var(--white); }
.method-card p { font-size: 14px; color: var(--ink-70); margin: 0; }

/* ---------- Services grid ---------- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid rgba(10,14,26,.08);
  padding: 34px 28px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(10,14,26,.10); border-color: rgba(205,163,84,.4); }
.service-card .ic {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--navy-900);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  color: var(--gold-400);
}
.service-card .ic svg { width: 24px; height: 24px; }
.service-card h3 { font-size: 19px; }
.service-card p { color: var(--navy-ink-70); font-size: 15px; }
.service-card ul { margin-top: 14px; display: flex; flex-direction: column; gap: 8px; }
.service-card ul li { font-size: 14px; color: var(--navy-ink-70); display: flex; gap: 8px; align-items: flex-start; }
.service-card ul li svg { width: 16px; height: 16px; color: var(--gold-600); margin-top: 3px; flex-shrink: 0; }
.service-card .link-more { margin-top: 18px; display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-head); font-weight: 600; font-size: 13.5px; color: var(--navy-900); }
.service-card .link-more svg { width: 14px; height: 14px; transition: transform .2s ease; }
.service-card:hover .link-more svg { transform: translateX(3px); }

/* ---------- Stats band ---------- */
.stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stats-band .num { font-family: var(--font-head); font-size: 40px; font-weight: 700; color: var(--white); }
.stats-band .num span { color: var(--gold-400); }
.stats-band .lbl { font-size: 13.5px; color: var(--ink-50); margin-top: 6px; }

/* ---------- Fundadores ---------- */
.founders-wrap { display: grid; grid-template-columns: .8fr 1.2fr; gap: 56px; align-items: center; }
.founders-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background:
    radial-gradient(65% 75% at 50% 32%, rgba(226, 194, 116, .45), transparent 68%),
    radial-gradient(90% 60% at 50% 100%, rgba(205, 163, 84, .18), transparent 70%),
    linear-gradient(160deg, var(--navy-800), var(--navy-950));
}
.founders-photo img { width: 100%; display: block; }
.founders-copy h2 { font-size: clamp(24px, 3vw, 32px); }
.founders-names { display: flex; gap: 28px; margin-top: 26px; flex-wrap: wrap; }
.founder-tag strong { display: block; font-family: var(--font-head); font-size: 15.5px; color: var(--navy-900); }
.founder-tag span { font-size: 13px; color: var(--gold-700); font-weight: 600; }

/* ---------- Testimonials / placeholders ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.testi-card {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px dashed rgba(10,14,26,.18);
  padding: 30px;
  position: relative;
}
.testi-card .stars { display: flex; gap: 3px; margin-bottom: 16px; color: var(--gold-500); }
.testi-card .stars svg { width: 16px; height: 16px; }
.testi-card p { font-size: 15px; color: var(--navy-ink-70); font-style: italic; }
.testi-card .who { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.testi-card .avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--navy-900);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-400); font-family: var(--font-head); font-weight: 700; font-size: 14px;
}
.testi-card .who strong { display: block; font-size: 14px; color: var(--navy-900); }
.testi-card .who span { font-size: 12.5px; color: var(--navy-ink-50); }
.testi-placeholder-tag {
  position: absolute; top: 16px; right: 16px;
  font-size: 10.5px; letter-spacing: 1px; text-transform: uppercase;
  color: var(--gold-600); background: rgba(205,163,84,.12);
  padding: 4px 8px; border-radius: 6px; font-weight: 700;
}

/* ---------- Depoimentos em vídeo (carrossel manual, 3 por vez) ---------- */
.video-testi-carousel {
  display: flex;
  align-items: center;
  gap: 18px;
}
.video-testi-viewport {
  overflow: hidden;
  width: 100%;
}
.video-testi-track {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  transition: transform .5s cubic-bezier(.22,1,.36,1);
}
.video-nav {
  flex-shrink: 0;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid var(--navy-line);
  background: var(--navy-800);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s ease, border-color .2s ease, opacity .2s ease;
}
.video-nav svg { width: 20px; height: 20px; }
.video-nav:hover:not(:disabled) { background: var(--navy-700); border-color: var(--gold-400); color: var(--gold-400); }
.video-nav:disabled { opacity: .35; cursor: default; }
.video-item { display: flex; flex-direction: column; gap: 12px; flex-shrink: 0; width: 260px; }
.video-card {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: linear-gradient(160deg, var(--navy-800), var(--navy-950));
  border: 1px solid var(--navy-line);
  transition: transform .25s ease, box-shadow .25s ease;
}
.video-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.video-card iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.yt-facade {
  position: absolute;
  inset: 0;
  cursor: pointer;
  border: none;
  padding: 0;
  font: inherit;
  color: inherit;
  width: 100%;
  height: 100%;
}
.yt-facade img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.yt-facade::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(5,7,13,.55), rgba(5,7,13,.05) 45%);
}
.yt-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--gold-grad);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-gold);
  z-index: 2;
  transition: transform .2s ease;
}
.yt-facade:hover .yt-play { transform: translate(-50%, -50%) scale(1.08); }
.yt-play svg { width: 20px; height: 20px; color: var(--navy-950); margin-left: 3px; }
.video-item .video-cap { text-align: center; }
.video-item .video-cap strong { display: block; font-size: 13.5px; color: var(--white); font-family: var(--font-head); }
.video-item .video-cap span { font-size: 11.5px; color: var(--ink-50); }

/* ---------- CTA band ---------- */
.cta-band {
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--navy-800), var(--navy-950));
  border: 1px solid var(--navy-line);
  padding: 64px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  overflow: hidden;
}
.cta-band::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(45% 90% at 90% 10%, rgba(205,163,84,.16), transparent 70%);
}
.cta-band h2 { color: var(--white); font-size: clamp(24px, 3vw, 34px); margin-bottom: 10px; }
.cta-band p { color: var(--ink-70); margin: 0; max-width: 480px; }
.cta-band-actions { position: relative; display: flex; gap: 16px; flex-shrink: 0; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-950); color: var(--ink-50); padding: 70px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 50px; border-bottom: 1px solid var(--navy-line); }
.footer-brand p { color: var(--ink-50); font-size: 14px; max-width: 300px; margin-top: 16px; }
.footer-col h3 { color: var(--white); font-size: 14px; letter-spacing: .5px; margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 14px; color: var(--ink-50); transition: color .2s ease; }
.footer-col a:hover { color: var(--gold-400); }
.footer-social { display: flex; gap: 12px; margin-top: 18px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid var(--navy-line);
  display: flex; align-items: center; justify-content: center;
}
.footer-social a svg { width: 16px; height: 16px; }
.footer-social a:hover { border-color: var(--gold-400); color: var(--gold-400); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; font-size: 12.5px; flex-wrap: wrap; gap: 12px; }

/* ---------- Ícones flutuantes (Instagram + WhatsApp) ---------- */
.social-float {
  position: fixed;
  bottom: 26px; right: 26px;
  z-index: 600;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.social-float a {
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .2s ease;
}
.social-float a:hover { transform: translateY(-3px); }
.wa-float {
  width: 72px; height: 72px;
  background: #22c55e;
  box-shadow: 0 12px 30px rgba(34,197,94,.4);
  animation: pulse 2.6s ease-in-out infinite;
}
.wa-float svg { width: 34px; height: 34px; color: #fff; }
.ig-float {
  width: 54px; height: 54px;
  background: linear-gradient(135deg, #f9ce34 0%, #ee2a7b 55%, #6228d7 100%);
  box-shadow: 0 10px 26px rgba(238,42,123,.35);
  color: #fff;
}
.ig-float svg { width: 24px; height: 24px; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 12px 30px rgba(34,197,94,.4); }
  50% { box-shadow: 0 12px 30px rgba(34,197,94,.7), 0 0 0 10px rgba(34,197,94,.08); }
}

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  padding: 170px 0 90px;
  background: linear-gradient(180deg, var(--navy-950) 0%, var(--navy-800) 100%);
  color: var(--white);
  text-align: center;
}
.page-hero .eyebrow { justify-content: center; }
.page-hero h1 { font-size: clamp(32px, 4.4vw, 48px); }
.page-hero p { color: var(--ink-70); max-width: 620px; margin: 0 auto; font-size: 17px; }
.breadcrumb { display: flex; justify-content: center; gap: 8px; font-size: 13px; color: var(--ink-50); margin-bottom: 18px; }
.breadcrumb span { color: var(--gold-400); }

/* ---------- Service detail blocks ---------- */
.detail-block { display: grid; grid-template-columns: .9fr 1.1fr; gap: 60px; align-items: center; }
.detail-block.reverse .detail-visual { order: 2; }
.detail-block + .detail-block { margin-top: 100px; }
.detail-tag { display: inline-block; font-family: var(--font-head); font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold-700); background: rgba(205,163,84,.1); padding: 6px 14px; border-radius: 999px; margin-bottom: 18px; }
.detail-block h2 { font-size: clamp(24px, 3vw, 32px); }
.detail-list { margin-top: 22px; display: flex; flex-direction: column; gap: 14px; }
.detail-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; color: var(--navy-ink-70); }
.detail-list li svg { width: 20px; height: 20px; color: var(--gold-600); flex-shrink: 0; margin-top: 1px; }
.detail-visual {
  aspect-ratio: 4/3.2;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, var(--navy-800), var(--navy-950));
  border: 1px solid var(--navy-line);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.detail-visual .num { font-family: var(--font-head); font-weight: 700; font-size: 120px; background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; color: transparent; opacity: .9; }
.detail-visual::after { content:""; position:absolute; inset:0; background: radial-gradient(50% 50% at 30% 20%, rgba(205,163,84,.16), transparent 70%); }

/* ---------- Process timeline (Método 5X detail) ---------- */
.timeline { position: relative; padding-left: 40px; }
.timeline::before { content:""; position:absolute; left: 18px; top: 6px; bottom: 6px; width: 2px; background: linear-gradient(180deg, var(--gold-400), rgba(205,163,84,.08)); }
.timeline-item { position: relative; padding-bottom: 46px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: attr(data-step);
  position: absolute; left: -40px; top: 0;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--navy-900);
  border: 2px solid var(--gold-400);
  color: var(--gold-200);
  font-family: var(--font-head); font-weight: 700; font-size: 14px;
  display: flex; align-items: center; justify-content: center;
}
.timeline-item h3 { font-size: 19px; }
.timeline-item p { color: var(--navy-ink-70); margin: 0; font-size: 15px; max-width: 560px; }

/* ---------- Contact page ---------- */
.contact-wrap { display: grid; grid-template-columns: 1fr 1.05fr; gap: 50px; align-items: flex-start; }
.contact-info-card {
  background: var(--navy-900);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px 38px;
  position: sticky;
  top: 110px;
}
.contact-info-card h3 { font-size: 22px; }
.contact-info-card p { color: var(--ink-70); font-size: 15px; }
.contact-channel { display: flex; gap: 14px; align-items: flex-start; padding: 18px 0; border-top: 1px solid var(--navy-line); }
.contact-channel:first-of-type { border-top: none; margin-top: 20px; }
.contact-channel .ic { width: 40px; height: 40px; border-radius: 10px; background: rgba(205,163,84,.12); display: flex; align-items: center; justify-content: center; color: var(--gold-400); flex-shrink: 0; }
.contact-channel .ic svg { width: 19px; height: 19px; }
.contact-channel strong { display: block; font-size: 14.5px; color: var(--white); }
.contact-channel span { font-size: 13.5px; color: var(--ink-50); }

.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(10,14,26,.08);
  box-shadow: var(--shadow-soft);
  padding: 44px;
}
.form-card h3 { font-size: 22px; }
.form-card > p { color: var(--navy-ink-70); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 24px; }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: 13px; font-weight: 600; color: var(--navy-900); }
.form-field label .opt { color: var(--navy-ink-50); font-weight: 400; }
.form-field input,
.form-field select,
.form-field textarea {
  border: 1px solid rgba(10,14,26,.15);
  border-radius: var(--radius-sm);
  padding: 13px 15px;
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--navy-900);
  background: var(--off-white);
  transition: border-color .2s ease, background .2s ease;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold-500);
  background: var(--white);
}
.form-field textarea { resize: vertical; min-height: 100px; }
.form-note { font-size: 12.5px; color: var(--navy-ink-50); margin-top: 16px; }
.form-actions { margin-top: 26px; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }

.form-success {
  display: none;
  align-items: flex-start;
  gap: 14px;
  background: rgba(34,197,94,.08);
  border: 1px solid rgba(34,197,94,.3);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  margin-top: 20px;
  font-size: 14px;
  color: #15803d;
}
.form-success.is-visible { display: flex; }
.form-success svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: 1px; }

/* ---------- FAQ ---------- */
.faq-list { display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: var(--white);
  border: 1px solid rgba(10,14,26,.08);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 22px 26px;
  background: transparent; border: none;
  font-family: var(--font-head); font-weight: 600; font-size: 15.5px; color: var(--navy-900);
  text-align: left;
}
.faq-q svg { width: 18px; height: 18px; color: var(--gold-600); flex-shrink: 0; transition: transform .25s ease; }
.faq-item.is-open .faq-q svg { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a-inner { padding: 0 26px 22px; color: var(--navy-ink-70); font-size: 14.5px; }
.faq-item.is-open .faq-a { max-height: 240px; }

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }

/* ============ Responsive ============ */
@media (max-width: 1024px) {
  .method-wrap { grid-template-columns: repeat(3, 1fr); }
  .pain-grid, .services-grid, .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-band { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .footer-grid { grid-template-columns: 1fr 1fr; row-gap: 40px; }
  .detail-block, .detail-block.reverse { grid-template-columns: 1fr; }
  .detail-block .detail-visual, .detail-block.reverse .detail-visual { order: -1; }
  .contact-wrap { grid-template-columns: 1fr; }
  .contact-info-card { position: static; }
  .founders-wrap { grid-template-columns: 1fr; }
  .founders-photo { max-width: 360px; margin: 0 auto; }
}

@media (max-width: 860px) {
  .main-nav, .header-cta .btn-outline { display: none; }
  .nav-toggle { display: flex; }
  .hero .container { grid-template-columns: 1fr; }
  .hero-visual { max-width: 360px; margin: 0 auto; }
  .hero { padding: 150px 0 90px; text-align: left; }
  .cta-band { flex-direction: column; text-align: center; padding: 44px 30px; }
  .cta-band-actions { justify-content: center; }
}

@media (max-width: 640px) {
  .section { padding: 76px 0; }
  .method-wrap, .pain-grid, .services-grid, .testi-grid { grid-template-columns: 1fr; }
  .video-item { width: 180px; }
  .video-testi-track { gap: 18px; }
  .stats-band { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-card { padding: 30px 24px; }
  .hero-stats { gap: 24px; }
  .clients-row { gap: 30px; }
  .clients-row img { height: 26px; }
  .social-float { bottom: 18px; right: 18px; gap: 10px; }
  .wa-float { width: 58px; height: 58px; }
  .wa-float svg { width: 28px; height: 28px; }
  .ig-float { width: 44px; height: 44px; }
  .ig-float svg { width: 20px; height: 20px; }
}

/* ---------- Mobile nav drawer ---------- */
.mobile-nav {
  position: fixed; inset: 0;
  background: var(--navy-950);
  z-index: 900;
  display: flex; flex-direction: column;
  padding: 100px 32px 40px;
  transform: translateX(100%);
  transition: transform .35s ease;
}
.mobile-nav.is-open { transform: translateX(0); }
.mobile-nav ul { display: flex; flex-direction: column; gap: 8px; }
.mobile-nav a {
  font-family: var(--font-head);
  font-size: 22px; font-weight: 600; color: var(--white);
  padding: 14px 0; border-bottom: 1px solid var(--navy-line);
  display: block;
}
.mobile-nav .btn { margin-top: 30px; }
.nav-close {
  position: absolute; top: 24px; right: 24px;
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2); background: transparent; color: #fff;
  display: flex; align-items: center; justify-content: center;
}
.nav-close svg { width: 18px; height: 18px; }
body.nav-locked { overflow: hidden; }


/* WordPress admin bar compatibility */
body.admin-bar .site-header{top:32px;}
@media (max-width:782px){body.admin-bar .site-header{top:46px;}}
