/* ================================================
   RMV — Gestão de Marca Própria
   Design System v2 · Professional & Elegant
   ================================================ */

/* --- 1. Custom Properties --- */
:root {
  --navy:       #0B1929;
  --navy-2:     #142236;
  --navy-3:     #1D3045;
  --gold:       #C9A84C;
  --gold-2:     #A88830;
  --gold-3:     #EFE0BE;
  --gold-4:     #FAF5E9;
  --cream:      #F8F8F3;
  --white:      #FFFFFF;
  --t1:         #0F1923;
  --t2:         #4A5568;
  --t3:         #8B99A8;
  --border:     #E4E4DA;
  --border-2:   #ECECE4;
  --green:      #10B981;

  --ff-d: 'Playfair Display', Georgia, serif;
  --ff-b: 'Inter', system-ui, -apple-system, sans-serif;

  --r-xs:   4px;
  --r-sm:   8px;
  --r-md:   14px;
  --r-lg:   20px;
  --r-xl:   28px;

  --sh1: 0 1px 3px rgba(0,0,0,.05), 0 4px 14px rgba(0,0,0,.04);
  --sh2: 0 4px 20px rgba(0,0,0,.07), 0 10px 32px rgba(0,0,0,.05);
  --sh3: 0 8px 32px rgba(0,0,0,.09), 0 24px 64px rgba(0,0,0,.07);
  --sh-gold: 0 6px 24px rgba(201,168,76,.28), 0 16px 48px rgba(201,168,76,.12);
  --sh-navy: 0 12px 40px rgba(11,25,41,.22), 0 32px 80px rgba(11,25,41,.14);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --t1s: 0.18s;
  --t2s: 0.28s;
  --t3s: 0.5s;
  --t4s: 0.72s;

  --cx: clamp(1.25rem, 5vw, 2.5rem);
  --sv: clamp(5rem, 10vw, 8rem);
}

/* --- 2. Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--ff-b);
  color: var(--t1);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }
input, textarea, select { font-family: inherit; }
section { scroll-margin-top: 80px; }

/* --- 3. Typography --- */
.title-hero {
  font-family: var(--ff-d);
  font-size: clamp(2.5rem, 6.5vw, 4.75rem);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.035em;
  color: var(--white);
}
.title-hero em { font-style: italic; color: var(--gold); }

.title-lg {
  font-family: var(--ff-d);
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--navy);
}
.title-lg em  { font-style: italic; color: var(--gold); }
.title-light  { color: var(--white) !important; }

.title-md {
  font-family: var(--ff-d);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: '';
  width: 24px; height: 1.5px;
  background: var(--gold);
  flex-shrink: 0;
}
.eyebrow.center-eb { justify-content: center; }

.section-head { margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head.center { text-align: center; }
.section-head.center .eyebrow { justify-content: center; }

.s-desc {
  font-size: 1.05rem;
  color: var(--t2);
  max-width: 520px;
  margin: 0.875rem auto 0;
  line-height: 1.8;
}
.s-desc.light { color: rgba(255,255,255,.6); }

/* --- 4. Layout --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: var(--cx);
}

/* --- 5. Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2.125rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--r-xs);
  border: 2px solid transparent;
  transition: all var(--t2s) var(--ease);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background var(--t1s);
}
.btn:hover::after { background: rgba(255,255,255,0.08); }

.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  box-shadow: var(--sh1);
}
.btn-navy:hover { transform: translateY(-2px); box-shadow: var(--sh2); }

.btn-gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  box-shadow: 0 4px 16px rgba(201,168,76,.25);
}
.btn-gold:hover { background: var(--gold-2); border-color: var(--gold-2); transform: translateY(-2px); box-shadow: var(--sh-gold); }

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.35);
}
.btn-ghost:hover { border-color: rgba(255,255,255,.75); background: rgba(255,255,255,.07); }

.btn-white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
  font-weight: 700;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--sh3); }

.btn-sgm {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  justify-content: center;
  padding: 1rem 1.5rem;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--r-sm);
  border: 2px solid var(--gold);
  transition: all var(--t2s) var(--ease);
}
.btn-sgm:hover { background: var(--gold-2); border-color: var(--gold-2); transform: translateY(-2px); box-shadow: var(--sh-gold); }

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

/* ================================================
   NAVBAR
   ================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.375rem 0;
  transition: padding var(--t2s) var(--ease), background var(--t2s), box-shadow var(--t2s);
}
.navbar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(11,25,41,0);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  transition: all var(--t2s);
  z-index: -1;
}
.navbar.scrolled {
  padding: 0.875rem 0;
}
.navbar.scrolled::before {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(0,0,0,.06), 0 4px 24px rgba(0,0,0,.05);
}
.navbar.scrolled .logo-mark { color: var(--navy); }
.navbar.scrolled .logo-sub  { color: var(--t3); }
.navbar.scrolled .nav-link  { color: var(--t2); }
.navbar.scrolled .nav-link:hover { color: var(--gold); }
.navbar.scrolled .nav-cta   { color: var(--navy); border-color: var(--navy); }
.navbar.scrolled .nav-cta:hover { background: var(--navy); color: var(--white); }
.navbar.scrolled .hamburger span { background: var(--navy); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo { display: flex; flex-direction: column; line-height: 1; }
.logo-mark {
  font-family: var(--ff-d);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  transition: color var(--t2s);
}
.logo-sub {
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-top: 2px;
  transition: color var(--t2s);
}

.navbar-menu {
  display: none;
  align-items: center;
  gap: 0.125rem;
}
@media (min-width: 768px) { .navbar-menu { display: flex; } }

.nav-link {
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255,255,255,.78);
  padding: 0.5rem 0.9rem;
  border-radius: var(--r-xs);
  transition: color var(--t1s), background var(--t1s);
}
.nav-link:hover, .nav-link.active {
  color: var(--white);
  background: rgba(255,255,255,.07);
}
.navbar.scrolled .nav-link.active { color: var(--gold); background: var(--gold-4); }

.nav-cta {
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255,255,255,.9);
  border: 1.5px solid rgba(255,255,255,.35);
  padding: 0.5rem 1.25rem;
  border-radius: var(--r-xs);
  margin-left: 0.625rem;
  transition: all var(--t2s);
}
.nav-cta:hover { border-color: rgba(255,255,255,.8); background: rgba(255,255,255,.1); }

.hamburger {
  display: flex; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 0.5rem;
}
@media (min-width: 768px) { .hamburger { display: none; } }
.hamburger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--white); transition: all var(--t2s) var(--ease);
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

.navbar-menu.open {
  display: flex; flex-direction: column;
  position: fixed; inset: 0;
  background: var(--navy);
  padding: 6rem 2rem 3rem;
  z-index: 99; gap: 0.25rem;
  align-items: flex-start;
}
.navbar-menu.open .nav-link  { font-size: 1.5rem; color: var(--white); padding: 0.875rem 0.5rem; width: 100%; }
.navbar-menu.open .nav-cta   { font-size: 1.5rem; color: var(--gold); border-color: rgba(201,168,76,.4); margin-left: 0; padding: 0.875rem 0.5rem; width: 100%; display: block; }

/* ================================================
   HERO
   ================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  padding: 9rem 0 5rem;
  overflow: hidden;
}

/* Subtle dot-grid pattern */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}

.hero-grad {
  position: absolute; border-radius: 50%; pointer-events: none;
}
.hero-grad-a {
  width: 800px; height: 800px;
  top: -300px; right: -200px;
  background: radial-gradient(circle, rgba(201,168,76,.1) 0%, transparent 65%);
}
.hero-grad-b {
  width: 500px; height: 500px;
  bottom: -150px; left: -100px;
  background: radial-gradient(circle, rgba(201,168,76,.06) 0%, transparent 65%);
}

.hero-ring {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(201,168,76,.12); pointer-events: none;
}
.hero-ring-a { width: 700px; height: 700px; top: -220px; right: -120px; }
.hero-ring-b { width: 380px; height: 380px; bottom: 60px; left: -80px;  }
.hero-ring-c {
  width: 120px; height: 120px;
  bottom: 20%; right: 12%;
  border-color: rgba(201,168,76,.2);
  animation: spinSlow 20s linear infinite;
}

.hero .container { position: relative; z-index: 2; }

.hero-layout {
  display: grid;
  gap: 4rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero-layout { grid-template-columns: 1fr 420px; gap: 4rem; }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201,168,76,.1);
  border: 1px solid rgba(201,168,76,.22);
  border-radius: var(--r-full);
  padding: 0.4rem 1rem 0.4rem 0.6rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.badge-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: badgePulse 2.4s ease-in-out infinite;
}

.hero-title { margin-bottom: 1.375rem; }

.hero-sub {
  font-size: clamp(0.95rem, 1.5vw, 1.075rem);
  color: rgba(255,255,255,.6);
  line-height: 1.85;
  max-width: 520px;
  margin-bottom: 2.5rem;
}

.hero-btns {
  display: flex; gap: 0.875rem; flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-metrics {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.1);
}
.hm-item { display: flex; flex-direction: column; gap: 0.1rem; }
.hm-item strong {
  font-family: var(--ff-d);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
}
.hm-item span {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: rgba(255,255,255,.38);
}
.hm-sep { width: 1px; height: 28px; background: rgba(255,255,255,.15); }

/* Hero Visual Card (right column) */
.hero-visual { display: none; }
@media (min-width: 1024px) { .hero-visual { display: block; } }

.hv-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  backdrop-filter: blur(4px);
  position: relative;
}
.hv-card::before {
  content: '';
  position: absolute;
  top: 0; left: 2rem; right: 2rem; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,.6), transparent);
}
.hv-tag {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 1.25rem;
}
.hv-items { display: flex; flex-direction: column; gap: 0.875rem; }
.hv-item {
  display: flex; align-items: center; gap: 0.875rem;
  padding: 0.875rem 1rem;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--r-sm);
  transition: border-color var(--t2s);
}
.hv-item:hover { border-color: rgba(201,168,76,.3); }
.hv-item-icon {
  width: 34px; height: 34px;
  background: rgba(201,168,76,.12);
  border-radius: var(--r-xs);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.hv-item-text h5 { font-size: 0.8rem; font-weight: 600; color: var(--white); margin-bottom: 0.1rem; }
.hv-item-text p  { font-size: 0.7rem; color: rgba(255,255,255,.42); }
.hv-footer {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex; align-items: center; gap: 0.625rem;
}
.hv-footer-dot {
  width: 7px; height: 7px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(16,185,129,.18);
  animation: badgePulse 2.5s ease-in-out infinite;
}
.hv-footer span { font-size: 0.72rem; color: rgba(255,255,255,.45); letter-spacing: 0.04em; }

.scroll-cue {
  position: absolute;
  bottom: 2.25rem; left: 50%;
  transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 0.375rem;
}
.scroll-cue span { font-size: 0.62rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,.3); }
.scroll-cue-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, rgba(201,168,76,.8), transparent);
  animation: scrollCue 1.8s ease-in-out infinite;
}

/* ================================================
   ABOUT
   ================================================ */
.about {
  padding: var(--sv) 0;
  background: var(--white);
}

.about-grid {
  display: grid; gap: 4rem; align-items: center;
}
@media (min-width: 1024px) { .about-grid { grid-template-columns: 5fr 6fr; gap: 5rem; } }

/* Visual card */
.about-visual { display: flex; justify-content: center; }

.avc {
  position: relative;
  background: var(--navy);
  border-radius: var(--r-xl);
  padding: 0;
  width: 100%; max-width: 400px;
  min-height: 480px;
  overflow: hidden;
  box-shadow: var(--sh-navy);
}
.avc::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold) 0%, rgba(201,168,76,.15) 100%);
  z-index: 2;
}

.avc-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 80% 20%, rgba(201,168,76,.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 10% 80%, rgba(201,168,76,.05) 0%, transparent 60%);
}

.avc-inner {
  position: relative; z-index: 1;
  padding: 2.25rem;
  height: 100%;
  display: flex; flex-direction: column;
  justify-content: space-between;
  min-height: 480px;
}

.avc-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; }

.year-badge {
  display: inline-flex; flex-direction: column;
  background: rgba(201,168,76,.1);
  border: 1px solid rgba(201,168,76,.22);
  border-radius: var(--r-sm);
  padding: 0.875rem 1.25rem;
}
.year-badge span {
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(255,255,255,.45);
}
.year-badge strong {
  font-family: var(--ff-d);
  font-size: 2.5rem; font-weight: 700;
  color: var(--gold); line-height: 1;
  letter-spacing: -0.02em;
}

.avc-pills { display: flex; flex-direction: column; gap: 0.375rem; align-items: flex-end; }
.avc-pill {
  font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,168,76,.1);
  border: 1px solid rgba(201,168,76,.2);
  border-radius: var(--r-full);
  padding: 0.3rem 0.75rem;
  white-space: nowrap;
}

.avc-mid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem;
}
.avc-block {
  border-radius: var(--r-sm);
  padding: 1rem;
  display: flex; flex-direction: column; gap: 0.3rem;
}
.avc-block.ab-gold    { background: rgba(201,168,76,.15); }
.avc-block.ab-outline { border: 1px solid rgba(255,255,255,.08); }
.avc-block.ab-dark    { background: rgba(0,0,0,.15); }
.avc-block.ab-accent  { background: rgba(201,168,76,.08); border: 1px solid rgba(201,168,76,.15); }
.avc-block-label {
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,.35);
}
.avc-block-val {
  font-family: var(--ff-d);
  font-size: 1.375rem; font-weight: 600;
  color: var(--white); letter-spacing: -0.02em;
}
.avc-block-val.gold { color: var(--gold); }

.avc-quote {
  border-top: 1px solid rgba(255,255,255,.07);
  padding-top: 1.25rem;
}
.avc-quote p {
  font-family: var(--ff-d);
  font-style: italic;
  font-size: 0.875rem;
  color: rgba(255,255,255,.45);
  line-height: 1.65;
}

.avc-loc {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.7rem; font-weight: 500;
  color: rgba(255,255,255,.28);
  letter-spacing: 0.05em;
  margin-top: 0.875rem;
}

/* About text */
.about-text .title-lg { margin-bottom: 1.25rem; }

.about-lead {
  font-size: 1.05rem; color: #374151; line-height: 1.85; margin-bottom: 0.875rem;
}
.about-body { font-size: 0.9375rem; color: var(--t2); line-height: 1.85; margin-bottom: 1.5rem; }

.about-caps {
  background: var(--gold-4);
  border: 1px solid var(--gold-3);
  border-radius: var(--r-md);
  padding: 1.375rem 1.5rem;
  display: flex; gap: 1rem; align-items: flex-start;
  margin-bottom: 2rem;
}
.about-caps-icon {
  width: 40px; height: 40px;
  background: var(--white);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-2);
  box-shadow: var(--sh1);
  flex-shrink: 0;
}
.about-caps p { font-size: 0.875rem; color: var(--t2); line-height: 1.7; }
.about-caps p strong { color: var(--navy); }

.pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.875rem;
}
@media (max-width: 580px) { .pillars { grid-template-columns: 1fr; } }

.pillar {
  display: flex; gap: 0.875rem; align-items: flex-start;
  padding: 1.125rem;
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  transition: all var(--t2s) var(--ease);
}
.pillar:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(201,168,76,.1);
  transform: translateY(-2px);
}
.pillar-icon {
  width: 38px; height: 38px;
  background: var(--gold-4);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-2); flex-shrink: 0;
}
.pillar h4 { font-size: 0.8125rem; font-weight: 600; color: var(--navy); margin-bottom: 0.2rem; }
.pillar p  { font-size: 0.76rem; color: var(--t3); line-height: 1.5; }

/* ================================================
   PRIVATE LABEL (dark)
   ================================================ */
.private-label {
  padding: var(--sv) 0;
  background: var(--navy);
  position: relative; overflow: hidden;
}
.private-label::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: 40px 40px;
}

.pl-layout {
  display: grid; gap: 3.5rem; position: relative; z-index: 1;
}
@media (min-width: 1024px) {
  .pl-layout { grid-template-columns: 5fr 7fr; gap: 5rem; align-items: start; }
}

.pl-what { position: sticky; top: 7rem; }
@media (max-width: 1023px) { .pl-what { position: static; } }

.pl-what h3 {
  font-family: var(--ff-d);
  font-size: clamp(1.375rem, 3vw, 1.75rem);
  font-weight: 600; color: var(--white);
  margin-bottom: 1.25rem; line-height: 1.3;
}
.pl-what p { font-size: 0.9rem; color: rgba(255,255,255,.58); line-height: 1.85; margin-bottom: 0.875rem; }
.pl-divider { width: 40px; height: 2px; background: var(--gold); margin: 1.5rem 0; }
.pl-quote {
  font-family: var(--ff-d);
  font-style: italic; font-size: 1rem;
  color: var(--gold); line-height: 1.65;
}

.pl-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-lg);
  overflow: hidden;
}
@media (max-width: 560px) { .pl-benefits { grid-template-columns: 1fr; } }

.benefit {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.625rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
  border-right: 1px solid rgba(255,255,255,.06);
  transition: background var(--t2s);
}
.benefit:hover { background: rgba(201,168,76,.06); }
.benefit:nth-child(2n) { border-right: none; }
.benefit:nth-last-child(-n+2) { border-bottom: none; }

.benefit-num {
  font-family: var(--ff-d);
  font-size: 0.65rem; font-weight: 700;
  color: var(--gold); letter-spacing: 0.06em;
  flex-shrink: 0; margin-top: 2px;
}
.benefit h4 { font-size: 0.85rem; font-weight: 600; color: var(--white); margin-bottom: 0.35rem; }
.benefit p  { font-size: 0.78rem; color: rgba(255,255,255,.48); line-height: 1.6; }

/* ================================================
   PRODUCTS
   ================================================ */
.products {
  padding: var(--sv) 0;
  background: var(--cream);
}

.prod-filters {
  display: flex; gap: 0.5rem; flex-wrap: wrap;
  justify-content: center; margin-bottom: 2.75rem;
}
.filter {
  padding: 0.5rem 1.25rem;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.04em;
  border: 1.5px solid var(--border);
  border-radius: var(--r-full);
  background: var(--white);
  color: var(--t2);
  transition: all var(--t1s);
}
.filter:hover, .filter.active {
  border-color: var(--navy); background: var(--navy); color: var(--white);
}

.prod-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}

.prod-card {
  background: var(--white);
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1.5px solid var(--border-2);
  box-shadow: var(--sh1);
  transition: all var(--t2s) var(--ease);
  display: flex; flex-direction: column;
}
.prod-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh2);
  border-color: var(--gold);
}
.prod-card.hidden { display: none; }

.pc-header {
  display: flex; align-items: center; justify-content: center;
  padding: 2.25rem 2rem; position: relative; overflow: hidden;
}
.pc-header::after {
  content: '';
  position: absolute; inset: 0;
  background: inherit;
  filter: brightness(0.96);
  z-index: 0;
}
.pc-header svg { position: relative; z-index: 1; }

.pc-amber { background: #FFFBEB; color: #D97706; }
.pc-green { background: #ECFDF5; color: #059669; }
.pc-teal  { background: #ECFEFF; color: #0891B2; }
.pc-warm  { background: #FFFBEB; color: #B45309; }
.pc-brown { background: #FFF7ED; color: #92400E; }

.pc-body { padding: 1.375rem; flex: 1; display: flex; flex-direction: column; }
.pc-cat  {
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--t3); margin-bottom: 0.4rem;
}
.pc-body h3 { font-size: 0.9375rem; font-weight: 600; color: var(--navy); margin-bottom: 0.375rem; }
.pc-body p  { font-size: 0.8rem; color: var(--t3); line-height: 1.55; flex: 1; }
.pc-badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold-2);
  background: var(--gold-4);
  border: 1px solid var(--gold-3);
  border-radius: var(--r-full);
  padding: 0.2rem 0.65rem;
  margin-top: 0.875rem; width: fit-content;
}
.pc-badge-gourmet { color: #065F46; background: #ECFDF5; border-color: #A7F3D0; }

/* ================================================
   SISTEMA
   ================================================ */
.sistema {
  padding: var(--sv) 0;
  background: var(--white);
  position: relative; overflow: hidden;
}
.sistema::before {
  content: '';
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 45%;
  background: linear-gradient(135deg, var(--cream) 0%, var(--gold-4) 100%);
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0% 100%);
  pointer-events: none;
}
@media (max-width: 1023px) { .sistema::before { display: none; } }

.sistema-grid {
  display: grid; gap: 4rem; align-items: center; position: relative; z-index: 1;
}
@media (min-width: 1024px) { .sistema-grid { grid-template-columns: 1fr 1fr; gap: 5rem; } }

.sistema-lead {
  font-size: 1.05rem; color: #374151; line-height: 1.85;
  margin: 1.25rem 0 0.875rem;
}
.sistema-body { font-size: 0.9375rem; color: var(--t2); line-height: 1.8; margin-bottom: 2rem; }

.sistema-features {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.875rem;
}
@media (max-width: 480px) { .sistema-features { grid-template-columns: 1fr; } }

.sf-item {
  display: flex; align-items: center; gap: 0.625rem;
  font-size: 0.8125rem; font-weight: 500; color: var(--t1);
}
.sf-icon {
  width: 34px; height: 34px;
  background: var(--gold-4); border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-2); flex-shrink: 0;
}

/* SGM Card */
.sgm-card {
  background: var(--navy);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-navy);
  position: relative;
}
.sgm-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold), rgba(201,168,76,.15));
  z-index: 2;
}
.sgm-card-inner {
  position: relative; padding: 2.25rem;
}
.sgm-card-inner::before {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,.08) 0%, transparent 70%);
  bottom: -100px; right: -80px;
  pointer-events: none;
}

.sgm-top {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1.5rem;
}
.sgm-logo {
  display: flex; align-items: center; gap: 0.5rem;
  font-family: var(--ff-d); font-size: 1.375rem; font-weight: 700;
  color: var(--gold); letter-spacing: -0.01em;
}
.sgm-status {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.65rem; font-weight: 600;
  color: rgba(255,255,255,.4);
  letter-spacing: 0.08em; text-transform: uppercase;
}
.sgm-dot {
  width: 6px; height: 6px;
  background: var(--green); border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(16,185,129,.2);
  animation: badgePulse 2.5s ease-in-out infinite;
}

.sgm-card h3 {
  font-family: var(--ff-d);
  font-size: 1.25rem; font-weight: 600;
  color: var(--white); margin-bottom: 0.75rem; line-height: 1.3;
}
.sgm-card > .sgm-card-inner > p {
  font-size: 0.85rem; color: rgba(255,255,255,.55);
  line-height: 1.8; margin-bottom: 1.75rem;
}

.sgm-modules {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.625rem;
  margin-bottom: 1.75rem;
}
.sgm-mod {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-sm);
  padding: 0.875rem 1rem;
  transition: border-color var(--t2s), background var(--t2s);
}
.sgm-mod:hover {
  border-color: rgba(201,168,76,.3);
  background: rgba(201,168,76,.05);
}
.sgm-mod-icon {
  width: 28px; height: 28px;
  background: rgba(201,168,76,.12);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); margin-bottom: 0.625rem;
}
.sgm-mod h5 { font-size: 0.78rem; font-weight: 600; color: var(--white); margin-bottom: 0.15rem; }
.sgm-mod p  { font-size: 0.7rem; color: rgba(255,255,255,.4); line-height: 1.4; }

.sgm-divider { height: 1px; background: rgba(255,255,255,.08); margin-bottom: 1.75rem; }

.sgm-list {
  display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.75rem;
}
.sgm-list li {
  display: flex; align-items: center; gap: 0.625rem;
  font-size: 0.8125rem; color: rgba(255,255,255,.65);
}
.sgm-list li svg { color: var(--gold); flex-shrink: 0; }

/* ================================================
   CTA BAND
   ================================================ */
.cta-band {
  padding: clamp(4rem, 8vw, 6.5rem) 0;
  background: linear-gradient(135deg, #0B1929 0%, #162436 60%, #1D3045 100%);
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(201,168,76,.06) 1px, transparent 1px);
  background-size: 32px 32px;
}
.cta-ring {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(201,168,76,.1); pointer-events: none;
}
.cta-ring-a { width: 560px; height: 560px; top: -220px; right: -100px; }
.cta-ring-b { width: 260px; height: 260px; bottom: -90px; left: 8%; }

.cta-content {
  text-align: center; position: relative; z-index: 1;
  max-width: 600px; margin: 0 auto;
}
.cta-content .eyebrow { justify-content: center; }
.cta-content .title-lg { margin-bottom: 1.125rem; }
.cta-content > p {
  color: rgba(255,255,255,.55); font-size: 1rem;
  line-height: 1.8; margin-bottom: 2rem;
}

/* ================================================
   CONTACT
   ================================================ */
.contact {
  padding: clamp(4rem, 8vw, 6.5rem) 0;
  background: var(--cream);
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  max-width: 900px;
  margin: 0 auto;
}

.cc {
  display: flex; align-items: flex-start; gap: 1rem;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  padding: 1.625rem;
  transition: all var(--t2s) var(--ease);
}
.cc:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 28px rgba(201,168,76,.1);
  transform: translateY(-3px);
}
.cc div { display: flex; flex-direction: column; gap: 0.25rem; }
.cc strong { font-size: 0.825rem; font-weight: 600; color: var(--navy); }
.cc span   { font-size: 0.825rem; color: var(--t3); line-height: 1.5; }

.ci-icon {
  width: 44px; height: 44px;
  background: var(--gold-4);
  border: 1px solid var(--gold-3);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-2); flex-shrink: 0;
}

/* ================================================
   FOOTER
   ================================================ */
.footer {
  background: #08131E;
  padding: 5rem 0 0;
}

.footer-top {
  display: grid; gap: 3.5rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
@media (min-width: 768px) { .footer-top { grid-template-columns: 1.6fr 1fr; } }

.footer-brand .logo-mark {
  font-family: var(--ff-d);
  font-size: 2.125rem; font-weight: 700;
  color: var(--white); display: block;
  margin-bottom: 0.875rem; letter-spacing: -0.02em;
}
.footer-brand .logo-tagline {
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.125rem;
  display: block;
}
.footer-brand p { font-size: 0.8375rem; color: rgba(255,255,255,.4); line-height: 1.8; max-width: 320px; }

.footer-since { margin-top: 0.75rem !important; }
.footer-since strong { color: var(--gold); }

.footer-sgm-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.75rem; font-weight: 600;
  color: var(--gold); letter-spacing: 0.04em;
  margin-top: 1.25rem;
  border: 1px solid rgba(201,168,76,.25);
  border-radius: var(--r-full);
  padding: 0.4rem 0.875rem;
  transition: all var(--t2s);
  width: fit-content;
}
.footer-sgm-link:hover {
  background: rgba(201,168,76,.08);
  border-color: rgba(201,168,76,.5);
}

.footer-links { display: flex; gap: 3rem; flex-wrap: wrap; }
.fl-group h4 {
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,.28); margin-bottom: 1.25rem;
}
.fl-group ul { display: flex; flex-direction: column; gap: 0.75rem; }
.fl-group a { font-size: 0.8375rem; color: rgba(255,255,255,.5); transition: color var(--t1s); }
.fl-group a:hover { color: var(--gold); }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.5rem 0; flex-wrap: wrap; gap: 0.5rem;
}
.footer-bottom p { font-size: 0.75rem; color: rgba(255,255,255,.24); }

/* ================================================
   ANIMATIONS & REVEAL
   ================================================ */
@keyframes badgePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.55; transform: scale(0.72); }
}
@keyframes scrollCue {
  0%   { transform: scaleY(0); transform-origin: top;    opacity: 1; }
  48%  { transform: scaleY(1); transform-origin: top;    opacity: 1; }
  52%  { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}
@keyframes spinSlow { to { transform: rotate(360deg); } }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

[data-reveal] {
  opacity: 0;
  transition: opacity var(--t4s) var(--ease), transform var(--t4s) var(--ease);
}
[data-reveal="up"]    { transform: translateY(36px); }
[data-reveal="left"]  { transform: translateX(-44px); }
[data-reveal="right"] { transform: translateX(44px); }
[data-reveal].revealed { opacity: 1; transform: none; }

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 767px) {
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .hero-metrics { gap: 1.25rem; }
  .hm-sep { display: none; }

  .avc-mid { grid-template-columns: 1fr 1fr; }

  .sgm-modules { grid-template-columns: 1fr; }

  .cta-content .title-lg { font-size: 1.75rem; }
}

@media (max-width: 480px) {
  .prod-grid { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: 1fr; }
  .pl-benefits { grid-template-columns: 1fr; }
}
