/* ════════════════════════════════════════════════════
   VIANEXU — Design System "Superior"
   Warm dark · Cream · Gold accent · Editorial grid
════════════════════════════════════════════════════ */

/* ── Variables ───────────────────────────────────── */
:root {
  /* Dark palette (hero, CTA, footer) */
  --dark:    #080808;
  --dark-2:  #121212;
  --dark-3:  #1C1C1C;
  --dark-4:  #272727;

  /* Light palette (content sections) */
  --light:   #F9F6F1;
  --light-2: #F0EEEB;
  --light-3: #E2DFDB;
  --white:   #FFFFFF;

  /* Text — dark bg */
  --d1: #F0EFEE;
  --d2: #B8B8B8;
  --d3: #6E6E6E;
  --d4: #383838;

  /* Text — light bg */
  --l1: #080808;
  --l2: #3A3A3A;
  --l3: #888888;
  --l4: #BEBEBE;

  /* Gold — usado com parcimônia */
  --gold:     #C8A76A;
  --gold-dim: rgba(200, 167, 106, .10);
  --gold-brd: rgba(200, 167, 106, .25);

  /* Green — só em checkmarks */
  --green: #4C9A6A;

  /* Borders */
  --bd-dark:  rgba(255,255,255,.07);
  --bd-light: rgba(0,0,0,.08);
  --bd-mid:   rgba(0,0,0,.12);

  /* Shadows */
  --sh-xs: 0 1px 3px rgba(0,0,0,.06);
  --sh-sm: 0 2px 12px rgba(0,0,0,.08);
  --sh-md: 0 8px 32px rgba(0,0,0,.09);
  --sh-lg: 0 24px 64px rgba(0,0,0,.12);

  /* Typography */
  --font-h: 'Outfit', sans-serif;
  --font-b: 'Inter', sans-serif;

  /* Spacing */
  --nav-h: 64px;
  --max-w: 1120px;
  --section-gap: 128px;

  /* Radii */
  --r-xs: 4px;
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-pill: 999px;

  --tr: .22s ease;
  --tr-med: .48s cubic-bezier(.4,0,.2,1);
}

/* ── Reset ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }
body {
  font-family: var(--font-b);
  background: var(--dark);
  color: var(--d2);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Typography scale ────────────────────────────── */
h1,h2,h3,h4,h5 {
  font-family: var(--font-h);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.035em;
}

.display {
  font-size: clamp(3.5rem, 7.5vw, 7rem);
  font-weight: 900;
  letter-spacing: -.05em;
  line-height: .95;
}
.display-md { font-size: clamp(2.4rem, 4.5vw, 4rem); }
.display-sm { font-size: clamp(1.8rem, 3vw, 2.6rem); }

/* ── Layout ──────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 32px; }
.section   { padding: var(--section-gap) 0; }

/* ── Material Icons ──────────────────────────────── */
.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
  vertical-align: middle;
  line-height: 1;
}

/* ── Eyebrow label ───────────────────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.eyebrow-light { color: var(--l3); }

/* ── Scroll reveal ───────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .95s cubic-bezier(0,0,.2,1), transform .95s cubic-bezier(0,0,.2,1);
}
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .18s; }
.reveal.d2 { transition-delay: .36s; }
.reveal.d3 { transition-delay: .54s; }
.reveal.d4 { transition-delay: .72s; }

/* ════════════════════════════════════════════════════
   BUTTONS
════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -.01em;
  border-radius: var(--r-md);
  transition: var(--tr-med);
  white-space: nowrap;
  padding: 13px 26px;
}
.btn .material-symbols-outlined { font-size: 18px; }

/* Creme (sobre dark bg) */
.btn-cream {
  background: var(--d1);
  color: var(--dark);
}
.btn-cream:hover {
  background: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0,0,0,.35);
}

/* Outline (sobre dark bg) */
.btn-outline-dark {
  background: transparent;
  color: var(--d2);
  border: 1px solid var(--bd-dark);
}
.btn-outline-dark:hover {
  background: rgba(255,255,255,.06);
  color: var(--d1);
  border-color: rgba(255,255,255,.15);
}

/* Dark (sobre light bg) */
.btn-dark {
  background: var(--l1);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--dark-3);
  transform: translateY(-1px);
  box-shadow: var(--sh-md);
}

/* Outline light */
.btn-outline-light {
  background: transparent;
  color: var(--l2);
  border: 1px solid var(--bd-mid);
}
.btn-outline-light:hover {
  background: var(--light-2);
  color: var(--l1);
}

.btn-lg { padding: 16px 34px; font-size: 15px; }
.btn-full { width: 100%; justify-content: center; }

/* nav CTA */
.btn-nav {
  background: var(--d1);
  color: var(--dark);
  padding: 9px 20px;
  font-size: 13px;
}
.btn-nav:hover { background: var(--white); }

/* CTA white (sobre dark bg) */
.btn-white-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--dark);
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 15px;
  padding: 16px 34px;
  border-radius: var(--r-pill);
  transition: var(--tr-med);
  box-shadow: 0 4px 20px rgba(0,0,0,.4);
}
.btn-white-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0,0,0,.5);
}
.btn-white-cta .material-symbols-outlined { font-size: 18px; }

/* ════════════════════════════════════════════════════
   NAVBAR
════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: transparent;
  transition: background .3s ease, border-color .3s ease;
}
.navbar::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: var(--bd-dark);
  opacity: 0;
  transition: opacity .3s ease;
}
.navbar.scrolled { background: rgba(13,11,9,.88); backdrop-filter: blur(18px); }
.navbar.scrolled::after { opacity: 1; }

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
}
.logo-mark {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  background: var(--gold);
  border-radius: 8px;
}
.logo-code {
  font-family: var(--font-h);
  font-size: 11px;
  font-weight: 900;
  color: var(--dark);
  letter-spacing: -.02em;
  line-height: 1;
}
.logo-wordmark {
  font-family: var(--font-h);
  font-size: 18px;
  font-weight: 800;
  color: var(--d1);
  letter-spacing: -.04em;
}
.logo-wordmark em { font-style: normal; color: var(--gold); }

/* Desktop links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
}
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--d3);
  border-radius: var(--r-sm);
  transition: color var(--tr);
}
.nav-link:hover { color: var(--d1); }
.nav-link.active { color: var(--d1); }
.nav-link .material-symbols-outlined { font-size: 16px; }

/* Dropdown */
.nav-item { position: relative; }
.drop-arrow { font-size: 16px !important; transition: transform var(--tr); }
.nav-item:hover .drop-arrow { transform: rotate(180deg); }

.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  width: 260px;
  background: var(--dark-2);
  border: 1px solid var(--bd-dark);
  border-radius: var(--r-lg);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--tr-med), transform var(--tr-med), visibility var(--tr-med);
  box-shadow: var(--sh-lg);
}
.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.drop-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: var(--r-md);
  transition: background var(--tr);
  color: var(--d2);
}
.drop-item:hover { background: var(--dark-3); color: var(--d1); }

.drop-icon {
  width: 34px; height: 34px;
  background: var(--dark-3);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background var(--tr);
}
.drop-item:hover .drop-icon { background: var(--gold-dim); }
.drop-icon .material-symbols-outlined { font-size: 16px; color: var(--d3); transition: color var(--tr); }
.drop-item:hover .drop-icon .material-symbols-outlined { color: var(--gold); }

.drop-item strong { display: block; font-size: 13px; font-weight: 600; color: var(--d1); }
.drop-item small  { display: block; font-size: 11px; color: var(--d3); margin-top: 1px; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  width: 30px;
}
.nav-toggle span {
  display: block; height: 1.5px;
  background: var(--d1);
  transition: var(--tr);
  transform-origin: left;
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translateY(-1px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translateY(1px); }

/* Mobile menu — full screen overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1001;
  background: var(--dark);
  transform: translateX(100%);
  transition: transform .55s cubic-bezier(.77,0,.175,1);
  overflow-y: auto;
  overflow-x: hidden;
}
.mobile-menu.open { transform: translateX(0); }

.mobile-close {
  position: absolute;
  top: 20px; right: 20px;
  z-index: 10;
  background: var(--dark-3);
  border: 1px solid var(--bd-dark);
  border-radius: var(--r-sm);
  color: var(--d2);
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: var(--tr);
}
.mobile-close:hover { color: var(--d1); background: var(--dark-4); }
.mobile-close .material-symbols-outlined { font-size: 22px; }

/* ── Page transition overlay ─────────────────────── */
.page-transition {
  position: fixed; inset: 0;
  background: var(--dark);
  z-index: 99999;
  display: flex; align-items: center; justify-content: center;
  opacity: 1;
  pointer-events: all;
  transition: opacity .45s cubic-bezier(.4,0,.2,1);
}
.page-transition.pt-out { opacity: 0; pointer-events: none; }
.page-transition.pt-in  { opacity: 1; pointer-events: all; }
.pt-spinner {
  width: 36px; height: 36px;
  border: 2.5px solid rgba(200,167,106,.2);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: pt-spin .75s linear infinite;
}
@keyframes pt-spin { to { transform: rotate(360deg); } }

.mobile-nav {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: calc(var(--nav-h) + 52px) 40px 52px;
}

/* Wordmark inside the full-screen menu */
.mobile-nav-logo {
  margin-bottom: 52px;
  opacity: .35;
}
.mobile-nav-logo .logo-wordmark { font-size: 1.25rem; }

/* Nav links */
.mobile-nav-links {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-h);
  font-size: clamp(2rem, 7vw, 3rem);
  font-weight: 800;
  letter-spacing: -.04em;
  color: var(--d4);
  padding: 18px 0;
  border-bottom: 1px solid var(--bd-dark);
  transition: color .25s ease;
  width: 100%;
  background: none;
  text-align: left;
  cursor: pointer;
  line-height: 1;
}
.mobile-nav-link:first-child { border-top: 1px solid var(--bd-dark); }
.mobile-nav-link:hover  { color: var(--d1); }
.mobile-nav-link.active { color: var(--d1); }
.mobile-nav-link .material-symbols-outlined {
  font-size: 24px !important;
  transition: transform .35s ease;
  flex-shrink: 0;
}
.mobile-nav-link.submenu-open .material-symbols-outlined { transform: rotate(180deg); }

/* Submenu */
.mobile-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s cubic-bezier(.4,0,.2,1);
  display: flex;
  flex-direction: column;
}
.mobile-submenu.open { max-height: 320px; }

.mobile-sub-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--d3);
  border-bottom: 1px solid var(--bd-dark);
  transition: color .22s ease, padding-left .22s ease;
}
.mobile-sub-link:hover { color: var(--gold); padding-left: 24px; }
.mobile-sub-link .material-symbols-outlined {
  font-size: 16px;
  color: var(--gold);
  font-variation-settings: 'FILL' 1,'wght' 300,'GRAD' 0,'opsz' 16;
}

/* CTA at bottom */
.mobile-cta { margin-top: 52px; align-self: flex-start; }

/* ════════════════════════════════════════════════════
   HERO — full screen, dark, centered
════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  background: var(--dark);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: calc(var(--nav-h) + 60px) 0 60px;
}

/* Grain texture */
.hero::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='.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: .04;
  pointer-events: none;
}

/* Vinheta suave */
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 40%, transparent 40%, rgba(13,11,9,.6) 100%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
  padding: 0 32px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--dark-3);
  border: 1px solid var(--bd-dark);
  color: var(--d3);
  padding: 6px 16px;
  border-radius: var(--r-pill);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 40px;
}
.hero-tag-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse-dot 2.4s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,100%{ opacity: 1; transform: scale(1); }
  50%    { opacity: .4; transform: scale(.8); }
}

.hero-h1 {
  font-family: var(--font-h);
  font-size: clamp(3.8rem, 8.5vw, 7.5rem);
  font-weight: 900;
  letter-spacing: -.055em;
  line-height: .92;
  color: var(--d1);
  margin-bottom: 32px;
}
.hero-h1 em {
  font-style: normal;
  color: var(--d3);
  font-weight: 300;
  letter-spacing: -.03em;
}

.hero-sub {
  font-family: 'Jost', sans-serif;
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: #ffffff;
  font-weight: 700;
  line-height: 1.75;
  max-width: 520px;
  margin: 0 auto 44px;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.hero-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid var(--bd-dark);
}
.proof-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-family: var(--font-h);
  color: var(--d3);
}
.proof-item strong { color: var(--gold); font-weight: 700; font-size: 22px; letter-spacing: -.02em; }
.proof-sep { width: 1px; height: 14px; background: var(--bd-dark); }

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: var(--d4);
  font-size: 11px; letter-spacing: .08em; text-transform: uppercase;
  animation: bob 2.5s ease-in-out infinite;
}
.hero-scroll .material-symbols-outlined { font-size: 18px; }
@keyframes bob { 0%,100%{ transform: translateX(-50%) translateY(0); } 50%{ transform: translateX(-50%) translateY(6px); } }

/* ════════════════════════════════════════════════════
   SERVICES LIST — editorial numbered
════════════════════════════════════════════════════ */
.services-section { background: var(--light); }

.srv-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--bd-light);
  margin-bottom: 0;
  flex-wrap: wrap;
}
.srv-header h2 {
  font-size: clamp(2rem, 3.6vw, 3rem);
  color: var(--l1);
  max-width: 400px;
}
.srv-header p {
  font-size: 15px;
  color: var(--l3);
  max-width: 340px;
  line-height: 1.7;
  flex-shrink: 0;
}

/* Editorial list */
.srv-list { display: flex; flex-direction: column; gap: 10px; }

.srv-item {
  display: grid;
  grid-template-columns: 52px 1fr 28px;
  gap: 28px;
  align-items: center;
  padding: 28px 28px;
  border: 1px solid var(--bd-light);
  border-radius: var(--r-xl);
  transition: box-shadow var(--tr), background var(--tr);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
.srv-item--green, .srv-item--violet, .srv-item--pink, .srv-item--blue {
  background: var(--gold-dim);
  border-color: var(--gold-brd);
}
.srv-item--green:hover, .srv-item--violet:hover, .srv-item--pink:hover, .srv-item--blue:hover {
  background: rgba(200,167,106,.12);
  box-shadow: 0 6px 28px rgba(200,167,106,.12);
}

.srv-item:hover .srv-num  { color: var(--l1); }
.srv-item:hover .srv-name { color: var(--l1); }
.srv-item:hover .srv-arrow { transform: rotate(-45deg); opacity: 1; }

.srv-icon-group {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 14px;
}
.srv-icon-group .material-symbols-outlined {
  font-size: 36px;
  color: var(--gold);
  opacity: .85;
  font-variation-settings: 'FILL' 1,'wght' 200,'GRAD' 0,'opsz' 40;
}

.srv-num {
  font-family: var(--font-h);
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: .04em;
  transition: color var(--tr);
}

.srv-body { min-width: 0; }
.srv-name {
  font-family: var(--font-h);
  font-size: clamp(1.25rem, 2.5vw, 1.9rem);
  font-weight: 700;
  color: var(--l2);
  letter-spacing: -.03em;
  margin-bottom: 6px;
  transition: color var(--tr);
}
.srv-desc { font-size: 14px; color: var(--l3); line-height: 1.6; max-width: 560px; }

.srv-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  flex-shrink: 0;
}
.srv-tags { display: flex; gap: 6px; flex-wrap: wrap; justify-content: flex-end; }
.srv-chip {
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(255,255,255,.72);
  border: 1px solid var(--bd-light);
  border-radius: var(--r-pill);
  padding: 4px 10px 4px 7px;
  font-size: 11px; font-weight: 600; color: var(--l2);
  letter-spacing: .02em; white-space: nowrap;
}
.srv-chip svg { width: 13px; height: 13px; flex-shrink: 0; }
.srv-chip .material-symbols-outlined { font-size: 13px; flex-shrink: 0; font-variation-settings: 'FILL' 1,'wght' 400,'GRAD' 0,'opsz' 14; }

.srv-arrow {
  font-size: 20px !important;
  color: var(--l3);
  opacity: .5;
  transition: transform .3s ease, opacity var(--tr);
}

/* ════════════════════════════════════════════════════
   STATS STRIP
════════════════════════════════════════════════════ */
.stats-strip { background: var(--dark); }
.page-home .stats-strip { display: none; }

.stats-strip .container {
  padding-top: 80px;
  padding-bottom: 80px;
  border-top: 1px solid var(--bd-dark);
  border-bottom: 1px solid var(--bd-dark);
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-box {
  padding: 0 40px;
  border-right: 1px solid var(--bd-dark);
  text-align: center;
}
.stat-box:first-child { padding-left: 0; text-align: left; }
.stat-box:last-child  { border-right: none; padding-right: 0; text-align: right; }

.stat-num {
  display: flex;
  align-items: baseline;
  gap: 2px;
  font-family: var(--font-h);
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 900;
  letter-spacing: -.06em;
  color: var(--d1);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-box:first-child .stat-num { justify-content: flex-start; }
.stat-box:last-child  .stat-num { justify-content: flex-end; }
.stat-num > span:first-child { font-size: inherit; }
.stat-suf { font-size: 60%; color: var(--gold); font-weight: 900; }
.stat-label { font-size: 13px; color: var(--d3); font-weight: 500; }

/* ════════════════════════════════════════════════════
   HOW IT WORKS
════════════════════════════════════════════════════ */
.process-section { background: var(--light); }

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 64px;
}

.process-step {
  padding: 0 36px;
  border-right: 1px solid var(--bd-light);
  position: relative;
}
.process-step:first-child { padding-left: 0; }
.process-step:last-child  { border-right: none; padding-right: 0; }

.process-step-num {
  font-family: var(--font-h);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  color: var(--gold);
  margin-bottom: 20px;
}

.process-step-icon {
  width: 40px; height: 40px;
  background: var(--light-2);
  border: 1px solid var(--bd-light);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  transition: background var(--tr), border-color var(--tr);
}
.process-step:hover .process-step-icon {
  background: var(--l1);
  border-color: var(--l1);
}
.process-step-icon .material-symbols-outlined { font-size: 20px; color: var(--l3); transition: color var(--tr); }
.process-step:hover .process-step-icon .material-symbols-outlined { color: var(--white); }

.process-step h4 { font-size: 1rem; font-weight: 800; color: var(--l1); margin-bottom: 10px; }
.process-step p  { font-size: 13px; color: var(--l3); line-height: 1.65; }

/* ════════════════════════════════════════════════════
   FEATURE SPLIT (visual showcase)
════════════════════════════════════════════════════ */
.feature-section { background: var(--dark-2); }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 80px;
  align-items: center;
}

.feature-copy .eyebrow { color: var(--gold); }
.feature-copy h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--d1);
  margin-bottom: 20px;
}
.feature-copy p { font-size: 15px; color: var(--d3); line-height: 1.75; margin-bottom: 36px; }

.feature-list { display: flex; flex-direction: column; gap: 16px; margin-bottom: 36px; }
.feature-list-item {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 14px; color: var(--d2); line-height: 1.55;
}
.feature-check {
  width: 20px; height: 20px;
  background: rgba(76,154,106,.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px;
}
.feature-check .material-symbols-outlined {
  font-size: 13px; color: var(--green);
  font-variation-settings: 'FILL' 1,'wght' 500,'GRAD' 0,'opsz' 13;
}

/* Dashboard mockup (dark) */
.dash-mockup {
  background: var(--dark-3);
  border: 1px solid var(--bd-dark);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-lg);
}
.dash-top {
  background: var(--dark-4);
  padding: 14px 20px;
  border-bottom: 1px solid var(--bd-dark);
  display: flex; align-items: center; gap: 12px;
}
.dash-dots { display: flex; gap: 6px; }
.dash-dots span { width: 10px; height: 10px; border-radius: 50%; background: var(--dark); opacity: .5; }
.dash-dots span:nth-child(1) { background: #FF5F57; opacity: 1; }
.dash-dots span:nth-child(2) { background: #FEBC2E; opacity: 1; }
.dash-dots span:nth-child(3) { background: #28C840; opacity: 1; }
.dash-title { font-size: 12px; color: var(--d3); font-weight: 600; margin-left: 4px; }
.dash-status {
  margin-left: auto;
  display: flex; align-items: center; gap: 5px;
  font-size: 11px; color: var(--green); font-weight: 600;
}
.dash-status::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--green); animation: pulse-dot 2s ease-in-out infinite; }

.dash-body { padding: 24px; display: flex; flex-direction: column; gap: 16px; }

.dash-kpi-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.dash-kpi {
  background: var(--dark-4);
  border: 1px solid var(--bd-dark);
  border-radius: var(--r-md);
  padding: 14px 16px;
}
.dash-kpi-label { font-size: 10px; color: var(--d3); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 6px; font-weight: 600; }
.dash-kpi-val { font-family: var(--font-h); font-size: 1.5rem; font-weight: 800; color: var(--d1); letter-spacing: -.04em; }
.dash-kpi-up { font-size: 11px; color: var(--green); font-weight: 600; display: flex; align-items: center; gap: 2px; margin-top: 2px; }
.dash-kpi-up .material-symbols-outlined { font-size: 13px; font-variation-settings: 'FILL' 1,'wght' 500,'GRAD' 0,'opsz' 13; }

.dash-chart-area {
  background: var(--dark-4);
  border: 1px solid var(--bd-dark);
  border-radius: var(--r-md);
  padding: 16px;
}
.dash-chart-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.dash-chart-title { font-size: 12px; font-weight: 700; color: var(--d2); }
.dash-chart-period { font-size: 11px; color: var(--d3); }
.dash-bars { display: flex; align-items: flex-end; gap: 6px; height: 60px; }
.dbar { flex: 1; border-radius: 3px 3px 0 0; background: var(--dark); animation: bar-rise .8s ease both; }
@keyframes bar-rise { from { height: 0 !important; } }
.dbar:nth-child(1)  { height: 38%; animation-delay:.05s }
.dbar:nth-child(2)  { height: 55%; animation-delay:.1s }
.dbar:nth-child(3)  { height: 42%; animation-delay:.15s }
.dbar:nth-child(4)  { height: 70%; animation-delay:.2s }
.dbar:nth-child(5)  { height: 58%; animation-delay:.25s }
.dbar:nth-child(6)  { height: 80%; animation-delay:.3s }
.dbar:nth-child(7)  { height: 92%; animation-delay:.35s; background: var(--gold) !important; }

.dash-row {
  display: flex; gap: 10px;
}
.dash-task {
  flex: 1;
  background: var(--dark-4); border: 1px solid var(--bd-dark);
  border-radius: var(--r-md); padding: 12px 14px;
  display: flex; align-items: center; gap: 10px;
  font-size: 12px; color: var(--d2);
}
.dash-task .material-symbols-outlined {
  font-size: 16px; color: var(--d3);
  font-variation-settings: 'FILL' 1,'wght' 400,'GRAD' 0,'opsz' 16;
}
.dash-task strong { display: block; font-size: 11px; color: var(--d1); margin-bottom: 1px; }
.dash-task-badge {
  margin-left: auto;
  font-size: 10px; font-weight: 700; padding: 2px 8px;
  border-radius: var(--r-pill);
}
.badge-ok { background: rgba(76,154,106,.15); color: var(--green); }
.badge-run { background: var(--gold-dim); color: var(--gold); }

/* ════════════════════════════════════════════════════
   INTEGRATIONS
════════════════════════════════════════════════════ */
.int-section { background: var(--light); }

.int-fade-wrap {
  position: relative; overflow: hidden; padding: 4px 0; margin-top: 48px;
}
.int-fade-wrap::before,
.int-fade-wrap::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 100px; z-index: 1;
}
.int-fade-wrap::before { left: 0; background: linear-gradient(to right, var(--light), transparent); }
.int-fade-wrap::after  { right: 0; background: linear-gradient(to left, var(--light), transparent); }

.int-track {
  display: flex; gap: 10px;
  width: max-content;
  animation: ticker 32s linear infinite;
}
.int-track:hover { animation-play-state: paused; }
@keyframes ticker { from{ transform:translateX(0) } to{ transform:translateX(-50%) } }

.int-chip {
  display: flex; align-items: center; gap: 7px;
  background: var(--white);
  border: 1px solid var(--bd-light);
  border-radius: var(--r-pill);
  padding: 9px 18px;
  font-size: 13px; font-weight: 600; color: var(--l2);
  white-space: nowrap;
  box-shadow: var(--sh-xs);
  transition: var(--tr);
}
.int-chip:hover { border-color: var(--gold-brd); color: var(--l1); box-shadow: var(--sh-sm); }
.int-chip .material-symbols-outlined { font-size: 16px; color: var(--l4); }

/* ════════════════════════════════════════════════════
   CTA SECTION — dark, full bleed
════════════════════════════════════════════════════ */
.cta-section { background: var(--dark); }

.cta-inner {
  text-align: center;
  padding: 100px 0;
  border-top: 1px solid var(--bd-dark);
}
.cta-inner h2 {
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  color: var(--d1);
  margin-bottom: 20px;
  letter-spacing: -.05em;
}
.cta-inner p { font-size: 16px; color: var(--d3); max-width: 480px; margin: 0 auto 44px; line-height: 1.72; }

/* ════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════ */
.footer {
  background: var(--dark);
  border-top: 1px solid var(--bd-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding: 64px 0 48px;
}

.footer-brand .nav-logo { margin-bottom: 16px; display: inline-flex; }
.footer-tagline { font-size: 13px; color: var(--d3); line-height: 1.72; max-width: 260px; margin-bottom: 28px; }
.footer-socials { display: flex; gap: 10px; }
.footer-social {
  width: 36px; height: 36px;
  background: var(--dark-3);
  border: 1px solid var(--bd-dark);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--d3); transition: var(--tr);
}
.footer-social:hover { background: var(--dark-4); color: var(--gold); border-color: var(--gold-brd); }
.footer-social .material-symbols-outlined { font-size: 17px; }

.footer-col-title {
  font-size: 11px; font-weight: 800; color: var(--d1);
  text-transform: uppercase; letter-spacing: .1em;
  margin-bottom: 18px;
}
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links li + li::before { content: none; }
.footer-links a { font-size: 13px; color: var(--d3); transition: color var(--tr); }
.footer-links a:hover { color: var(--d1); }

.footer-contacts { display: flex; flex-direction: row; flex-wrap: wrap; align-items: center; gap: 0; }
.footer-contact-item { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; color: var(--d3); }
.footer-contact-item + .footer-contact-item::before { content: '·'; padding: 0 9px; color: var(--d4); }
.footer-contact-item .material-symbols-outlined { font-size: 14px; color: var(--gold); font-variation-settings: 'FILL' 1,'wght' 400,'GRAD' 0,'opsz' 14; flex-shrink: 0; }
.footer-contact-item a { color: var(--d3); transition: color var(--tr); }
.footer-contact-item a:hover { color: var(--d1); }

.footer-bottom {
  border-top: 1px solid var(--bd-dark);
  padding: 24px 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: 12px; color: var(--d4); }
.footer-lgpd { display: flex; align-items: center; gap: 5px; font-size: 12px; color: var(--d4); }
.footer-lgpd .material-symbols-outlined { font-size: 13px; color: var(--green); font-variation-settings: 'FILL' 1,'wght' 500,'GRAD' 0,'opsz' 13; }

/* ════════════════════════════════════════════════════
   COOKIE BANNER
════════════════════════════════════════════════════ */
.cookie-banner {
  position: fixed;
  bottom: 20px; left: 50%;
  transform: translateX(-50%) translateY(140%);
  width: min(680px, calc(100vw - 32px));
  background: var(--dark-2);
  border: 1px solid var(--bd-dark);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-lg);
  z-index: 2000;
  transition: transform .5s cubic-bezier(.34,1.56,.64,1);
}
.cookie-banner.visible { transform: translateX(-50%) translateY(0); }

.cookie-inner {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 22px; flex-wrap: wrap;
}
.cookie-ic {
  width: 38px; height: 38px;
  background: var(--gold-dim);
  border: 1px solid var(--gold-brd);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--gold);
}
.cookie-text { flex: 1; min-width: 160px; font-size: 12px; color: var(--d3); line-height: 1.6; }
.cookie-text strong { color: var(--d2); }
.cookie-text a { color: var(--gold); text-decoration: underline; text-underline-offset: 2px; }
.cookie-actions { display: flex; gap: 8px; flex-shrink: 0; }
.btn-ck-reject {
  padding: 8px 15px; background: transparent;
  border: 1px solid var(--bd-dark); border-radius: var(--r-pill);
  color: var(--d3); font-size: 12px; font-weight: 600;
  font-family: var(--font-b); cursor: pointer; transition: var(--tr);
}
.btn-ck-reject:hover { border-color: var(--d3); color: var(--d2); }
.btn-ck-accept {
  display: flex; align-items: center; gap: 5px;
  padding: 8px 18px; background: var(--gold);
  border-radius: var(--r-pill);
  color: var(--dark); font-size: 12px; font-weight: 800;
  font-family: var(--font-b); cursor: pointer; transition: var(--tr);
}
.btn-ck-accept:hover { background: #d9b87a; }
.btn-ck-accept .material-symbols-outlined { font-size: 14px; font-variation-settings: 'FILL' 1,'wght' 500,'GRAD' 0,'opsz' 14; }

/* ════════════════════════════════════════════════════
   PRIVACY MODAL
════════════════════════════════════════════════════ */
.privacy-modal {
  position: fixed;
  inset: 0;
  z-index: 2500;
  background: rgba(13,11,9,.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
}
.privacy-modal.open {
  opacity: 1;
  pointer-events: all;
}
.privacy-modal-box {
  background: var(--dark-2);
  border: 1px solid var(--bd-dark);
  border-radius: var(--r-xl);
  padding: 44px 40px 36px;
  max-width: 600px;
  width: 100%;
  max-height: 82vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(12px);
  transition: transform .35s cubic-bezier(0,0,.2,1);
  scrollbar-width: thin;
  scrollbar-color: var(--dark-4) transparent;
}
.privacy-modal.open .privacy-modal-box { transform: translateY(0); }
.privacy-modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  background: var(--dark-3);
  border: 1px solid var(--bd-dark);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--d3);
  transition: color var(--tr), background var(--tr);
}
.privacy-modal-close:hover { background: var(--dark-4); color: var(--d1); }
.privacy-modal-close .material-symbols-outlined { font-size: 18px; }
.privacy-modal-box h2 {
  font-size: 1.3rem; color: var(--d1);
  margin-bottom: 8px;
}
.privacy-modal-box .pm-sub {
  font-size: 12px; color: var(--gold);
  text-transform: uppercase; letter-spacing: .08em;
  font-weight: 700; margin-bottom: 28px; display: block;
}
.privacy-modal-box h4 {
  font-size: .9rem; color: var(--d2);
  font-weight: 700; margin: 22px 0 8px;
  text-transform: uppercase; letter-spacing: .06em;
}
.privacy-modal-box p {
  font-size: 13px; color: var(--d3);
  line-height: 1.75; margin-bottom: 10px;
}
.privacy-modal-box ul {
  list-style: disc; padding-left: 18px;
  display: flex; flex-direction: column; gap: 6px;
  margin-bottom: 10px;
}
.privacy-modal-box ul li {
  font-size: 13px; color: var(--d3); line-height: 1.65;
}
.pm-divider {
  height: 1px; background: var(--bd-dark); margin: 24px 0;
}
.pm-footer {
  display: flex; gap: 8px; flex-wrap: wrap; margin-top: 24px;
}
.link-inline {
  background: none; border: none; padding: 0;
  font-family: inherit; font-size: inherit;
  color: var(--gold); cursor: pointer;
  text-decoration: underline; text-underline-offset: 2px;
}
.link-inline:hover { opacity: .72; }

/* ════════════════════════════════════════════════════
   PAGE HERO (páginas internas)
════════════════════════════════════════════════════ */
.page-hero {
  background: var(--dark);
  padding: calc(var(--nav-h) + 72px) 0 88px;
  position: relative; overflow: hidden;
}
.page-hero::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='.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: .04;
  pointer-events: none;
}

.page-hero-inner { position: relative; z-index: 1; max-width: 740px; }
.page-hero-inner .eyebrow { margin-bottom: 16px; }
.page-hero-title {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900;
  letter-spacing: -.05em;
  color: var(--d1);
  margin-bottom: 20px;
}
.page-hero-title em { font-style: normal; color: var(--gold); }
.page-hero-sub { font-size: 16px; color: var(--d2); line-height: 1.72; max-width: 560px; opacity: .78; }

/* Services page nav pills */
.srv-pills { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 36px; }
.srv-pill {
  display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.28);
  border-radius: var(--r-md);
  padding: 17px 20px;
  font-size: 13px; font-weight: 700; color: var(--d1);
  font-family: var(--font-h); letter-spacing: -.01em;
  transition: var(--tr);
}
.srv-pill:hover { border-color: var(--gold-brd); color: var(--gold); background: var(--gold-dim); }
.srv-pill .material-symbols-outlined { font-size: 15px; }

/* ════════════════════════════════════════════════════
   SOBRE PAGE
════════════════════════════════════════════════════ */
.mvv-section { background: var(--light); }
.mvv-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--bd-light); border: 1px solid var(--bd-light); border-radius: var(--r-xl); overflow: hidden; }
.mvv-card { background: var(--white); padding: 40px 36px; transition: background var(--tr); }
.mvv-card:hover { background: var(--light); }
.mvv-eyebrow {
  font-size: 11px; font-weight: 800; color: var(--gold);
  text-transform: uppercase; letter-spacing: .1em; margin-bottom: 14px;
}
.mvv-card h3 { font-size: 1.4rem; color: var(--l1); margin-bottom: 14px; }
.mvv-card p { font-size: 14px; color: var(--l3); line-height: 1.72; }
.mvv-list { display: flex; flex-direction: column; gap: 10px; }
.mvv-list li { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--l3); }
.mvv-list .material-symbols-outlined { font-size: 16px; color: var(--green); font-variation-settings:'FILL' 1,'wght' 500,'GRAD' 0,'opsz' 16; flex-shrink: 0; }

/* Story */
.story-section { background: var(--dark-2); }
.story-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 80px; align-items: center; }
.story-grid h2 { color: var(--d1); margin-bottom: 24px; }
.story-text { display: flex; flex-direction: column; gap: 16px; }
.story-text p { font-size: 15px; color: var(--d3); line-height: 1.75; }

.story-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.story-metric {
  background: var(--dark-3); border: 1px solid var(--bd-dark);
  border-radius: var(--r-lg); padding: 28px;
  transition: border-color var(--tr);
}
.story-metric:hover { border-color: var(--gold-brd); }
.story-metric strong {
  display: block;
  font-family: var(--font-h); font-size: 2.4rem; font-weight: 900;
  color: var(--d1); letter-spacing: -.05em; line-height: 1;
  margin-bottom: 4px;
}
.story-metric small { font-size: 12px; color: var(--d3); text-transform: uppercase; letter-spacing: .06em; }
.story-metric-accent { border-color: var(--gold-brd); background: var(--gold-dim); }
.story-metric-accent strong { color: var(--gold); }

/* Culture */
.culture-section { background: var(--light); }
.culture-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.culture-card {
  background: var(--white); border: 1px solid var(--bd-light);
  border-radius: var(--r-lg); padding: 28px;
  transition: var(--tr); box-shadow: var(--sh-xs);
}
.culture-card:hover { border-color: var(--bd-mid); box-shadow: var(--sh-sm); transform: translateY(-2px); }
.culture-ic {
  width: 40px; height: 40px;
  background: var(--light-2); border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.culture-ic .material-symbols-outlined { font-size: 20px; color: var(--l3); }
.culture-card h4 { font-size: .95rem; font-weight: 800; color: var(--l1); margin-bottom: 8px; }
.culture-card p  { font-size: 13px; color: var(--l3); line-height: 1.65; }

/* Timeline */
.timeline-section { background: var(--dark); }
.timeline-list {
  position: relative; margin-top: 56px;
  padding-left: 40px; display: flex; flex-direction: column;
}
.timeline-list::before {
  content: ''; position: absolute; left: 12px; top: 8px; bottom: 8px;
  width: 1px; background: var(--bd-dark);
}
.timeline-item { position: relative; padding-bottom: 40px; }
.timeline-item:last-child { padding-bottom: 0; }
.tl-dot {
  position: absolute; left: -35px; top: 6px;
  width: 12px; height: 12px; border-radius: 50%;
  border: 1px solid var(--d4); background: var(--dark);
  transition: var(--tr);
}
.timeline-item:hover .tl-dot { border-color: var(--gold); background: var(--gold); }
.tl-dot-now { border-color: var(--gold) !important; background: var(--gold) !important; }
.tl-year { font-family: var(--font-h); font-size: .85rem; font-weight: 800; color: var(--d3); margin-bottom: 6px; }
.tl-year.gold { color: var(--gold); }
.timeline-item h4 { font-size: 1rem; font-weight: 800; color: var(--d1); margin-bottom: 6px; }
.timeline-item p  { font-size: 13px; color: var(--d3); line-height: 1.65; max-width: 520px; }

/* ════════════════════════════════════════════════════
   SERVIÇOS PAGE — service detail blocks
════════════════════════════════════════════════════ */
.srv-detail { background: var(--light); overflow: hidden; }
.srv-detail-alt { background: var(--white); }

/* ── Stacked service block layout ───────────────── */
.srv-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.srv-block-head { width: 100%; margin-bottom: 40px; }
.srv-block-head h2 {
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
  color: var(--l1);
  margin: 0;
  line-height: 1.18;
}

.srv-block-visual {
  width: 100%;
  max-width: 600px;
  margin-bottom: 48px;
}
.srv-block-visual .chat-shell,
.srv-block-visual .auto-panel,
.srv-block-visual .social-shell,
.srv-block-visual .web-shell { width: 100%; }

.srv-block-body { width: 100%; text-align: left; }
.srv-block-body > p {
  font-size: 15px; color: var(--l3); line-height: 1.75;
  margin-bottom: 28px; text-align: center;
}

.sf-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px 32px;
}

.srv-block-cta {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.srv-detail-tag {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(200,167,106,.12);
  border: 1px solid rgba(200,167,106,.32);
  color: var(--gold);
  font-size: 11px; font-weight: 800;
  text-transform: uppercase; letter-spacing: .1em;
  padding: 5px 13px;
  border-radius: var(--r-pill);
  margin-bottom: 20px;
}
.srv-detail-tag .material-symbols-outlined {
  font-size: 14px;
  font-variation-settings:'FILL' 1,'wght' 400,'GRAD' 0,'opsz' 14;
}

.srv-detail-copy h2 { font-size: clamp(1.8rem,3vw,2.6rem); color: var(--l1); margin-bottom: 16px; }
.srv-detail-copy p  { font-size: 15px; color: var(--l3); line-height: 1.75; margin-bottom: 28px; }

.sf-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.sf-item { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--l2); }
.sf-check {
  width: 20px; height: 20px; border-radius: 50%;
  background: rgba(76,154,106,.12);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.sf-check .material-symbols-outlined { font-size: 12px; color: var(--green); font-variation-settings:'FILL' 1,'wght' 600,'GRAD' 0,'opsz' 12; }

/* Chat mockup (serviços) */
.chat-shell {
  background: var(--dark-2); border: 1px solid var(--bd-dark);
  border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh-lg);
}
.chat-top {
  background: var(--dark-3); padding: 14px 18px;
  border-bottom: 1px solid var(--bd-dark);
  display: flex; align-items: center; gap: 10px;
}
.chat-av {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--gold); display: flex; align-items: center; justify-content: center;
}
.chat-av .material-symbols-outlined { font-size: 17px; color: var(--dark); font-variation-settings:'FILL' 1,'wght' 400,'GRAD' 0,'opsz' 17; }
.chat-name strong { display: block; font-size: 13px; color: var(--d1); }
.chat-name small  { font-size: 11px; color: var(--green); display: flex; align-items: center; gap: 4px; }
.online-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); display: inline-block; animation: pulse-dot 2s ease-in-out infinite; }

.chat-msgs { padding: 16px; display: flex; flex-direction: column; gap: 10px; min-height: 200px; }
.cmsg { max-width: 82%; padding: 9px 13px; font-size: 12px; line-height: 1.5; border-radius: var(--r-lg); }
.cmsg p { margin-bottom: 3px; }
.cmsg-time { font-size: 10px; opacity: .5; }
.cmsg-bot { background: var(--dark-3); border: 1px solid var(--bd-dark); border-radius: var(--r-lg) var(--r-lg) var(--r-lg) 4px; color: var(--d2); }
.cmsg-user { background: var(--gold); color: var(--dark); border-radius: var(--r-lg) var(--r-lg) 4px var(--r-lg); align-self: flex-end; text-align: right; }
.cmsg-typing { background: var(--dark-3); border: 1px solid var(--bd-dark); padding: 12px 16px; display: flex; gap: 4px; align-items: center; width: fit-content; border-radius: var(--r-lg) var(--r-lg) var(--r-lg) 4px; }
.cmsg-typing span { width: 5px; height: 5px; border-radius: 50%; background: var(--d3); animation: typing 1.4s ease-in-out infinite; }
.cmsg-typing span:nth-child(2) { animation-delay:.2s }
.cmsg-typing span:nth-child(3) { animation-delay:.4s }
@keyframes typing { 0%,80%,100%{transform:translateY(0);opacity:.3} 40%{transform:translateY(-5px);opacity:1} }

.platform-row { display: flex; gap: 8px; margin-top: 12px; flex-wrap: wrap; }
.plat-chip {
  display: flex; align-items: center; gap: 5px;
  background: var(--light); border: 1px solid var(--bd-light);
  border-radius: var(--r-pill); padding: 5px 12px;
  font-size: 12px; font-weight: 600; color: var(--l3); box-shadow: var(--sh-xs);
}
.plat-chip .material-symbols-outlined { font-size: 14px; color: var(--gold); }

/* ── Automation Dashboard Panel ─────────────────── */
.auto-panel {
  background: var(--dark-2); border: 1px solid var(--bd-dark);
  border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh-lg);
}
.auto-panel-header {
  display: flex; align-items: center; gap: 10px;
  padding: 13px 18px;
  background: var(--dark-3); border-bottom: 1px solid var(--bd-dark);
}
.auto-live-badge {
  display: flex; align-items: center; gap: 5px;
  background: rgba(76,154,106,.15); border: 1px solid rgba(76,154,106,.3);
  border-radius: var(--r-pill); padding: 3px 9px;
  font-size: 10px; font-weight: 800; color: var(--green);
  text-transform: uppercase; letter-spacing: .06em; flex-shrink: 0;
}
.auto-pulse {
  width: 6px; height: 6px; border-radius: 50%; background: var(--green);
  animation: pulse-dot 2s ease-in-out infinite;
}
.auto-panel-title {
  font-family: var(--font-h); font-size: 13px; font-weight: 700;
  color: var(--d1); flex: 1;
}
.auto-count-chip {
  font-size: 11px; color: var(--d3);
  background: var(--dark-4); border: 1px solid var(--bd-dark);
  border-radius: var(--r-sm); padding: 2px 8px; flex-shrink: 0;
}

.auto-rows { padding: 4px 0; }
.auto-row {
  display: flex; align-items: center; gap: 11px;
  padding: 10px 18px; border-bottom: 1px solid var(--bd-dark);
  transition: background .15s;
}
.auto-row:last-child { border-bottom: none; }
.auto-row:hover { background: rgba(255,255,255,.02); }

.ar-icon {
  width: 30px; height: 30px; border-radius: var(--r-sm); flex-shrink: 0;
  background: rgba(200,167,106,.1); border: 1px solid rgba(200,167,106,.2);
  display: flex; align-items: center; justify-content: center;
}
.ar-icon .material-symbols-outlined {
  font-size: 15px; color: var(--gold);
  font-variation-settings:'FILL' 1,'wght' 400,'GRAD' 0,'opsz' 15;
}
.ar-flow { flex: 1; min-width: 0; }
.ar-label { display: block; font-size: 11px; font-weight: 600; color: var(--d2); margin-bottom: 5px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ar-track { height: 3px; background: var(--dark-4); border-radius: 99px; overflow: hidden; }
.ar-fill {
  height: 100%; border-radius: 99px;
  background: linear-gradient(90deg, var(--gold) 0%, rgba(200,167,106,.35) 100%);
  animation: ar-run 2.8s var(--d, 0s) ease-in-out infinite;
}
@keyframes ar-run {
  0%   { width: 0%; opacity: 1; }
  65%  { width: 100%; opacity: 1; }
  80%  { width: 100%; opacity: .5; }
  100% { width: 100%; opacity: 0; }
}

.ar-chips { display: flex; gap: 4px; flex-wrap: nowrap; flex-shrink: 0; }
.ar-chip {
  font-size: 10px; font-weight: 600; color: var(--d3);
  background: var(--dark-3); border: 1px solid var(--bd-dark);
  border-radius: var(--r-sm); padding: 2px 7px; white-space: nowrap;
}
.ar-done { flex-shrink: 0; }
.ar-done .material-symbols-outlined {
  font-size: 16px; color: var(--green);
  font-variation-settings:'FILL' 1,'wght' 400,'GRAD' 0,'opsz' 16;
  display: block;
}
.auto-footer {
  display: flex; border-top: 1px solid var(--bd-dark);
}
.af-stat {
  flex: 1; text-align: center; padding: 11px 8px;
  border-right: 1px solid var(--bd-dark);
}
.af-stat:last-child { border-right: none; }
.af-stat strong { display: block; font-family: var(--font-h); font-size: 1rem; font-weight: 900; color: var(--d1); letter-spacing: -.03em; }
.af-stat small { font-size: 9px; color: var(--d3); text-transform: uppercase; letter-spacing: .06em; }

/* Social mockup */
.social-shell {
  background: var(--white); border: 1px solid var(--bd-light);
  border-radius: var(--r-xl); padding: 20px; box-shadow: var(--sh-md);
}
.social-top { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.social-top strong { font-size: 14px; color: var(--l1); font-weight: 700; }
.social-top .material-symbols-outlined { font-size: 19px; color: var(--l3); font-variation-settings:'FILL' 1,'wght' 400,'GRAD' 0,'opsz' 19; }
.soc-verified { margin-left: auto; }
.soc-verified .material-symbols-outlined { font-size: 16px; color: #3B82F6; font-variation-settings:'FILL' 1,'wght' 400,'GRAD' 0,'opsz' 16; }

.soc-stats { display: grid; grid-template-columns: repeat(3,1fr); border: 1px solid var(--bd-light); border-radius: var(--r-md); overflow: hidden; margin-bottom: 14px; }
.soc-stat { text-align: center; padding: 12px; border-right: 1px solid var(--bd-light); }
.soc-stat:last-child { border-right: none; }
.soc-stat strong { display: block; font-family: var(--font-h); font-size: 1.2rem; font-weight: 900; color: var(--l1); }
.soc-stat small   { font-size: 10px; color: var(--l3); }

.soc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 6px; margin-bottom: 12px; }
.soc-post {
  aspect-ratio: 1;
  border-radius: var(--r-sm);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: var(--bd-light);
}
.soc-post-img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.soc-post:hover .soc-post-img { transform: scale(1.06); }
.soc-post-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.72) 0%, rgba(0,0,0,.1) 55%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 8px;
  opacity: 0;
  transition: opacity .25s ease;
}
.soc-post:hover .soc-post-overlay { opacity: 1; }
.soc-post-caption {
  font-size: 9px; font-weight: 600; color: rgba(255,255,255,.92);
  line-height: 1.35; margin-bottom: 5px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.soc-post-stats {
  display: flex; gap: 8px;
}
.soc-post-stat {
  display: flex; align-items: center; gap: 3px;
  font-size: 9px; font-weight: 700; color: rgba(255,255,255,.85);
}
.soc-post-stat .material-symbols-outlined {
  font-size: 11px;
  font-variation-settings:'FILL' 1,'wght' 400,'GRAD' 0,'opsz' 11;
}

.soc-next { display: flex; align-items: center; gap: 7px; font-size: 12px; color: var(--l3); background: var(--light); border: 1px solid var(--bd-light); border-radius: var(--r-md); padding: 8px 12px; }
.soc-next .material-symbols-outlined { font-size: 14px; color: var(--gold); }
.soc-next strong { color: var(--l1); }
.soc-badge { margin-left: auto; background: var(--green); color: #fff; border-radius: var(--r-pill); padding: 2px 8px; font-size: 10px; font-weight: 800; }

/* Web mockup */
.web-shell {
  background: var(--white); border: 1px solid var(--bd-light);
  border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh-md);
}
.web-bar { background: var(--light); padding: 10px 14px; border-bottom: 1px solid var(--bd-light); display: flex; align-items: center; gap: 8px; }
.web-dots { display: flex; gap: 5px; }
.web-dots span { width: 9px; height: 9px; border-radius: 50%; }
.web-dots span:nth-child(1) { background: #FF5F57; }
.web-dots span:nth-child(2) { background: #FEBC2E; }
.web-dots span:nth-child(3) { background: #28C840; }
.web-url { flex: 1; text-align: center; background: var(--light-2); border-radius: var(--r-pill); padding: 3px 10px; font-size: 11px; color: var(--l3); }
.web-body { padding: 16px; display: flex; flex-direction: column; gap: 10px; }
.web-hero-mock { background: var(--dark); border-radius: var(--r-md); padding: 16px; display: flex; flex-direction: column; gap: 7px; }
.web-sk { border-radius: 3px; background: rgba(255,255,255,.1); }
.web-btns { display: flex; gap: 6px; margin-top: 2px; }
.web-btns span { height: 22px; border-radius: var(--r-pill); }
.web-btns span:first-child { width: 70px; background: var(--gold); }
.web-btns span:last-child  { width: 56px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); }
.web-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 6px; }
.web-card-sk { height: 40px; background: var(--light-2); border: 1px solid var(--bd-light); border-radius: var(--r-sm); }
.web-metrics { display: flex; border-top: 1px solid var(--bd-light); }
.web-metric { flex: 1; display: flex; align-items: center; gap: 8px; padding: 11px 14px; border-right: 1px solid var(--bd-light); }
.web-metric:last-child { border-right: none; }
.web-metric .material-symbols-outlined { font-size: 16px; color: var(--gold); }
.web-metric strong { display: block; font-size: 12px; color: var(--l1); font-weight: 800; }
.web-metric small  { font-size: 10px; color: var(--l3); }

/* Plans */
.plans-section { background: var(--light-2); }
.plans-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; align-items: start; }
.plans-grid-2 { grid-template-columns: repeat(2,1fr); max-width: 780px; margin: 0 auto; }
.plan-card {
  background: var(--white); border: 1px solid var(--bd-light);
  border-radius: var(--r-xl); padding: 36px 30px;
  box-shadow: var(--sh-xs); transition: var(--tr); position: relative;
}
.plan-card:hover { box-shadow: var(--sh-md); transform: translateY(-2px); }
.plan-featured { border: 2px solid var(--l1); box-shadow: var(--sh-md); }
.plan-featured:hover { box-shadow: var(--sh-lg); }
.plan-badge {
  position: absolute; top: -11px; left: 50%; transform: translateX(-50%);
  background: var(--l1); color: var(--white);
  font-size: 11px; font-weight: 800; padding: 3px 14px;
  border-radius: var(--r-pill); white-space: nowrap;
}
.plan-icon {
  width: 44px; height: 44px; border-radius: var(--r-md);
  background: var(--light-2); border: 1px solid var(--bd-light);
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.plan-icon .material-symbols-outlined {
  font-size: 20px; color: var(--l3);
  font-variation-settings:'FILL' 1,'wght' 400,'GRAD' 0,'opsz' 20;
}
.plan-icon-gold {
  background: rgba(200,167,106,.12); border-color: rgba(200,167,106,.3);
}
.plan-icon-gold .material-symbols-outlined { color: var(--gold); }
.plan-name { font-family: var(--font-h); font-size: .85rem; font-weight: 800; color: var(--l3); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 10px; }
.plan-desc { font-size: 13px; color: var(--l3); line-height: 1.6; margin-bottom: 22px; padding-bottom: 20px; border-bottom: 1px solid var(--bd-light); }
.plan-feats { display: flex; flex-direction: column; gap: 8px; margin-bottom: 28px; }
.plan-feats li { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--l2); }
.plan-feats .material-symbols-outlined { font-size: 15px; color: var(--green); font-variation-settings:'FILL' 1,'wght' 500,'GRAD' 0,'opsz' 15; flex-shrink: 0; }
.plan-feats li.off { color: var(--l4); }
.plan-feats li.off .material-symbols-outlined { color: var(--l4); font-variation-settings:'FILL' 0,'wght' 300,'GRAD' 0,'opsz' 15; }
.plan-choose-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--l4); margin-bottom: 10px; }
.plan-options { display: flex; flex-direction: column; gap: 8px; margin-bottom: 28px; list-style: none; padding: 0; }
.plan-opt {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; border-radius: 10px;
  background: var(--light); border: 1px solid var(--bd-light);
  font-size: 13px; color: var(--l2); transition: border-color .2s;
}
.plan-opt .material-symbols-outlined { font-size: 16px; color: var(--l4); flex-shrink: 0; font-variation-settings:'FILL' 0,'wght' 400,'GRAD' 0,'opsz' 16; }

/* ════════════════════════════════════════════════════
   CONTATO PAGE
════════════════════════════════════════════════════ */
.contact-section { background: var(--light); }
.contact-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 56px; align-items: start; }

.contact-form-box {
  background: var(--dark);
  border: 1px solid var(--bd-dark);
  border-radius: var(--r-xl);
  padding: 52px;
  box-shadow: 0 32px 80px rgba(0,0,0,.18);
}
.form-hdr { margin-bottom: 36px; }
.form-hdr h2 {
  font-family: 'Jost', sans-serif;
  font-size: 1.75rem; font-weight: 800;
  color: var(--d1); margin-bottom: 8px;
  letter-spacing: -.03em;
}
.form-hdr h2 em { font-style: normal; color: var(--gold); }
.form-hdr p  { font-size: 13px; color: var(--d3); }
.req { color: var(--gold); }

.form-row-2 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.form-grp { margin-bottom: 20px; }
.form-grp label {
  display: block; font-family: 'Jost', sans-serif;
  font-size: 10px; font-weight: 700;
  color: var(--d3); margin-bottom: 8px;
  text-transform: uppercase; letter-spacing: .1em;
}

.f-input-wrap { position: relative; display: flex; align-items: center; }

.f-input-wrap input, .f-input-wrap textarea {
  width: 100%;
  background: var(--dark-3);
  border: 1px solid var(--bd-dark);
  border-radius: var(--r-md);
  padding: 14px 18px;
  color: var(--d1);
  font-family: 'Jost', sans-serif;
  font-size: 15px; font-weight: 500;
  transition: border-color var(--tr), background var(--tr), box-shadow var(--tr);
}
.f-input-wrap input:focus, .f-input-wrap textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--dark-4);
  box-shadow: 0 0 0 3px rgba(200,167,106,.12);
}
.f-input-wrap input::placeholder, .f-input-wrap textarea::placeholder {
  color: var(--d4); font-weight: 400;
}
.f-ta-wrap { align-items: flex-start; }
.f-ta-wrap textarea { resize: none; min-height: 130px; line-height: 1.6; }

.lgpd-check { margin-bottom: 24px; }
.check-label { display: flex; align-items: flex-start; gap: 12px; cursor: pointer; }
.check-label input[type="checkbox"] { display: none; }
.check-box {
  width: 20px; height: 20px; flex-shrink: 0; margin-top: 1px;
  border: 1.5px solid var(--bd-dark); border-radius: 5px;
  background: var(--dark-3); transition: var(--tr); position: relative;
}
.check-label input:checked + .check-box { background: var(--gold); border-color: var(--gold); }
.check-label input:checked + .check-box::after {
  content: ''; position: absolute; left: 5px; top: 2px;
  width: 6px; height: 10px;
  border: 2px solid var(--dark); border-top: none; border-left: none;
  transform: rotate(45deg);
}
.check-label span:last-child { font-size: 12px; color: var(--d3); line-height: 1.65; }
.check-label a { color: var(--gold); text-decoration: underline; text-underline-offset: 2px; }

.btn-form-submit {
  width: 100%; justify-content: center;
  background: var(--gold);
  color: var(--dark);
  font-family: 'Jost', sans-serif;
  font-size: 15px; font-weight: 800;
  padding: 16px 28px;
  border-radius: var(--r-md);
  border: none; cursor: pointer;
  transition: var(--tr-med);
  letter-spacing: -.01em;
}
.btn-form-submit:hover { background: #d4b47a; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(200,167,106,.3); }
.btn-form-submit .material-symbols-outlined { font-size: 18px; }

.form-success-msg {
  display: flex; align-items: flex-start; gap: 12px;
  background: rgba(76,154,106,.10); border: 1px solid rgba(76,154,106,.25);
  border-radius: var(--r-md); padding: 16px; margin-top: 16px;
}
.form-success-msg .material-symbols-outlined { color: var(--green); font-size: 22px; font-variation-settings:'FILL' 1,'wght' 500,'GRAD' 0,'opsz' 22; flex-shrink: 0; }
.form-success-msg strong { display: block; color: var(--green); margin-bottom: 4px; font-family: 'Jost', sans-serif; }
.form-success-msg p { font-size: 13px; color: var(--d3); }

.spin { animation: spin 1s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

.contact-aside { display: flex; flex-direction: column; gap: 16px; }
.contact-card {
  background: var(--white); border: 1px solid var(--bd-light);
  border-radius: var(--r-lg); padding: 20px;
  display: flex; align-items: flex-start; gap: 14px;
  box-shadow: var(--sh-xs); transition: var(--tr);
}
.contact-card:hover { border-color: var(--gold-brd); box-shadow: var(--sh-sm); }
.cc-ic {
  width: 40px; height: 40px;
  background: var(--gold-dim); border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.cc-ic .material-symbols-outlined { font-size: 19px; color: var(--gold); font-variation-settings:'FILL' 1,'wght' 300,'GRAD' 0,'opsz' 19; }
.contact-card h4 { font-size: 11px; font-weight: 800; color: var(--l1); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 4px; }
.contact-card p  { font-size: 13px; color: var(--l3); line-height: 1.5; }
.contact-card a  { color: var(--gold); }

.faq-box { margin-top: 4px; }
.faq-box h3 { font-size: 1.1rem; color: var(--l1); margin-bottom: 14px; }
.faq-item { border-bottom: 1px solid var(--bd-light); }
.faq-q {
  width: 100%; text-align: left; display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 14px 0; font-size: 13px; font-weight: 700; color: var(--l2);
  font-family: var(--font-h); transition: color var(--tr);
}
.faq-q:hover { color: var(--l1); }
.faq-q .material-symbols-outlined { font-size: 18px; transition: transform var(--tr); flex-shrink: 0; color: var(--l4); }
.faq-item.open .faq-q { color: var(--l1); }
.faq-item.open .faq-q .material-symbols-outlined { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .38s ease; }
.faq-item.open .faq-a { max-height: 160px; }
.faq-a p { font-size: 13px; color: var(--l3); line-height: 1.7; padding-bottom: 14px; }

/* ════════════════════════════════════════════════════
   404
════════════════════════════════════════════════════ */
.err-section {
  min-height: 100vh; background: var(--dark); padding-top: var(--nav-h);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.err-inner { text-align: center; position: relative; z-index: 1; }
.err-code { font-family: var(--font-h); font-size: clamp(7rem,18vw,16rem); font-weight: 900; letter-spacing: -.07em; line-height: .85; color: var(--dark-3); margin-bottom: 24px; }
.err-inner h1 { font-size: 2rem; color: var(--d1); margin-bottom: 14px; }
.err-inner p  { font-size: 16px; color: var(--d3); max-width: 440px; margin: 0 auto 36px; line-height: 1.72; }
.err-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ════════════════════════════════════════════════════
   PHOTO BG LAYER — hero & page-hero
════════════════════════════════════════════════════ */
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    160deg,
    rgba(13,11,9,.94) 0%,
    rgba(13,11,9,.70) 52%,
    rgba(13,11,9,.90) 100%
  );
}

/* ════════════════════════════════════════════════════
   STORY PHOTO — sobre page
════════════════════════════════════════════════════ */
.story-photo {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 32px 80px rgba(0,0,0,.5);
}
.story-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: brightness(.78) saturate(.85);
}
.story-photo-badges {
  position: absolute;
  bottom: 20px; left: 16px; right: 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.story-badge {
  background: rgba(13,11,9,.80);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--bd-dark);
  border-radius: var(--r-lg);
  padding: 13px 14px;
  text-align: center;
}
.story-badge strong {
  display: block;
  font-family: var(--font-h);
  font-size: 2.1rem;
  font-weight: 900;
  letter-spacing: -.04em;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.story-badge small { font-size: 10px; color: var(--d3); text-transform: uppercase; letter-spacing: .06em; }
.story-badge-accent { border-color: var(--gold-brd); }
.story-badge-accent strong { color: var(--gold); }

/* ════════════════════════════════════════════════════
   IMAGE BREAK — full-bleed photo with quote
════════════════════════════════════════════════════ */
.img-break {
  position: relative;
  height: 440px;
  overflow: hidden;
}
.img-break img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  filter: brightness(.65) saturate(.8);
}
.img-break-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    100deg,
    rgba(13,11,9,.90) 0%,
    rgba(13,11,9,.55) 55%,
    rgba(13,11,9,.20) 100%
  );
}
.img-break-inner {
  position: absolute; inset: 0;
  display: flex;
  align-items: center;
  z-index: 1;
}
.img-quote {
  max-width: 520px;
  padding: 36px 40px;
  background: rgba(13,11,9,.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--bd-dark);
  border-left: 3px solid var(--gold);
  border-radius: var(--r-xl);
}
.img-quote p {
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  color: var(--d1);
  line-height: 1.6;
  font-style: italic;
  font-weight: 400;
  margin-bottom: 18px;
}
.img-quote cite {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-style: normal;
  color: var(--gold); font-weight: 700;
}
.img-quote cite::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--gold); flex-shrink: 0;
}

/* ════════════════════════════════════════════════════
   UTILITIES
════════════════════════════════════════════════════ */
@keyframes slide-up { from{ opacity:0; transform:translateY(12px) } to{ opacity:1; transform:none } }

/* ════════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════════ */
@media (max-width: 1060px) {
  .feature-grid { grid-template-columns: 1fr; gap: 48px; }
  .culture-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid  { grid-template-columns: repeat(3, 1fr); gap: 36px; }
  .process-grid { grid-template-columns: repeat(2,1fr); gap: 32px; }
  .stats-row    { grid-template-columns: repeat(2,1fr); gap: 0; }
  .stat-box:nth-child(2) { border-right: none; }
  .stat-box     { text-align: center !important; padding: 32px 20px; }
  .stat-num     { justify-content: center !important; }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .srv-detail-grid { grid-template-columns: 1fr; gap: 40px; }
  .srv-detail-grid.rev { direction: ltr; }
  .story-grid { grid-template-columns: 1fr; gap: 40px; }
  .story-photo { aspect-ratio: 16/9; }
  .plans-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .plans-grid-2 { grid-template-columns: 1fr; max-width: 420px; }
  .contact-grid { grid-template-columns: 1fr; }
  .mvv-grid { grid-template-columns: 1fr; }
  .srv-item { grid-template-columns: 40px 1fr 22px; gap: 16px; padding: 20px 18px; }
  .img-break { height: 300px; }
  .img-quote { padding: 24px 28px; }
}

@media (max-width: 680px) {
  :root { --section-gap: 80px; }
  .container { padding: 0 20px; }
  .hero-h1 { font-size: 3.2rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-proof { gap: 16px; }
  .proof-sep { display: none; }
  .srv-header { flex-direction: column; align-items: flex-start; }
  .stats-row { grid-template-columns: repeat(3, 1fr); }
  .process-grid { grid-template-columns: 1fr; gap: 24px; }
  .process-step { padding: 0 0 24px; border-right: none; border-bottom: 1px solid var(--bd-light); }
  .process-step:last-child { border-bottom: none; padding-bottom: 0; }
  .culture-grid { grid-template-columns: 1fr; }
  .footer-grid  { grid-template-columns: 1fr; text-align: center; }
  .footer-links { justify-content: center; }
  .footer-contacts { justify-content: center; }
  .footer-socials { justify-content: center; }
  .footer-tagline { max-width: 100%; }
  .cta-inner    { padding: 60px 0; }
  .form-row-2   { grid-template-columns: 1fr; }
  .contact-form-box { padding: 32px 24px; }
  .cookie-inner { flex-direction: column; text-align: center; }
  .cookie-actions { width: 100%; justify-content: center; }
  .srv-pills { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .srv-pill { justify-content: center; }
  .mvv-grid { background: none; border: none; border-radius: 0; gap: 16px; }
  .mvv-card { border: 1px solid var(--bd-light); border-radius: var(--r-lg); }
  .page-hero-title { font-size: 2.6rem; }
  .img-break { height: 240px; }
  .img-quote { max-width: 100%; }
  .img-quote p { font-size: 1rem; }
  .story-photo { aspect-ratio: 3/2; }
  .story-photo-badges { grid-template-columns: repeat(3, 1fr); }
}

/* ── Nav right (lang + hamburger) ────────────────── */
.nav-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ── Language Switcher ───────────────────────────── */
.lang-switcher { position: relative; }

.lang-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  background: transparent;
  border: 1px solid rgba(255,255,255,.14);
  color: var(--d2);
  font-family: var(--font-h);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  padding: 6px 10px 6px 8px;
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: border-color .2s, color .2s, background .2s;
  white-space: nowrap;
  line-height: 1;
}
.lang-btn:hover,
.lang-btn.open {
  border-color: var(--gold);
  color: var(--d1);
  background: rgba(200,167,106,.06);
}
.lang-flag  { font-size: 17px; line-height: 1; }
.lang-code  { font-size: 11px; letter-spacing: .06em; }
.lang-arrow {
  font-size: 16px !important;
  color: var(--d3);
  transition: transform .25s ease, color .2s;
}
.lang-btn.open .lang-arrow {
  transform: rotate(180deg);
  color: var(--gold);
}

/* Dropdown panel */
.lang-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-md);
  padding: 6px;
  min-width: 160px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px) scale(.97);
  transform-origin: top right;
  transition: opacity .22s ease, transform .22s ease;
  z-index: 9999;
  box-shadow: 0 16px 48px rgba(0,0,0,.55), 0 0 0 1px rgba(255,255,255,.04);
}
.lang-dropdown.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

/* Each option row */
.lang-opt {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: calc(var(--r-md) - 3px);
  text-decoration: none;
  color: var(--d2);
  transition: background .15s, color .15s;
  cursor: pointer;
}
.lang-opt:hover { background: var(--dark-4); color: var(--d1); }
.lang-opt--active { color: var(--gold); }
.lang-opt--active .lang-opt-code { color: var(--gold); }

.lang-opt-flag   { font-size: 20px; line-height: 1; flex-shrink: 0; }
.lang-opt-text   { display: flex; flex-direction: column; gap: 1px; }
.lang-opt-code   {
  font-family: var(--font-h);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
  color: var(--d1);
  line-height: 1;
}
.lang-opt-native {
  font-family: var(--font-b);
  font-size: 11px;
  color: var(--d3);
  line-height: 1;
}

/* ViaStats attribution bar — hidden on own site */
#_vnfoot { display: none !important; }
body { padding-bottom: 0 !important; }
