/* ================================================================
   THE FRESH CYCLE — Design System v3
   Paleta: Forest Green #1B4D3E | Gold #C9A962 | Cream #F5F0EB
   Tipografia: Cormorant Garamond (display) + DM Sans (body)
   ================================================================ */

/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Cores */
  --green:        #1B4D3E;
  --green-dark:   #122e25;
  --green-deep:   #0b1e16;
  --green-mid:    #2a6354;
  --green-muted:  #3d7a69;
  --green-soft:   #d0e5df;
  --green-light:  #eaf3f0;
  --gold:         #C9A962;
  --gold-light:   #dfc28a;
  --gold-dark:    #a88640;
  --gold-pale:    #f5ecd4;
  --cream:        #F5F0EB;
  --cream-warm:   #EDE7DE;
  --cream-dark:   #e0d8cc;
  --white:        #FFFFFF;
  --wa-green:     #25D366;
  --gray-50:      #FAFAF8;
  --gray-100:     #F4F3F0;
  --gray-200:     #E8E6E2;
  --gray-300:     #D0CEC9;
  --gray-500:     #8C8A86;
  --gray-700:     #4A4845;
  --black:        #181816;
  --text-dark:    #181816;
  --text-mid:     #4A4845;
  --text-light:   #8C8A86;

  /* Tipografia */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Lora', Georgia, serif;
  --font-brand:   'Jost', system-ui, sans-serif;

  /* Raios */
  --r-xs: 4px;
  --r-sm: 8px;
  --r:    12px;
  --r-lg: 20px;
  --r-xl: 32px;
  --r-full: 9999px;

  /* Sombras */
  --s-xs:  0 1px 4px rgba(0,0,0,0.05);
  --s-sm:  0 2px 12px rgba(0,0,0,0.07);
  --s:     0 6px 24px rgba(0,0,0,0.09);
  --s-lg:  0 16px 48px rgba(0,0,0,0.12);
  --s-xl:  0 32px 80px rgba(0,0,0,0.16);

  /* Transições */
  --ease:       cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:   cubic-bezier(0, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --t:          0.28s var(--ease);
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; transition: color var(--t); }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ─── Animações ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeLeft {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeRight {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-14px); }
}
@keyframes floatSlow {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33%       { transform: translateY(-10px) rotate(2deg); }
  66%       { transform: translateY(-5px) rotate(-1deg); }
}
@keyframes badgeFloat {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50%       { transform: translateY(-8px) rotate(2deg); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(1.6); }
}
@keyframes scrollWheel {
  0%   { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(8px); opacity: 0; }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}

@keyframes grainShift {
  0%, 100% { transform: translate(0, 0); }
  25%       { transform: translate(-2%, 1%); }
  50%       { transform: translate(1%, -2%); }
  75%       { transform: translate(2%, 2%); }
}
@keyframes shimmerBorder {
  0%   { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}
@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(201,169,98,0.08); }
  50%       { box-shadow: 0 0 40px rgba(201,169,98,0.22); }
}

/* Utilitário de animação por scroll */
[data-anim] { opacity: 0; }
[data-anim="fade-up"]    { transform: translateY(30px); }
[data-anim="fade-left"]  { transform: translateX(40px); }
[data-anim="fade-right"] { transform: translateX(-40px); }
[data-anim].is-visible {
  opacity: 1;
  transform: none;
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

/* ─── Botões ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--r-xs);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: all var(--t);
  white-space: nowrap;
}

.btn-primary {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
  box-shadow: 0 4px 16px rgba(27,77,62,0.22);
}
.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(27,77,62,0.32);
}

.btn-ghost {
  background: transparent;
  color: rgba(255,255,255,0.9);
  border-color: rgba(255,255,255,0.28);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.55);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}
.btn-outline:hover {
  background: var(--green);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(27,77,62,0.18);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  background-size: 200% auto;
  color: var(--green-deep);
  border: none;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(201,169,98,0.32);
  transition: background-position 0.4s, transform var(--t), box-shadow var(--t);
}
.btn-gold:hover {
  background-position: right center;
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(201,169,98,0.48);
}

.btn-white {
  background: var(--white);
  color: var(--green);
  border-color: transparent;
  font-size: 0.88rem;
  padding: 16px 36px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.btn-white:hover {
  background: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(0,0,0,0.16);
}

.btn-full { width: 100%; justify-content: center; }

/* ─── Seções genéricas ─── */
.section {
  padding: 100px 0;
}
.section-dark {
  background: var(--green-deep);
  position: relative;
  overflow: hidden;
}
.section-dark::after {
  content: '';
  position: absolute;
  inset: -40%;
  width: 180%; height: 180%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  animation: grainShift 8s steps(2) infinite;
}
.section-dark > * { position: relative; z-index: 1; }
.section-cream {
  background: var(--cream);
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.sec-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-light);
  color: var(--green);
  border: 1px solid rgba(27,77,62,0.15);
  padding: 6px 18px;
  border-radius: var(--r-full);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.sec-pill--light {
  background: rgba(255,255,255,0.08);
  color: var(--gold);
  border-color: rgba(201,169,98,0.25);
}

.sec-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 16px;
}
.sec-title em {
  font-style: normal;
  color: var(--green);
  font-family: var(--font-brand);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.sec-title--light { color: var(--white); }
.sec-title--light em { color: var(--gold); }

.sec-sub {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.7;
}
.sec-sub--light { color: rgba(255,255,255,0.55); }

/* ══════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.navbar.scrolled {
  background: rgba(11, 30, 22, 0.97);
  backdrop-filter: blur(24px);
  box-shadow: 0 4px 32px rgba(0,0,0,0.25);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 72px;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
  font-family: var(--font-brand);
  font-weight: 400;
  font-size: 0.88rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: opacity var(--t);
}
.nav-logo:hover { opacity: 0.8; }
.logo-img {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  color: rgba(255,255,255,0.7);
  font-size: 0.77rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 3px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 100%;
  height: 1px;
  background: var(--gold);
  transition: right 0.3s var(--ease);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { right: 0; }
.nav-links a.nav-active { color: var(--white); }
.nav-links a.nav-active::after { right: 0; }

.nav-cta {
  background: var(--gold) !important;
  color: var(--green-deep) !important;
  padding: 9px 20px !important;
  border-radius: var(--r-xs) !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 3px 14px rgba(201,169,98,0.38) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--gold-light) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(201,169,98,0.5) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1010;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
  transform-origin: center;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero {
  position: relative;
  background: var(--green-deep);
  overflow: hidden;
  line-height: 0;
}

/* Fundo de formas decorativas */
.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hbs {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
}
.hbs-1 { width: 600px; height: 600px; background: var(--green-mid); top: -100px; right: -100px; }
.hbs-2 { width: 400px; height: 400px; background: var(--gold); bottom: -50px; left: -80px; opacity: 0.08; }
.hbs-3 { width: 300px; height: 300px; background: var(--green-muted); top: 50%; left: 40%; opacity: 0.12; }

/* Linha de ouro no topo */
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 30%, var(--gold-light) 50%, var(--gold) 70%, transparent 100%);
  z-index: 2;
  opacity: 0.7;
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 40px;
  align-items: center;
  padding: 80px 0 100px;
  width: 100%;
}

/* Texto do hero */
.hero-text { max-width: 580px; }

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,169,98,0.22);
  color: var(--gold-light);
  padding: 7px 18px;
  border-radius: var(--r-full);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-pill-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulseDot 2s ease-in-out infinite;
}

.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 4.4rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.hero-h1 em {
  font-style: italic;
  color: var(--gold);
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.58);
  line-height: 1.75;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.hstat {
  flex: 1;
  text-align: center;
}
.hstat-val {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}
.hstat-val sup {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold);
  vertical-align: super;
}
.hstat-lbl {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hstat-sep {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.08);
  flex-shrink: 0;
}

/* Hero banner full-width */
.hero-banner {
  display: block;
  width: 100%;
  line-height: 0;
}

.hero-banner-img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 3;
  opacity: 0.4;
  transition: opacity var(--t);
}
.hero-scroll-hint:hover { opacity: 0.7; }
.scroll-mouse {
  width: 22px; height: 34px;
  border: 1.5px solid rgba(255,255,255,0.5);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 6px;
}
.scroll-wheel {
  width: 3px; height: 7px;
  background: rgba(255,255,255,0.7);
  border-radius: 3px;
  animation: scrollWheel 1.6s ease-in-out infinite;
}
.hero-scroll-hint span {
  font-size: 0.62rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ══════════════════════════════════════════
   TRUST MARQUEE
══════════════════════════════════════════ */
.trust-strip {
  background: var(--green);
  overflow: hidden;
  padding: 0;
  border-top: 1px solid rgba(201,169,98,0.18);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.trust-strip-inner {
  position: relative;
  padding: 18px 0;
}
.trust-strip-inner::before,
.trust-strip-inner::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.trust-strip-inner::before { left: 0; background: linear-gradient(to right, var(--green), transparent); }
.trust-strip-inner::after  { right: 0; background: linear-gradient(to left, var(--green), transparent); }

.trust-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
}
.trust-strip:hover .trust-track { animation-play-state: paused; }

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 36px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  transition: color var(--t);
  border-right: 1px solid rgba(255,255,255,0.1);
}
.trust-item i { color: var(--gold); font-size: 1rem; }
.trust-item:hover { color: var(--white); }

/* ══════════════════════════════════════════
   SERVIÇOS — Immersive Accordion
══════════════════════════════════════════ */
#servicios { padding-bottom: 0; }
#servicios .section-header { margin-bottom: 56px; }

/* ── Accordion shell ── */
.svc-accordion {
  display: flex;
  height: 660px;
  overflow: hidden;
}

/* ── Individual panel ── */
.svc-panel {
  flex: 1;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: flex 0.72s cubic-bezier(0.4, 0, 0.2, 1);
  outline: none;
}
.svc-accordion:has(.svc-panel:hover) .svc-panel,
.svc-accordion:has(.svc-panel:focus-visible) .svc-panel { flex: 0.28; }
.svc-panel:hover,
.svc-panel:focus-visible { flex: 2.8 !important; }

/* ── Panel backgrounds ── */
.svc-p1 { background: linear-gradient(148deg, #071612 0%, #0f2820 45%, #1a4538 100%); }
.svc-p2 { background: linear-gradient(155deg, #050c07 0%, #080f0a 40%, #0c2016 100%); }
.svc-p3 { background: linear-gradient(140deg, #060c18 0%, #0a1528 50%, #091c16 100%); }
.svc-p4 { background: linear-gradient(148deg, #060810 0%, #0d0f1e 45%, #0a1220 100%); }

/* ── Bottom gradient for text readability ── */
.svc-glow {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.25) 45%, transparent 75%);
  z-index: 1;
  transition: background 0.6s;
}
.svc-panel:not(:hover):not(:focus-visible) .svc-glow {
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.1) 50%, transparent 80%);
}

/* ══════════════════════════════
   ART LAYER — Image Backgrounds
══════════════════════════════ */
.svc-art {
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: 0;
}

/* ── Full-panel background image ── */
.spa-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.32;
  transition: opacity 0.7s var(--ease);
}
.svc-panel:hover .spa-bg,
.svc-panel:focus-visible .spa-bg,
.svc-panel.is-active .spa-bg { opacity: 0.65; }

/* ── Logo background (Panel 1) — inverted: visible collapsed, fades on expand ── */
.spa-bg--logo {
  opacity: 0.55 !important;
  background-size: cover;
  background-position: center;
}
.svc-panel:hover .spa-bg--logo,
.svc-panel:focus-visible .spa-bg--logo,
.svc-panel.is-active .spa-bg--logo { opacity: 0 !important; }

/* Gradient placeholder variants */
.spa-bg--traffic {
  background-image: none !important;
  background: linear-gradient(135deg, #071510 0%, #1B4D3E 45%, #0d2318 80%, #0b1e16 100%);
  opacity: 1 !important;
}
.spa-bg--sistemas {
  background-image: none !important;
  background: linear-gradient(145deg, #0d1f18 0%, #142d22 55%, #0b1c15 100%);
  opacity: 1 !important;
}

/* ── Glow overlay — stronger for image panels ── */
.svc-glow {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top,
    rgba(0,0,0,0.88) 0%,
    rgba(0,0,0,0.55) 30%,
    rgba(0,0,0,0.12) 58%,
    transparent 100%);
  transition: background 0.6s;
}
.svc-panel:not(:hover):not(:focus-visible):not(.is-active) .svc-glow {
  background: linear-gradient(to top,
    rgba(0,0,0,0.75) 0%,
    rgba(0,0,0,0.35) 40%,
    transparent 75%);
}

/* ── Floating portfolio cards (desktop) ── */
.spa-cards {
  position: absolute; inset: 0;
  pointer-events: none; z-index: 2;
}
.spa-card {
  position: absolute; margin: 0;
  border-radius: 10px; overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.6);
  opacity: 0;
  transition:
    opacity 0.5s var(--ease),
    transform 0.72s cubic-bezier(0.34,1.56,0.64,1);
}
.spa-card img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.svc-panel:hover .spa-card,
.svc-panel:focus-visible .spa-card,
.svc-panel.is-active .spa-card { opacity: 1; }

/* Main card — right anchor, slight tilt */
.spa-card--main {
  width: 230px; height: 288px;
  top: 48%; left: 78%;
  transform: translate(-50%, -52%) rotate(-5deg) translateY(22px);
  z-index: 3;
}
.svc-panel:hover .spa-card--main,
.svc-panel:focus-visible .spa-card--main,
.svc-panel.is-active .spa-card--main {
  transform: translate(-50%, -55%) rotate(-5deg);
}
/* Mid card — center of the cluster */
.spa-card--mid {
  width: 200px; height: 250px;
  top: 44%; left: 64%;
  transform: translate(-50%, -50%) rotate(1deg) translateY(22px);
  z-index: 2;
}
.svc-panel:hover .spa-card--mid,
.svc-panel:focus-visible .spa-card--mid,
.svc-panel.is-active .spa-card--mid {
  transform: translate(-50%, -52%) rotate(1deg);
}
/* Accent card — leftmost of cluster, opposite tilt */
.spa-card--accent {
  width: 168px; height: 210px;
  top: 50%; left: 52%;
  transform: translate(-50%, -50%) rotate(7deg) translateY(22px);
  z-index: 1;
}
.svc-panel:hover .spa-card--accent,
.svc-panel:focus-visible .spa-card--accent,
.svc-panel.is-active .spa-card--accent {
  transform: translate(-50%, -50%) rotate(7deg);
}

/* ── Screenshot containers (Panel 3) ── */
.spa-screen {
  position: absolute;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 28px 72px rgba(0,0,0,0.65);
  opacity: 0;
  transition:
    opacity 0.5s var(--ease),
    transform 0.72s cubic-bezier(0.34,1.56,0.64,1);
}
.svc-panel:hover .spa-screen,
.svc-panel:focus-visible .spa-screen,
.svc-panel.is-active .spa-screen { opacity: 1; }

/* Panel 2 — single large screen, centered-right */
.spa-screen--traffic {
  width: 680px;
  top: 50%; left: 70%;
  transform: translate(-50%, -52%) rotate(-2deg) translateY(24px);
  z-index: 2;
}
.svc-panel:hover .spa-screen--traffic,
.svc-panel:focus-visible .spa-screen--traffic,
.svc-panel.is-active .spa-screen--traffic {
  transform: translate(-50%, -54%) rotate(-2deg);
}

/* Front — lowest on the staircase, rightmost */
.spa-screen--main {
  width: 360px;
  top: 72%; left: 80%;
  transform: translate(-50%, -50%) rotate(-2deg) translateY(24px);
  z-index: 3;
}
.svc-panel:hover .spa-screen--main,
.svc-panel:focus-visible .spa-screen--main,
.svc-panel.is-active .spa-screen--main {
  transform: translate(-50%, -50%) rotate(-2deg);
}
/* Mid — center of the staircase */
.spa-screen--mid {
  width: 310px;
  top: 48%; left: 68%;
  transform: translate(-50%, -50%) rotate(1deg) translateY(24px);
  z-index: 2;
}
.svc-panel:hover .spa-screen--mid,
.svc-panel:focus-visible .spa-screen--mid,
.svc-panel.is-active .spa-screen--mid {
  transform: translate(-50%, -50%) rotate(1deg);
}
/* Back — highest on the staircase, leftmost */
.spa-screen--back {
  width: 265px;
  top: 26%; left: 57%;
  transform: translate(-50%, -50%) rotate(3deg) translateY(24px);
  z-index: 1;
}
.svc-panel:hover .spa-screen--back,
.svc-panel:focus-visible .spa-screen--back,
.svc-panel.is-active .spa-screen--back {
  transform: translate(-50%, -50%) rotate(3deg);
}
/* Browser-bar chrome */
.spa-screen-bar {
  background: #1e1e1e;
  padding: 8px 12px;
  display: flex;
  gap: 6px;
  align-items: center;
}
.spa-screen-bar span {
  width: 10px; height: 10px;
  border-radius: 50%;
  display: block;
}
.spa-screen-bar span:nth-child(1) { background: #ff5f57; }
.spa-screen-bar span:nth-child(2) { background: #febc2e; }
.spa-screen-bar span:nth-child(3) { background: #28c840; }
.spa-screen img {
  width: 100%; display: block;
  object-fit: cover;
}

/* ── I.A. Badges (Panel 4) ── */
.spa-ia-badges {
  position: absolute; inset: 0;
  pointer-events: none; z-index: 2;
}
.spa-ia-badge {
  position: absolute;
  display: flex; align-items: center; gap: 9px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  padding: 9px 18px 9px 14px;
  color: rgba(255,255,255,0.85);
  font-family: var(--font-brand);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  white-space: nowrap;
  opacity: 0;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  transition:
    opacity 0.45s var(--ease),
    transform 0.65s cubic-bezier(0.34,1.56,0.64,1);
}
.spa-ia-badge i {
  font-size: 0.85rem;
  color: #7dd3fc; /* light-blue accent for IA */
}
/* Each badge: resting position (collapsed) */
.spa-ia-b1 { top: 22%; left: 55%; transform: translate(-50%,-50%) translateY(18px); }
.spa-ia-b2 { top: 36%; left: 72%; transform: translate(-50%,-50%) translateY(18px); }
.spa-ia-b3 { top: 52%; left: 60%; transform: translate(-50%,-50%) translateY(18px); }
.spa-ia-b4 { top: 66%; left: 75%; transform: translate(-50%,-50%) translateY(18px); }
.spa-ia-b5 { top: 40%; left: 85%; transform: translate(-50%,-50%) translateY(18px); }

/* Hover / active: appear and float up */
.svc-panel:hover .spa-ia-badge,
.svc-panel:focus-visible .spa-ia-badge,
.svc-panel.is-active .spa-ia-badge { opacity: 1; }

.svc-panel:hover .spa-ia-b1,
.svc-panel:focus-visible .spa-ia-b1,
.svc-panel.is-active .spa-ia-b1 { transform: translate(-50%,-50%) translateY(0); transition-delay: 0s; }
.svc-panel:hover .spa-ia-b2,
.svc-panel:focus-visible .spa-ia-b2,
.svc-panel.is-active .spa-ia-b2 { transform: translate(-50%,-50%) translateY(0); transition-delay: 0.07s; }
.svc-panel:hover .spa-ia-b3,
.svc-panel:focus-visible .spa-ia-b3,
.svc-panel.is-active .spa-ia-b3 { transform: translate(-50%,-50%) translateY(0); transition-delay: 0.14s; }
.svc-panel:hover .spa-ia-b4,
.svc-panel:focus-visible .spa-ia-b4,
.svc-panel.is-active .spa-ia-b4 { transform: translate(-50%,-50%) translateY(0); transition-delay: 0.21s; }
.svc-panel:hover .spa-ia-b5,
.svc-panel:focus-visible .spa-ia-b5,
.svc-panel.is-active .spa-ia-b5 { transform: translate(-50%,-50%) translateY(0); transition-delay: 0.28s; }

/* Subtle animated glow behind badge cluster */
.svc-p4 .svc-glow {
  background: linear-gradient(to top,
    rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.5) 35%,
    rgba(10,18,40,0.2) 60%, transparent 100%);
}

/* ── Placeholder icon (Panel 3) ── */
.spa-ph {
  position: absolute;
  top: 44%; left: 55%;
  transform: translate(-50%, -50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.14);
  font-family: var(--font-brand);
  font-size: 0.62rem; letter-spacing: 0.15em; text-transform: uppercase;
  pointer-events: none; z-index: 2;
  transition: opacity 0.4s;
}
.spa-ph i { font-size: 2rem; }
.svc-panel:hover .spa-ph,
.svc-panel:focus-visible .spa-ph,
.svc-panel.is-active .spa-ph { opacity: 0; }

/* ══════════════════════════════
   IS-ACTIVE — click/touch toggle
   (mirrors all :hover states)
══════════════════════════════ */
.svc-accordion:has(.svc-panel.is-active) .svc-panel { flex: 0.28; }
/* Use flex-grow only (no flex-basis: 0) so height: 480px works on mobile */
.svc-panel.is-active { flex-grow: 2.8 !important; flex-shrink: 0.28 !important; }
.svc-panel.is-active .svc-panel-body  { opacity: 1 !important; transform: translateY(0) !important; }
.svc-panel.is-active .svc-panel-side  { opacity: 0; transform: translateX(-50%) translateY(8px); pointer-events: none; }
.svc-panel.is-active .svc-glow        { background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.55) 30%, rgba(0,0,0,0.12) 58%, transparent 100%); }

/* ══════════════════════════════
   COLLAPSED SIDE LABEL
══════════════════════════════ */
.svc-panel-side {
  position: absolute;
  bottom: 44px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  z-index: 3;
  transition: opacity 0.3s 0s, transform 0.3s;
}
.svc-panel:hover .svc-panel-side,
.svc-panel:focus-visible .svc-panel-side {
  opacity: 0;
  transform: translateX(-50%) translateY(8px);
  pointer-events: none;
}
.svc-side-num {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: rgba(201,169,98,0.55);
  letter-spacing: 0.2em;
}
.svc-side-label {
  font-family: var(--font-brand);
  font-size: 0.65rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

/* ══════════════════════════════
   EXPANDED BODY CONTENT
══════════════════════════════ */
.svc-panel-body {
  position: absolute;
  bottom: 0; left: 0;
  width: 54%;
  padding: 0 44px 48px;
  z-index: 3;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.38s 0.18s, transform 0.38s 0.18s;
}
.svc-panel:hover .svc-panel-body,
.svc-panel:focus-visible .svc-panel-body {
  opacity: 1;
  transform: translateY(0);
}
.svc-pbadge {
  display: inline-block;
  background: var(--gold);
  color: var(--green-deep);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--r-full);
  margin-bottom: 16px;
}
.svc-pghost {
  font-family: var(--font-display);
  font-size: 6.5rem;
  font-weight: 700;
  color: rgba(201,169,98,0.07);
  line-height: 0.85;
  margin-bottom: 10px;
  user-select: none;
}
.svc-ptitle {
  font-family: var(--font-display);
  font-size: 2.3rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 12px;
}
.svc-ptitle em { font-style: italic; color: var(--gold); }

.svc-pdesc {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.58);
  line-height: 1.7;
  margin-bottom: 18px;
  max-width: 360px;
}
.svc-plist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 24px;
}
.svc-plist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
}
.svc-plist li i { color: var(--gold); font-size: 0.62rem; flex-shrink: 0; }
.svc-pcta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-brand);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid rgba(201,169,98,0.35);
  padding-bottom: 3px;
  transition: gap 0.25s, border-color 0.25s;
}
.svc-pcta:hover { gap: 14px; border-color: var(--gold); }

/* ══════════════════════════════════════════
   PROCESSO — Direção A Editorial
══════════════════════════════════════════ */
/* Timeline grid */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 64px;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 24px 0;
}

/* Icon circle */
.ps-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(201,169,98,0.1);
  border: 1px solid rgba(201,169,98,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 20px;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease-spring);
}
.process-step:hover .ps-icon-wrap {
  background: rgba(201,169,98,0.18);
  border-color: rgba(201,169,98,0.6);
  transform: translateY(-3px);
}

/* Número editorial */
.ps-num {
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 6vw, 6.5rem);
  font-weight: 200;
  line-height: 0.9;
  color: rgba(201,169,98,0.7);
  letter-spacing: -0.04em;
  margin-bottom: 0;
  user-select: none;
  transition: color 0.4s var(--ease);
}
.process-step:hover .ps-num {
  color: rgba(201,169,98,0.95);
}

/* Timeline connector — linha horizontal com dot central */
.ps-connector {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(201,169,98,0.25) 15%,
    rgba(201,169,98,0.25) 85%,
    transparent 100%
  );
  position: relative;
  margin: 20px 0 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* First step: line starts at center → right */
.process-step:first-child .ps-connector {
  background: linear-gradient(90deg,
    transparent 0%,
    transparent 50%,
    rgba(201,169,98,0.25) 50%,
    transparent 100%
  );
}
/* Last step: line goes left → center */
.process-step:last-child .ps-connector {
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(201,169,98,0.25) 0%,
    rgba(201,169,98,0.25) 50%,
    transparent 50%
  );
}

.ps-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px rgba(201,169,98,0.6);
  flex-shrink: 0;
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s var(--ease);
}
.process-step:hover .ps-dot {
  transform: scale(1.5);
  box-shadow: 0 0 22px rgba(201,169,98,0.9);
}

/* Body */
.ps-body {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.ps-body h4 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.25;
}
.ps-body p {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.58);
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 220px;
}

.ps-time {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,169,98,0.08);
  border: 1px solid rgba(201,169,98,0.2);
  padding: 6px 14px;
  border-radius: var(--r-full);
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}
.process-step:hover .ps-time {
  background: rgba(201,169,98,0.14);
  border-color: rgba(201,169,98,0.4);
}
.ps-time i { font-size: 0.65rem; }

/* Proceso — título mais fino, só nessa seção */
#proceso .sec-title { font-weight: 300; }

/* ══════════════════════════════════════════
   PORTFÓLIO — INFINITE SCROLL GALLERY
══════════════════════════════════════════ */
.pf-section {
  padding-top: 88px;
  padding-bottom: 0;
  background: var(--cream-warm);
  position: relative;
  overflow: hidden;
}
.pf-section::before {
  content: '';
  position: absolute;
  inset: -40%;
  width: 180%; height: 180%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)' opacity='0.06'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}
.pf-section .container:first-child { padding-bottom: 0; }
.pf-section .container:last-child { padding-top: 48px; padding-bottom: 40px; }

/* Galeria full-width */
.pf-gallery {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 40px 0 48px;
  mask-image: linear-gradient(90deg, transparent 0%, black 7%, black 93%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 7%, black 93%, transparent 100%);
}

/* Pausa ao hover na galeria toda */
.pf-gallery:hover .pf-reel { animation-play-state: paused; }

.pf-row { overflow: hidden; }

/* Faixas */
.pf-reel {
  display: flex;
  gap: 16px;
  width: max-content;
  will-change: transform;
}

@keyframes scrollLeft {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes scrollRight {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

.pf-reel-a { animation: scrollLeft 55s linear infinite; }
.pf-reel-b { animation: scrollRight 48s linear infinite; }

/* Cada item */
.pf-item {
  position: relative;
  flex-shrink: 0;
  width: 280px;
  height: 280px;
  border-radius: var(--r-lg);
  overflow: hidden;
  cursor: pointer;
  box-shadow: none;
  border: 1px solid rgba(201,169,98,0.15);
}

/* Fila A — cards mais altos */
.pf-reel-a .pf-item { height: 320px; }

/* Fila B — cards mais baixos */
.pf-reel-b .pf-item { height: 240px; }

.pf-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
}

.pf-item:hover img { transform: scale(1.07); }

/* Overlay — sempre presente de forma sutil, intensifica no hover */
.pf-item-over {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(11, 30, 22, 0.90) 0%,
    rgba(11, 30, 22, 0.35) 50%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 22px 20px;
  opacity: 0;
  transition: opacity 0.32s var(--ease);
}

.pf-item:hover .pf-item-over { opacity: 1; }

.pf-item-client {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}

.pf-item-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--green-deep);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--r-full);
}

/* Subtitle editorial do portfólio */
.pf-sub-label {
  font-family: var(--font-brand);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
}

.pf-sep {
  color: var(--gold);
  margin: 0 6px;
  font-weight: 400;
}

/* Acento verde no subtítulo do portfólio */
.pf-sub-accent {
  color: var(--green);
  font-weight: 700;
  font-style: normal;
}

.pf-cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--green-deep);
  border: none;
  border-radius: var(--r-lg);
  padding: 32px 40px;
}
.pf-cta-text { display: flex; flex-direction: column; gap: 8px; }
.pf-cta-text strong { font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; color: var(--white); line-height: 1.3; }
.pf-cta-text span { font-size: 0.88rem; color: rgba(245,240,235,0.65); }

/* Portfolio placeholders por categoría */
.pf-ph-diseno { background: linear-gradient(135deg, #1B4D3E 0%, #2a6354 60%, #3d7a69 100%); }
.pf-ph-ads    { background: linear-gradient(135deg, #7a5c20 0%, #a88640 60%, #C9A962 100%); }
.pf-ph-web    { background: linear-gradient(135deg, #1a3a6b 0%, #1d4ed8 60%, #3b82f6 100%); }
.pf-ph-marca  { background: linear-gradient(135deg, #3b0764 0%, #6d28d9 60%, #8b5cf6 100%); }
.pf-ph-fresh  { background: linear-gradient(135deg, #0b1e16 0%, #1B4D3E 60%, #2a6354 100%); }

.pf-ph-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: rgba(255,255,255,0.35);
  pointer-events: none;
}
.pf-ph-inner i { font-size: 2.2rem; }
.pf-ph-inner span {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  max-width: 140px;
  text-align: center;
  line-height: 1.4;
}

/* ──── Lightbox ──── */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
}
.lightbox.open { display: flex; }

.lb-close {
  position: absolute;
  top: 20px; right: 24px;
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: var(--white);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--t);
  z-index: 2;
}
.lb-close:hover { background: rgba(255,255,255,0.2); }

.lb-nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: var(--white);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--t);
  z-index: 2;
}
.lb-nav:hover { background: rgba(255,255,255,0.22); }
.lb-prev { left: 20px; }
.lb-next { right: 20px; }

.lb-content {
  max-width: 800px;
  width: 90%;
  text-align: center;
}
.lb-content img {
  max-height: 70vh;
  object-fit: contain;
  border-radius: var(--r-lg);
  box-shadow: var(--s-xl);
  width: 100%;
}
.lb-caption {
  margin-top: 20px;
}
.lb-caption h4 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 6px;
}
.lb-caption p { font-size: 0.88rem; color: rgba(255,255,255,0.55); }

/* ══════════════════════════════════════════
   NOSOTROS
══════════════════════════════════════════ */
/* NOSOTROS — Split Edition (A+B+C) */
#nosotros { padding: 0; overflow: hidden; }

.about-split {
  display: flex;
  align-items: stretch;
  min-height: 700px;
}

/* LEFT — dark panel */
.about-dark {
  flex: 0 0 42%;
  background: var(--green-deep);
  position: relative;
  overflow: hidden;
}

/* Carousel stretches to match right panel height */
.about-carousel {
  min-height: 700px;
}
.about-dark::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.04;
  pointer-events: none;
}
.about-dark::after {
  content: '';
  position: absolute;
  top: 10%; bottom: 10%;
  right: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(201,169,98,0.3) 30%, rgba(201,169,98,0.3) 70%, transparent);
}
/* ── Founders Carousel ── */
.about-carousel {
  cursor: default;
  /* height grows via flex align-items: stretch */
}

.ac-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s ease;
  pointer-events: none;
}
.ac-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

/* Full-cover photo */
.ac-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.ac-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Gradient overlay — editorial depth */
.ac-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to right, rgba(0,0,0,0.25) 0%, transparent 55%),
    linear-gradient(
      to bottom,
      rgba(0,0,0,0.0) 0%,
      rgba(0,0,0,0.1) 30%,
      rgba(0,0,0,0.65) 58%,
      rgba(0,0,0,0.92) 100%
    );
}

/* Text body — anchored to bottom */
.ac-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  padding: 0 36px 80px;
}

/* Role — horizontal rule style */
.ac-role {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-brand);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.ac-role::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
  flex-shrink: 0;
}

/* Name — large editorial, light weight */
.ac-name {
  font-family: var(--font-display);
  font-size: clamp(3.6rem, 7vw, 5.5rem);
  font-weight: 300;
  color: #fff;
  margin: 0 0 10px;
  line-height: 0.95;
  letter-spacing: -0.02em;
}

/* Origin — gold dateline */
.ac-origin {
  font-size: 0.72rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 20px;
  opacity: 0.8;
}

/* Bio — pull quote style */
.ac-bio {
  position: relative;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255,255,255,0.82);
  margin: 0;
  padding-left: 20px;
  border-left: 2px solid rgba(201,169,98,0.5);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Dots */
.ac-dots {
  position: absolute;
  bottom: 20px;
  left: 40px;
  z-index: 3;
  display: flex;
  gap: 8px;
}
.ac-dot {
  width: 24px;
  height: 3px;
  border-radius: 2px;
  border: none;
  background: rgba(255,255,255,0.25);
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, width 0.3s;
}
.ac-dot.is-active {
  background: var(--gold);
  width: 40px;
}

/* Group slide — manifesto + 3 founders */
.ac-slide--group {
  background: var(--green-deep);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ac-group-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 48px 40px 72px;
  width: 100%;
}

.ac-group-logo {
  width: 140px;
  height: 140px;
  object-fit: contain;
  opacity: 1;
}

.ac-manifesto {
  margin: 0;
  padding: 0;
  border: none;
  text-align: center;
}

.ac-manifesto-line {
  display: block;
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 400;
  color: rgba(255,255,255,0.65);
  line-height: 1.3;
  letter-spacing: 0.01em;
}

.ac-manifesto--gold {
  color: var(--gold);
  font-size: 2.4rem;
}
.ac-manifesto--gold em { font-style: italic; font-weight: 300; }

.ac-group-founders {
  display: flex;
  gap: 28px;
  justify-content: center;
}

.ac-founder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.ac-founder-av {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  border: 2px solid rgba(201,169,98,0.4);
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}
.ac-founder-av img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.ac-founder:hover .ac-founder-av {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.ac-founder-name {
  font-family: var(--font-display);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.82);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  margin: 0;
}

.ac-founder-role {
  font-size: 0.68rem;
  color: rgba(201,169,98,0.65);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  margin: 0;
}

/* RIGHT — cream panel */
.about-content {
  flex: 1;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E"),
    linear-gradient(160deg, #f7f2ec 0%, var(--cream) 50%, #ede7df 100%);
  background-blend-mode: overlay, normal;
  padding: 72px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
/* B — Ghost FC visível */
.about-content::before {
  content: 'FC';
  position: absolute;
  right: 48px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: 18rem;
  font-weight: 700;
  color: rgba(27,77,62,0.07);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.about-content > * { position: relative; z-index: 1; }
.about-content .sec-pill { margin-bottom: 16px; }
.about-content .sec-title { margin-bottom: 20px; }

.about-desc {
  font-size: 0.96rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 12px;
}

.about-trust {
  background: rgba(27,77,62,0.07);
  border: 1px solid rgba(27,77,62,0.1);
  border-radius: var(--r);
  padding: 20px 24px;
  margin: 20px 0 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.at-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.87rem;
  color: var(--text-mid);
}
.at-item i { color: var(--green); font-size: 0.85rem; flex-shrink: 0; }

.about-values {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}
.av-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 20px;
  background: var(--white);
  border-radius: var(--r);
  border: 1px solid var(--gray-200);
  transition: all var(--t);
}
.av-item:hover {
  background: var(--green-light);
  border-color: var(--green-soft);
  transform: translateX(4px);
}
.av-icon {
  width: 36px; height: 36px;
  background: var(--green-light);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--t);
}
.av-icon i { color: var(--green); font-size: 0.9rem; }
.av-item:hover .av-icon { background: var(--green); }
.av-item:hover .av-icon i { color: var(--white); }
.av-item strong { display: block; font-size: 0.9rem; font-weight: 600; color: var(--text-dark); margin-bottom: 3px; }
.av-item p { font-size: 0.82rem; color: var(--text-light); line-height: 1.55; margin: 0; }

/* Stats row */
.about-stats {
  display: flex;
  align-items: center;
  padding: 24px 0 0;
  border-top: 1px solid rgba(27,77,62,0.12);
}
.as-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.as-item strong {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--green);
  line-height: 1;
  font-weight: 700;
}
.as-unit {
  font-size: 1.1rem;
  color: var(--gold);
}
.as-item span {
  font-size: 0.67rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.as-divider {
  width: 1px;
  height: 40px;
  background: rgba(27,77,62,0.12);
  flex-shrink: 0;
}

/* ── Sprint 3: personalidade visual ── */

/* A — Título monumental */
.about-title {
  font-size: clamp(3.2rem, 5vw, 5rem) !important;
  line-height: 1.05 !important;
}

/* Destaque texto */
.about-highlight {
  background: rgba(201,169,98,0.14);
  color: var(--green);
  font-weight: 700;
  border-radius: 3px;
  padding: 1px 5px;
  font-style: normal;
}

/* Trust list — numerais dourados */
.at-num {
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--gold);
  opacity: 0.55;
  line-height: 1;
  flex-shrink: 0;
  width: 36px;
}

/* C — Values cards dark */
.av-item--styled {
  border: none;
  padding: 18px 22px;
  background: var(--green-deep);
  border-radius: var(--r);
  border-left: 3px solid var(--gold);
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}
.av-item--styled:hover {
  transform: translateX(5px);
  border-left-color: var(--gold-light);
}
.av-num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
  opacity: 0.7;
  line-height: 1;
  flex-shrink: 0;
  padding-top: 2px;
  width: 40px;
}
.av-item--styled strong {
  color: var(--white) !important;
  font-size: 0.95rem !important;
}
.av-item--styled p {
  color: rgba(245,240,235,0.55) !important;
}

/* D — Stats maiores com divisor ouro */
.as-item strong {
  font-size: clamp(3rem, 4vw, 4.4rem) !important;
  font-weight: 500 !important;
  color: var(--green-deep) !important;
  letter-spacing: -0.02em;
}
.as-divider {
  background: rgba(201,169,98,0.5) !important;
  height: 52px !important;
}
.as-item span {
  font-size: 0.78rem !important;
  color: var(--green) !important;
  letter-spacing: 0.14em;
  font-weight: 600;
}

/* ══════════════════════════════════════════
   PREÇOS — Dark Premium
══════════════════════════════════════════ */

/* Section wrapper */
.section-pricing {
  position: relative;
  background: var(--green-deep);
  overflow: hidden;
}

/* Grid lines decoration */
.pricing-bg-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(201,169,98,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,169,98,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 0;
}


.section-pricing .container { position: relative; z-index: 1; }

/* Toggle */
.pricing-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 99px;
  padding: 4px;
  margin-top: 28px;
}
.ptog-btn {
  position: relative;
  z-index: 2;
  padding: 8px 22px;
  border-radius: 99px;
  border: none;
  background: transparent;
  color: rgba(255,255,255,0.55);
  font-family: var(--font-brand);
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.25s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.ptog-btn.is-active { color: var(--green-deep); }
.ptog-save {
  background: rgba(201,169,98,0.25);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 99px;
}
.ptog-btn.is-active .ptog-save {
  background: rgba(201,169,98,0.3);
  color: var(--green-deep);
}
.ptog-pill {
  position: absolute;
  top: 4px;
  left: 4px;
  height: calc(100% - 8px);
  width: calc(50% - 4px);
  background: #fff;
  border-radius: 99px;
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
  z-index: 1;
}
.pricing-toggle.is-yearly .ptog-pill {
  transform: translateX(calc(100% + 8px));
}

/* Note bar */
.pricing-note {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r);
  padding: 14px 20px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.pricing-note--dark { /* inherits above */ }
.pricing-note i { color: var(--gold); }
.pricing-note a { color: var(--gold); font-weight: 600; }
.pricing-note a:hover { text-decoration: underline; }

/* Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
  padding-top: 20px;
}

/* Base card */
.price-card {
  background: linear-gradient(160deg, rgba(255,255,255,0.055) 0%, rgba(255,255,255,0.025) 100%);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-xl);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s;
  backdrop-filter: blur(6px);
}
.price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
  border-color: rgba(255,255,255,0.18);
}

/* Popular card */
.price-card--popular {
  background: linear-gradient(160deg, rgba(27,77,62,0.55) 0%, rgba(11,30,22,0.9) 100%);
  border-color: rgba(201,169,98,0.5);
  box-shadow: 0 0 50px rgba(201,169,98,0.12);
  transform: translateY(-8px) scale(1.02);
  overflow: visible;
}
.price-card--popular::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 30%, rgba(255,220,130,0.9) 50%, var(--gold) 70%, transparent 100%);
  background-size: 200% auto;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: shimmerBorder 3s linear infinite;
  pointer-events: none;
  opacity: 0.8;
}
.price-card--popular:hover {
  transform: translateY(-14px) scale(1.02);
  box-shadow: 0 40px 80px rgba(0,0,0,0.45), 0 0 60px rgba(201,169,98,0.18);
}

/* Ensure card content is above glow pseudo */
.price-card--popular > * { position: relative; z-index: 1; }

/* Popular badge */
.price-popular-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--green-deep);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 7px 20px;
  border-radius: var(--r-full);
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(201,169,98,0.45);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Header */
.price-header { margin-bottom: 24px; }
.price-plan-name {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: rgba(255,255,255,0.92);
  margin-bottom: 12px;
}

.price-amount {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  margin-bottom: 8px;
}
.price-currency {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  padding-bottom: 10px;
}
.price-number {
  font-family: var(--font-display);
  font-size: 3.8rem;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  transition: opacity 0.18s, transform 0.18s;
}
.price-number.flip {
  opacity: 0;
  transform: translateY(-8px);
}
.price-period-wrap {
  display: flex;
  flex-direction: column;
  padding-bottom: 8px;
  gap: 2px;
}
.price-per {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.4);
}
.price-yearly-note {
  font-size: 0.7rem;
  color: var(--gold);
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.3s, max-height 0.3s;
}
.pricing-toggle.is-yearly ~ * .price-yearly-note,
.is-yearly-active .price-yearly-note {
  opacity: 1;
  max-height: 30px;
}

.price-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
}

.price-saving {
  display: inline-block;
  background: rgba(201,169,98,0.15);
  border: 1px solid rgba(201,169,98,0.25);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--r-sm);
  margin-top: 10px;
}

/* CTA buttons */
.price-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  border-radius: var(--r);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.85);
  font-family: var(--font-brand);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: background 0.25s, border-color 0.25s, color 0.25s;
  margin-bottom: 24px;
}
.price-cta:hover {
  background: rgba(255,255,255,0.13);
  border-color: rgba(255,255,255,0.28);
  color: #fff;
}
.price-cta--gold {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--green-deep);
  font-weight: 700;
}
.price-cta--gold:hover {
  background: var(--gold-light, #d4b06a);
  border-color: var(--gold-light, #d4b06a);
  color: var(--green-deep);
}

/* Divider */
.price-divider {
  position: relative;
  text-align: center;
  margin-bottom: 20px;
}
.price-divider::before,
.price-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: calc(50% - 60px);
  height: 1px;
  background: rgba(255,255,255,0.1);
}
.price-divider::before { left: 0; }
.price-divider::after { right: 0; }
.price-divider span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  background: transparent;
  padding: 0 8px;
}

/* Features list */
.price-features {
  flex: 1;
  list-style: none;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.price-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.87rem;
  color: rgba(255,255,255,0.72);
}
.price-features li i {
  font-size: 0.8rem;
  color: var(--gold);
  flex-shrink: 0;
  width: 16px;
  text-align: center;
}
.price-feat--no {
  color: rgba(255,255,255,0.25) !important;
}
.price-feat--no i {
  color: rgba(255,255,255,0.2) !important;
}

/* Guarantee */
.price-guarantee {
  text-align: center;
  font-size: 0.76rem;
  color: rgba(255,255,255,0.3);
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.price-guarantee i { color: var(--gold); opacity: 0.6; }

/* Trust bar dark */
.pricing-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  margin-top: 48px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-lg);
  padding: 20px 32px;
}
.pricing-trust--dark { /* inherits */ }
.pt-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  padding: 6px 20px;
}
.pt-item i { color: var(--gold); opacity: 0.7; }
.pt-sep { width: 1px; height: 20px; background: rgba(255,255,255,0.08); }

/* ══════════════════════════════════════════
   TESTIMONIOS CARROSSEL
══════════════════════════════════════════ */
.testi-carousel {
  margin-bottom: 60px;
  overflow: hidden;
}

.testi-track {
  display: flex;
  transition: transform 0.5s var(--ease);
}

.testi-slide {
  flex: 0 0 100%;
  padding: 0 8px;
}

.testi-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--r-xl);
  padding: 40px 44px;
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  transition: transform var(--t);
}
.testi-card-featured {
  background: rgba(255,255,255,0.08);
  border-color: rgba(201,169,98,0.28);
  box-shadow: 0 0 0 1px rgba(201,169,98,0.15);
  animation: glowPulse 4s ease-in-out infinite;
}

.testi-result {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.7);
  padding: 7px 18px;
  border-radius: var(--r-full);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}
.testi-result-gold {
  background: rgba(201,169,98,0.12);
  border-color: rgba(201,169,98,0.25);
  color: var(--gold);
}

.testi-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 20px;
  color: var(--gold);
  font-size: 0.9rem;
}

.testi-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  color: rgba(255,255,255,0.82);
  line-height: 1.65;
  margin-bottom: 28px;
  quotes: '"' '"';
}
.testi-text::before { content: open-quote; color: var(--gold); font-size: 1.4em; line-height: 0; vertical-align: -0.3em; }
.testi-text::after  { content: close-quote; color: var(--gold); font-size: 1.4em; line-height: 0; vertical-align: -0.3em; }

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testi-av {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.testi-author strong { display: block; color: var(--white); font-size: 0.95rem; }
.testi-author span { display: block; font-size: 0.8rem; color: rgba(255,255,255,0.45); margin-top: 2px; }
.testi-service {
  font-size: 0.72rem !important;
  color: var(--gold) !important;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.testi-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 32px;
}

.testi-arrow {
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 50%;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--t);
}
.testi-arrow:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--green-deep);
}

.testi-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}
.testi-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  border: none;
  cursor: pointer;
  transition: all var(--t);
}
.testi-dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}

/* Trust metrics */
.trust-metrics {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-lg);
  padding: 28px;
  flex-wrap: wrap;
}
.tm-item {
  flex: 1;
  text-align: center;
  padding: 0 24px;
  min-width: 120px;
}
.tm-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}
.tm-item span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.42);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.tm-stars { display: flex; gap: 3px; justify-content: center; color: var(--gold); font-size: 0.75rem; margin-bottom: 4px; }
.tm-sep { width: 1px; height: 48px; background: rgba(255,255,255,0.08); flex-shrink: 0; }

/* ══════════════════════════════════════════
   CTA BAND
══════════════════════════════════════════ */
.cta-band {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 50%, var(--green-mid) 100%);
}
.cta-band::after {
  content: '';
  position: absolute;
  inset: -40%;
  width: 180%; height: 180%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  animation: grainShift 8s steps(2) infinite;
}
.cta-band-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 70% 80% at 70% 50%, rgba(201,169,98,0.1) 0%, transparent 65%),
    url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
}

.cta-band-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.cta-band-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.8);
  padding: 6px 16px;
  border-radius: var(--r-full);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.cta-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulseDot 2s ease-in-out infinite;
}
.cta-band-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 12px;
}
.cta-band-text p { font-size: 0.95rem; color: rgba(255,255,255,0.65); }
.cta-band-text strong { color: var(--white); }

.cta-band-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.cta-band-micro {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.08em;
}

/* ══════════════════════════════════════════
   CONTATO
══════════════════════════════════════════ */

/* Dark section radial accent */
#contacto {
  background-image: radial-gradient(ellipse at 20% 60%, rgba(201,169,98,0.08) 0%, transparent 55%);
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  align-items: start;
}

.contact-sub {
  font-size: 0.96rem;
  color: rgba(245,240,235,0.7);
  margin: 16px 0 36px;
  line-height: 1.7;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 8px;
}

.ci-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,169,98,0.2);
  border-radius: var(--r);
  transition: all var(--t);
  cursor: pointer;
}
.ci-row:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(201,169,98,0.45);
  transform: translateX(4px);
}
.ci-row-plain { cursor: default; }
.ci-row-plain:hover { transform: none; background: rgba(255,255,255,0.06); border-color: rgba(201,169,98,0.2); }

.ci-icon {
  width: 44px; height: 44px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}
.ci-wa  { background: rgba(37,211,102,0.15); color: #25D366; }
.ci-em  { background: rgba(201,169,98,0.18); color: var(--gold); }
.ci-ig  { background: rgba(225,48,108,0.12); color: #E1306C; }
.ci-map { background: rgba(27,77,62,0.5); color: var(--gold); }

.ci-row > div:nth-child(2) { flex: 1; }
.ci-row strong { display: block; font-size: 0.87rem; font-weight: 600; color: var(--cream); margin-bottom: 2px; }
.ci-row span { font-size: 0.82rem; color: rgba(245,240,235,0.6); }
.ci-arr { color: rgba(245,240,235,0.3); font-size: 0.75rem; transition: transform var(--t); }
.ci-row:hover .ci-arr { color: var(--gold); transform: translateX(4px); }

/* Trust badge */
.ct-trust-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  padding: 13px 18px;
  background: rgba(201,169,98,0.1);
  border: 1px solid rgba(201,169,98,0.28);
  border-radius: var(--r);
  font-family: var(--font-brand);
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.ct-trust-row i { font-size: 1rem; flex-shrink: 0; }

/* Formulário */
.contact-form-box {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-xl);
  padding: 44px 40px;
}

.form-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
  line-height: 1.2;
}
.form-title em { font-style: italic; color: var(--green); }

.form-sub {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 28px;
}

.contact-form { display: flex; flex-direction: column; gap: 18px; }

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.fg { display: flex; flex-direction: column; gap: 7px; }
.fg label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--text-dark);
  text-transform: uppercase;
}
.lbl-opt { font-weight: 400; color: var(--text-light); text-transform: none; }

.fg input, .fg textarea, .fg select {
  padding: 13px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-sm);
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color var(--t), box-shadow var(--t);
  outline: none;
}
.fg input:focus, .fg textarea:focus {
  border-color: var(--green);
  border-width: 2px;
  box-shadow: 0 0 0 4px rgba(27,77,62,0.12);
}
.fg textarea { resize: none; min-height: 90px; }

.service-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.chip input { display: none; }
.chip span {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-full);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-mid);
  cursor: pointer;
  transition: all var(--t);
  background: var(--white);
}
.chip input:checked + span {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
  box-shadow: 0 3px 12px rgba(27,77,62,0.22);
}
.chip span:hover { border-color: var(--green); color: var(--green); }

.form-trust {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.form-trust i { color: var(--green); }

/* Toast */
.form-toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--green);
  color: var(--white);
  padding: 14px 28px;
  border-radius: var(--r-full);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 500;
  box-shadow: var(--s-lg);
  z-index: 9000;
  transition: transform 0.4s var(--ease-spring);
}
.form-toast.show { transform: translateX(-50%) translateY(0); }
.form-toast i { color: #6ee7b7; }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.footer {
  background: var(--green-deep);
  padding: 72px 0 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  margin-top: 16px;
  max-width: 280px;
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}
.footer-socials a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  transition: all var(--t);
}
.footer-socials a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--green-deep);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col li a, .footer-col li span {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.38);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color var(--t);
}
.footer-col li a:hover { color: rgba(255,255,255,0.85); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  gap: 16px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.25); }
.footer-legal {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.8rem;
}
.footer-legal a { color: rgba(255,255,255,0.28); }
.footer-legal a:hover { color: rgba(255,255,255,0.65); }
.footer-legal span { color: rgba(255,255,255,0.15); }

/* WhatsApp Float */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 58px; height: 58px;
  background: var(--wa-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  z-index: 800;
  transition: transform var(--t), box-shadow var(--t);
}
.wa-float:hover { transform: scale(1.12) translateY(-3px); box-shadow: 0 12px 40px rgba(37,211,102,0.6); }
.wa-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  white-space: nowrap;
  background: var(--green-deep);
  color: var(--white);
  padding: 6px 14px;
  border-radius: var(--r-sm);
  font-size: 0.78rem;
  font-weight: 500;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t);
  box-shadow: var(--s);
}
.wa-float:hover .wa-tooltip { opacity: 1; }

/* Modal Legal */
.legal-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  z-index: 9000;
  display: none;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
  padding: 24px;
}
.legal-modal.open { display: flex; }
.legal-modal-box {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 44px 48px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--s-xl);
}
.legal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  background: var(--gray-100);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--text-mid);
  transition: background var(--t);
}
.legal-close:hover { background: var(--gray-200); }
#legalContent h2 { font-family: var(--font-display); font-size: 1.8rem; margin-bottom: 16px; color: var(--text-dark); }
#legalContent p, #legalContent li { font-size: 0.9rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 12px; }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1100px) {
  .hero-layout { grid-template-columns: 1fr 1fr; }
  .svc-accordion { height: 560px; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-grid > .footer-col:last-child { display: none; }
}

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

  /* Navbar mobile */
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; right: 0;
    width: min(320px, 85vw);
    height: 100vh;
    background: var(--green-deep);
    flex-direction: column;
    align-items: flex-start;
    padding: 88px 32px 40px;
    gap: 20px;
    transform: translateX(100%);
    transition: transform 0.35s var(--ease);
    z-index: 1005;
    border-left: 1px solid rgba(255,255,255,0.07);
    box-shadow: -12px 0 48px rgba(0,0,0,0.4);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 1.1rem; letter-spacing: 0.04em; }
  .nav-cta { margin-top: 8px; }

  /* Hero */
  .hero-layout {
    grid-template-columns: 1fr;
    padding: 60px 0 80px;
    gap: 48px;
  }
  .hero-visual { order: -1; justify-content: center; }
  .hero-banner { max-width: 100%; }
  .hero-banner-img { border-radius: var(--r-lg); }

  /* ── Serviços mobile: accordion vertical ── */
  .svc-accordion { flex-direction: column; height: auto; gap: 2px; }

  /* Todos os painéis: sem flex horizontal, viram cards com min-height */
  .svc-panel,
  .svc-panel:hover,
  .svc-panel:focus-visible,
  .svc-accordion:has(.svc-panel:hover) .svc-panel,
  .svc-accordion:has(.svc-panel:focus-visible) .svc-panel,
  .svc-accordion:has(.svc-panel.is-active) .svc-panel {
    flex: none !important;
    height: auto !important;
    min-height: 220px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-end !important;
  }

  /* Body: posição normal (não absoluta), empurrado pro fundo pelo flex */
  .svc-panel-body {
    position: relative !important;
    bottom: auto !important; left: auto !important;
    width: 100% !important;
    padding: 0 24px 28px !important;
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .svc-panel-side { display: none; }

  /* COLLAPSED: ghost + título apenas */
  .svc-pghost { font-size: 3.5rem; margin-bottom: -6px; }
  .svc-ptitle  { font-size: 1.55rem; margin-bottom: 0; }
  .svc-pdesc,
  .svc-plist,
  .svc-pcta,
  .svc-pbadge { display: none !important; }

  /* ACTIVE: mostra conteúdo completo */
  .svc-accordion .svc-panel.is-active {
    min-height: 380px !important;
  }
  .svc-accordion .svc-panel.is-active .svc-pghost { font-size: 3.8rem; margin-bottom: -8px; }
  .svc-accordion .svc-panel.is-active .svc-ptitle  { font-size: 1.65rem; margin-bottom: 10px; }
  .svc-accordion .svc-panel.is-active .svc-pbadge  { display: inline-block !important; margin-bottom: 12px; }
  .svc-accordion .svc-panel.is-active .svc-pdesc   { display: block !important; font-size: 0.83rem; margin-bottom: 14px; }
  .svc-accordion .svc-panel.is-active .svc-plist   { display: flex !important; margin-bottom: 18px; }
  .svc-accordion .svc-panel.is-active .svc-pcta    { display: inline-flex !important; }

  /* hide floating cards + screens on mobile */
  .spa-cards, .spa-screen { display: none !important; }

  /* stronger overlay so text is always readable on mobile */
  .svc-glow,
  .svc-panel:not(:hover):not(:focus-visible):not(.is-active) .svc-glow {
    background: linear-gradient(to top,
      rgba(0,0,0,0.96) 0%,
      rgba(0,0,0,0.80) 40%,
      rgba(0,0,0,0.38) 65%,
      transparent 100%) !important;
  }
  /* dimmer background image on mobile */
  .spa-bg { opacity: 0.25 !important; }
  /* logo bg on mobile: visible collapsed, fades on expand */
  .spa-bg--logo { opacity: 0.40 !important; }
  .svc-panel.is-active .spa-bg--logo { opacity: 0 !important; }
  .spa-bg--traffic,
  .spa-bg--sistemas { opacity: 1 !important; }

  /* Processo — mobile: card com borda esquerda */
  .process-steps { grid-template-columns: 1fr 1fr; gap: 40px 32px; margin-top: 48px; }
  .process-step {
    align-items: flex-start;
    text-align: left;
    border-left: 2px solid rgba(201,169,98,0.22);
    padding: 28px 20px 0 24px;
    position: relative;
  }
  .process-step::before {
    content: '';
    position: absolute;
    left: -5px; top: 2px;
    width: 8px; height: 8px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 14px rgba(201,169,98,0.65);
  }
  .ps-icon-wrap { display: none; }
  .ps-connector { display: none; }
  .ps-num { font-size: 5rem; margin-left: -4px; }
  .ps-body { align-items: flex-start; }
  .ps-body p { max-width: none; }

  /* Portfólio */
  .pf-item { width: 220px; height: 220px; }
  .pf-reel-a .pf-item { height: 260px; }
  .pf-reel-b .pf-item { height: 190px; }
  .pf-reel-a { animation-duration: 40s; }
  .pf-reel-b { animation-duration: 35s; }

  /* About */
  .about-split { flex-direction: column; }
  .about-dark { flex: none; }
  .about-carousel { height: 580px; }
  .ac-body { padding: 0 28px 48px; }
  .ac-role { font-size: 0.72rem; }
  .ac-name { font-size: 2.4rem; }
  .ac-origin { font-size: 0.8rem; }
  .ac-bio { font-size: 0.97rem; display: block; -webkit-line-clamp: unset; overflow: visible; }
  .about-content { padding: 52px 32px; }

  /* Preços */
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin: 0 auto;
  }
  .price-card--popular { transform: none; }
  .price-card--popular:hover { transform: translateY(-6px) scale(1.01); }
  .pricing-toggle { margin-top: 20px; }
  .ptog-btn { padding: 8px 16px; font-size: 0.82rem; }

  /* Testimonios */
  .testi-card { padding: 28px 24px; }

  /* CTA Band */
  .cta-band-inner { flex-direction: column; text-align: center; gap: 32px; }
  .cta-band-action { align-items: center; }

  /* Contato */
  .contact-wrap { grid-template-columns: 1fr; gap: 40px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > .footer-brand { grid-column: span 2; }
  .footer-grid > .footer-col:last-child { display: block; }

  /* Trust */
  .pricing-trust { flex-direction: column; gap: 10px; }
  .pt-sep { display: none; }
  .trust-metrics { gap: 24px; }
  .tm-sep { display: none; }
}

@media (max-width: 600px) {
  .hero-h1 { font-size: clamp(2.2rem, 8vw, 2.8rem); }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .hstat-sep { display: none; }
  .hstat { min-width: 80px; }

  .process-steps { grid-template-columns: 1fr; }
  .process-step { padding: 28px 16px 0 24px; }

  .pf-slide { flex: 0 0 90%; }
  .pf-filters { gap: 7px; }
  .pf-filter span { display: none; }

  .form-row-2 { grid-template-columns: 1fr; }
  .contact-form-box { padding: 28px 20px; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > .footer-brand { grid-column: span 1; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 10px; }

  .about-content { padding: 40px 20px; }

  .process-steps { grid-template-columns: 1fr; gap: 32px; margin-top: 40px; }
  .ps-num { font-size: 4.5rem; margin-bottom: 16px; }

  .pf-cta-row { flex-direction: column; text-align: center; }

  .sec-title { font-size: clamp(1.8rem, 7vw, 2.4rem); }

  .trust-metrics { flex-direction: column; }
}


/* ═══════════════════════════════════════════════════════════
   SOLUCIONES — Section (replaces pricing)
═══════════════════════════════════════════════════════════ */

.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}

.solution-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,169,98,0.2);
  border-radius: var(--r-lg);
  padding: 36px 32px 32px;
  position: relative;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.solution-card:hover {
  border-color: rgba(201,169,98,0.5);
  transform: translateY(-4px);
}

.solution-num {
  font-family: var(--font-display);
  font-size: 4.5rem;
  font-weight: 300;
  color: rgba(201,169,98,0.3);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -2px;
}

.solution-icon {
  width: 52px;
  height: 52px;
  background: rgba(201,169,98,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--gold);
  font-size: 1.3rem;
}

.solution-title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.2;
}

.solution-text {
  font-family: var(--font-body);
  font-size: 0.97rem;
  color: rgba(245,240,235,0.72);
  line-height: 1.65;
}

.solution-cta-row {
  margin-top: 56px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.solution-cta-label {
  font-family: var(--font-brand);
  font-size: 1rem;
  color: rgba(245,240,235,0.75);
  letter-spacing: 0.03em;
  margin: 0;
}

.solution-cta-btn {
  font-size: 1.05rem;
  padding: 16px 40px;
}

.solution-cta-micro {
  font-family: var(--font-brand);
  font-size: 0.82rem;
  color: rgba(245,240,235,0.45);
  letter-spacing: 0.04em;
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════
   WIZARD — Multi-step contact form
═══════════════════════════════════════════════════════════ */

.wizard-box {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--r-lg);
  padding: 40px 36px;
  border: 1px solid rgba(201,169,98,0.3);
  box-shadow: 0 32px 80px rgba(0,0,0,0.28), 0 0 0 1px rgba(201,169,98,0.08);
  min-height: 480px;
  display: flex;
  flex-direction: column;
}

.wz-header {
  margin-bottom: 32px;
}

/* Hidden legacy bar — JS still updates it, CSS ignores */
.wz-progress { display: none; }
.wz-progress-bar { width: 25%; }

/* Step dots */
.wz-dots {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.wz-dot {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid rgba(27,77,62,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-brand);
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(11,30,22,0.35);
  flex-shrink: 0;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
  position: relative;
}

.wz-dot.is-active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--green-deep);
}

.wz-dot.is-done {
  background: var(--green);
  border-color: var(--green);
  color: transparent;
}
.wz-dot.is-done::after {
  content: '✓';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.85rem;
}

.wz-dot-line {
  flex: 1;
  height: 2px;
  background: rgba(27,77,62,0.12);
  transition: background 0.35s ease;
  min-width: 16px;
}

.wz-dot-line.is-done {
  background: var(--green);
}

.wz-step-label {
  font-family: var(--font-brand);
  font-size: 0.78rem;
  color: rgba(11,30,22,0.45);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Steps */
.wz-step {
  display: none;
  flex-direction: column;
  flex: 1;
  animation: wzFadeIn 0.35s ease;
}

.wz-step.is-active {
  display: flex;
}

@keyframes wzFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.wz-title {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 500;
  color: var(--green-deep);
  line-height: 1.2;
  margin-bottom: 24px;
}

.wz-title em {
  color: var(--green);
  font-style: italic;
}

/* Options grid (step 1) */
.wz-options-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
}

.wz-option {
  border: 2px solid rgba(27,77,62,0.12);
  border-radius: var(--r-md);
  padding: 18px 14px;
  background: var(--cream);
  cursor: pointer;
  text-align: center;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.15s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: var(--font-brand);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--green-deep);
}

.wz-option i {
  font-size: 1.4rem;
  color: var(--green);
}

.wz-option:hover {
  border-color: var(--gold);
  background: rgba(201,169,98,0.06);
  transform: translateY(-2px);
}

.wz-option.is-selected {
  border-color: var(--gold);
  background: rgba(201,169,98,0.1);
}

.wz-option.is-selected i {
  color: var(--gold);
}

/* Meeting cards (step 3) */
.wz-meeting-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
  flex: 1;
}

.wz-meeting-card {
  border: 2px solid rgba(27,77,62,0.12);
  border-radius: var(--r-md);
  padding: 20px 20px;
  background: var(--cream);
  cursor: pointer;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.15s ease;
  width: 100%;
}

.wz-meeting-card:hover {
  border-color: var(--gold);
  background: rgba(201,169,98,0.06);
  transform: translateY(-2px);
}

.wz-meeting-card.is-selected {
  border-color: var(--gold);
  background: rgba(201,169,98,0.1);
}

.wz-meeting-icon {
  width: 48px;
  height: 48px;
  background: rgba(27,77,62,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--green);
  flex-shrink: 0;
  transition: background 0.2s;
}

.wz-meeting-card.is-selected .wz-meeting-icon {
  background: rgba(201,169,98,0.2);
  color: var(--gold);
}

.wz-meeting-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.wz-meeting-info strong {
  font-family: var(--font-brand);
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--green-deep);
}

.wz-meeting-info span {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: rgba(11,30,22,0.6);
}

/* Actions row */
.wz-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 20px;
}

.wz-actions--between {
  justify-content: space-between;
}

.wz-btn-next,
.wz-btn-submit {
  flex: 1;
  justify-content: center;
  background: rgba(11,30,22,0.1);
  color: rgba(11,30,22,0.35);
  border: none;
  border-radius: var(--r-md);
  padding: 14px 28px;
  font-family: var(--font-brand);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: not-allowed;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: none;
  transition: background 0.25s ease, color 0.25s ease, transform 0.15s ease, box-shadow 0.25s ease;
}

/* Gold state — applied via JS class when button becomes enabled */
.wz-btn-next.wz-ready,
.wz-btn-submit.wz-ready {
  background: var(--gold);
  color: var(--green-deep);
  box-shadow: 0 4px 16px rgba(201,169,98,0.35);
  cursor: pointer;
}

.wz-btn-next.wz-ready:hover,
.wz-btn-submit.wz-ready:hover {
  background: #b8913e;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,169,98,0.4);
}

.wz-btn-next:disabled,
.wz-btn-submit:disabled {
  transform: none;
}

.wz-btn-back {
  background: none;
  border: none;
  color: rgba(11,30,22,0.5);
  font-family: var(--font-brand);
  font-size: 0.88rem;
  cursor: pointer;
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}

.wz-btn-back:hover {
  color: var(--green);
}

.wz-trust {
  font-family: var(--font-brand);
  font-size: 0.8rem;
  color: rgba(11,30,22,0.4);
  text-align: center;
  margin-top: 12px;
}

.lbl-req {
  color: var(--gold);
  font-weight: 600;
}

/* Success state */
.wz-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex: 1;
  padding: 20px 0;
  animation: wzFadeIn 0.4s ease;
}

.wz-success.is-active {
  display: flex;
}

.wz-success-icon {
  font-size: 4rem;
  color: var(--gold);
  margin-bottom: 20px;
  animation: wzSuccessScale 0.5s cubic-bezier(0.34,1.56,0.64,1) both;
}

@keyframes wzSuccessScale {
  from { transform: scale(0); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

.wz-success-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  color: var(--green-deep);
  margin-bottom: 12px;
}

.wz-success-text {
  font-family: var(--font-body);
  font-size: 1rem;
  color: rgba(11,30,22,0.65);
  margin-bottom: 28px;
  line-height: 1.6;
}

/* Mobile responsive */
@media (max-width: 767px) {
  .solution-grid { grid-template-columns: 1fr; gap: 16px; margin-top: 40px; }
  .solution-num { font-size: 3rem; }
  .solution-cta-btn { width: 100%; justify-content: center; }

  .wizard-box { padding: 28px 20px; min-height: auto; }
  .wz-options-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .wz-option { padding: 14px 10px; font-size: 0.82rem; }
  .wz-dot { width: 28px; height: 28px; font-size: 0.75rem; }
  .wz-dot-line { min-width: 10px; }
  .ci-row:hover { transform: none; }
  .wz-title { font-size: 1.4rem; }
}


/* ═══════════════════════════════════════════════════════════
   CLIENTES — Logo infinite-scroll reel
═══════════════════════════════════════════════════════════ */

.cl-reel-wrapper {
  overflow: hidden;
  width: 100%;
  margin-top: 48px;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
}

.cl-reel {
  display: flex;
  gap: 20px;
  width: max-content;
  will-change: transform;
  animation: clScrollLeft 45s linear infinite;
}

.cl-reel-wrapper:hover .cl-reel { animation-play-state: paused; }

@keyframes clScrollLeft {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.cl-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.cl-flag {
  width: 28px;
  height: 20px;
  border-radius: 3px;
  object-fit: cover;
  display: block;
  box-shadow: 0 1px 4px rgba(0,0,0,0.45);
}

.cl-logo-box {
  width: 120px;
  height: 120px;
  background: rgba(255,255,255,0.96);
  border-radius: 50%;
  border: 2px solid rgba(201,169,98,0.35);
  overflow: hidden;
  transition: border-color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.cl-logo-box:hover {
  border-color: rgba(201,169,98,0.7);
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.25);
}

.cl-logo-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 767px) {
  .cl-logo-box { width: 90px; height: 90px; }
  .cl-flag { width: 22px; height: 16px; }
  .cl-reel { gap: 14px; }
  .cl-reel-wrapper { margin-top: 32px; }
}
