/* =========================================================
   DESIGN TOKENS — extracted from Grupo Versatile logo
   ========================================================= */
:root {
  /* Brand */
  --navy-900: #061534;
  --navy-800: #0A1F44;
  --navy-700: #102B5F;
  --navy-600: #163A82;
  --royal-500: #1E5BBF;
  --royal-400: #2C75E6;
  --blue-300: #5B9BFF;
  --chrome-400: #B8C2CC;
  --chrome-300: #D6DEE8;

  /* Neutrals */
  --white: #FFFFFF;
  --bone: #F6F7FB;
  --mist: #EEF1F7;
  --line: #E3E8F0;
  --ink-900: #060B1B;
  --ink-700: #1A2440;
  --ink-500: #4A5577;
  --ink-400: #6C7895;

  /* CTA accents */
  --amber-500: #F59E0B;
  --amber-400: #FBBF24;
  --whats-500: #25D366;
  --whats-600: #1FB855;

  /* Effects */
  --shadow-sm: 0 2px 8px rgba(6, 21, 52, 0.06);
  --shadow-md: 0 12px 32px rgba(6, 21, 52, 0.08);
  --shadow-lg: 0 24px 64px rgba(6, 21, 52, 0.12);
  --shadow-xl: 0 40px 120px rgba(6, 21, 52, 0.18);

  /* Type scale */
  --font-display: 'Bricolage Grotesque', system-ui, sans-serif;
  --font-body: 'Inter Tight', system-ui, sans-serif;
  --font-serif: 'Instrument Serif', Georgia, serif;

  /* Layout */
  --max: 1320px;
  --gutter: clamp(20px, 4vw, 56px);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-xl: 40px;

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
*::selection { background: var(--royal-500); color: white; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-700);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* =========================================================
   LOADER
   ========================================================= */
.loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--navy-900);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s var(--ease-out), visibility 0.6s;
}
.loader.gone { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(40px, 8vw, 80px);
  color: white;
  letter-spacing: -0.04em;
  position: relative;
}
.loader-logo::after {
  content: '';
  position: absolute;
  left: 0; bottom: -8px;
  height: 3px; width: 0;
  background: linear-gradient(90deg, var(--blue-300), var(--royal-400));
  animation: loaderBar 1.4s var(--ease-out) forwards;
}
@keyframes loaderBar { to { width: 100%; } }

/* =========================================================
   CUSTOM CURSOR (desktop only)
   ========================================================= */
.cursor {
  position: fixed;
  width: 8px; height: 8px;
  background: var(--royal-500);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.25s var(--ease-out), height 0.25s var(--ease-out), background 0.25s;
  mix-blend-mode: difference;
}
.cursor-ring {
  position: fixed;
  width: 36px; height: 36px;
  border: 1.5px solid rgba(30, 91, 191, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9997;
  transform: translate(-50%, -50%);
  transition: width 0.35s var(--ease-out), height 0.35s var(--ease-out), border-color 0.35s, opacity 0.3s;
}
.cursor.hover { width: 0; height: 0; }
.cursor-ring.hover { width: 70px; height: 70px; border-color: var(--royal-400); background: rgba(30, 91, 191, 0.08); }
@media (max-width: 1024px), (hover: none) {
  .cursor, .cursor-ring { display: none; }
}

/* =========================================================
   LAYOUT HELPERS
   ========================================================= */
.container {
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

section { position: relative; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--royal-500);
}
.eyebrow::before {
  content: ''; width: 28px; height: 1px; background: var(--royal-500);
}
.eyebrow.light { color: var(--blue-300); }
.eyebrow.light::before { background: var(--blue-300); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: var(--navy-900);
}
h1 { font-size: clamp(30px, 4.4vw, 57px); font-weight: 500; }
h2 { font-size: clamp(26px, 4.4vw, 57px); }
h3 { font-size: clamp(22px, 2.4vw, 32px); letter-spacing: -0.02em; }
.italic-serif { font-family: var(--font-serif); font-style: italic; font-weight: 400; letter-spacing: -0.01em; }

.lead {
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.55;
  color: var(--ink-500);
  font-weight: 400;
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 18px 30px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: -0.01em;
  transition: transform 0.4s var(--ease-out), background 0.3s, color 0.3s, box-shadow 0.4s;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn .arrow {
  width: 22px; height: 22px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  transition: transform 0.35s var(--ease-out), background 0.3s;
}
.btn .arrow svg { width: 12px; height: 12px; transition: transform 0.35s var(--ease-out); }
.btn:hover .arrow { transform: rotate(-45deg); }

.btn-primary {
  background: linear-gradient(135deg, var(--royal-500), var(--navy-700));
  color: white;
  box-shadow: 0 10px 30px rgba(30, 91, 191, 0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 44px rgba(30, 91, 191, 0.45);
}

.btn-amber {
  background: var(--amber-500);
  color: var(--navy-900);
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.32);
}
.btn-amber .arrow { background: rgba(6, 21, 52, 0.15); }
.btn-amber:hover { background: var(--amber-400); transform: translateY(-2px); box-shadow: 0 16px 44px rgba(245, 158, 11, 0.45); }

.btn-whats {
  background: var(--whats-500);
  color: white;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.35);
}
.btn-whats:hover { background: var(--whats-600); transform: translateY(-2px); }

.btn-ghost {
  background: transparent;
  color: var(--navy-900);
  border: 1.5px solid var(--line);
}
.btn-ghost .arrow { background: var(--navy-900); color: white; }
.btn-ghost:hover { background: var(--navy-900); color: white; border-color: var(--navy-900); }
.btn-ghost:hover .arrow { background: white; color: var(--navy-900); }

.btn-ghost-light {
  background: transparent;
  color: white;
  border: 1.5px solid rgba(255,255,255,0.25);
}
.btn-ghost-light .arrow { background: rgba(255,255,255,0.15); }
.btn-ghost-light:hover { background: white; color: var(--navy-900); border-color: white; }
.btn-ghost-light:hover .arrow { background: var(--navy-900); color: white; }

/* =========================================================
   HEADER
   ========================================================= */
.header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background 0.4s var(--ease-out), padding 0.4s, box-shadow 0.4s, backdrop-filter 0.4s;
}
.header.scrolled {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 1px 0 var(--line), 0 4px 24px rgba(6, 21, 52, 0.04);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
}
.logo {
  display: flex; align-items: center;
}
/* Logo branca: visível por padrão (header transparente) */
/* Logo colorida: visível só com header scrolled (fundo branco) */
.logo-img.logo-img-color { display: none; }
.header.scrolled .logo-img.logo-img-white { display: none; }
.header.scrolled .logo-img.logo-img-color { display: block; }

.logo-img {
  height: 42px;
  width: auto;
  display: block;
}
.footer-brand .logo-img {
  height: 48px;
}

.nav { display: flex; align-items: center; gap: 36px; }
.nav-list { display: flex; gap: 32px; list-style: none; }
.nav-list a {
  font-size: 14.5px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  transition: color 0.3s;
  position: relative;
  padding: 6px 0;
}
.nav-list a:hover { color: white; }
.header.scrolled .nav-list a { color: var(--ink-700); }
.header.scrolled .nav-list a:hover { color: var(--navy-900); }

.nav-cta { padding: 12px 22px; font-size: 14px; gap: 8px; }
.nav-cta .arrow { width: 18px; height: 18px; }

.burger {
  display: none;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
}
.burger span {
  display: block;
  width: 18px; height: 1.5px;
  background: white;
  margin: 4px auto;
  transition: 0.3s;
}
.header.scrolled .burger { background: var(--bone); border-color: var(--line); }
.header.scrolled .burger span { background: var(--navy-900); }

@media (max-width: 920px) {
  .nav-list, .nav-cta { display: none; }
  .burger { display: block; }
}

/* Burger → X quando drawer aberto */
.burger.open span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.open span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

/* =========================================================
   MOBILE DRAWER
   ========================================================= */
.drawer-overlay {
  position: fixed; inset: 0;
  background: rgba(6, 21, 52, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s var(--ease-out), visibility 0.35s;
}
.drawer-overlay.open { opacity: 1; visibility: visible; }

.drawer {
  position: fixed;
  top: 0; right: 0;
  width: min(340px, 88vw);
  height: 100%;
  background: var(--navy-800);
  z-index: 999;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.42s var(--ease-out);
  overflow-y: auto;
  box-shadow: -24px 0 80px rgba(0,0,0,0.4);
}
.drawer.open { transform: translateX(0); }

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  flex-shrink: 0;
}
.drawer-logo { height: 36px; width: auto; }

.drawer-close {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 10px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  color: white;
  flex-shrink: 0;
  transition: background 0.2s;
}
.drawer-close:hover { background: rgba(255,255,255,0.14); }
.drawer-close svg { width: 18px; height: 18px; }

.drawer-nav {
  flex: 1;
  padding: 28px 16px;
}
.drawer-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.drawer-list li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 16px;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  border-radius: 12px;
  transition: background 0.2s, color 0.2s;
}
.drawer-list li a:hover { background: rgba(255,255,255,0.07); color: white; }

.drawer-footer {
  padding: 20px 24px 36px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
}
.drawer-footer .btn { width: 100%; justify-content: center; }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  min-height: 100vh;
  background: radial-gradient(ellipse at 20% 0%, #143475 0%, var(--navy-900) 55%, #030a1e 100%);
  color: white;
  padding: 0;
  isolation: isolate;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.hero > .container {
  flex: 1;
  display: flex;
  align-items: stretch;
  padding-top: 0;
  padding-bottom: 0;
}

/* Grain */
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.12 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.5;
  pointer-events: none;
  mix-blend-mode: overlay;
}

/* Grid lines */
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  pointer-events: none;
}

/* Glow orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  pointer-events: none;
  animation: floatOrb 14s ease-in-out infinite;
}
.hero-orb.o1 { width: 380px; height: 380px; background: var(--royal-400); top: 10%; right: -80px; }
.hero-orb.o2 { width: 260px; height: 260px; background: #1B4FA0; bottom: -40px; left: 10%; animation-delay: -7s; }
@keyframes floatOrb {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(40px, -30px); }
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  align-items: stretch;
}
.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 140px;
  padding-bottom: 80px;
}
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 0; }
  .hero-content { padding-top: 120px; padding-bottom: 420px; }
  .hero h1 { font-size: 48px; }
  h2 { font-size: 32px; }
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 8px 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
  backdrop-filter: blur(10px);
}
.hero-eyebrow .dot {
  width: 8px; height: 8px;
  background: var(--whats-500);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(37, 211, 102, 0.2);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(37, 211, 102, 0.2); }
  50% { box-shadow: 0 0 0 8px rgba(37, 211, 102, 0.05); }
}

.hero h1 {
  color: white;
  margin-bottom: 32px;
}
.hero h1 .reveal-word {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}
.hero h1 .reveal-word > span {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 1s var(--ease-out);
}
.loaded .hero h1 .reveal-word > span { transform: translateY(0); }
.hero h1 .reveal-word:nth-child(1) > span { transition-delay: 0.1s; }
.hero h1 .reveal-word:nth-child(2) > span { transition-delay: 0.18s; }
.hero h1 .reveal-word:nth-child(3) > span { transition-delay: 0.26s; }
.hero h1 .reveal-word:nth-child(4) > span { transition-delay: 0.34s; }
.hero h1 .reveal-word:nth-child(5) > span { transition-delay: 0.42s; }
.hero h1 .reveal-word:nth-child(6) > span { transition-delay: 0.5s; }

.hero-sub {
  font-size: clamp(17px, 1.4vw, 20px);
  color: rgba(255,255,255,0.7);
  max-width: 580px;
  margin-bottom: 44px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.9s var(--ease-out) 0.7s, transform 0.9s var(--ease-out) 0.7s;
}
.loaded .hero-sub { opacity: 1; transform: translateY(0); }

.hero-ctas {
  display: flex; flex-wrap: wrap; gap: 14px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.9s var(--ease-out) 0.85s, transform 0.9s var(--ease-out) 0.85s;
}
.loaded .hero-ctas { opacity: 1; transform: translateY(0); }

.hero-stats {
  display: flex; gap: 40px;
  margin-top: 68px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
  opacity: 0;
  transition: opacity 1s var(--ease-out) 1.1s;
}
.loaded .hero-stats { opacity: 1; }
.hero-stat .num {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.5vw, 44px);
  font-weight: 500;
  color: white;
  letter-spacing: -0.04em;
  line-height: 1;
}
.hero-stat .num sup { font-size: 0.5em; color: var(--blue-300); vertical-align: super; }
.hero-stat .label {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin-top: 8px;
  letter-spacing: 0.02em;
}

/* Hero visual — apenas cards e overlay, sem fundo */
.hero-visual {
  position: relative;
  height: auto;
  min-height: 520px;
  align-self: stretch;
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 1.2s var(--ease-out) 0.5s, transform 1.2s var(--ease-out) 0.5s;
}
.loaded .hero-visual { opacity: 1; transform: translateX(0); }
@media (max-width: 980px) {
  .hero-visual { height: 0; min-height: 0; align-self: auto; }
}

/* Person image — posicionada diretamente no .hero para blend funcionar */
.imagem-blend { mix-blend-mode: lighten; }
.hv-person-img {
  position: absolute;
  bottom: 0;
  right: min(14%, 269px);
  height: 90%;
  width: auto;
  max-width: none;
  pointer-events: none;
  user-select: none;
  z-index: 3;
  mix-blend-mode: lighten;
  -webkit-mask-image:
    radial-gradient(ellipse 80% 95% at 50% 52%,
      black 30%,
      transparent 72%);
  mask-image:
    radial-gradient(ellipse 80% 95% at 50% 52%,
      black 30%,
      transparent 72%);
}
@media (max-width: 980px) {
  .hv-person-img {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    height: 420px;
    bottom: 48px;
  }
}
/* Overlay — funde o homem no fundo azul */
.hv-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 72% 68% at 50% 62%,
    rgba(6, 21, 52, 0.52) 0%,
    rgba(6, 21, 52, 0.24) 48%,
    transparent 74%
  );
  pointer-events: none;
  z-index: 1;
}
/* Cards flutuantes ao redor */
.hv-float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 16px;
  padding: 13px 18px;
  z-index: 2;
  white-space: nowrap;
  animation: floatCard 8s ease-in-out infinite;
}
.hv-float.hf-blue {
  background: linear-gradient(135deg, var(--royal-500), var(--navy-700));
  box-shadow: 0 16px 40px rgba(30, 91, 191, 0.50);
  color: white;
}
.hv-float.hf-orange {
  background: linear-gradient(135deg, var(--amber-500), #D97B06);
  box-shadow: 0 14px 36px rgba(245, 158, 11, 0.42);
  color: var(--navy-900);
}
.hv-float.hf-white {
  background: white;
  box-shadow: 0 14px 36px rgba(6, 21, 52, 0.20);
  color: var(--navy-900);
}
.hv-float .hf-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.hv-float.hf-blue .hf-icon  { background: rgba(255,255,255,0.18); color: white; }
.hv-float.hf-orange .hf-icon { background: rgba(6,21,52,0.12); color: var(--navy-900); }
.hv-float.hf-white .hf-icon  { background: var(--mist); color: var(--royal-500); }
.hv-float .hf-icon svg { width: 17px; height: 17px; }
.hv-float .hf-label {
  font-size: 10px; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; opacity: 0.62; margin-bottom: 3px;
}
.hv-float .hf-value {
  font-family: var(--font-display); font-size: 15px;
  font-weight: 500; letter-spacing: -0.01em;
}
.hv-float.hf1 { top: 20%; left: 2%; animation-delay: -1s; }
.hv-float.hf2 { top: 48%; right: 0%; animation-delay: -3.5s; }
.hv-float.hf3 { bottom: 10%; left: 5%; animation-delay: -6s; }
@media (max-width: 980px) {
  .hv-overlay { display: block; }
}

.hv-card {
  position: absolute;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}
.hv-card.main {
  width: 78%; height: 75%;
  top: 12%; left: 8%;
  background: linear-gradient(135deg, #0F2A5E 0%, #1B4FA0 100%);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  animation: floatCard 8s ease-in-out infinite;
}
.hv-card.float-a {
  width: 200px; height: 200px;
  top: 0; right: 0;
  background: linear-gradient(135deg, #fff, var(--mist));
  padding: 22px;
  animation: floatCard 8s ease-in-out infinite -2s;
}
.hv-card.float-b {
  width: 220px; height: 130px;
  bottom: 0; right: 8%;
  background: linear-gradient(135deg, var(--amber-500), #E08906);
  padding: 22px;
  animation: floatCard 8s ease-in-out infinite -4s;
  color: var(--navy-900);
}
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.hv-card-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.7;
}
.hv-card.main .hv-card-label { color: var(--blue-300); opacity: 1; }
.hv-card.float-a .hv-card-label { color: var(--royal-500); }
.hv-card.main h4 {
  color: white;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.hv-cat-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-top: 16px; }
.hv-cat-list li {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  font-size: 14px;
  color: rgba(255,255,255,0.9);
}
.hv-cat-list .price {
  font-size: 12px;
  color: var(--blue-300);
}

.hv-mini-icon {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--royal-500);
  color: white;
  margin-bottom: 16px;
}
.hv-mini-icon svg { width: 22px; height: 22px; }
.hv-card.float-a h5 {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--navy-900);
  margin-top: 8px;
}
.hv-card.float-a p { font-size: 12.5px; color: var(--ink-500); margin-top: 4px; }

.hv-card.float-b h5 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.03em;
}
.hv-card.float-b p { font-size: 13px; font-weight: 500; margin-top: 6px; }

/* Marquee */
.marquee {
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: rgba(0,0,0,0.2);
  overflow: hidden;
  position: relative;
  z-index: 2;
  padding: 22px 0;
}
.marquee-track {
  display: flex;
  gap: 60px;
  animation: marquee 35s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.marquee-item {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: rgba(255,255,255,0.65);
  letter-spacing: -0.02em;
}
.marquee-item .dot {
  width: 6px; height: 6px; background: var(--royal-400); border-radius: 50%;
}
.marquee-item .italic-serif { color: var(--blue-300); }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* =========================================================
   SECTION: SEGMENTS SERVED
   ========================================================= */
.segments {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--white);
}
.section-head {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 72px;
}
@media (max-width: 820px) {
  .section-head { grid-template-columns: 1fr; gap: 24px; }
}
.section-head h2 { max-width: 700px; }
.section-head .lead { max-width: 480px; }

.segments-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
@media (max-width: 1100px) { .segments-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 600px) { .segments-grid { grid-template-columns: repeat(2, 1fr); } }

.segment-cell {
  padding: 36px 24px 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
  transition: background 0.5s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.segment-cell::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 0;
  background: linear-gradient(180deg, transparent, rgba(30, 91, 191, 0.05));
  transition: height 0.5s var(--ease-out);
}
.segment-cell:hover { background: var(--bone); }
.segment-cell:hover::before { height: 100%; }
.segment-cell svg {
  width: 38px; height: 38px;
  color: var(--royal-500);
  margin-bottom: 18px;
  transition: transform 0.5s var(--ease-out);
  position: relative; z-index: 1;
}
.segment-cell:hover svg { transform: translateY(-4px) scale(1.08); }
.segment-cell .name {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
  color: var(--navy-900);
  letter-spacing: -0.01em;
  position: relative; z-index: 1;
}

/* =========================================================
   SECTION: PRODUCT CATEGORIES (bento)
   ========================================================= */
.categories {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--bone);
  position: relative;
}
.categories::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--line);
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 280px;
  gap: 18px;
}
@media (max-width: 980px) {
  .cat-grid { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 240px; }
}
@media (max-width: 600px) {
  .cat-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
}

.cat-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 0.6s var(--ease-out), box-shadow 0.6s var(--ease-out);
  isolation: isolate;
}
.cat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.cat-card .img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 1.2s var(--ease-out);
}
.cat-card:hover .img { transform: scale(1.08); }
.cat-card .img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 10%,
    rgba(6, 21, 52, 0.55) 60%,
    rgba(6, 21, 52, 0.94) 100%
  );
}
@media (max-width: 980px) {
  .cat-card .img::after {
    background: linear-gradient(
      to bottom,
      transparent 0%,
      rgba(6, 21, 52, 0.65) 45%,
      rgba(6, 21, 52, 0.97) 100%
    );
  }
}
.cat-card .content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px 28px;
  color: white;
  z-index: 1;
}
.cat-card .num {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--blue-300);
  margin-bottom: 10px;
  display: block;
}
.cat-card h3 {
  color: white;
  font-size: clamp(20px, 1.8vw, 26px);
  margin-bottom: 8px;
}
.cat-card p {
  font-size: 13.5px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 18px;
  max-width: 360px;
}
.cat-card .cta-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: white;
  padding: 10px 16px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  backdrop-filter: blur(10px);
  transition: background 0.3s, color 0.3s;
}
.cat-card:hover .cta-link { background: white; color: var(--navy-900); }
.cat-card .cta-link svg { width: 12px; height: 12px; transition: transform 0.3s; }
.cat-card:hover .cta-link svg { transform: translateX(3px); }

/* Bento grid spans */
.cat-c1 { grid-column: span 6; grid-row: span 2; }
.cat-c2 { grid-column: span 6; grid-row: span 1; }
.cat-c3 { grid-column: span 3; grid-row: span 1; }
.cat-c4 { grid-column: span 3; grid-row: span 1; }
.cat-c5 { grid-column: span 4; grid-row: span 1; }
.cat-c6 { grid-column: span 4; grid-row: span 1; }
.cat-c7 { grid-column: span 4; grid-row: span 1; }
.cat-c8 { grid-column: span 12; grid-row: span 1; }

@media (max-width: 980px) {
  .cat-c1 { grid-column: span 6; grid-row: span 2; }
  .cat-c2, .cat-c5, .cat-c6, .cat-c7 { grid-column: span 6; grid-row: span 1; }
  .cat-c3, .cat-c4 { grid-column: span 3; grid-row: span 1; }
  .cat-c8 { grid-column: span 6; grid-row: span 1; }
}
@media (max-width: 600px) {
  .cat-grid > * { grid-column: 1 !important; grid-row: span 1 !important; }
}

/* Categories that don't use image - use gradient */
.cat-card.gradient .img {
  background: linear-gradient(135deg, var(--royal-500), var(--navy-800));
}
.cat-card.gradient.amber .img { background: linear-gradient(135deg, var(--amber-500), #C97300); }
.cat-card.gradient.chrome .img { background: linear-gradient(135deg, #4A5577, #1A2440); }
.cat-card.gradient .img::after { background: linear-gradient(180deg, rgba(0,0,0,0.2), rgba(0,0,0,0.55)); }

/* Decorative icon */
.cat-card .deco {
  position: absolute;
  top: 28px; right: 28px;
  width: 56px; height: 56px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 16px;
  display: grid; place-items: center;
  color: white;
  z-index: 1;
  backdrop-filter: blur(10px);
  transition: transform 0.5s var(--ease-out);
}
.cat-card:hover .deco { transform: rotate(-8deg) scale(1.1); }
.cat-card .deco svg { width: 28px; height: 28px; }

/* =========================================================
   SECTION: DIFFERENTIALS
   ========================================================= */
.diffs {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--navy-900);
  color: white;
  position: relative;
  overflow: hidden;
}
.diffs::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(30, 91, 191, 0.35), transparent 50%),
    radial-gradient(ellipse at 10% 80%, rgba(91, 155, 255, 0.18), transparent 50%);
  pointer-events: none;
}
.diffs .container { position: relative; z-index: 1; }
.diffs h2 { color: white; }
.diffs .lead { color: rgba(255,255,255,0.65); }

.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 900px) { .diff-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .diff-grid { grid-template-columns: 1fr; } }

.diff-card {
  position: relative;
  padding: 36px 32px;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 0.5s var(--ease-out), background 0.5s;
  min-height: 240px;
  display: flex;
  flex-direction: column;
}
.diff-card::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  width: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue-300), transparent);
  transition: width 0.6s var(--ease-out), left 0.6s var(--ease-out);
}
.diff-card:hover { transform: translateY(-4px); background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02)); }
.diff-card:hover::before { width: 100%; left: 0; }
.diff-card .num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 24px;
  color: var(--blue-300);
  margin-bottom: 28px;
}
.diff-card h3 {
  color: white;
  font-size: 24px;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.diff-card p {
  color: rgba(255,255,255,0.6);
  font-size: 15px;
  line-height: 1.55;
  margin-top: auto;
}
.diff-card .icon {
  position: absolute;
  top: 36px; right: 32px;
  color: rgba(255,255,255,0.25);
  transition: color 0.4s, transform 0.5s var(--ease-out);
}
.diff-card:hover .icon { color: var(--blue-300); transform: rotate(-10deg) scale(1.1); }
.diff-card .icon svg { width: 32px; height: 32px; }

/* =========================================================
   SECTION: PROBLEM SOLVER
   ========================================================= */
.problem {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--white);
  position: relative;
}
.problem-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 900px) { .problem-inner { grid-template-columns: 1fr; gap: 48px; } }

.problem h2 {
  font-size: clamp(38px, 5.5vw, 76px);
  line-height: 0.95;
  margin-bottom: 28px;
}
.problem h2 .highlight {
  background: linear-gradient(135deg, var(--royal-500), var(--royal-400));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.problem .lead { margin-bottom: 36px; max-width: 520px; }

.problem-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: url('../img/solucao-versatil.jpeg') center / cover no-repeat;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  justify-content: center;
}
.problem-visual::before { content: none; }

.search-cards {
  position: relative;
  width: 80%;
  height: 70%;
}
.s-card {
  position: absolute;
  background: white;
  border-radius: 16px;
  padding: 18px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: float 6s ease-in-out infinite;
}
.s-card .ic {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  background: var(--royal-500);
  color: white;
  border-radius: 10px;
  flex: none;
}
.s-card .ic.amber { background: var(--amber-500); color: var(--navy-900); }
.s-card .ic.green { background: var(--whats-500); }
.s-card .ic svg { width: 18px; height: 18px; }
.s-card .label { font-size: 11px; color: var(--ink-400); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 3px; }
.s-card .name { font-weight: 500; color: var(--navy-900); font-family: var(--font-display); }
.s-card.s1 { top: 0; left: 0; animation-delay: -1s; }
.s-card.s2 { top: 30%; right: 0; animation-delay: -3s; }
.s-card.s3 { bottom: 0; left: 8%; animation-delay: -5s; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.search-center {
  width: 96px; height: 96px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--royal-500), var(--navy-800));
  display: grid; place-items: center;
  color: white;
  box-shadow: 0 20px 50px rgba(30, 91, 191, 0.35), 0 0 0 12px rgba(30, 91, 191, 0.06), 0 0 0 28px rgba(30, 91, 191, 0.03);
  position: relative;
  z-index: 2;
}
.search-center svg { width: 36px; height: 36px; }

/* =========================================================
   SECTION: HOW IT WORKS
   ========================================================= */
.process {
  padding: clamp(80px, 10vw, 140px) 0;
  background: linear-gradient(180deg, var(--bone) 0%, var(--white) 100%);
  position: relative;
}
.process-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
@media (max-width: 900px) { .process-track { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .process-track { grid-template-columns: 1fr; } }

.process-track::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 12%; right: 12%;
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--chrome-400) 0, var(--chrome-400) 4px, transparent 4px, transparent 10px);
  z-index: 0;
}
@media (max-width: 900px) { .process-track::before { display: none; } }

.process-step {
  position: relative;
  text-align: left;
  z-index: 1;
}
.process-step .step-num {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: white;
  border: 1px solid var(--line);
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--navy-900);
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
  transition: background 0.4s, color 0.4s, transform 0.4s var(--ease-out);
}
.process-step:hover .step-num {
  background: var(--navy-900);
  color: white;
  transform: scale(1.05);
}
.process-step h4 {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: -0.02em;
  color: var(--navy-900);
  margin-bottom: 10px;
}
.process-step p {
  color: var(--ink-500);
  font-size: 15px;
  line-height: 1.6;
}

/* =========================================================
   SECTION: FEATURED PRODUCTS
   ========================================================= */
.products {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--white);
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 1100px) { .product-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 800px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .product-grid { grid-template-columns: 1fr; } }

.product-card {
  background: var(--bone);
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  border: 1px solid transparent;
  transition: transform 0.5s var(--ease-out), border-color 0.5s, box-shadow 0.5s;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-6px);
  border-color: var(--line);
  box-shadow: var(--shadow-lg);
  background: white;
}
.product-img {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--mist), var(--bone));
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
}
.product-img .ic-big {
  width: 84px; height: 84px;
  background: white;
  border-radius: 20px;
  display: grid; place-items: center;
  color: var(--royal-500);
  box-shadow: var(--shadow-md);
  transition: transform 0.6s var(--ease-out), background 0.4s, color 0.4s;
}
.product-card:hover .ic-big {
  transform: scale(1.08) rotate(-6deg);
  background: var(--navy-900);
  color: white;
}
.product-img .ic-big svg { width: 40px; height: 40px; }
.product-img .badge {
  position: absolute;
  top: 14px; left: 14px;
  padding: 5px 10px;
  background: white;
  border-radius: 999px;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--royal-500);
  box-shadow: var(--shadow-sm);
}
.product-body { padding: 24px 22px 22px; flex: 1; display: flex; flex-direction: column; }
.product-body .cat {
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-400);
  font-weight: 500;
  margin-bottom: 8px;
}
.product-body h4 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--navy-900);
  margin-bottom: 8px;
  line-height: 1.2;
}
.product-body p {
  font-size: 13.5px;
  color: var(--ink-500);
  line-height: 1.55;
  margin-bottom: 20px;
  flex: 1;
}
.product-cta {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 18px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--navy-900);
  width: 100%;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.product-cta:hover { background: var(--whats-500); color: white; border-color: var(--whats-500); }
.product-cta .wa {
  width: 22px; height: 22px;
  display: grid; place-items: center;
  background: var(--whats-500);
  color: white;
  border-radius: 50%;
  transition: background 0.3s;
}
.product-cta:hover .wa { background: white; color: var(--whats-500); }
.product-cta .wa svg { width: 12px; height: 12px; }

/* Card overlay link — makes the whole card clickable, sits behind interactive
   children (wishlist button, WhatsApp CTA). */
.product-card__overlay-link {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: transparent;
  text-indent: -9999px;
  overflow: hidden;
}
.product-card__overlay-link:focus-visible {
  outline: 2px solid var(--royal-500);
  outline-offset: -2px;
}
.product-card .product-cta,
.product-card .product-card__title-link {
  position: relative;
  z-index: 2;
}
/* Wishlist heart must stay absolutely positioned (set by wishlist.css);
   only raise z-index so it sits above the overlay link. */
.product-card .product-card__wishlist { z-index: 4; }
.product-card__title-link {
  color: inherit;
  text-decoration: none;
}
.product-card__title-link:hover { color: var(--royal-500); }

/* =========================================================
   SECTION: ABOUT
   ========================================================= */
.about {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--bone);
  position: relative;
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 900px) { .about-inner { grid-template-columns: 1fr; gap: 56px; } }

.about-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background:
    linear-gradient(to bottom,
      rgba(6, 21, 52, 0.93) 0%,
      rgba(6, 21, 52, 0.78) 35%,
      rgba(6, 21, 52, 0.38) 65%,
      rgba(6, 21, 52, 0.45) 100%),
    url('../img/sobre-o-grupo-versatile.jpeg') center / cover no-repeat;
  box-shadow: var(--shadow-xl);
}
.about-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.15 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
  opacity: 0.5;
}

.about-quote {
  position: absolute;
  inset: 0;
  padding: 48px 48px 56px;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 24px;
  z-index: 1;
}
.about-quote .q-mark {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 140px;
  line-height: 0.8;
  color: var(--blue-300);
  opacity: 0.7;
}
.about-quote q {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin: 0;
  quotes: none;
}
.about-quote q::before, .about-quote q::after { content: none; }
.about-quote q .italic-serif { color: var(--blue-300); }
.about-quote .signature {
  display: flex; align-items: center; gap: 14px;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}
.about-quote .signature::before {
  content: ''; width: 32px; height: 1px; background: var(--blue-300);
}

.about-content h2 { margin-bottom: 24px; }
.about-content > p { margin-bottom: 36px; max-width: 520px; }

.about-numbers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin: 40px 0;
  padding: 32px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.about-numbers .item .num {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.2vw, 44px);
  font-weight: 500;
  color: var(--navy-900);
  letter-spacing: -0.04em;
  line-height: 1;
}
.about-numbers .item .num sup { font-size: 0.55em; color: var(--royal-500); vertical-align: super; }
.about-numbers .item .lbl {
  font-size: 13px;
  color: var(--ink-500);
  margin-top: 8px;
}

/* =========================================================
   SECTION: FINAL CTA
   ========================================================= */
.final-cta {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--white);
}
.final-cta .container {
  max-width: 1560px;
}
.final-cta-card {
  position: relative;
  background:
    radial-gradient(ellipse at 20% 0%, #143475 0%, var(--navy-900) 60%);
  border-radius: var(--radius-xl);
  padding: clamp(56px, 9vw, 120px) clamp(36px, 7vw, 100px);
  overflow: hidden;
  color: white;
  isolation: isolate;
}
.final-cta-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.12 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
  z-index: -1;
}
.final-cta-card::after {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: var(--royal-500);
  filter: blur(120px);
  opacity: 0.4;
  bottom: -200px; right: -100px;
  z-index: -1;
  animation: floatOrb 10s ease-in-out infinite;
}
.final-cta-card h2 {
  color: white;
  font-size: clamp(28px, 3.8vw, 56px);
  line-height: 1.0;
  max-width: 700px;
  margin-bottom: 32px;
}
.final-cta-card h2 .italic-serif { color: var(--blue-300); }
.final-cta-card .lead {
  color: rgba(255,255,255,0.7);
  max-width: 580px;
  margin-bottom: 44px;
}
.final-cta-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.final-cta-body {
  position: relative;
  z-index: 10;
  max-width: 58%;
}
.final-cta-person {
  position: absolute;
  bottom: 0;
  right: 8%;
  height: 100%;
  width: auto;
  pointer-events: none;
  user-select: none;
  z-index: 1;
}
/* Overlay sobre a mulher — funde ela no fundo azul */
.final-cta-person-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 55% 78% at 76% 56%,
    rgba(6, 21, 52, 0.44) 0%,
    rgba(6, 21, 52, 0.20) 45%,
    transparent 75%
  );
  pointer-events: none;
  z-index: 2;
}
/* Cards flutuantes */
.final-cta-float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 14px;
  padding: 11px 16px;
  color: white;
  z-index: 3;
  white-space: nowrap;
  animation: floatCard 7s ease-in-out infinite;
}
.final-cta-float .fc-icon {
  width: 34px; height: 34px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.13);
  display: grid; place-items: center;
  flex-shrink: 0;
  color: var(--blue-300);
}
.final-cta-float .fc-icon svg { width: 16px; height: 16px; }
.final-cta-float .fc-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.52);
  margin-bottom: 3px;
}
.final-cta-float .fc-value {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: white;
}
.final-cta-float.fc1 { top: 18%; left: 57%; animation-delay: 0s; }
.final-cta-float.fc2 { top: 46%; right: 1%; animation-delay: -2.5s; }
.final-cta-float.fc3 { bottom: 22%; left: 54%; animation-delay: -4.5s; }
@media (max-width: 900px) {
  .final-cta-body { max-width: 100%; }
  .final-cta-person,
  .final-cta-person-overlay,
  .final-cta-float { display: none; }
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: var(--navy-900);
  color: rgba(255,255,255,0.7);
  padding: 100px 0 40px;
  position: relative;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (max-width: 900px) { .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media (max-width: 540px) { .footer-top { grid-template-columns: 1fr; } }

.footer-brand .logo { color: white; margin-bottom: 24px; }
.footer-brand p {
  font-size: 14.5px;
  line-height: 1.6;
  max-width: 340px;
  margin-bottom: 28px;
}
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  color: rgba(255,255,255,0.7);
  transition: background 0.3s, color 0.3s, border-color 0.3s, transform 0.3s var(--ease-out);
}
.footer-socials a:hover {
  background: white; color: var(--navy-900); border-color: white; transform: translateY(-3px);
}
.footer-socials svg { width: 18px; height: 18px; }

.footer-col h5 {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue-300);
  margin-bottom: 22px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col a {
  font-size: 14.5px;
  color: rgba(255,255,255,0.7);
  transition: color 0.3s, transform 0.3s;
  display: inline-block;
}
.footer-col a:hover { color: white; transform: translateX(4px); }

.footer-contact .item {
  display: flex; gap: 12px;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 14px;
}
.footer-contact svg {
  width: 18px; height: 18px;
  color: var(--blue-300);
  margin-top: 2px;
  flex: none;
}
.footer-contact a:hover { color: white; }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 32px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.45);
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom .legals { display: flex; gap: 28px; flex-wrap: wrap; }
.footer-bottom a:hover { color: white; }

.footer-big-mark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(80px, 18vw, 240px);
  color: rgba(255,255,255,0.04);
  letter-spacing: -0.05em;
  line-height: 1;
  text-align: center;
  margin: 40px 0 -10px;
  user-select: none;
  pointer-events: none;
}

/* =========================================================
   FLOATING WHATSAPP
   ========================================================= */
.fab-whats {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 60px; height: 60px;
  background: var(--whats-500);
  border-radius: 50%;
  display: grid; place-items: center;
  color: white;
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0.5);
  z-index: 90;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s;
  animation: fabPulse 2.5s infinite;
}
.fab-whats:hover { transform: scale(1.1); }
.fab-whats svg { width: 28px; height: 28px; }
@keyframes fabPulse {
  0% { box-shadow: 0 12px 32px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70% { box-shadow: 0 12px 32px rgba(37, 211, 102, 0.45), 0 0 0 18px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 12px 32px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0); }
}

.fab-tooltip {
  position: absolute;
  right: 75px;
  top: 50%;
  transform: translateY(-50%) translateX(10px);
  background: white;
  padding: 10px 16px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 500;
  color: var(--navy-900);
  white-space: nowrap;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s var(--ease-out);
}
.fab-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 12px; height: 12px;
  background: white;
}
.fab-whats:hover .fab-tooltip { opacity: 1; transform: translateY(-50%) translateX(0); }

/* =========================================================
   SCROLL REVEAL
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }
.reveal[data-delay="3"] { transition-delay: 0.3s; }
.reveal[data-delay="4"] { transition-delay: 0.4s; }
.reveal[data-delay="5"] { transition-delay: 0.5s; }

/* Toast for WhatsApp simulation */
.toast {
  position: fixed;
  bottom: 110px;
  right: 28px;
  background: var(--navy-900);
  color: white;
  padding: 16px 22px;
  border-radius: 14px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-lg);
  z-index: 200;
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s, transform 0.4s var(--ease-out);
  max-width: 320px;
}
.toast.show { opacity: 1; transform: translateY(0); }
.toast .ic {
  width: 36px; height: 36px;
  background: var(--whats-500);
  border-radius: 50%;
  display: grid; place-items: center;
  flex: none;
}
.toast .ic svg { width: 18px; height: 18px; }
.toast strong { font-weight: 500; }
.toast small { display: block; color: rgba(255,255,255,0.6); margin-top: 2px; font-size: 12.5px; }

/* =========================================================
   MEGA MENU
   ========================================================= */
.has-mega-menu { position: static; }
.mega-menu {
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  background: white;
  border-top: 2px solid var(--royal-500);
  box-shadow: var(--shadow-lg);
  padding: 32px var(--gutter);
  display: none;
  z-index: 200;
}
.mega-menu.open { display: block; }
.mega-menu-inner { max-width: var(--max); margin: 0 auto; }
.mega-menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.mega-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 18px 12px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  text-align: center;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  text-decoration: none;
  color: var(--ink-700);
}
.mega-tile:hover { background: var(--bone); border-color: var(--royal-500); transform: translateY(-2px); }
.mega-tile img { width: 64px; height: 64px; object-fit: cover; border-radius: 10px; }
.mega-tile-name { font-size: 13px; font-weight: 600; color: var(--navy-900); }
.mega-menu-footer { margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--line); display: flex; justify-content: flex-end; }

/* Force dark text on the mega menu CTA regardless of header state.
   The mega menu always has a white background, so .nav-list a's white
   rule would otherwise be inherited and break contrast. */
.mega-menu-footer .btn-ghost,
.header .mega-menu-footer .btn-ghost,
.header.scrolled .mega-menu-footer .btn-ghost {
  color: var(--navy-900);
  background: white;
  border-color: var(--line);
}
.mega-menu-footer .btn-ghost:hover,
.header .mega-menu-footer .btn-ghost:hover,
.header.scrolled .mega-menu-footer .btn-ghost:hover {
  color: white;
  background: var(--navy-900);
  border-color: var(--navy-900);
}
.mega-menu-footer .btn-ghost .arrow {
  background: var(--navy-900);
  color: white;
}
.mega-menu-footer .btn-ghost:hover .arrow {
  background: white;
  color: var(--navy-900);
}

/* =========================================================
   NAV SEARCH
   ========================================================= */
.nav-search {
  display: flex;
  align-items: center;
  position: relative;
}
.nav-search-toggle {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 50%;
  color: rgba(255,255,255,0.8);
  transition: color 0.3s, background 0.3s;
  cursor: pointer;
}
.nav-search-toggle:hover { color: white; background: rgba(255,255,255,0.1); }
.header.scrolled .nav-search-toggle { color: var(--ink-700); }
.header.scrolled .nav-search-toggle:hover { background: var(--bone); color: var(--navy-900); }
.nav-search-toggle svg { width: 18px; height: 18px; }
.nav-search-form {
  position: absolute;
  right: 44px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  overflow: hidden;
  transition: width 0.35s var(--ease-out);
}
.nav-search-form.open { width: 240px; }
.nav-search-input {
  width: 100%;
  height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1.5px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.1);
  color: white;
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  backdrop-filter: blur(10px);
}
.nav-search-input::placeholder { color: rgba(255,255,255,0.5); }
.header.scrolled .nav-search-input { border-color: var(--line); background: var(--bone); color: var(--ink-700); }
.header.scrolled .nav-search-input::placeholder { color: var(--ink-400); }

/* =========================================================
   CART ICON
   ========================================================= */
.cart-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  color: rgba(255,255,255,0.8);
  transition: color 0.3s, background 0.3s;
  text-decoration: none;
}
.cart-icon:hover { color: white; background: rgba(255,255,255,0.1); }
.header.scrolled .cart-icon { color: var(--ink-700); }
.header.scrolled .cart-icon:hover { background: var(--bone); color: var(--navy-900); }
.cart-icon svg { width: 20px; height: 20px; }
.cart-badge {
  position: absolute;
  top: -2px; right: -2px;
  min-width: 18px; height: 18px;
  background: var(--royal-400);
  color: white;
  font-size: 10px;
  font-weight: 700;
  border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  padding: 0 4px;
  line-height: 1;
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.2s, transform 0.2s;
}
.cart-badge.visible { opacity: 1; transform: scale(1); }

/* Mobile mega menu drawer links */
.drawer-category-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.4);
  padding: 12px 16px 4px;
}

@media (max-width: 920px) {
  .mega-menu { display: none !important; }
}

/* Button class aliases (BEM variant) */
.btn--primary {
  background: linear-gradient(135deg, var(--royal-500), var(--navy-700));
  color: white;
  box-shadow: 0 10px 30px rgba(30, 91, 191, 0.35);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 44px rgba(30, 91, 191, 0.45);
}

.btn--secondary {
  background: transparent;
  color: var(--navy-900);
  border: 1.5px solid var(--line);
}
.btn--secondary .arrow { background: var(--navy-900); color: white; }
.btn--secondary:hover { background: var(--navy-900); color: white; border-color: var(--navy-900); }
.btn--secondary:hover .arrow { background: white; color: var(--navy-900); }

.btn--whats {
  background: var(--whats-500);
  color: white;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.35);
}
.btn--whats:hover { background: var(--whats-600); transform: translateY(-2px); }

.btn--ghost-light {
  background: transparent;
  color: white;
  border: 1.5px solid rgba(255,255,255,0.25);
}
.btn--ghost-light .arrow { background: rgba(255,255,255,0.15); }
.btn--ghost-light:hover { background: white; color: var(--navy-900); border-color: white; }
.btn--ghost-light:hover .arrow { background: var(--navy-900); color: white; }

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

/* =========================================================
   CART DRAWER
   ========================================================= */
.cart-drawer-overlay {
  position: fixed; inset: 0;
  background: rgba(6, 21, 52, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 990;
  opacity: 0; visibility: hidden;
  transition: opacity 0.35s var(--ease-out), visibility 0.35s;
}
.cart-drawer-overlay.open { opacity: 1; visibility: visible; }

.cart-drawer {
  position: fixed;
  top: 0; right: 0;
  width: min(400px, 95vw);
  height: 100%;
  background: white;
  z-index: 991;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.42s var(--ease-out);
  box-shadow: -24px 0 80px rgba(0,0,0,0.18);
}
.cart-drawer.open { transform: translateX(0); }

.cart-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--line);
  flex-shrink: 0;
}
.cart-drawer__title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--navy-900);
  display: flex;
  align-items: center;
  gap: 10px;
}
.cart-drawer__title svg { width: 20px; height: 20px; color: var(--royal-500); }
.cart-drawer__count {
  background: var(--royal-400);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 999px;
  min-width: 22px;
  text-align: center;
}
.cart-drawer__close {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--bone);
  border: 1.5px solid var(--line);
  display: grid; place-items: center;
  cursor: pointer;
  color: var(--ink-500);
  transition: all 0.15s;
}
.cart-drawer__close:hover { background: #fef2f2; color: #dc2626; border-color: #fca5a5; }
.cart-drawer__close svg { width: 16px; height: 16px; }

.cart-drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: 0;
}
.cart-drawer__loading {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
}
.cd-spinner {
  width: 28px; height: 28px;
  border: 3px solid var(--line);
  border-top-color: var(--royal-500);
  border-radius: 50%;
  animation: cdSpin 0.7s linear infinite;
}
@keyframes cdSpin { to { transform: rotate(360deg); } }

/* Cart drawer item */
.cart-drawer__item {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 14px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.cart-drawer__item-img {
  width: 64px; height: 64px;
  border-radius: 10px;
  object-fit: cover;
  background: var(--mist);
  border: 1px solid var(--line);
  display: block;
}
.cart-drawer__item-img-placeholder {
  width: 64px; height: 64px;
  border-radius: 10px;
  background: var(--mist);
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-400);
}
.cart-drawer__item-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy-900);
  line-height: 1.3;
  text-decoration: none;
  display: block;
  margin-bottom: 4px;
}
.cart-drawer__item-name:hover { text-decoration: underline; }
.cart-drawer__item-cat {
  font-size: 12px;
  color: var(--royal-500);
  font-weight: 500;
  display: block;
  margin-bottom: 6px;
}
.cart-drawer__item-qty {
  font-size: 12.5px;
  color: var(--ink-400);
}
.cart-drawer__item-info { min-width: 0; }

/* Drawer qty +/- input */
.cart-drawer__qty {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  background: white;
  margin-top: 8px;
  height: 32px;
}
.cart-drawer__qty-btn {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink-700);
  transition: background 0.15s, color 0.15s;
  padding: 0;
  line-height: 1;
}
.cart-drawer__qty-btn:hover { background: var(--bone); color: var(--navy-900); }
.cart-drawer__qty-input {
  width: 38px;
  height: 30px;
  border: none;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  text-align: center;
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--navy-900);
  outline: none;
  background: white;
  padding: 0;
  -moz-appearance: textfield;
}
.cart-drawer__qty-input::-webkit-outer-spin-button,
.cart-drawer__qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.cart-drawer__item-remove {
  width: 28px; height: 28px;
  border-radius: 6px;
  border: 1.5px solid var(--line);
  background: none;
  display: grid; place-items: center;
  cursor: pointer;
  color: var(--ink-400);
  transition: all 0.15s;
  align-self: start;
}
.cart-drawer__item-remove:hover { background: #fef2f2; color: #dc2626; border-color: #fca5a5; }
.cart-drawer__item-remove svg { width: 12px; height: 12px; }

/* Empty state */
.cart-drawer__empty {
  text-align: center;
  padding: 60px 24px;
}
.cart-drawer__empty svg { width: 64px; height: 64px; color: var(--ink-400); opacity: 0.3; margin: 0 auto 16px; display: block; }
.cart-drawer__empty h3 { font-size: 17px; margin-bottom: 8px; color: var(--navy-900); }
.cart-drawer__empty p { font-size: 14px; color: var(--ink-400); margin-bottom: 20px; }
.cart-drawer__empty a { display: inline-flex; }

/* Footer */
.cart-drawer__footer {
  padding: 16px 20px 24px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
}
.cart-drawer__footer--guest {
  text-align: center;
}
.cart-drawer__guest-msg {
  font-size: 14px;
  color: var(--ink-500);
  margin-bottom: 4px;
}
.cart-drawer__view-btn,
.cart-drawer__whatsapp-btn {
  width: 100%;
  justify-content: center;
  padding: 13px 20px;
}
.cart-drawer__summary {
  padding: 14px 20px;
  background: var(--bone);
  border-bottom: 1px solid var(--line);
  font-size: 13.5px;
  color: var(--ink-500);
  display: flex;
  justify-content: space-between;
}
.cart-drawer__summary strong { color: var(--navy-900); font-weight: 700; }

/* =========================================================
   TWO-ROW HEADER — TOP UTILITY BAR
   ========================================================= */
.header { padding: 0; } /* override single-row padding; main row will handle its own padding */
.header.scrolled { padding: 0; } /* same — internal rows control spacing */

.header__top {
  background: var(--navy-900);
  padding: 8px 0;
  font-size: 12.5px;
  color: rgba(255,255,255,0.65);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.header__top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.header__top-contact {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}
.header__top-contact a {
  color: rgba(255,255,255,0.65);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  transition: color 0.2s;
}
.header__top-contact a:hover { color: white; }
.header__top-contact svg { width: 13px; height: 13px; flex-shrink: 0; }
.header__top-actions {
  display: flex;
  gap: 4px;
  align-items: center;
}
.header__top-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  color: rgba(255,255,255,0.75);
  border-radius: 6px;
  font-weight: 500;
  font-size: 12.5px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.header__top-link:hover { background: rgba(255,255,255,0.08); color: white; }
.header__top-link svg { width: 13px; height: 13px; }
.header__top-divider {
  width: 1px; height: 14px;
  background: rgba(255,255,255,0.18);
  margin: 0 4px;
}

/* Main row preserves the original transparent → scrolled behaviour */
.header__main {
  padding: 18px 0;
  transition: background 0.4s var(--ease-out), padding 0.4s, box-shadow 0.4s, backdrop-filter 0.4s;
}
.header.scrolled .header__main {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 1px 0 var(--line), 0 4px 24px rgba(6, 21, 52, 0.04);
}

/* User dropdown (logged in) */
.header__user { position: relative; }
.header__user-trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 12px;
  color: rgba(255,255,255,0.8);
  border-radius: 6px;
  background: none;
  border: none;
  font-family: inherit;
  font-size: 12.5px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
}
.header__user-trigger:hover { background: rgba(255,255,255,0.08); color: white; }
.header__user-avatar {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--royal-500), var(--royal-400));
  color: white;
  display: grid;
  place-items: center;
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
}
.header__user-trigger svg { width: 10px; height: 10px; transition: transform 0.2s; }
.header__user.open .header__user-trigger svg { transform: rotate(180deg); }
.header__user-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: white;
  border-radius: 12px;
  box-shadow: 0 24px 48px rgba(6,21,52,0.15);
  border: 1px solid var(--line);
  min-width: 220px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
  z-index: 200;
}
.header__user.open .header__user-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.header__user-menu a,
.header__user-menu button {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  font-size: 13.5px;
  color: var(--ink-700);
  text-decoration: none;
  border-radius: 8px;
  font-weight: 500;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s;
}
.header__user-menu a:hover,
.header__user-menu button:hover {
  background: var(--bone);
  color: var(--navy-900);
}
.header__user-menu svg { width: 14px; height: 14px; color: var(--royal-500); flex-shrink: 0; }
.header__user-menu .menu-divider {
  height: 1px;
  background: var(--line);
  margin: 6px 0;
}
.header__user-menu .menu-name {
  padding: 8px 14px 10px;
  font-size: 12.5px;
  color: var(--ink-400);
  border-bottom: 1px solid var(--line);
  margin-bottom: 6px;
}
.header__user-menu .menu-name strong {
  display: block;
  color: var(--navy-900);
  font-size: 14px;
  margin-top: 2px;
}
.header__user-menu .menu-logout { color: #dc2626 !important; }
.header__user-menu .menu-logout:hover { background: #fef2f2 !important; }
.header__user-menu .menu-logout svg { color: #dc2626 !important; }

/* Wishlist icon */
.wishlist-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: color 0.3s, background 0.3s;
}
.wishlist-icon:hover { color: white; background: rgba(255,255,255,0.1); }
.header--solid .wishlist-icon,
.header.scrolled .wishlist-icon { color: var(--ink-700); }
.header--solid .wishlist-icon:hover,
.header.scrolled .wishlist-icon:hover {
  background: var(--bone);
  color: var(--navy-900);
}
.wishlist-icon svg { width: 19px; height: 19px; }
.wishlist-badge {
  position: absolute;
  top: -2px; right: -2px;
  min-width: 18px; height: 18px;
  background: #ef4444;
  color: white;
  font-size: 10px;
  font-weight: 700;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  line-height: 1;
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.2s, transform 0.2s;
}
.wishlist-badge.visible { opacity: 1; transform: scale(1); }

/* =========================================================
   INNER PAGE HEADER — SOLID LIGHT
   ========================================================= */
.header--solid .header__main {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--line), 0 4px 24px rgba(6, 21, 52, 0.04);
}
.header--solid .logo-img.logo-img-white { display: none; }
.header--solid .logo-img.logo-img-color { display: block; }
.header--solid .nav-list a { color: var(--ink-700); }
.header--solid .nav-list a:hover { color: var(--navy-900); }
.header--solid .nav-search-toggle { color: var(--ink-700); }
.header--solid .nav-search-toggle:hover { background: var(--bone); color: var(--navy-900); }
.header--solid .nav-search-input {
  border-color: var(--line);
  background: var(--bone);
  color: var(--ink-700);
}
.header--solid .nav-search-input::placeholder { color: var(--ink-400); }
.header--solid .cart-icon { color: var(--ink-700); }
.header--solid .cart-icon:hover { background: var(--bone); color: var(--navy-900); }
.header--solid .burger { background: var(--bone); border-color: var(--line); }
.header--solid .burger span { background: var(--navy-900); }
.header--solid .nav-admin-badge {
  background: var(--bone) !important;
  border-color: var(--line) !important;
  color: var(--navy-900) !important;
}

/* Push body down on inner pages to account for solid two-row header */
body[data-inner-page="1"] .site-main,
body[data-inner-page="1"] main.catalog-section,
body[data-inner-page="1"] main.cart-section,
body[data-inner-page="1"] main.login-section,
body[data-inner-page="1"] main.product-detail-section,
body[data-inner-page="1"] .gv-admin {
  padding-top: 140px;
}

@media (max-width: 920px) {
  .header__top { display: none; }
  body[data-inner-page="1"] .site-main,
  body[data-inner-page="1"] main.catalog-section,
  body[data-inner-page="1"] main.cart-section,
  body[data-inner-page="1"] main.login-section,
  body[data-inner-page="1"] main.product-detail-section,
  body[data-inner-page="1"] .gv-admin {
    padding-top: 90px;
  }
  .header__user-menu { right: auto; left: 0; min-width: 200px; }
}

/* =========================================================
   LOGIN / REGISTER PAGE — BEM SCAFFOLD
   ========================================================= */
.login-section { padding-bottom: 80px; }
.login-wrapper {
  max-width: 560px;
  margin: 40px auto 0;
  background: white;
  border-radius: 20px;
  border: 1px solid var(--line);
  box-shadow: 0 24px 64px rgba(6, 21, 52, 0.06);
  overflow: hidden;
}
.login-tabs {
  display: flex;
  background: var(--bone);
  border-bottom: 1px solid var(--line);
}
.login-tab {
  flex: 1;
  text-align: center;
  padding: 18px 16px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink-500);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.2s, background 0.2s;
  border-bottom: 2px solid transparent;
}
.login-tab:hover { color: var(--navy-900); }
.login-tab--active {
  color: var(--navy-900);
  background: white;
  border-bottom-color: var(--royal-500);
}
.login-notice {
  margin: 20px 28px 0;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 13.5px;
  line-height: 1.45;
}
.login-notice--error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
}
.login-notice--success {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #166534;
}
.login-notice--info {
  background: var(--bone);
  border: 1px solid var(--line);
  color: var(--ink-700);
}
.login-panel {
  display: none;
  padding: 32px 32px 36px;
}
.login-panel--active { display: block; }
.login-panel__title {
  font-size: 22px;
  line-height: 1.25;
  color: var(--navy-900);
  margin: 0 0 6px;
  font-weight: 700;
}
.login-panel__subtitle {
  font-size: 13.5px;
  color: var(--ink-500);
  margin: 0 0 22px;
  line-height: 1.55;
}

/* Form scaffold */
.login-form { display: flex; flex-direction: column; gap: 14px; }
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-label {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-700);
  letter-spacing: 0.01em;
}
.form-label .req { color: #dc2626; font-weight: 700; }
.form-input {
  width: 100%;
  padding: 12px 14px;
  font-size: 14px;
  font-family: inherit;
  color: var(--navy-900);
  background: white;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  transition: border-color 0.15s, box-shadow 0.15s;
  outline: none;
}
.form-input:focus {
  border-color: var(--royal-500);
  box-shadow: 0 0 0 3px rgba(30, 91, 191, 0.12);
}
.form-input::placeholder { color: var(--ink-400); }
.form-hint {
  font-size: 11.5px;
  color: var(--ink-400);
  margin-top: 2px;
}
.form-field--checkbox { flex-direction: row; align-items: center; gap: 8px; }
.form-checkbox-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--ink-700);
  cursor: pointer;
  user-select: none;
}
.form-checkbox-label input[type="checkbox"] {
  width: 16px; height: 16px;
  accent-color: var(--royal-500);
  cursor: pointer;
}
.form-note {
  font-size: 12px;
  color: var(--ink-400);
  text-align: center;
  margin: 4px 0 0;
  line-height: 1.5;
}
.login-form__links {
  text-align: center;
  font-size: 13px;
  margin: 6px 0 0;
}
.login-form__links a {
  color: var(--royal-500);
  text-decoration: none;
  font-weight: 500;
}
.login-form__links a:hover { text-decoration: underline; }

@media (max-width: 600px) {
  .login-wrapper { margin-top: 16px; border-radius: 16px; }
  .login-panel { padding: 24px 20px 28px; }
  .login-notice { margin: 16px 20px 0; }
  .form-grid { grid-template-columns: 1fr; }
}

/* Drawer user greeting (mobile) */
.drawer-user-greeting {
  padding: 12px 16px;
  margin-bottom: 8px;
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.drawer-user-greeting strong { color: white; font-weight: 700; margin-left: 4px; }

/* =========================================================
   COOKIE CONSENT BANNER
   ========================================================= */
.gv-cookie {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.32s var(--ease-out), transform 0.32s var(--ease-out);
}
.gv-cookie.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.gv-cookie__inner {
  max-width: 1100px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--navy-900), #122a5e);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 22px;
  box-shadow: 0 25px 60px rgba(2, 8, 22, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.gv-cookie__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  color: var(--amber-500, #f5b400);
  flex-shrink: 0;
}
.gv-cookie__icon svg {
  width: 28px;
  height: 28px;
}
.gv-cookie__copy {
  flex: 1;
  min-width: 0;
  color: white;
}
.gv-cookie__title {
  display: block;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: white;
  margin-bottom: 4px;
}
.gv-cookie__desc {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
  margin: 0;
}
.gv-cookie__link {
  color: var(--royal-300, #8ab4ff);
  text-decoration: none;
  font-weight: 500;
  margin-left: 4px;
  white-space: nowrap;
}
.gv-cookie__link:hover { text-decoration: underline; color: white; }
.gv-cookie__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.gv-cookie__btn {
  padding: 11px 22px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
  white-space: nowrap;
}
.gv-cookie__btn:active { transform: scale(0.97); }
.gv-cookie__btn--ghost {
  background: transparent;
  color: rgba(255, 255, 255, 0.75);
  border-color: rgba(255, 255, 255, 0.18);
}
.gv-cookie__btn--ghost:hover {
  color: white;
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.05);
}
.gv-cookie__btn--primary {
  background: linear-gradient(135deg, var(--royal-500, #1e5bbf), var(--royal-400, #3a7fe0));
  color: white;
  box-shadow: 0 8px 22px rgba(30, 91, 191, 0.4);
}
.gv-cookie__btn--primary:hover {
  box-shadow: 0 10px 28px rgba(30, 91, 191, 0.55);
}

@media (max-width: 820px) {
  .gv-cookie { left: 12px; right: 12px; bottom: 12px; }
  .gv-cookie__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 18px 20px;
    border-radius: 16px;
  }
  .gv-cookie__icon { width: 44px; height: 44px; border-radius: 12px; }
  .gv-cookie__icon svg { width: 22px; height: 22px; }
  .gv-cookie__actions {
    width: 100%;
    flex-direction: row-reverse;
  }
  .gv-cookie__btn { flex: 1; padding: 11px 14px; }
}
