/* ==========================================================================
   Falcon Empilhadeiras — Design System
   Paleta: Marinho (autoridade) + Magenta/Roxo (marca/águia) + Dourado (ação)
   ========================================================================== */

:root {
  /* Marinho / base */
  --navy-900: #0d1130;
  --navy-800: #131a3d;
  --navy-700: #1c2667;
  --navy-600: #2a357f;

  /* Magenta / roxo — assinatura da águia */
  --magenta: #c01e63;
  --magenta-700: #9a1a55;
  --purple: #6a1b6a;

  /* Dourado — cor de ação (AIDA / CTA) */
  --gold: #f5b301;
  --gold-600: #e0a200;
  --gold-100: #fff4d1;

  /* WhatsApp */
  --green: #25d366;
  --green-700: #1faa52;

  /* Neutros */
  --bg: #f5f6fb;
  --surface: #ffffff;
  --ink: #14172b;
  --muted: #5b5f76;
  --line: #e6e8f2;

  /* Gradientes */
  --grad-brand: linear-gradient(135deg, var(--magenta) 0%, var(--purple) 100%);
  --grad-navy: linear-gradient(160deg, #161e4a 0%, var(--navy-900) 70%);

  /* Sombras */
  --shadow-sm: 0 2px 10px rgba(20, 23, 43, .06);
  --shadow-md: 0 14px 40px rgba(20, 23, 43, .10);
  --shadow-lg: 0 30px 70px rgba(13, 17, 48, .22);

  --radius: 16px;
  --radius-sm: 10px;
  --container: 1200px;
  --header-h: 84px;
}

/* ------------------------------- Reset ---------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, h5 { font-family: 'Poppins', sans-serif; line-height: 1.18; margin: 0 0 .5em; color: var(--ink); font-weight: 700; }
p { margin: 0 0 1rem; }
strong { font-weight: 700; color: #2b2f47; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; border-radius: 6px; }
::selection { background: var(--magenta); color: #fff; }

/* ------------------------------ Layout ---------------------------------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 84px 0; }
.section--tight { padding: 60px 0; }
.section--dark { background: var(--grad-navy); color: #dfe3f5; }
.section--alt { background: var(--surface); }
.center { text-align: center; }
.grid { display: grid; gap: 28px; }

/* Eyebrow + título de seção */
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: 'Poppins', sans-serif; font-weight: 600;
  font-size: .8rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--magenta); margin-bottom: 16px;
}
.eyebrow::before { content: ""; width: 26px; height: 3px; border-radius: 3px; background: var(--grad-brand); }
.section--dark .eyebrow { color: var(--gold); }
.section-title { font-size: clamp(1.7rem, 1.1rem + 2.4vw, 2.6rem); margin-bottom: 14px; }
.section-title .hl { color: var(--magenta); }
.section--dark .section-title { color: #fff; }
.section--dark .section-title .hl { color: var(--gold); }
.section-lead { color: var(--muted); font-size: 1.06rem; max-width: 720px; }
.section--dark .section-lead { color: #b9c0e0; }
.center .section-lead { margin-left: auto; margin-right: auto; }

/* ------------------------------ Botões ---------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 1rem;
  padding: 15px 30px; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; transition: transform .25s, box-shadow .25s, background .25s, color .25s;
  white-space: nowrap; line-height: 1;
}
.btn svg { width: 19px; height: 19px; }
.btn-gold { background: var(--gold); color: #2a2300; box-shadow: 0 12px 26px rgba(245, 179, 1, .34); }
.btn-gold:hover { background: var(--gold-600); transform: translateY(-3px); box-shadow: 0 18px 34px rgba(245, 179, 1, .42); }
.btn-magenta { background: var(--grad-brand); color: #fff; box-shadow: 0 12px 26px rgba(192, 30, 99, .32); }
.btn-magenta:hover { transform: translateY(-3px); box-shadow: 0 18px 36px rgba(192, 30, 99, .42); }
.btn-whatsapp { background: var(--green); color: #fff; box-shadow: 0 12px 26px rgba(37, 211, 102, .32); }
.btn-whatsapp:hover { background: var(--green-700); transform: translateY(-3px); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-outline:hover { border-color: var(--magenta); color: var(--magenta); transform: translateY(-3px); }
.btn-ghost-light { background: rgba(255, 255, 255, .08); color: #fff; border-color: rgba(255, 255, 255, .28); }
.btn-ghost-light:hover { background: rgba(255, 255, 255, .16); transform: translateY(-3px); }
.btn-block { width: 100%; }

/* ============================================================
 * Shiny CTA — botão verde WhatsApp com borda animada e shimmer
 * (estilo reaproveitado do site Manancial Piscina)
 * ============================================================ */
@property --shiny-angle        { syntax: "<angle>";      initial-value: 0deg; inherits: false; }
@property --shiny-angle-offset { syntax: "<angle>";      initial-value: 0deg; inherits: false; }
@property --shiny-percent      { syntax: "<percentage>"; initial-value: 5%;   inherits: false; }
@property --shiny-shine        { syntax: "<color>";      initial-value: #ffffff; inherits: false; }

.btn-shiny-wa {
  --wa-bg-from: #128C7E;
  --wa-bg-to: #25D366;
  --wa-bg-subtle: #0e6b5f;
  --wa-fg: #ffffff;
  --wa-highlight: #4ade80;
  --wa-highlight-subtle: #bbf7d0;
  --shiny-duration: 3s;
  --shiny-shadow-size: 2px;
  --shiny-transition: 800ms cubic-bezier(0.25, 1, 0.5, 1);

  isolation: isolate;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  outline-offset: 4px;
  padding: 14px 32px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--wa-fg);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  vertical-align: middle;
  background:
    linear-gradient(45deg, transparent 25%, rgba(255,255,255,0.7) 50%, transparent 75%, transparent 100%) padding-box,
    linear-gradient(135deg, var(--wa-bg-from), var(--wa-bg-to)) padding-box,
    conic-gradient(
      from calc(var(--shiny-angle) - var(--shiny-angle-offset)),
      transparent,
      var(--wa-highlight) var(--shiny-percent),
      var(--shiny-shine) calc(var(--shiny-percent) * 2),
      var(--wa-highlight) calc(var(--shiny-percent) * 3),
      transparent calc(var(--shiny-percent) * 4)
    ) border-box;
  background-size: 250% 250%, 100% 100%, 100% 100%;
  background-position: 200% 0, 0 0, 0 0;
  background-repeat: no-repeat;
  box-shadow: inset 0 0 0 1px var(--wa-bg-subtle), 0 8px 22px rgba(18, 140, 126, 0.35);
  transition:
    --shiny-angle-offset var(--shiny-transition),
    --shiny-percent var(--shiny-transition),
    --shiny-shine var(--shiny-transition),
    box-shadow var(--shiny-transition),
    transform var(--shiny-transition),
    background-position 1000ms ease;
}

.btn-shiny-wa::before,
.btn-shiny-wa::after,
.btn-shiny-wa > span::before {
  content: "";
  pointer-events: none;
  position: absolute;
  inset-inline-start: 50%;
  inset-block-start: 50%;
  translate: -50% -50%;
  z-index: -1;
}

.btn-shiny-wa:active { translate: 0 1px; }

/* Padrão de pontinhos */
.btn-shiny-wa::before {
  --size: calc(100% - var(--shiny-shadow-size) * 3);
  --position: 2px;
  --space: calc(var(--position) * 2);
  width: var(--size);
  height: var(--size);
  background: radial-gradient(circle at var(--position) var(--position), #ffffff calc(var(--position) / 4), transparent 0) padding-box;
  background-size: var(--space) var(--space);
  background-repeat: space;
  -webkit-mask-image: conic-gradient(from calc(var(--shiny-angle) + 45deg), black, transparent 10% 90%, black);
          mask-image: conic-gradient(from calc(var(--shiny-angle) + 45deg), black, transparent 10% 90%, black);
  border-radius: inherit;
  opacity: 0.35;
  z-index: -1;
}

/* Shimmer interno */
.btn-shiny-wa::after {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(-50deg, transparent, var(--wa-highlight), transparent);
  -webkit-mask-image: radial-gradient(circle at bottom, transparent 40%, black);
          mask-image: radial-gradient(circle at bottom, transparent 40%, black);
  opacity: 0.55;
}

.btn-shiny-wa > span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.2;
  padding: 3px 0;
}
.btn-shiny-wa > span svg { flex-shrink: 0; width: 19px; height: 19px; }

.btn-shiny-wa > span::before {
  width: 300%;
  height: 300%;
  border-radius: 50%;
  background: radial-gradient(ellipse at 50% 90%, var(--wa-highlight) 0%, rgba(74, 222, 128, 0.35) 30%, transparent 60%);
  opacity: 0;
  transition: opacity var(--shiny-transition);
  animation: calc(var(--shiny-duration) * 1.5) shiny-breathe linear infinite;
}

.btn-shiny-wa,
.btn-shiny-wa::before,
.btn-shiny-wa::after {
  animation: shiny-angle linear infinite var(--shiny-duration),
             shiny-angle calc(var(--shiny-duration) / 0.4) linear infinite reverse paused;
  animation-composition: add;
}

.btn-shiny-wa:is(:hover, :focus-visible) {
  --shiny-percent: 20%;
  --shiny-angle-offset: 95deg;
  --shiny-shine: var(--wa-highlight-subtle);
  background-position: -100% 0, 0 0, 0 0;
  box-shadow: inset 0 0 0 1px var(--wa-bg-subtle), 0 12px 28px rgba(37, 211, 102, 0.45);
}
.btn-shiny-wa:is(:hover, :focus-visible),
.btn-shiny-wa:is(:hover, :focus-visible)::before,
.btn-shiny-wa:is(:hover, :focus-visible)::after { animation-play-state: running; }
.btn-shiny-wa:is(:hover, :focus-visible) > span::before { opacity: 1; }

@keyframes shiny-angle   { to { --shiny-angle: 360deg; } }
@keyframes shiny-breathe { from, to { scale: 1; } 50% { scale: 1.2; } }

/* Variante menor — usada no header (Orçamento) */
.btn-shiny-wa--sm { padding: 10px 22px; }
.btn-shiny-wa--sm > span { font-size: .92rem; }

@media (prefers-reduced-motion: reduce) {
  .btn-shiny-wa,
  .btn-shiny-wa::before,
  .btn-shiny-wa::after,
  .btn-shiny-wa > span::before { animation: none; }
}

/* --------------------------- Topbar (contato) --------------------------- */
.topbar { background: var(--navy-900); color: #c9cef0; font-size: .9rem; }
.topbar .container { display: flex; align-items: center; justify-content: space-between; min-height: 44px; gap: 16px; }
.topbar a { display: inline-flex; align-items: center; gap: 8px; color: #d6daf4; transition: color .2s; white-space: nowrap; }
.topbar a:hover { color: var(--gold); }
.topbar svg { width: 15px; height: 15px; color: var(--gold); }
.topbar-left { display: flex; gap: 26px; }
.topbar-tag { display: inline-flex; align-items: center; gap: 8px; color: #aeb4d8; }
.topbar-tag svg { color: var(--magenta); }
@media (max-width: 860px) { .topbar-left .topbar-tag { display: none; } .topbar { font-size: .82rem; } }
@media (max-width: 560px) { .topbar-left a { display: none; } .topbar .container { justify-content: center; } }

/* ------------------------------ Header ---------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100; background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(10px); border-bottom: 1px solid var(--line);
  transition: box-shadow .3s;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.nav { display: flex; align-items: center; justify-content: space-between; min-height: var(--header-h); gap: 20px; }
.brand img { height: 69px; width: auto; }
.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-menu a {
  font-family: 'Poppins', sans-serif; font-weight: 500; font-size: .96rem; color: #3a3f5c;
  padding: 10px 16px; border-radius: 999px; position: relative; transition: color .2s, background .2s;
}
.nav-menu a:hover { color: var(--magenta); }
.nav-menu a.active { color: var(--magenta); }
.nav-menu a.active::after {
  content: ""; position: absolute; left: 16px; right: 16px; bottom: 2px; height: 3px;
  border-radius: 3px; background: var(--grad-brand);
}
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-cta .btn { padding: 12px 22px; font-size: .92rem; }
.nav-toggle {
  display: none; width: 46px; height: 46px; border: none; background: var(--grad-brand);
  border-radius: 12px; cursor: pointer; padding: 0; place-items: center;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px;
  transition: transform .3s, opacity .3s; position: relative;
}
.nav-toggle span::before { position: absolute; top: -7px; }
.nav-toggle span::after { position: absolute; top: 7px; }
.nav-toggle.open span { background: transparent; }
.nav-toggle.open span::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span::after { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 992px) {
  .nav-toggle { display: grid; }
  .nav-cta .btn-quote { display: none; }
  .nav-menu {
    position: fixed; inset: 0 0 0 auto; width: min(330px, 84vw); flex-direction: column;
    align-items: stretch; gap: 6px; background: var(--surface); padding: calc(var(--header-h) + 20px) 22px 30px;
    box-shadow: var(--shadow-lg); transform: translateX(100%); transition: transform .35s ease; z-index: 99;
  }
  .nav-menu.open { transform: translateX(0); }
  .nav-menu a { padding: 14px 16px; border-radius: 12px; font-size: 1.05rem; }
  .nav-menu a:hover, .nav-menu a.active { background: var(--bg); }
  .nav-menu a.active::after { display: none; }
  .nav-overlay { position: fixed; inset: 0; background: rgba(13, 17, 48, .5); opacity: 0; visibility: hidden; transition: .3s; z-index: 98; }
  .nav-overlay.show { opacity: 1; visibility: visible; }
}

/* ------------------------------- Hero ----------------------------------- */
.hero { position: relative; background: var(--navy-900); color: #fff; overflow: hidden; isolation: isolate; }

/* Vídeo MP4 local de fundo — cobre o hero inteiro */
.hero-video { position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }
.hero-video video { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; pointer-events: none; }
/* Overlay escuro acima do vídeo p/ legibilidade do texto */
.hero-video::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(115deg, rgba(13, 17, 48, .90) 0%, rgba(13, 17, 48, .72) 45%, rgba(106, 27, 106, .55) 100%);
}

.hero::before {
  content: ""; position: absolute; top: -25%; right: -10%; width: 60%; height: 130%; z-index: 1;
  background: radial-gradient(closest-side, rgba(192, 30, 99, .42), transparent 70%);
  filter: blur(30px); pointer-events: none;
}
.hero::after {
  content: ""; position: absolute; bottom: -30%; left: -10%; width: 50%; height: 120%; z-index: 1;
  background: radial-gradient(closest-side, rgba(106, 27, 106, .38), transparent 70%);
  filter: blur(30px); pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 2; display: flex; align-items: center;
  min-height: clamp(460px, 66vh, 640px); padding: 18px 0 8px;
}
.hero-copy { max-width: 720px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px; background: rgba(245, 179, 1, .14);
  border: 1px solid rgba(245, 179, 1, .35); color: var(--gold); padding: 8px 16px; border-radius: 999px;
  font-family: 'Poppins', sans-serif; font-weight: 600; font-size: .82rem; letter-spacing: .04em; margin-bottom: 22px;
}
.hero-badge svg { width: 16px; height: 16px; }
.hero h1 { font-size: clamp(2.1rem, 0.6rem + 2.8vw, 3.2rem); color: #fff; margin-bottom: 18px; letter-spacing: -.5px; }
.hero h1 .hl { color: var(--gold); }
.hero h1 .hl-brand { background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-sub { font-size: 1.14rem; color: #c4cbe8; max-width: 560px; margin-bottom: 30px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 34px; }
.hero-points { display: flex; flex-wrap: wrap; gap: 12px 26px; }
.hero-points li { display: flex; align-items: center; gap: 10px; color: #dfe3f5; font-weight: 500; font-size: .96rem; }
.hero-points svg { width: 20px; height: 20px; color: var(--gold); flex-shrink: 0; }

.hero-visual { position: relative; }
.hero-figure {
  position: relative; border-radius: 22px; overflow: hidden; box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, .12);
}
.hero-figure img { width: 100%; aspect-ratio: 4 / 3.2; object-fit: cover; object-position: center 62%; }
.hero-figure::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(13, 17, 48, .35)); }
.hero-card {
  position: absolute; left: -22px; bottom: 26px; z-index: 3; background: #fff; color: var(--ink);
  border-radius: 16px; padding: 16px 20px; box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 14px;
  max-width: 260px;
}
.hero-card .ico { width: 46px; height: 46px; border-radius: 12px; background: var(--grad-brand); display: grid; place-items: center; flex-shrink: 0; }
.hero-card .ico svg { width: 24px; height: 24px; color: #fff; }
.hero-card b { font-family: 'Poppins', sans-serif; display: block; font-size: 1.5rem; line-height: 1; color: var(--navy-700); }
.hero-card span { font-size: .85rem; color: var(--muted); }

@media (max-width: 940px) {
  .hero-inner { min-height: clamp(420px, 80vh, 560px); padding: 54px 0 64px; }
}

/* --------------------------- Trust badges ------------------------------- */
.trust { background: var(--surface); border-bottom: 1px solid var(--line); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; padding: 30px 0; }
.trust-item { display: flex; align-items: center; gap: 14px; }
.trust-item .ico { width: 50px; height: 50px; border-radius: 14px; background: var(--gold-100); display: grid; place-items: center; flex-shrink: 0; }
.trust-item .ico svg { width: 26px; height: 26px; color: var(--magenta); }
.trust-item b { font-family: 'Poppins', sans-serif; display: block; font-size: 1.02rem; color: var(--ink); line-height: 1.2; }
.trust-item span { font-size: .86rem; color: var(--muted); }
@media (max-width: 820px) { .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 22px 16px; } }

/* ------------------------------ About ----------------------------------- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about-media { position: relative; }
/*.about-media img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-md); object-fit: cover; }*/
.about-media .badge-exp {
  position: absolute; right: -18px; bottom: -18px; background: var(--grad-brand); color: #fff;
  border-radius: 18px; padding: 20px 24px; box-shadow: var(--shadow-lg); text-align: center;
}
.about-media .badge-exp b { font-family: 'Poppins', sans-serif; font-size: 2.6rem; line-height: 1; display: block; }
.about-media .badge-exp span { font-size: .9rem; opacity: .95; }
.about-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 22px; margin: 22px 0 28px; }
.about-list li { display: flex; align-items: flex-start; gap: 10px; font-weight: 500; }
.about-list svg { width: 20px; height: 20px; color: var(--magenta); flex-shrink: 0; margin-top: 3px; }
@media (max-width: 880px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-list { grid-template-columns: 1fr; }
  .about-media { max-width: 520px; }
}

/* ----------------------------- Stats ------------------------------------ */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { text-align: center; padding: 12px; }
.stat b { font-family: 'Poppins', sans-serif; font-size: clamp(2rem, 1.4rem + 2vw, 3rem); color: var(--gold); display: block; line-height: 1; }
.stat span { color: #c4cbe8; font-size: .96rem; }
@media (max-width: 620px) { .stats { grid-template-columns: repeat(2, 1fr); gap: 30px 14px; } }

/* ----------------------------- Services --------------------------------- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service-card {
  background: var(--surface); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm);
  border: 1px solid var(--line); transition: transform .3s, box-shadow .3s; display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.service-thumb { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.service-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.service-card:hover .service-thumb img { transform: scale(1.07); }
.service-thumb .tag {
  position: absolute; top: 14px; left: 14px; background: rgba(13, 17, 48, .78); color: #fff;
  font-family: 'Poppins', sans-serif; font-weight: 600; font-size: .78rem; padding: 6px 13px; border-radius: 999px;
  backdrop-filter: blur(4px);
}
.service-body { padding: 26px 24px 28px; display: flex; flex-direction: column; flex: 1; }
.service-ico { width: 54px; height: 54px; border-radius: 14px; background: var(--gold-100); display: grid; place-items: center; margin: -52px 0 16px; position: relative; box-shadow: var(--shadow-sm); border: 4px solid #fff; }
.service-ico svg { width: 28px; height: 28px; color: var(--magenta); }
.service-body h3 { font-size: 1.25rem; margin-bottom: 8px; }
.service-body p { color: var(--muted); font-size: .97rem; margin-bottom: 18px; }
.service-link { margin-top: auto; display: inline-flex; align-items: center; gap: 8px; font-family: 'Poppins', sans-serif; font-weight: 600; color: var(--magenta); font-size: .95rem; }
.service-link svg { width: 18px; height: 18px; transition: transform .25s; }
.service-card:hover .service-link svg { transform: translateX(5px); }
@media (max-width: 920px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .services-grid { grid-template-columns: 1fr; } }

/* ------------------------------ Marcas ---------------------------------- */
.marquee { overflow: hidden; position: relative; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: flex; gap: 16px; width: max-content; animation: marquee 32s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marca-pill {
  font-family: 'Poppins', sans-serif; font-weight: 600; color: #cfd5f0; background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12); padding: 12px 24px; border-radius: 999px; white-space: nowrap; font-size: 1rem;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ------------------------------ Process --------------------------------- */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 24px; position: relative; transition: transform .3s, box-shadow .3s; }
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.step .num { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 2.6rem; line-height: 1; color: rgba(192, 30, 99, .14); position: absolute; top: 18px; right: 22px; }
.step .ico { width: 56px; height: 56px; border-radius: 16px; background: var(--grad-brand); display: grid; place-items: center; margin-bottom: 18px; }
.step .ico svg { width: 28px; height: 28px; color: #fff; }
.step h3 { font-size: 1.14rem; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: .94rem; margin: 0; }
@media (max-width: 920px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .process-grid { grid-template-columns: 1fr; } }

/* ------------------------------ Cidades --------------------------------- */
.cities { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 12px; }
.city { display: flex; align-items: center; gap: 11px; background: var(--surface); border: 1px solid var(--line); border-radius: 12px; padding: 13px 16px; font-weight: 500; transition: border-color .25s, transform .25s; }
.city:hover { border-color: var(--magenta); transform: translateX(4px); }
.city svg { width: 18px; height: 18px; color: var(--magenta); flex-shrink: 0; }

/* ------------------------------ Galeria --------------------------------- */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gallery a { position: relative; border-radius: 14px; overflow: hidden; aspect-ratio: 4 / 3; box-shadow: var(--shadow-sm); cursor: zoom-in; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.gallery a:hover img { transform: scale(1.08); }
.gallery a::after { content: ""; position: absolute; inset: 0; background: rgba(13, 17, 48, .25); opacity: 0; transition: .3s; }
.gallery a:hover::after { opacity: 1; }
@media (max-width: 720px) { .gallery { grid-template-columns: repeat(2, 1fr); } }

/* Lightbox */
.lightbox { position: fixed; inset: 0; background: rgba(8, 10, 26, .92); display: none; place-items: center; z-index: 1000; padding: 24px; }
.lightbox.open { display: grid; }
.lightbox img { max-width: 94vw; max-height: 88vh; border-radius: 10px; box-shadow: var(--shadow-lg); }
.lightbox-close { position: absolute; top: 20px; right: 24px; width: 48px; height: 48px; borde-rradius: 50%; border: none; background: rgba(255, 255, 255, .12); color: #fff; font-size: 1.6rem; cursor: pointer; }
.lightbox-close:hover { background: var(--magenta); }

/* ------------------------------ CTA band -------------------------------- */
.cta-band { position: relative; background: var(--grad-brand); color: #fff; border-radius: 26px; padding: 52px 56px; overflow: hidden; box-shadow: var(--shadow-lg); }
.cta-band::before { content: ""; position: absolute; top: -40%; right: -5%; width: 320px; height: 320px; background: radial-gradient(closest-side, rgba(245, 179, 1, .45), transparent); }
.cta-band .row { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; text-align: center; justify-content: center; gap: 22px; }
.cta-band h2 { color: #fff; font-size: clamp(1.5rem, 1rem + 2vw, 2.2rem); margin-bottom: 8px; }
.cta-band p { color: rgba(255, 255, 255, .9); margin: 0 auto; max-width: 600px; }
.cta-band .actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
@media (max-width: 600px) { .cta-band { padding: 40px 28px; } }

/* ------------------------------ Contato --------------------------------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 44px; align-items: start; }
.info-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-sm); }
.info-list { display: grid; gap: 18px; margin-top: 8px; }
.info-list li { display: flex; gap: 16px; align-items: flex-start; }
.info-list .ico { width: 48px; height: 48px; border-radius: 13px; background: var(--gold-100); display: grid; place-items: center; flex-shrink: 0; }
.info-list .ico svg { width: 23px; height: 23px; color: var(--magenta); }
.info-list b { font-family: 'Poppins', sans-serif; display: block; font-size: .82rem; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); }
.info-list a, .info-list span { color: var(--ink); font-weight: 500; }
.info-list a:hover { color: var(--magenta); }
.map-embed { margin-top: 22px; border-radius: 14px; overflow: hidden; border: 1px solid var(--line); }
.map-embed iframe { display: block; width: 100%; height: 230px; border: 0; }

/* Form */
.form-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow-md); position: relative; overflow: hidden; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-family: 'Poppins', sans-serif; font-weight: 600; font-size: .9rem; color: #2b2f47; }
.field label .req { color: var(--magenta); }
.field input, .field textarea {
  font-family: inherit; font-size: 1rem; color: var(--ink); background: #fbfbfe;
  border: 1.6px solid var(--line); border-radius: 12px; padding: 13px 15px; transition: border-color .2s, box-shadow .2s; width: 100%;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--magenta); box-shadow: 0 0 0 4px rgba(192, 30, 99, .12); background: #fff; }
.field .err { color: var(--magenta); font-size: .82rem; font-weight: 600; display: none; }
.field.invalid input, .field.invalid textarea { border-color: var(--magenta); }
.field.invalid .err { display: block; }
.form-foot { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 18px; margin-top: 22px; }
.form-note { font-size: .84rem; color: var(--muted); display: flex; align-items: center; gap: 8px; }
.form-note svg { width: 16px; height: 16px; color: var(--green-700); }
.form-alert { display: none; padding: 13px 16px; border-radius: 12px; font-weight: 600; font-size: .94rem; margin-bottom: 18px; }
.form-alert.error { display: block; background: #fdecf2; color: var(--magenta-700); border: 1px solid #f5c6d8; }

/* Loading overlay no form */
.form-loading { position: absolute; inset: 0; background: rgba(255, 255, 255, .94); backdrop-filter: blur(2px); display: none; flex-direction: column; align-items: center; justify-content: center; gap: 18px; z-index: 5; text-align: center; padding: 24px; }
.form-loading.show { display: flex; }
.spinner { width: 58px; height: 58px; border-radius: 50%; border: 5px solid var(--gold-100); border-top-color: var(--magenta); animation: spin .9s linear infinite; }
.form-loading b { font-family: 'Poppins', sans-serif; font-size: 1.15rem; color: var(--navy-700); }
.form-loading span { color: var(--muted); font-size: .92rem; max-width: 280px; }
@keyframes spin { to { transform: rotate(360deg); } }
.btn[disabled] { opacity: .6; cursor: not-allowed; }
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; gap: 30px; } .form-grid { grid-template-columns: 1fr; } }

/* ----------------------- Internal page hero ----------------------------- */
.page-hero { position: relative; background: var(--grad-navy); color: #fff; padding: 31px 0 29px; overflow: hidden; }
.page-hero::before { content: ""; position: absolute; top: -30%; right: -8%; width: 50%; height: 140%; background: radial-gradient(closest-side, rgba(192, 30, 99, .45), transparent 70%); filter: blur(26px); }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { font-size: clamp(1.7rem, 0.1rem + 2.0vw, 3.7rem); color: #fff; max-width: 100%; }
.page-hero p { color: #c4cbe8; max-width: 840px; margin-bottom: 0; }
.breadcrumb { display: flex; gap: 9px; align-items: center; font-size: .9rem; color: #aeb4d8; margin-bottom: 18px; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb svg { width: 15px; height: 15px; opacity: .6; }

/* Conteúdo de página interna */
.prose h2 { font-size: clamp(1.4rem, 1rem + 1.6vw, 2rem); margin: 6px 0 14px; }
.prose h2 .hl { color: var(--magenta); }
.prose h3 { font-size: 1.3rem; margin: 4px 0 12px; color: var(--navy-700); }
.prose p { color: #41465f; }
.prose .lead { font-size: 1.12rem; color: var(--muted); }
.feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.feature-row.reverse .feature-media { order: 2; }
.feature-media img { border-radius: var(--radius); box-shadow: var(--shadow-md); width: 100%; object-fit: cover; }
@media (max-width: 860px) { .feature-row, .feature-row.reverse { grid-template-columns: 1fr; gap: 30px; } .feature-row.reverse .feature-media { order: 0; } }

/* Check list (serviços/marcas internas) */
.check-cols { columns: 2; column-gap: 36px; }
.check-list li, .check-cols li { display: flex; align-items: flex-start; gap: 11px; padding: 8px 0; break-inside: avoid; font-weight: 500; color: #33384f; }
.check-list li svg, .check-cols li svg { width: 21px; height: 21px; color: var(--magenta); flex-shrink: 0; margin-top: 2px; }
@media (max-width: 600px) { .check-cols { columns: 1; } }

.card-soft { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-sm); }

/* ----------- Borda com brilho animado (glow) — cores da marca ----------- */
@property --glow-ang { syntax: "<angle>"; inherits: false; initial-value: 0deg; }
.glow-card {
  position: relative;
  display: flex;
  border-radius: calc(var(--radius) + 3px);
  padding: 2px;
  background: conic-gradient(from var(--glow-ang), var(--magenta), var(--purple), var(--gold), var(--magenta));
  animation: glow-spin 6s linear infinite;
}
.glow-card::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  border-radius: inherit;
  background: conic-gradient(from var(--glow-ang), var(--magenta), var(--purple), var(--gold), var(--magenta));
  filter: blur(16px); opacity: .45;
  animation: glow-spin 6s linear infinite;
  transition: opacity .3s;
}
.glow-card:hover::before { opacity: .7; }
.glow-card > .card-soft { flex: 1; margin: 0; border-color: transparent; box-shadow: var(--shadow-md); }
@keyframes glow-spin { to { --glow-ang: 360deg; } }
@media (prefers-reduced-motion: reduce) { .glow-card, .glow-card::before { animation: none; } }

/* Brand chips (marcas em grid) */
.brand-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.brand-chips span { background: var(--surface); border: 1px solid var(--line); border-radius: 999px; padding: 9px 18px; font-family: 'Poppins', sans-serif; font-weight: 500; font-size: .92rem; color: #3a3f5c; transition: .25s; }
.brand-chips span:hover { border-color: var(--magenta); color: var(--magenta); transform: translateY(-2px); }

/* ---------------------- Showcase de marcas (grid) ----------------------- */
.brand-showcase {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(192px, 1fr));
  gap: 16px;
  padding: 30px;
  background:
    radial-gradient(120% 120% at 0% 0%, rgba(192, 30, 99, .06), transparent 45%),
    radial-gradient(120% 120% at 100% 100%, rgba(106, 27, 106, .06), transparent 45%),
    var(--surface);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow-sm);
}
.brand-tile {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px 16px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform .35s cubic-bezier(.2, .8, .2, 1), box-shadow .35s, border-color .35s;
  /* entrada escalonada (disparada por .in no container) */
  opacity: 0;
  transform: translateY(16px) scale(.97);
}
/* container apenas dispara o stagger — não anima como bloco */
.brand-showcase.reveal { opacity: 1; transform: none; }
.brand-showcase.in .brand-tile { opacity: 1; transform: none; }
.brand-tile::before {
  content: "";
  position: absolute; inset: 0; z-index: 0;
  background: var(--grad-brand);
  opacity: 0; transition: opacity .35s;
}
.brand-tile > * { position: relative; z-index: 1; }
.brand-tile:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 38px rgba(192, 30, 99, .28);
  border-color: transparent;
}
.brand-tile:hover::before { opacity: 1; }
.brand-mono {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: 13px;
  display: grid; place-items: center;
  font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1.02rem; letter-spacing: .02em;
  color: #fff;
  background: var(--grad-brand);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .18);
  transition: background .35s, color .35s, transform .45s cubic-bezier(.2, .8, .2, 1.4);
}
.brand-tile:hover .brand-mono { background: #fff; color: var(--magenta); transform: rotate(-6deg) scale(1.06); }
.brand-name { font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 1rem; color: var(--ink); line-height: 1.25; transition: color .35s; }
.brand-name small { display: block; font-family: 'Inter', sans-serif; font-weight: 500; font-size: .74rem; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); transition: color .35s; }
.brand-tile:hover .brand-name { color: #fff; }
.brand-tile:hover .brand-name small { color: rgba(255, 255, 255, .85); }

/* atraso escalonado por posição */
.brand-showcase.in .brand-tile:nth-child(1)  { transition-delay: .03s; }
.brand-showcase.in .brand-tile:nth-child(2)  { transition-delay: .06s; }
.brand-showcase.in .brand-tile:nth-child(3)  { transition-delay: .09s; }
.brand-showcase.in .brand-tile:nth-child(4)  { transition-delay: .12s; }
.brand-showcase.in .brand-tile:nth-child(5)  { transition-delay: .15s; }
.brand-showcase.in .brand-tile:nth-child(6)  { transition-delay: .18s; }
.brand-showcase.in .brand-tile:nth-child(7)  { transition-delay: .21s; }
.brand-showcase.in .brand-tile:nth-child(8)  { transition-delay: .24s; }
.brand-showcase.in .brand-tile:nth-child(9)  { transition-delay: .27s; }
.brand-showcase.in .brand-tile:nth-child(10) { transition-delay: .30s; }
.brand-showcase.in .brand-tile:nth-child(11) { transition-delay: .33s; }
.brand-showcase.in .brand-tile:nth-child(12) { transition-delay: .36s; }
.brand-showcase.in .brand-tile:nth-child(n+13) { transition-delay: .39s; }
@media (max-width: 520px) { .brand-showcase { padding: 18px; gap: 12px; grid-template-columns: 1fr 1fr; } .brand-name { font-size: .9rem; } .brand-mono { width: 42px; height: 42px; } }

/* ------------------------------ Footer ---------------------------------- */
.site-footer { background: var(--navy-900); color: #aab1d6; padding: 70px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 50px; }
.footer-brand img { height: 56px; margin-bottom: 18px; }
.footer-brand p { font-size: .95rem; color: #9097bd; }
.footer-social { display: flex; gap: 12px; margin-top: 18px; }
.footer-social a { width: 42px; height: 42px; border-radius: 11px; background: rgba(255, 255, 255, .07); display: grid; place-items: center; transition: .25s; }
.footer-social a:hover { background: var(--grad-brand); transform: translateY(-3px); }
.footer-social svg { width: 19px; height: 19px; color: #fff; }
.site-footer h4 { color: #fff; font-family: 'Poppins', sans-serif; font-size: 1.05rem; margin-bottom: 20px; text-transform: none; }
.footer-links li { margin-bottom: 11px; }
.footer-links a { font-size: .95rem; color: #9aa1c6; display: inline-flex; gap: 9px; align-items: center; transition: .2s; }
.footer-links a:hover { color: var(--gold); transform: translateX(4px); }
.footer-links svg { width: 14px; height: 14px; color: var(--magenta); }
.footer-contact li { display: flex; gap: 12px; margin-bottom: 16px; align-items: flex-start; font-size: .95rem; }
.footer-contact svg { width: 19px; height: 19px; color: var(--gold); flex-shrink: 0; margin-top: 3px; }
.footer-contact a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, .08); padding: 22px 0; }
.footer-bottom .container { display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; font-size: .88rem; color: #7f86ad; }
.footer-bottom a { color: #9aa1c6; }
.footer-bottom a:hover { color: var(--gold); }
.footer-credit { display: inline-flex; line-height: 0; opacity: 1; }
.footer-credit img { display: block; width: auto; height: auto; max-width: 100%; opacity: 1; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }

/* --------------------------- WhatsApp float ----------------------------- */
.wa-float {
  position: fixed; right: 28px; bottom: 28px; z-index: 999;
  width: 58px; height: 58px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--green); color: #fff;
  box-shadow: 0 6px 28px rgba(37, 211, 102, .45);
  transition: transform .25s, background .25s, box-shadow .25s;
}
.wa-float:hover { transform: scale(1.1); background: var(--green-700); box-shadow: 0 10px 34px rgba(37, 211, 102, .55); }
.wa-float svg { width: 28px; height: 28px; fill: #fff; }
.wa-float::before {
  content: ""; position: absolute; inset: -4px; border-radius: 50%;
  border: 2px solid var(--green); opacity: .5;
  animation: wa-pulse-ring 2s ease-out infinite;
}
@keyframes wa-pulse-ring { 0% { transform: scale(1); opacity: .55; } 100% { transform: scale(1.5); opacity: 0; } }
@media (max-width: 560px) { .wa-float { right: 18px; bottom: 18px; width: 54px; height: 54px; } }
@media (prefers-reduced-motion: reduce) { .wa-float::before { animation: none; } }

/* --------------------------- Reveal on scroll --------------------------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Utils */
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.mt-40 { margin-top: 40px; }
.mb-34 { margin-bottom: 34px; }
.text-gold { color: var(--gold); }
.text-white { color: #fff; }
.text-muted { color: var(--muted); }
.border-0 { border: 0 !important; }

/* Cabeçalho de seção centralizado (substitui inline max-width/margin) */
.section-head { max-width: 820px; margin-left: auto; margin-right: auto; margin-bottom: 44px; }
.center .eyebrow { justify-content: center; }
.brand-chips.center { justify-content: center; }
.section-title--sm { font-size: 1.6rem; }
.card-title { font-size: 1.18rem; }
.service-ico.tl { margin: 0 0 16px; }

/* Página de agradecimento */
.thanks-wrap { min-height: 78vh; display: grid; place-items: center; text-align: center; padding: 60px 24px; }
.thanks-card { max-width: 620px; }
.thanks-check { width: 110px; height: 110px; border-radius: 50%; background: var(--grad-brand); display: grid; place-items: center; margin: 0 auto 28px; box-shadow: 0 20px 50px rgba(192, 30, 99, .35); animation: pop .5s cubic-bezier(.2, .8, .2, 1.2); }
.thanks-check svg { width: 56px; height: 56px; color: #fff; }
@keyframes pop { from { transform: scale(.4); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.thanks-card h1 { font-size: clamp(1.9rem, 1.3rem + 2.4vw, 2.8rem); }
.thanks-card h1 .hl { color: var(--magenta); }
.thanks-card p { color: var(--muted); font-size: 1.1rem; max-width: 520px; margin: 0 auto 14px; }
.thanks-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 30px; }
