/* ============================================================
   INOVSTUDIOS PME — Premium Redesign v2
   Aesthetic: Luxury Editorial Dark
   Palette: Obsidian + Indigo-Blue + Mint accent
   Fonts: Plus Jakarta Sans (display) + Inter (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  --bg:         #07090f;
  --bg-2:       #0c0f1a;
  --bg-3:       #111422;
  --surface:    rgba(255,255,255,0.04);
  --surface-2:  rgba(255,255,255,0.07);
  --border:     rgba(255,255,255,0.08);
  --border-2:   rgba(255,255,255,0.12);

  --mint:       #2fddb8;
  --mint-dim:   rgba(47,221,184,0.12);
  --mint-glow:  rgba(47,221,184,0.25);
  --indigo:     #6366f1;
  --indigo-dim: rgba(99,102,241,0.15);

  --white:      #ffffff;
  --gray-100:   #f1f5f9;
  --gray-300:   #cbd5e1;
  --gray-500:   #94a3b8;
  --gray-600:   #64748b;
  --gray-800:   #1e293b;

  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body:    'Inter', sans-serif;

  --r-sm:  8px;
  --r-md:  14px;
  --r-lg:  20px;
  --r-xl:  28px;
  --r-2xl: 40px;

  --ease: cubic-bezier(0.22,1,0.36,1);
  --t:    300ms var(--ease);
  --t-md: 500ms var(--ease);

  /* Spacing */
  --s1: 0.5rem;
  --s2: 1rem;
  --s3: 1.5rem;
  --s4: 2rem;
  --s6: 3rem;
  --s8: 4rem;
  --s12: 6rem;
  --s16: 8rem;
}

/* ── RESET ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body { font-family: var(--font-body); background: var(--bg); color: var(--gray-300); line-height: 1.6; overflow-x: hidden; }
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; }

/* ── SCROLLBAR ─────────────────────────────────────────── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(47,221,184,0.3); border-radius: 4px; }

/* ── TYPOGRAPHY ─────────────────────────────────────────── */
h1,h2,h3,h4,h5 { font-family: var(--font-display); color: var(--white); line-height: 1.15; font-weight: 700; }

.t-hero   { font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 800; letter-spacing: -0.03em; line-height: 1.08; }
.t-h2     { font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 700; letter-spacing: -0.025em; }
.t-h3     { font-size: clamp(1.25rem, 2vw, 1.5rem); font-weight: 700; }
.t-label  { font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--mint); font-family: var(--font-display); }
.t-body   { font-size: 1.0625rem; color: var(--gray-500); line-height: 1.75; }
.t-small  { font-size: 0.875rem; color: var(--gray-600); }
.t-mint   { color: var(--mint); }
.t-white  { color: var(--white); }
.t-center { text-align: center; }

/* ── LAYOUT ─────────────────────────────────────────────── */
.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 var(--s4); }
.section   { padding: var(--s16) 0; }

/* ── GRADIENT ORBS ─────────────────────────────────────── */
.orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  will-change: transform;
}
.orb-mint  { background: rgba(47,221,184,0.14); }
.orb-indigo{ background: rgba(99,102,241,0.18); }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: var(--r-md);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: -0.01em;
  cursor: pointer;
  border: none;
  transition: var(--t);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--mint);
  color: #07090f;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 60%);
  opacity: 0;
  transition: var(--t);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 40px rgba(47,221,184,0.4), 0 8px 30px rgba(47,221,184,0.2); }
.btn-primary:hover::before { opacity: 1; }
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--border-2);
  backdrop-filter: blur(10px);
}
.btn-outline:hover { border-color: var(--mint); color: var(--mint); transform: translateY(-2px); background: var(--mint-dim); }

.btn-wa {
  background: #22c55e;
  color: #fff;
}
.btn-wa:hover { background: #16a34a; transform: translateY(-2px); box-shadow: 0 8px 30px rgba(34,197,94,0.35); }

.btn-lg { padding: 1rem 2.25rem; font-size: 1rem; }

/* ── NAV ─────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: calc(100% - 3rem);
  max-width: 1140px;
  border-radius: var(--r-xl);
  transition: var(--t);
  padding: 0.875rem 1.5rem;
  background: rgba(7,9,15,0.5);
  border: 1px solid var(--border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.nav.scrolled {
  background: rgba(7,9,15,0.85);
  border-color: var(--border-2);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s3);
}

.nav__logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
  color: var(--white);
}
.nav__logo em { font-style: normal; color: var(--mint); }

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--s4);
}
.nav__links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-500);
  transition: color var(--t);
  letter-spacing: -0.01em;
}
.nav__links a:hover { color: var(--white); }

.nav__right { display: flex; align-items: center; gap: var(--s2); }

.nav__toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  color: var(--white);
  border-radius: var(--r-sm);
  cursor: pointer;
  padding: 0.375rem;
  line-height: 1;
}

/* ── MOBILE MENU ─────────────────────────────────────────── */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(7,9,15,0.97);
  backdrop-filter: blur(24px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--gray-300); transition: color var(--t); }
.mobile-menu a:hover { color: var(--mint); }
.mobile-close { position: absolute; top: 1.5rem; right: 1.5rem; background: none; border: 1px solid var(--border); color: var(--white); border-radius: var(--r-sm); cursor: pointer; padding: 0.5rem; }

/* ══════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 7rem 0 5rem;
  overflow: hidden;
}

.hero__bg-img {
  position: absolute;
  inset: 0;
  background-image: url('../img/hero-premium.png');
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero__bg-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(7,9,15,0.35) 0%, rgba(7,9,15,0.9) 100%);
}

/* Floating orbs */
.hero__orb-1 { width: 600px; height: 600px; right: -100px; top: 0; }
.hero__orb-2 { width: 400px; height: 400px; left: -80px; bottom: 10%; opacity: 0.5; }

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

/* Pill badge */
.hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.875rem 0.375rem 0.5rem;
  border-radius: 999px;
  background: rgba(47,221,184,0.08);
  border: 1px solid rgba(47,221,184,0.25);
  margin-bottom: var(--s4);
}
.hero__pill-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--mint-dim);
  border: 1px solid rgba(47,221,184,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__pill-dot svg { color: var(--mint); }
.hero__pill span { font-size: 0.8125rem; font-weight: 600; color: var(--mint); letter-spacing: 0.02em; }

/* Headline gradient */
.hero__heading {
  font-size: clamp(2.6rem, 5.5vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.04;
  color: var(--white);
  margin-bottom: var(--s4);
}

.hero__heading .grad {
  background: linear-gradient(90deg, var(--mint) 0%, #a5f3eb 50%, var(--mint) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}

@keyframes shimmer {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.hero__sub {
  font-size: 1.125rem;
  color: var(--gray-500);
  line-height: 1.75;
  max-width: 580px;
  margin: 0 auto var(--s6);
  font-weight: 400;
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.875rem;
  margin-bottom: var(--s8);
}

/* Stats bar */
.hero__stats {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  backdrop-filter: blur(12px);
  overflow: hidden;
}

.hero__stat {
  padding: 1rem 1.75rem;
  text-align: center;
  border-right: 1px solid var(--border);
}
.hero__stat:last-child { border-right: none; }

.hero__stat-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 0.25rem;
}
.hero__stat-num span { color: var(--mint); }
.hero__stat-label { font-size: 0.75rem; color: var(--gray-600); white-space: nowrap; }

/* ══════════════════════════════════════════════════════
   SHARED SECTION HEADER
══════════════════════════════════════════════════════ */
.sec-header {
  margin-bottom: var(--s8);
}
.sec-header.center { text-align: center; }
.sec-header .t-label { display: block; margin-bottom: var(--s2); }
.sec-header .t-h2   { margin-bottom: var(--s2); }
.sec-header .t-body { max-width: 560px; }
.sec-header.center .t-body { margin: 0 auto; }

/* ══════════════════════════════════════════════════════
   PROBLEM SECTION
══════════════════════════════════════════════════════ */
.problem { background: var(--bg); }

.problem__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s12);
  align-items: center;
}

.problem__visual {
  position: relative;
  height: 420px;
}

/* Central glowing ring */
.problem__ring {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ring-outer {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 1px solid rgba(47,221,184,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: ringRotate 20s linear infinite;
}

@keyframes ringRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.ring-inner {
  width: 210px;
  height: 210px;
  border-radius: 50%;
  border: 1px solid rgba(47,221,184,0.2);
  background: radial-gradient(circle, rgba(47,221,184,0.06) 0%, transparent 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: ringRotate 12s linear infinite reverse;
}

.ring-core {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47,221,184,0.25), rgba(47,221,184,0.05));
  border: 2px solid rgba(47,221,184,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mint);
  animation: coreBreath 3s ease-in-out infinite;
  box-shadow: 0 0 40px rgba(47,221,184,0.2);
}

@keyframes coreBreath {
  0%,100% { box-shadow: 0 0 30px rgba(47,221,184,0.15); transform: scale(1); }
  50% { box-shadow: 0 0 60px rgba(47,221,184,0.35); transform: scale(1.05); }
}

/* Orbit dots */
.orbit-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 12px rgba(47,221,184,0.6);
}

.problem__cards {
  display: flex;
  flex-direction: column;
  gap: var(--s2);
}

.prob-card {
  display: flex;
  gap: var(--s3);
  padding: var(--s3);
  border-radius: var(--r-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  transition: var(--t);
  cursor: default;
}

.prob-card:hover {
  background: var(--surface-2);
  border-color: var(--border-2);
  transform: translateX(6px);
}

.prob-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r-md);
  background: var(--mint-dim);
  border: 1px solid rgba(47,221,184,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--mint);
}

.prob-card h3 { font-size: 1rem; margin-bottom: 0.25rem; }
.prob-card p  { font-size: 0.875rem; color: var(--gray-600); line-height: 1.6; }

/* ══════════════════════════════════════════════════════
   SERVICES
══════════════════════════════════════════════════════ */
.services { background: var(--bg-2); }

.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
}

.svc-card {
  background: var(--bg-2);
  padding: var(--s4);
  transition: var(--t);
  position: relative;
  overflow: hidden;
}

.svc-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--mint-dim) 0%, transparent 50%);
  opacity: 0;
  transition: var(--t-md);
}

.svc-card:hover { background: var(--bg-3); }
.svc-card:hover::after { opacity: 1; }

.svc-card__num {
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--gray-600);
  margin-bottom: var(--s3);
  position: relative;
  z-index: 1;
}

.svc-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r-md);
  background: var(--mint-dim);
  border: 1px solid rgba(47,221,184,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mint);
  margin-bottom: var(--s2);
  position: relative;
  z-index: 1;
}

.svc-card h3 { font-size: 1rem; margin-bottom: 0.375rem; position: relative; z-index: 1; }
.svc-card p  { font-size: 0.85rem; color: var(--gray-600); line-height: 1.6; position: relative; z-index: 1; }

/* ══════════════════════════════════════════════════════
   TARGET / FOR WHOM
══════════════════════════════════════════════════════ */
.target { background: var(--bg); position: relative; overflow: hidden; }

.target__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s2);
  margin-top: var(--s8);
}

.target-item {
  padding: var(--s3);
  border-radius: var(--r-md);
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  transition: var(--t);
}

.target-item:hover {
  background: var(--surface-2);
  border-color: rgba(47,221,184,0.2);
}

.target-item__check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--mint-dim);
  border: 1px solid rgba(47,221,184,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--mint);
}

.target-item p { font-size: 0.9rem; color: var(--gray-300); line-height: 1.5; }

/* ══════════════════════════════════════════════════════
   AREAS
══════════════════════════════════════════════════════ */
.areas { background: var(--bg-2); }

.areas__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s3);
}

.area-card {
  padding: var(--s5, 2.5rem);
  border-radius: var(--r-xl);
  background: var(--surface);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: var(--t);
}

.area-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--mint), transparent);
  opacity: 0;
  transition: var(--t-md);
}

.area-card:hover { border-color: var(--border-2); transform: translateY(-4px); box-shadow: 0 20px 50px rgba(0,0,0,0.3); }
.area-card:hover::before { opacity: 1; }

.area-card--wide { grid-column: 1 / -1; }

.area-card__tag {
  display: inline-block;
  padding: 0.25rem 0.625rem;
  border-radius: 999px;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mint);
  background: var(--mint-dim);
  border: 1px solid rgba(47,221,184,0.2);
  margin-bottom: var(--s3);
}

.area-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--r-md);
  background: var(--surface);
  border: 1px solid var(--border-2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mint);
  margin-bottom: var(--s3);
}

.area-card h3 { margin-bottom: var(--s1); }
.area-card p  { font-size: 0.9rem; color: var(--gray-600); line-height: 1.7; }

.areas__grid .area-card--wide .area-card__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s4);
  align-items: start;
}

/* ══════════════════════════════════════════════════════
   PROCESS
══════════════════════════════════════════════════════ */
.process { background: var(--bg); }

.process__steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--s3);
  margin-top: var(--s8);
  position: relative;
}

/* Connector line */
.process__line {
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-2), var(--mint), var(--border-2), transparent);
  z-index: 0;
}

.proc-step {
  position: relative;
  z-index: 1;
  text-align: center;
}

.proc-step__bubble {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid var(--border-2);
  background: var(--bg-2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--s2);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  color: var(--gray-600);
  transition: var(--t);
  position: relative;
}

.proc-step:hover .proc-step__bubble {
  border-color: var(--mint);
  color: var(--mint);
  background: var(--mint-dim);
  box-shadow: 0 0 30px var(--mint-dim);
}

.proc-step h3 { font-size: 0.9rem; margin-bottom: 0.375rem; font-weight: 600; }
.proc-step p  { font-size: 0.8rem; color: var(--gray-600); line-height: 1.55; }

/* ══════════════════════════════════════════════════════
   PACKAGES
══════════════════════════════════════════════════════ */
.packages { background: var(--bg-2); }

.pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s3);
  align-items: stretch;
}

.pkg-card {
  border-radius: var(--r-xl);
  padding: var(--s6);
  background: var(--surface);
  border: 1px solid var(--border);
  transition: var(--t);
  display: flex;
  flex-direction: column;
  gap: var(--s3);
}

.pkg-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(0,0,0,0.3);
  border-color: var(--border-2);
}

.pkg-card--star {
  background: linear-gradient(160deg, rgba(47,221,184,0.08) 0%, var(--surface) 50%);
  border-color: rgba(47,221,184,0.3);
  position: relative;
}

.pkg-card--star::before {
  content: 'Mais popular';
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--mint);
  color: #07090f;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.6875rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.25rem 0.875rem;
  border-radius: 999px;
  white-space: nowrap;
}

.pkg-card__label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.pkg-card__icon {
  width: 40px;
  height: 40px;
  border-radius: var(--r-sm);
  background: var(--mint-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mint);
}

.pkg-card h3 { font-size: 1.3rem; }
.pkg-card__desc { font-size: 0.875rem; color: var(--gray-600); line-height: 1.6; flex: 1; }

.pkg-items {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  padding-top: var(--s2);
  border-top: 1px solid var(--border);
}

.pkg-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--gray-300);
}
.pkg-item svg { color: var(--mint); flex-shrink: 0; margin-top: 1px; }

/* ══════════════════════════════════════════════════════
   BENEFITS
══════════════════════════════════════════════════════ */
.benefits { background: var(--bg); }

.benefits__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s12);
  align-items: center;
}

.ben-list {
  display: flex;
  flex-direction: column;
  gap: var(--s3);
}

.ben-item {
  display: flex;
  gap: var(--s3);
  align-items: flex-start;
}

.ben-item__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mint);
  flex-shrink: 0;
  transition: var(--t);
}

.ben-item:hover .ben-item__icon { background: var(--mint-dim); border-color: rgba(47,221,184,0.3); }

.ben-item h3 { font-size: 1rem; margin-bottom: 0.25rem; }
.ben-item p  { font-size: 0.875rem; color: var(--gray-600); line-height: 1.6; }

.stats-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s2);
}

.stat-box {
  padding: var(--s4);
  border-radius: var(--r-xl);
  background: var(--surface);
  border: 1px solid var(--border);
  text-align: center;
  transition: var(--t);
  position: relative;
  overflow: hidden;
}

.stat-box::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--mint), transparent);
}

.stat-box:hover { border-color: var(--border-2); background: var(--surface-2); }

.stat-box__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.75rem;
  letter-spacing: -0.04em;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.375rem;
}
.stat-box__num .accent { color: var(--mint); }
.stat-box__text { font-size: 0.8125rem; color: var(--gray-600); line-height: 1.4; }

/* ══════════════════════════════════════════════════════
   AUTHORITY
══════════════════════════════════════════════════════ */
.authority { background: var(--bg-2); }

.authority__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s12);
  align-items: center;
}

.auth-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: var(--s3); }

.tag {
  display: inline-block;
  padding: 0.375rem 0.875rem;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border);
  font-size: 0.8125rem;
  color: var(--gray-300);
  transition: var(--t);
  font-weight: 500;
  cursor: default;
}
.tag:hover { border-color: rgba(47,221,184,0.3); color: var(--mint); background: var(--mint-dim); }

/* ══════════════════════════════════════════════════════
   FORM SECTION
══════════════════════════════════════════════════════ */
.form-sec { background: var(--bg); position: relative; overflow: hidden; }

.form-sec__layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--s12);
  align-items: start;
}

.form-info__contacts {
  display: flex;
  flex-direction: column;
  gap: var(--s2);
  margin-top: var(--s4);
}

.ci {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--gray-300);
}
.ci a { transition: color var(--t); }
.ci a:hover { color: var(--mint); }
.ci svg { color: var(--mint); flex-shrink: 0; }

.form-info__notice {
  margin-top: var(--s4);
  padding: var(--s3);
  border-radius: var(--r-md);
  background: var(--indigo-dim);
  border: 1px solid rgba(99,102,241,0.2);
}
.form-info__notice p { font-size: 0.8125rem; color: var(--gray-500); line-height: 1.6; }
.form-info__notice strong { color: var(--gray-100); }

/* Form card */
.form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  padding: var(--s6);
}

.form-card h3 { margin-bottom: var(--s4); font-size: 1.25rem; }

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s2);
}

.fg { display: flex; flex-direction: column; gap: 0.375rem; }
.fg--full { grid-column: 1 / -1; }

.fg label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-300);
  letter-spacing: 0.02em;
  font-family: var(--font-display);
}

.fg label .req { color: var(--mint); margin-left: 2px; }

.fg input,
.fg select,
.fg textarea {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 0.75rem 1rem;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  transition: var(--t);
  outline: none;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
}

.fg input::placeholder,
.fg textarea::placeholder { color: var(--gray-600); }

.fg input:focus,
.fg select:focus,
.fg textarea:focus {
  border-color: var(--mint);
  background: rgba(47,221,184,0.04);
  box-shadow: 0 0 0 3px rgba(47,221,184,0.08);
}

.fg select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2364748b' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.fg select option { background: var(--bg-3); color: var(--white); }
.fg textarea { min-height: 100px; resize: vertical; }

.form-submit { margin-top: var(--s2); }
.form-submit .btn { width: 100%; padding: 1rem; font-size: 1rem; }

/* Success */
.form-success { display: none; text-align: center; padding: var(--s8) var(--s4); }
.form-success__icon { width: 72px; height: 72px; border-radius: 50%; background: var(--mint-dim); border: 2px solid rgba(47,221,184,0.4); display: flex; align-items: center; justify-content: center; margin: 0 auto var(--s3); color: var(--mint); }
.form-success h3 { margin-bottom: var(--s2); }
.form-success p { color: var(--gray-600); font-size: 0.9375rem; line-height: 1.7; }

/* ══════════════════════════════════════════════════════
   CTA FINAL
══════════════════════════════════════════════════════ */
.cta-final {
  background: var(--bg-2);
  text-align: center;
  padding: var(--s16) 0;
  position: relative;
  overflow: hidden;
}

.cta-final__orb { width: 700px; height: 700px; left: 50%; top: 50%; transform: translate(-50%,-50%); opacity: 0.4; }

.cta-final__inner { position: relative; z-index: 1; }
.cta-final h2   { margin-bottom: var(--s2); }
.cta-final .t-body { max-width: 500px; margin: 0 auto var(--s6); }
.cta-final__btns { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: var(--s2); }

/* ══════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════ */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: var(--s12) 0 var(--s4);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: var(--s8);
  margin-bottom: var(--s8);
}

.footer__logo { font-family: var(--font-display); font-weight: 800; font-size: 1.2rem; color: var(--white); letter-spacing: -0.03em; margin-bottom: var(--s2); }
.footer__logo em { font-style: normal; color: var(--mint); }
.footer__desc { font-size: 0.875rem; color: var(--gray-600); line-height: 1.7; max-width: 280px; }

.footer__col h4 { font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray-500); margin-bottom: var(--s3); }

.footer__links { display: flex; flex-direction: column; gap: 0.625rem; }
.footer__links a { font-size: 0.875rem; color: var(--gray-600); transition: color var(--t); }
.footer__links a:hover { color: var(--mint); }

.footer__contacts { display: flex; flex-direction: column; gap: 0.75rem; }
.footer__contact-item { display: flex; align-items: flex-start; gap: 0.625rem; font-size: 0.875rem; color: var(--gray-600); }
.footer__contact-item svg { color: var(--mint); flex-shrink: 0; margin-top: 2px; }
.footer__contact-item a:hover { color: var(--mint); }

.footer__bottom {
  padding-top: var(--s4);
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s2);
}

.footer__copy { font-size: 0.8125rem; color: var(--gray-600); }

/* ══════════════════════════════════════════════════════
   WHATSAPP FLOAT
══════════════════════════════════════════════════════ */
.wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #22c55e;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 8px 30px rgba(34,197,94,0.4);
  transition: var(--t);
  animation: popIn 0.5s var(--ease) 1.5s backwards;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 12px 40px rgba(34,197,94,0.55); }

@keyframes popIn {
  from { transform: scale(0) rotate(-30deg); opacity: 0; }
  to   { transform: scale(1) rotate(0); opacity: 1; }
}

/* ══════════════════════════════════════════════════════
   REVEAL ANIMATIONS
══════════════════════════════════════════════════════ */
.r {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.r.in { opacity: 1; transform: translateY(0); }
.r-d1 { transition-delay: 0.08s; }
.r-d2 { transition-delay: 0.16s; }
.r-d3 { transition-delay: 0.24s; }
.r-d4 { transition-delay: 0.32s; }
.r-d5 { transition-delay: 0.40s; }

/* ══════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .nav__links  { display: none; }
  .nav__right .btn-outline { display: none; }
  .nav__toggle { display: flex; }

  .problem__layout { grid-template-columns: 1fr; }
  .problem__visual { display: none; }

  .svc-grid { grid-template-columns: 1fr 1fr; }

  .target__grid { grid-template-columns: 1fr 1fr; }

  .areas__grid { grid-template-columns: 1fr; }
  .area-card--wide { grid-column: auto; }
  .areas__grid .area-card--wide .area-card__inner { grid-template-columns: 1fr; }

  .process__steps { grid-template-columns: 1fr 1fr; }
  .process__line  { display: none; }

  .pkg-grid { grid-template-columns: 1fr; }

  .benefits__layout  { grid-template-columns: 1fr; }
  .authority__layout { grid-template-columns: 1fr; }
  .form-sec__layout  { grid-template-columns: 1fr; }
  .footer__grid      { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .section { padding: var(--s8) 0; }
  .container { padding: 0 var(--s2); }

  .nav { width: calc(100% - 2rem); padding: 0.75rem 1rem; }

  .hero { padding: 6.5rem 0 4rem; }
  .hero__heading { font-size: clamp(2.2rem, 8vw, 3.5rem); }
  .hero__stats { flex-direction: column; width: 100%; max-width: 300px; }
  .hero__stat { border-right: none; border-bottom: 1px solid var(--border); }
  .hero__stat:last-child { border-bottom: none; }

  .svc-grid { grid-template-columns: 1fr; }
  .target__grid { grid-template-columns: 1fr; }
  .process__steps { grid-template-columns: 1fr; }
  .stats-panel { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }
  .cta-final__btns { flex-direction: column; align-items: stretch; text-align: center; }
  .cta-final__btns .btn { justify-content: center; }
}
