/* ============================================
   WAVE — CSS v2
   Design System: Agencee (Satoshi + Inter)
   ============================================ */

/* --- Design Tokens --- */
:root {
  /* Wave brand palette */
  --abyss:  #013A35;
  --deep:   #00736A;
  --wave:   #00B2A2;
  --crest:  #00CDBA;
  --foam:   #9FF2E8;
  --ink:    #0E1117;
  --white:  #FFFFFF;

  /* Agencee tokens */
  --bg:             #F4FAF9;
  --surface:        rgba(255,255,255,0.72);
  --surface-border: rgba(0,0,0,0.07);
  --glass-dark:     rgba(255,255,255,0.06);
  --glass-dark-b:   rgba(159,242,232,0.18);

  --text-1: #0E1117;
  --text-2: #4A5568;
  --text-3: #718096;

  /* Fonts */
  --f-display: 'Satoshi', system-ui, sans-serif;
  --f-body:    'Inter', system-ui, sans-serif;

  /* Radii */
  --r-sm:   10px;
  --r-md:   18px;
  --r-lg:   26px;
  --r-xl:   36px;
  --r-pill: 100px;

  /* Shadows */
  --sh-sm: 0 1px 4px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --sh-md: 0 4px 20px rgba(0,115,106,.08), 0 1px 4px rgba(0,0,0,.04);
  --sh-lg: 0 20px 60px rgba(0,58,53,.12), 0 6px 20px rgba(0,0,0,.06);

  --maxw: 1180px;
  --pad:  clamp(20px, 5vw, 60px);
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  {
  font-family: var(--f-body);
  font-size: 16px;
  color: var(--text-1);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3, h4 {
  font-family: var(--f-display);
  line-height: 1.08;
  letter-spacing: -.02em;
}
a   { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
:focus-visible { outline: 2px solid var(--crest); outline-offset: 3px; border-radius: 6px; }

/* --- Utilities --- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad); }

/* ============================================
   JS-GATED INITIAL STATES
   All animated elements start invisible before
   first paint. Motion.animate() reveals them.
   ============================================ */

/* Hero entrance elements */
.js [data-hero-el],
.js [data-hero-btn],
.js [data-hero-stat] { opacity: 0; }
.js .nav            { opacity: 0; }

/* Scroll-triggered reveals */
.js .reveal { opacity: 0; }

/* Section components animated individually */
.js .sec-head .eyebrow,
.js .sec-head h2,
.js .sec-head > p   { opacity: 0; }
.js .pillar         { opacity: 0; }
.js .svc            { opacity: 0; }
.js .case           { opacity: 0; }
.js .channel        { opacity: 0; }
.js .marquee span,
.js .marquee a      { opacity: 0; }
.js .form           { opacity: 0; }
.js .form .wizard__head,
.js .form .wizard__progress,
.js .form .wizard__step,
.js .form .wizard__nav,
.js .form .privacy  { opacity: 0; }
.js .photostrip     { opacity: 0; }
.js .clients-strip  { opacity: 0; }
.js .footer         { opacity: 0; }
.js .wfloat         { opacity: 0; }

/* 3D tilt hover — perspective context */
.pillars, .case-grid { perspective: 1200px; }
.pillar, .case { transform-style: preserve-3d; will-change: transform; }
.btn { will-change: transform; }

/* Eyebrow badge — Agencee pill style */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-body);
  font-weight: 600;
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--text-1);
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(0,0,0,.1);
  padding: 7px 16px;
  border-radius: var(--r-pill);
  width: fit-content;
  backdrop-filter: blur(8px);
}
.eyebrow::before {
  content: '●';
  font-size: .45rem;
  color: var(--crest);
  flex-shrink: 0;
}
.eyebrow.light {
  color: var(--white);
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.22);
}
.eyebrow.light::before { color: var(--foam); }

/* --- Buttons (Agencee style) --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--f-body);
  font-weight: 600;
  font-size: .95rem;
  padding: 14px 28px;
  border-radius: var(--r-pill);
  cursor: pointer;
  border: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, opacity .2s ease;
  letter-spacing: -.01em;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

/* Primary on dark section: foam fill */
.btn--primary {
  background: var(--foam);
  color: var(--abyss);
  box-shadow: 0 4px 16px rgba(159,242,232,.35);
}
.btn--primary:hover {
  background: #b8f5ed;
  box-shadow: 0 8px 28px rgba(159,242,232,.45);
}

/* Ghost on dark section */
.btn--ghost {
  background: rgba(255,255,255,.08);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.28);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover {
  background: rgba(255,255,255,.15);
  border-color: rgba(255,255,255,.5);
}

/* Dark (Agencee) — used on light sections */
.btn--dark {
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(14,17,23,.2);
}
.btn--dark:hover {
  background: #1f2937;
  box-shadow: 0 8px 28px rgba(14,17,23,.3);
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px var(--pad);
  transition: background .4s ease, padding .4s ease, box-shadow .4s ease,
              backdrop-filter .4s ease;
}
.nav.scrolled {
  background: rgba(1,58,53,.88);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  padding: 14px var(--pad);
  box-shadow: 0 1px 0 rgba(159,242,232,.12), 0 8px 32px rgba(0,0,0,.2);
}
.nav__logo img { height: 34px; width: auto; }
.nav__logo-text {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 1.55rem;
  color: var(--white);
  letter-spacing: -.04em;
}
.nav__links { display: flex; align-items: center; gap: 8px; }
.nav__links a {
  color: rgba(255,255,255,.82);
  font-family: var(--f-body);
  font-size: .9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--r-pill);
  transition: color .2s, background .2s;
}
.nav__links a:hover { color: var(--white); background: rgba(255,255,255,.08); }

/* Nav CTA — Agencee dark pill */
.nav__cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white);
  color: var(--ink) !important;
  font-family: var(--f-body);
  font-weight: 700;
  font-size: .88rem;
  padding: 11px 20px;
  border-radius: var(--r-pill);
  transition: transform .2s, box-shadow .2s, background .2s;
  box-shadow: var(--sh-sm);
  letter-spacing: -.01em;
}
.nav__cta:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(0,0,0,.18) !important;
  background: #f0f8f7 !important;
}

/* Hamburger */
.nav__menu {
  display: none; background: none; border: none;
  cursor: pointer; padding: 8px; flex-direction: column; gap: 5px;
}
.nav__menu span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  height: 85svh;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(ellipse 90% 80% at 75% 10%, rgba(0,205,186,.45), transparent 55%),
    radial-gradient(ellipse 60% 60% at 20% 80%, rgba(0,115,106,.35), transparent 50%),
    linear-gradient(175deg, var(--wave) 0%, var(--deep) 45%, var(--abyss) 100%);
  color: var(--white);
  overflow: hidden;
  padding-top: 96px;
}
.hero .wrap {
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  z-index: 3;
}

/* Video background */
.hero__video-wrap {
  position: absolute; inset: 0; z-index: 0; overflow: hidden;
}
.hero__video {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  opacity: .22;
  mix-blend-mode: soft-light;
  filter: grayscale(1) contrast(1.15) brightness(.95);
}
.hero__video-tint {
  position: absolute; inset: 0;
  background: linear-gradient(
    175deg,
    rgba(0,178,162,.18) 0%,
    rgba(0,115,106,.28) 45%,
    rgba(1,58,53,.55)   100%
  );
}

/* Orb glow effects — Agencee style */
.hero::before {
  content: '';
  position: absolute;
  top: -15%; right: -8%;
  width: 65vw; height: 65vw;
  max-width: 750px; max-height: 750px;
  background: radial-gradient(circle at 50% 50%, rgba(0,205,186,.3), transparent 65%);
  filter: blur(70px);
  z-index: 1;
  animation: orb-drift 10s ease-in-out infinite;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 10%; left: -5%;
  width: 40vw; height: 40vw;
  max-width: 500px; max-height: 500px;
  background: radial-gradient(circle at 50% 50%, rgba(0,178,162,.22), transparent 65%);
  filter: blur(60px);
  z-index: 1;
  animation: orb-drift 13s ease-in-out infinite reverse;
  pointer-events: none;
}
@keyframes orb-drift {
  0%,100% { transform: translateY(0) scale(1); }
  50%      { transform: translateY(-24px) scale(1.06); }
}

.hero__content {
  position: relative; z-index: 3;
  max-width: 900px;
  margin: auto 0;
}
.hero h1 {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  margin: 0 0 .28em;
  line-height: 1.08;
  letter-spacing: -.03em;
}
.hero h1 .accent { color: var(--foam); }
.hero p.lead {
  font-size: clamp(.9rem, 1.3vw, 1rem);
  font-weight: 400;
  max-width: 480px;
  color: rgba(255,255,255,.78);
  line-height: 1.6;
}
.hero__actions {
  display: flex; flex-wrap: wrap; gap: 14px;
  margin-top: 28px;
}
.hero__meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-block: 28px;
  border-top: 1px solid rgba(255,255,255,.16);
  position: relative; z-index: 3;
}
.hero__meta .stat {
  padding-left: 24px;
  border-left: 1px solid rgba(255,255,255,.16);
}
.hero__meta .stat:first-child {
  padding-left: 0;
  border-left: none;
}
.hero__meta .stat span {
  display: block;
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 1.6rem;
  color: var(--foam);
  letter-spacing: -.03em;
  line-height: 1;
}
.hero__meta .stat small {
  font-family: var(--f-body);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  display: block;
  margin-top: 4px;
}

/* Hero wave SVG */
.waves {
  position: absolute; left: 0; right: 0; bottom: -2px;
  z-index: 2; width: 100%; height: 22vh; min-height: 140px;
  pointer-events: none;
}
.waves .layer     { animation: swell  9s ease-in-out infinite; }
.waves .layer.l2  { animation-duration: 7s; animation-delay: -1.5s; opacity: .6; }
.waves .layer.l3  { animation-duration: 11s; animation-delay: -3s; opacity: .35; }
.wave-x   { animation: drift 14s linear infinite; }
.wave-x.b { animation-duration: 20s; }
.wave-x.c { animation-duration: 26s; }

@keyframes swell {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(8px); }
}
@keyframes drift {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   SECTION BASE
   ============================================ */
section { position: relative; }
.block  { padding-block: clamp(80px, 12vw, 150px); }

.sec-head { max-width: 760px; margin-bottom: 64px; }
.sec-head h2 {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.6rem);
  margin: .32em 0 .5em;
  letter-spacing: -.03em;
  color: var(--text-1);
  line-height: 1.1;
}
.sec-head.on-dark h2 { color: var(--white); }
.sec-head p { font-size: 1.06rem; color: var(--text-2); font-weight: 400; line-height: 1.7; }
.sec-head.on-dark p { color: rgba(255,255,255,.7); }

/* ============================================
   SOBRE
   ============================================ */
.sobre { background: var(--bg); }

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
/* Glassmorphism card — Agencee style */
.pillar {
  background: var(--surface);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid rgba(255,255,255,.7);
  border-bottom: 1px solid rgba(0,0,0,.06);
  border-radius: var(--r-lg);
  padding: 36px 32px;
  box-shadow: var(--sh-md);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.pillar:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 56px rgba(0,115,106,.14), 0 6px 16px rgba(0,0,0,.06);
  border-color: rgba(0,205,186,.35);
}
.pillar .num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px;
  background: linear-gradient(135deg, var(--crest), var(--wave));
  color: var(--white);
  border-radius: var(--r-sm);
  font-family: var(--f-display);
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: -.01em;
}
.pillar h3 {
  font-family: var(--f-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin: 18px 0 12px;
  color: var(--text-1);
  letter-spacing: -.02em;
}
.pillar p { font-size: .96rem; color: var(--text-2); line-height: 1.7; }

/* ============================================
   SERVIÇOS
   ============================================ */
.services { background: var(--abyss); color: var(--white); overflow: hidden; }

.svc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid rgba(159,242,232,.16);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.svc {
  padding: 32px 28px;
  border-right:  1px solid rgba(159,242,232,.12);
  border-bottom: 1px solid rgba(159,242,232,.12);
  transition: background .25s ease;
  position: relative;
}
.svc:hover { background: rgba(159,242,232,.06); }

.svc .idx {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px;
  background: rgba(159,242,232,.1);
  border: 1px solid rgba(159,242,232,.2);
  border-radius: var(--r-sm);
  font-family: var(--f-display);
  font-size: .72rem;
  font-weight: 800;
  color: var(--foam);
  letter-spacing: .02em;
}
.svc h3 {
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 1.02rem;
  margin-top: 16px;
  line-height: 1.3;
  color: var(--white);
  letter-spacing: -.01em;
}

/* ============================================
   CASES
   ============================================ */
.cases { background: var(--bg); }

.case-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }

.case {
  border-radius: var(--r-xl);
  padding: 38px 36px;
  color: var(--white);
  position: relative; overflow: hidden;
  background: linear-gradient(155deg, var(--crest), var(--deep));
  min-height: 240px;
  display: flex; flex-direction: column; justify-content: space-between;
  transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s ease;
  isolation: isolate;
  box-shadow: 0 4px 20px rgba(0,115,106,.2);
}
.case:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 64px rgba(0,115,106,.35);
}
/* Shine effect */
.case::before {
  content: '';
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,.15) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform .9s cubic-bezier(.2,.7,.2,1);
}
.case:hover::before { transform: translateX(100%); }

/* Glow orb */
.case::after {
  content: '';
  position: absolute; right: -40px; bottom: -40px;
  width: 180px; height: 180px; border-radius: 50%;
  background: radial-gradient(circle, rgba(159,242,232,.3), transparent 70%);
  z-index: 0; transition: transform .6s ease, opacity .4s ease;
}
.case:hover::after { transform: scale(1.3); opacity: .85; }

/* Wave SVG inside card */
.case__waves {
  position: absolute; left: 0; right: 0; bottom: 0;
  width: 100%; height: 50%;
  z-index: 0; opacity: .16; pointer-events: none;
  transition: opacity .4s;
}
.case:hover .case__waves { opacity: .28; }
.cwave  { fill: rgba(255,255,255,.5); }
.cwave1 { animation: cwaveDrift 14s linear infinite; }
.cwave2 { animation: cwaveDrift 22s linear infinite reverse; fill: rgba(159,242,232,.45); }
@keyframes cwaveDrift {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.case .tag {
  font-family: var(--f-body);
  font-weight: 700; font-size: .7rem;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--foam); position: relative; z-index: 2;
  display: inline-flex; align-items: center; gap: 6px;
}
.case .tag::before {
  content: ''; display: inline-block;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--foam); flex-shrink: 0;
}
.case h3 {
  font-family: var(--f-display);
  font-size: 1.5rem; font-weight: 800;
  margin: 12px 0 18px;
  line-height: 1.1; letter-spacing: -.02em;
  position: relative; z-index: 2;
  transition: transform .35s ease;
}
.case:hover h3 { transform: translateY(-2px); }

.case .clients {
  display: flex; flex-wrap: wrap; gap: 8px;
  position: relative; z-index: 2;
}
.case .clients span,
.case .clients a.ig-link {
  font-family: var(--f-body);
  font-size: .8rem; font-weight: 500;
  background: rgba(255,255,255,.12);
  padding: 5px 14px; border-radius: var(--r-pill);
  display: inline-flex; align-items: center; gap: 6px;
  line-height: 1.4;
  border: 1px solid transparent;
}
.case .clients a.ig-link {
  color: var(--white);
  border-color: rgba(159,242,232,.3);
  transition: background .25s, transform .25s, border-color .25s;
}
.case .clients a.ig-link .ig-icon { width: 13px; height: 13px; fill: var(--foam); transition: fill .2s; }
.case .clients a.ig-link:hover { background: rgba(159,242,232,.22); border-color: var(--foam); transform: translateY(-2px); }
.case .clients a.ig-link:hover .ig-icon { fill: var(--white); }
.case .clients span { border-color: rgba(255,255,255,.12); }

.case.alt  { background: linear-gradient(155deg, #009E8C, var(--abyss)); }
.case.food { grid-column: 1 / -1; background: linear-gradient(145deg, #008F80, #012E29); }

/* ============================================
   PHOTOSTRIP
   ============================================ */
.photostrip { background: var(--abyss); padding-block: 36px; overflow: hidden; }
.photostrip__track {
  display: flex; gap: 16px; width: max-content;
  align-items: center;
  animation: stripmove 42s linear infinite;
}
.photostrip:hover .photostrip__track { animation-play-state: paused; }
.photostrip .ps-photo {
  height: 300px; width: auto;
  border-radius: var(--r-lg);
  object-fit: cover; flex: 0 0 auto;
}
.photostrip .ps-logo {
  height: 300px; flex: 0 0 auto;
  background: var(--white);
  border-radius: var(--r-lg);
  display: grid; place-items: center;
  padding: 0 48px; min-width: 300px;
}
.photostrip .ps-logo img { height: 90px; width: auto; max-width: 320px; object-fit: contain; }
.photostrip__empty {
  text-align: center; color: rgba(255,255,255,.3);
  font-size: .9rem; padding: 60px; width: 100%;
  font-family: var(--f-body);
}
@keyframes stripmove {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   CLIENTES
   ============================================ */
.clients-strip {
  background: var(--white);
  border-top: 1px solid rgba(0,0,0,.06);
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.clients-strip .wrap { padding-block: 52px; }
.clients-strip p {
  text-align: center;
  font-family: var(--f-body);
  color: var(--text-3);
  font-size: .75rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 28px;
}
.marquee {
  display: flex; flex-wrap: wrap;
  justify-content: center; gap: 12px 28px;
}
.marquee span,
.marquee a.ig-link {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(1.05rem, 2.4vw, 1.6rem);
  color: #c2d0d0;
  text-transform: uppercase;
  letter-spacing: -.02em;
  transition: color .2s ease;
  text-decoration: none;
}
.marquee span:hover,
.marquee a.ig-link:hover { color: var(--deep); }

/* ============================================
   CTA / CONTATO
   ============================================ */
.cta {
  position: relative; color: var(--white); overflow: hidden;
  background:
    radial-gradient(ellipse 110% 90% at 15% 5%, rgba(0,205,186,.42), transparent 50%),
    linear-gradient(170deg, var(--abyss), #012520 60%, #011a17);
}
.cta .wrap { position: relative; z-index: 3; }

.cta-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 64px; align-items: start;
}
.cta h2 {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  margin-bottom: .3em;
  letter-spacing: -.03em;
  line-height: 1.05;
}
.cta h2 .accent { color: var(--foam); }
.cta p.lead {
  font-family: var(--f-body);
  color: rgba(255,255,255,.75);
  font-size: 1.06rem; font-weight: 400;
  max-width: 460px; margin-bottom: 36px;
  line-height: 1.7;
}

/* Contact channels */
.channels { display: flex; flex-direction: column; gap: 16px; margin-top: 8px; }
.channel  {
  display: inline-flex; align-items: center; gap: 16px;
  color: var(--white); font-family: var(--f-body); font-weight: 400;
  transition: color .2s ease;
}
.channel:hover { color: var(--foam); }
.channel .ic {
  width: 44px; height: 44px; border-radius: var(--r-md);
  background: rgba(159,242,232,.1);
  border: 1px solid rgba(159,242,232,.18);
  display: grid; place-items: center; flex: 0 0 auto;
}
.channel .ic svg { width: 20px; height: 20px; fill: var(--foam); }
.channel small {
  display: block; font-size: .68rem;
  letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.45);
  font-weight: 600; margin-bottom: 2px;
}
.channel span { font-size: 1rem; font-weight: 500; }

/* Form — glassmorphism, compact wizard */
.form {
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  border: 1px solid rgba(159,242,232,.2);
  border-radius: var(--r-xl);
  padding: 44px 48px;
  box-shadow: 0 8px 40px rgba(0,0,0,.15);
  max-width: 540px;
}
.form h3 {
  font-family: var(--f-display);
  font-weight: 700; font-size: 1.5rem;
  letter-spacing: -.02em; margin-bottom: 6px; color: var(--white);
}
.form .hint { font-size: .92rem; color: rgba(255,255,255,.5); line-height: 1.5; }

/* Progress bar */
.wizard__progress {
  display: flex; align-items: center; gap: 12px;
  margin: 24px 0 28px;
}
.wizard__bar {
  flex: 1; height: 5px; border-radius: 5px;
  background: rgba(255,255,255,.12); overflow: hidden;
}
.wizard__bar i {
  display: block; height: 100%; width: 25%;
  background: var(--foam); border-radius: 5px;
  transition: width .4s cubic-bezier(.16,1,.3,1);
}
.wizard__count {
  font-family: var(--f-body); font-size: .8rem; font-weight: 700;
  letter-spacing: .06em; color: rgba(255,255,255,.5); flex: 0 0 auto;
}
.wizard__count b { color: var(--foam); font-size: .95rem; }

/* Steps */
.wizard__steps { position: relative; min-height: 128px; }
.wizard__step { display: none; }
.wizard__step.is-active { display: block; }
.wizard__step label {
  display: block;
  font-family: var(--f-body);
  font-size: .8rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  margin-bottom: 14px; color: var(--foam);
}
.wizard__step label small {
  text-transform: none; letter-spacing: 0; font-weight: 400;
  color: rgba(255,255,255,.4);
}
.wizard__step input,
.wizard__step textarea {
  width: 100%;
  background: rgba(1,58,53,.5);
  border: 1px solid rgba(159,242,232,.22);
  border-radius: var(--r-md);
  padding: 17px 20px;
  color: var(--white);
  font-family: var(--f-body);
  font-size: 1.05rem;
  transition: border-color .2s, background .2s, box-shadow .2s;
}
.wizard__step input::placeholder,
.wizard__step textarea::placeholder { color: rgba(255,255,255,.32); }
.wizard__step input:focus,
.wizard__step textarea:focus {
  outline: none;
  border-color: var(--foam);
  background: rgba(1,58,53,.7);
  box-shadow: 0 0 0 3px rgba(159,242,232,.12);
}
.wizard__step textarea { resize: vertical; min-height: 120px; }

/* Segment chips */
.wizard__chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  font-family: var(--f-body); font-size: .92rem; font-weight: 500;
  color: rgba(255,255,255,.8);
  background: rgba(1,58,53,.5);
  border: 1px solid rgba(159,242,232,.22);
  border-radius: var(--r-pill);
  padding: 12px 20px; cursor: pointer;
  transition: background .2s, border-color .2s, transform .15s, color .2s;
}
.chip:hover { border-color: rgba(159,242,232,.5); transform: translateY(-1px); }
.chip.is-selected {
  background: var(--foam); border-color: var(--foam); color: var(--abyss); font-weight: 700;
}

/* Nav (steps) */
.wizard__nav { display: flex; align-items: center; gap: 16px; margin-top: 32px; }
.wizard__back {
  font-family: var(--f-body); font-size: .92rem; font-weight: 600;
  color: rgba(255,255,255,.55); background: none; border: none; cursor: pointer;
  padding: 14px 6px; transition: color .2s;
  display: none;
}
.wizard__back:hover { color: var(--white); }
.wizard__back.is-visible { display: inline-flex; }
.wizard__nav .btn { flex: 1; justify-content: center; padding: 16px 28px; font-size: 1rem; }
#wizSubmit { display: none; }
#wizSubmit.is-visible { display: inline-flex; }
#wizNext.is-hidden { display: none; }

.form .privacy {
  font-family: var(--f-body);
  font-size: .82rem; color: rgba(255,255,255,.38);
  text-align: center; margin-top: 18px; line-height: 1.5;
}

/* ============================================
   FOOTER
   ============================================ */
.footer { background: #011e1a; color: var(--white); padding-block: 56px 32px; }
.footer__top {
  display: flex; justify-content: space-between;
  align-items: flex-start; flex-wrap: wrap; gap: 32px;
  border-bottom: 1px solid rgba(159,242,232,.1);
  padding-bottom: 32px;
}
.footer__logo img { height: 38px; }
.footer__logo-text {
  font-family: var(--f-display);
  font-weight: 900; font-size: 1.9rem;
  letter-spacing: -.04em; color: var(--white);
}
.footer__logo p {
  margin-top: 14px;
  font-family: var(--f-body);
  color: rgba(255,255,255,.45);
  font-size: .88rem; font-weight: 400;
  max-width: 300px; line-height: 1.6;
}
.footer__links { display: flex; gap: 28px; flex-wrap: wrap; }
.footer__links a {
  font-family: var(--f-body);
  color: rgba(255,255,255,.6);
  font-size: .9rem; font-weight: 500;
  transition: color .2s ease;
}
.footer__links a:hover { color: var(--foam); }
.footer__bottom {
  display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
  padding-top: 24px;
  font-family: var(--f-body);
  font-size: .8rem; color: rgba(255,255,255,.3);
}

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.wfloat {
  position: fixed; right: 22px; bottom: 22px; z-index: 80;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366;
  display: grid; place-items: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.45), 0 8px 32px rgba(0,0,0,.2);
  transition: transform .25s ease, box-shadow .25s ease;
}
.wfloat:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 32px rgba(37,211,102,.55), 0 12px 40px rgba(0,0,0,.25);
}
.wfloat svg { width: 30px; height: 30px; fill: var(--white); }

/* ============================================
   ANIMATION — will-change hint
   ============================================ */
.reveal { will-change: opacity, transform; }

/* ============================================
   RESPONSIVE — Mobile First
   ============================================ */

/* ---- Tablet (≤ 1024px) ---- */
@media (max-width: 1024px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-grid { grid-template-columns: 1fr; gap: 48px; }
}

/* ---- Mobile Large (≤ 900px) ---- */
@media (max-width: 900px) {
  /* Nav drawer */
  .nav__links {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(80vw, 320px);
    background: var(--abyss);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 6px;
    padding: 48px 32px;
    transform: translateX(105%);
    transition: transform .38s cubic-bezier(.4,0,.2,1);
    box-shadow: -20px 0 60px rgba(0,0,0,.35);
    border-left: 1px solid rgba(159,242,232,.12);
    z-index: 65;
  }
  .nav__links.open { transform: translateX(0); }
  .nav__links a {
    width: 100%; padding: 12px 16px;
    font-size: 1rem; border-radius: var(--r-md);
  }
  .nav__cta { width: 100%; justify-content: center; margin-top: 8px; }

  .nav__menu { display: flex; z-index: 70; }
  .nav.menu-open .nav__menu span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav.menu-open .nav__menu span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .nav.menu-open .nav__menu span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* Overlay */
  .nav__overlay {
    display: none; position: fixed; inset: 0; z-index: 64;
    background: rgba(0,0,0,.4); backdrop-filter: blur(2px);
  }
  .nav.menu-open .nav__overlay { display: block; }

  .pillars { grid-template-columns: 1fr; }
  .case-grid { grid-template-columns: 1fr; }
  .hero__meta { gap: 16px; padding-block: 22px; }
}

/* ---- Mobile (≤ 768px) ---- */
@media (max-width: 768px) {
  .photostrip .ps-photo { height: 220px; }
  .photostrip .ps-logo  { height: 220px; min-width: 220px; padding: 0 32px; }
  .photostrip .ps-logo img { height: 68px; }
  .photostrip__track { animation-duration: 30s; }

  .sec-head { margin-bottom: 44px; }
  .cta-grid { gap: 40px; }
  .form { padding: 28px 24px; }
  .footer__top { flex-direction: column; gap: 28px; }
  .footer__links { flex-direction: column; gap: 14px; }
  .footer__bottom { flex-direction: column; gap: 6px; text-align: center; }

  .hero { padding-top: 84px; }
  .hero p.lead { font-size: .88rem; line-height: 1.5; }
  .hero__actions { margin-top: 22px; }
  .hero__meta { gap: 12px; padding-block: 20px; }
  .hero__meta .stat { padding-left: 12px; }
  .hero__meta .stat small { font-size: .58rem; }
}

/* ---- Mobile Small (≤ 480px) ---- */
@media (max-width: 480px) {
  .nav__cta { display: none; }
  .svc { padding: 20px 16px; }
  .svc .idx { width: 24px; height: 24px; font-size: .64rem; }
  .svc h3 { font-size: .88rem; margin-top: 10px; line-height: 1.25; }
  .hero h1  { font-size: clamp(2.1rem, 9vw, 2.8rem); }
  .hero__meta .stat span { font-size: 1.5rem; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { justify-content: center; text-align: center; }
  .case { padding: 28px 24px; }
  .pillar { padding: 28px 24px; }
  .wfloat { right: 16px; bottom: 16px; width: 52px; height: 52px; }
}

/* ---- Reduced Motion ---- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
  .case__waves { display: none; }
}
