/* ═══════════════════════════════════════════════════════════════
   CONSULTORES VEGA — Design System US$10,000
   Fonts: Cormorant Garamond (display) + DM Sans (UI)
   Colors: 5 tokens only · Motion: intentional · Mobile: adaptive
═══════════════════════════════════════════════════════════════ */

/* ─── Google Fonts (loaded via HTML preload) ─── */

/* ─── Design Tokens ─── */
:root {
  /* 5-color restricted palette */
  --ink:       #06182C;   /* deep navy — primary */
  --gold:      #C9A84C;   /* heritage gold — accent */
  --parchment: #FAFAF7;   /* warm off-white — background */
  --fog:       #EDEEF0;   /* cool gray — surface */
  --body:      #2C3340;   /* dark slate — readable text */

  /* Derived */
  --ink-mid:   #0A2540;
  --ink-light: #1a3454;
  --gold-dim:  rgba(201,168,76,.12);
  --gold-mid:  rgba(201,168,76,.35);

  /* Typography */
  --f-display: 'Cormorant Garamond', 'Georgia', serif;
  --f-ui:      'DM Sans', system-ui, -apple-system, sans-serif;

  /* Type scale (fluid) */
  --t-xxs:  0.6875rem;   /* 11px */
  --t-xs:   0.75rem;     /* 12px */
  --t-sm:   0.875rem;    /* 14px */
  --t-base: 1rem;        /* 16px */
  --t-lg:   1.125rem;    /* 18px */
  --t-xl:   1.25rem;     /* 20px */
  --t-2xl:  1.5rem;      /* 24px */
  --t-3xl:  1.875rem;    /* 30px */
  --t-4xl:  2.25rem;     /* 36px */
  --t-5xl:  3rem;        /* 48px */
  --t-6xl:  3.75rem;     /* 60px */
  --t-7xl:  clamp(3rem, 6vw, 5rem); /* fluid display */
  --t-hero: clamp(3.5rem, 8vw, 6rem); /* hero display */

  /* Spacing (8px base) */
  --sp-1: 0.25rem;  --sp-2: 0.5rem;   --sp-3: 0.75rem;
  --sp-4: 1rem;     --sp-5: 1.25rem;  --sp-6: 1.5rem;
  --sp-8: 2rem;     --sp-10: 2.5rem;  --sp-12: 3rem;
  --sp-16: 4rem;    --sp-20: 5rem;    --sp-24: 6rem;
  --sp-32: 8rem;

  /* Layout */
  --max-w: 1240px;
  --gutter: clamp(1rem, 4vw, 2rem);
  --section: clamp(4rem, 8vw, 8rem);

  /* Borders & Radius */
  --radius-xs: 2px;
  --radius-sm: 4px;
  --radius:    6px;
  --radius-lg: 10px;

  /* Shadows */
  --shadow-xs: 0 1px 4px rgba(6,24,44,.06);
  --shadow-sm: 0 2px 10px rgba(6,24,44,.08);
  --shadow:    0 6px 20px rgba(6,24,44,.10);
  --shadow-md: 0 12px 36px rgba(6,24,44,.12);
  --shadow-lg: 0 20px 56px rgba(6,24,44,.15);
  --shadow-xl: 0 32px 80px rgba(6,24,44,.18);

  /* Motion */
  --ease-out:  cubic-bezier(.22,1,.36,1);
  --ease-in:   cubic-bezier(.64,0,.78,0);
  --ease-io:   cubic-bezier(.65,0,.35,1);
  --dur-fast:  160ms;
  --dur-base:  280ms;
  --dur-slow:  500ms;
  --dur-enter: 700ms;
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; font-size: 16px; }
body {
  font-family: var(--f-ui);
  font-size: var(--t-base);
  line-height: 1.6;
  color: var(--body);
  background: var(--parchment);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul, ol { list-style: none; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 2px; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
}

/* ─── Skip link ─── */
.skip-link {
  position: absolute; top: 6px; left: 6px; z-index: 9999;
  padding: 8px 18px; background: var(--gold); color: var(--ink);
  font-family: var(--f-ui); font-size: var(--t-sm); font-weight: 600;
  border-radius: var(--radius-sm);
  transform: translateY(-200%); transition: transform var(--dur-fast);
}
.skip-link:focus { transform: translateY(0); }

/* ─── Layout ─── */
.container {
  width: 100%; max-width: var(--max-w);
  margin-inline: auto; padding-inline: var(--gutter);
}
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ─── Progress bar ─── */
#scroll-progress {
  position: fixed; top: 0; left: 0; z-index: 200;
  height: 2px; width: 0; background: var(--gold);
  transition: width .1s linear;
  pointer-events: none;
}

/* ═══════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background var(--dur-base) var(--ease-io),
              box-shadow var(--dur-base) var(--ease-io),
              border-color var(--dur-base);
  border-bottom: 1px solid transparent;
}
.nav--scrolled {
  background: rgba(6,24,44,.97);
  backdrop-filter: blur(12px) saturate(1.2);
  border-bottom-color: rgba(201,168,76,.15);
  box-shadow: 0 4px 24px rgba(0,0,0,.25);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.nav__logo {
  display: flex; align-items: center; gap: 12px; flex-shrink: 0;
  text-decoration: none;
}
.nav__logo img { height: 38px; width: auto; }
.nav__brand { display: flex; flex-direction: column; }
.nav__brand-name {
  font-family: var(--f-ui); font-size: 14px; font-weight: 700;
  color: #fff; letter-spacing: .03em; line-height: 1.2;
}
.nav__brand-est {
  font-family: var(--f-display); font-size: 11px; font-weight: 400;
  font-style: italic; color: var(--gold); letter-spacing: .06em;
}
.nav__links { display: flex; align-items: center; gap: 4px; }
.nav__link {
  position: relative;
  font-family: var(--f-ui); font-size: 12px; font-weight: 500;
  color: rgba(255,255,255,.75); padding: 8px 14px;
  border-radius: var(--radius-xs); letter-spacing: .06em;
  text-transform: uppercase; transition: color var(--dur-fast);
}
.nav__link::after {
  content: ''; position: absolute; bottom: 4px; left: 50%; right: 50%;
  height: 1px; background: var(--gold);
  transition: left var(--dur-base) var(--ease-out), right var(--dur-base) var(--ease-out);
}
.nav__link:hover { color: #fff; }
.nav__link:hover::after, .nav__link.active::after { left: 14px; right: 14px; }
.nav__link.active { color: var(--gold); }

/* Dropdown */
.nav__dropdown { position: relative; }
.nav__dropdown-menu {
  position: absolute; top: 100%; left: 50%;
  background: var(--ink-mid);
  border: 1px solid rgba(201,168,76,.2);
  border-radius: var(--radius);
  padding: 16px 8px 8px;
  min-width: 260px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transform: translateX(-50%) translateY(-8px);
  transition: opacity var(--dur-base) var(--ease-out),
              transform var(--dur-base) var(--ease-out),
              visibility var(--dur-base);
  box-shadow: var(--shadow-md);
  z-index: 50;
}
.nav__dropdown:hover .nav__dropdown-menu,
.nav__dropdown-menu:hover {
  opacity: 1; visibility: visible; pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.nav__dropdown-item {
  display: block; padding: 9px 14px;
  font-family: var(--f-ui); font-size: 13px; color: rgba(255,255,255,.75);
  border-radius: var(--radius-xs);
  transition: color var(--dur-fast), background var(--dur-fast);
  white-space: nowrap;
}
.nav__dropdown-item:hover { color: var(--gold); background: rgba(201,168,76,.08); }

.nav__cta {
  margin-left: 12px; padding: 10px 22px;
  font-family: var(--f-ui); font-size: 12px; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  background: var(--gold); color: var(--ink);
  border-radius: var(--radius-xs);
  transition: background var(--dur-fast), transform var(--dur-fast), box-shadow var(--dur-fast);
  white-space: nowrap;
}
.nav__cta:hover { background: #b8953e; box-shadow: 0 4px 16px rgba(201,168,76,.35); transform: translateY(-1px); }

/* Mobile toggle */
.nav__toggle {
  display: none; flex-direction: column; gap: 5px; padding: 8px;
  cursor: pointer; border-radius: var(--radius-sm);
}
.nav__toggle span {
  display: block; width: 24px; height: 1.5px;
  background: #fff; border-radius: 2px;
  transition: transform var(--dur-base) var(--ease-io), opacity var(--dur-fast), width var(--dur-base);
  transform-origin: left center;
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg); width: 26px; }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; width: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg); width: 26px; }

/* Full-screen overlay menu (mobile) */
.nav__overlay {
  position: fixed; inset: 0; z-index: 99;
  background: var(--ink);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: var(--sp-6);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity var(--dur-slow) var(--ease-io), visibility var(--dur-slow);
}
.nav__overlay.open { opacity: 1; visibility: visible; pointer-events: all; }
.nav__overlay-link {
  font-family: var(--f-display); font-size: clamp(2rem, 8vw, 3.5rem);
  font-weight: 500; color: rgba(255,255,255,.85); letter-spacing: -.01em;
  transform: translateY(16px);
  opacity: 0;
  transition: color var(--dur-fast), opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out);
}
.nav__overlay.open .nav__overlay-link { opacity: 1; transform: translateY(0); }
.nav__overlay.open .nav__overlay-link:nth-child(1) { transition-delay: 80ms; }
.nav__overlay.open .nav__overlay-link:nth-child(2) { transition-delay: 140ms; }
.nav__overlay.open .nav__overlay-link:nth-child(3) { transition-delay: 200ms; }
.nav__overlay.open .nav__overlay-link:nth-child(4) { transition-delay: 260ms; }
.nav__overlay.open .nav__overlay-link:nth-child(5) { transition-delay: 320ms; }
.nav__overlay-link:hover { color: var(--gold); transform: translateX(8px) !important; }
.nav__overlay-wa {
  margin-top: var(--sp-6);
  padding: 14px 32px;
  background: #25D366; color: #fff;
  font-family: var(--f-ui); font-size: 15px; font-weight: 600;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; gap: 10px;
  opacity: 0; transform: translateY(16px);
  transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out);
}
.nav__overlay.open .nav__overlay-wa { opacity: 1; transform: translateY(0); transition-delay: 380ms; }
.nav__overlay-close {
  position: absolute; top: 24px; right: 24px;
  font-family: var(--f-ui); font-size: 13px; color: rgba(255,255,255,.4);
  letter-spacing: .08em; text-transform: uppercase;
  cursor: pointer; transition: color var(--dur-fast);
}
.nav__overlay-close:hover { color: var(--gold); }
.nav__overlay-est {
  position: absolute; bottom: 32px;
  font-family: var(--f-display); font-style: italic; font-size: 13px;
  color: rgba(255,255,255,.2); letter-spacing: .04em;
}

/* ═══════════════════════════════════════
   BUTTONS
═══════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 32px;
  font-family: var(--f-ui); font-size: 13px; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  border-radius: var(--radius-xs);
  cursor: pointer; white-space: nowrap;
  transition: background var(--dur-fast), color var(--dur-fast),
              box-shadow var(--dur-fast), transform var(--dur-fast),
              border-color var(--dur-fast);
  position: relative; overflow: hidden;
}
.btn:active { transform: scale(.98); }
.btn-gold {
  background: var(--gold); color: var(--ink);
  border: 2px solid var(--gold);
}
.btn-gold:hover {
  background: #b8953e; border-color: #b8953e;
  box-shadow: 0 6px 24px rgba(201,168,76,.4);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent; color: #fff;
  border: 1.5px solid rgba(255,255,255,.45);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.8);
}
.btn-navy {
  background: var(--ink); color: #fff;
  border: 2px solid var(--ink);
}
.btn-navy:hover {
  background: var(--ink-mid); border-color: var(--ink-mid);
  box-shadow: var(--shadow);
}
.btn-wa {
  background: #25D366; color: #fff; border: 2px solid #25D366;
}
.btn-wa:hover { background: #1da851; border-color: #1da851; }

/* Magnetic wrapper */
.btn-magnetic { display: inline-block; }

/* ═══════════════════════════════════════
   TYPOGRAPHY COMPONENTS
═══════════════════════════════════════ */
.overline {
  display: inline-block;
  font-family: var(--f-ui); font-size: var(--t-xs); font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase; color: var(--gold);
}
.display-title {
  font-family: var(--f-display); font-weight: 500;
  color: var(--ink); line-height: 1.1; letter-spacing: -.02em;
}
.display-title em { font-style: italic; }
.section-heading {
  font-family: var(--f-display); font-size: var(--t-7xl);
  font-weight: 500; color: var(--ink);
  line-height: 1.15; letter-spacing: -.02em;
}
.section-body {
  font-family: var(--f-ui); font-size: var(--t-lg);
  color: var(--body); line-height: 1.75;
}

/* Gold accent rule */
.gold-rule {
  display: block; width: 48px; height: 2px;
  background: var(--gold); margin-top: 20px;
  transform-origin: left; transform: scaleX(0);
  transition: transform .8s var(--ease-out);
}
.gold-rule.visible { transform: scaleX(1); }

/* Section divider */
.divider {
  display: flex; align-items: center; gap: 20px;
  margin-block: var(--sp-16);
}
.divider::before, .divider::after {
  content: ''; flex: 1; height: 1px;
  background: linear-gradient(to right, transparent, var(--fog));
}
.divider--inv::before, .divider--inv::after {
  background: linear-gradient(to right, transparent, rgba(255,255,255,.1));
}

/* ═══════════════════════════════════════
   ANIMATIONS (Reveal system)
═══════════════════════════════════════ */
[data-reveal] {
  opacity: 0; will-change: transform, opacity;
}
[data-reveal="up"]    { transform: translateY(40px); }
[data-reveal="left"]  { transform: translateX(-40px); }
[data-reveal="right"] { transform: translateX(40px); }
[data-reveal="scale"] { transform: scale(.94); }
[data-reveal="fade"]  { transform: none; }

[data-reveal].is-visible {
  opacity: 1; transform: none;
  transition: opacity var(--dur-enter) var(--ease-out),
              transform var(--dur-enter) var(--ease-out);
}
[data-delay="100"].is-visible { transition-delay: 100ms; }
[data-delay="200"].is-visible { transition-delay: 200ms; }
[data-delay="300"].is-visible { transition-delay: 300ms; }
[data-delay="400"].is-visible { transition-delay: 400ms; }
[data-delay="500"].is-visible { transition-delay: 500ms; }
[data-delay="600"].is-visible { transition-delay: 600ms; }
[data-delay="700"].is-visible { transition-delay: 700ms; }
[data-delay="800"].is-visible { transition-delay: 800ms; }

/* Stagger group */
[data-stagger] > * {
  opacity: 0; transform: translateY(28px);
  transition: opacity var(--dur-enter) var(--ease-out),
              transform var(--dur-enter) var(--ease-out);
}
[data-stagger].is-visible > * { opacity: 1; transform: none; }
[data-stagger].is-visible > *:nth-child(1) { transition-delay: 60ms; }
[data-stagger].is-visible > *:nth-child(2) { transition-delay: 140ms; }
[data-stagger].is-visible > *:nth-child(3) { transition-delay: 220ms; }
[data-stagger].is-visible > *:nth-child(4) { transition-delay: 300ms; }
[data-stagger].is-visible > *:nth-child(5) { transition-delay: 380ms; }
[data-stagger].is-visible > *:nth-child(6) { transition-delay: 460ms; }
[data-stagger].is-visible > *:nth-child(7) { transition-delay: 540ms; }
[data-stagger].is-visible > *:nth-child(8) { transition-delay: 620ms; }

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.hero {
  position: relative; min-height: 100vh; min-height: 100svh;
  background: var(--ink); overflow: hidden;
  display: flex; align-items: center;
  padding-top: 72px;
}
.hero__content { display: flex; flex-direction: column; justify-content: center; }
.hero__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: var(--sp-16); align-items: center;
  padding-block: var(--section);
}
.hero__overline {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: var(--sp-8);
}
.hero__overline-text {
  font-family: var(--f-ui); font-size: var(--t-xs); font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase; color: var(--gold);
}
.hero__overline-line {
  flex: 1; height: 1px; background: rgba(201,168,76,.3);
  transform-origin: left; transform: scaleX(0);
  transition: transform 1.2s var(--ease-out) .3s;
}
.hero__overline-line.is-visible { transform: scaleX(1); }
.hero__title {
  font-family: var(--f-display);
  font-size: var(--t-hero);
  font-weight: 400; color: #fff;
  line-height: 1.08; letter-spacing: -.03em;
  margin-bottom: var(--sp-8);
}
.hero__title em { font-style: italic; color: var(--gold); }
.hero__subtitle {
  font-family: var(--f-display); font-size: var(--t-2xl);
  font-weight: 300; font-style: italic;
  color: rgba(255,255,255,.55); margin-bottom: var(--sp-6);
  line-height: 1.4;
}
.hero__body {
  font-family: var(--f-ui); font-size: var(--t-lg);
  color: rgba(255,255,255,.65); line-height: 1.75;
  margin-bottom: var(--sp-10); max-width: 480px;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: var(--sp-12); }
.hero__trust {
  display: flex; flex-wrap: wrap; gap: 24px;
  padding-top: var(--sp-8); border-top: 1px solid rgba(255,255,255,.08);
}
.hero__trust-pill {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--f-ui); font-size: var(--t-xs); font-weight: 500;
  color: rgba(255,255,255,.55); letter-spacing: .04em;
}
.hero__trust-pill svg { width: 14px; height: 14px; color: var(--gold); flex-shrink: 0; }
/* Photo side */
.hero__visual { position: relative; }
.hero__photo-frame {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: var(--shadow-xl);
}
.hero__photo-frame img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
}
.hero__photo-frame::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(6,24,44,.6) 100%);
}
/* Gold corner accent */
.hero__photo-frame::before {
  content: ''; position: absolute; z-index: 1;
  top: -1px; right: -1px;
  width: 80px; height: 80px;
  border-top: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
  border-radius: 0 var(--radius-lg) 0 0;
}
.hero__badge {
  position: absolute; bottom: var(--sp-6); left: var(--sp-6);
  z-index: 2; background: rgba(6,24,44,.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(201,168,76,.3);
  border-radius: var(--radius);
  padding: var(--sp-5) var(--sp-6);
  min-width: 130px;
}
.hero__badge-num {
  font-family: var(--f-display); font-size: 3rem; font-weight: 500;
  color: var(--gold); line-height: 1; display: block;
}
.hero__badge-label {
  font-family: var(--f-ui); font-size: var(--t-xxs); font-weight: 600;
  color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .12em;
  margin-top: 4px; display: block;
}
/* Decorative watermark */
.hero__watermark {
  position: absolute; right: -20px; top: 50%;
  transform: translateY(-50%) rotate(90deg);
  font-family: var(--f-display); font-size: 200px; font-weight: 700;
  color: rgba(255,255,255,.03); pointer-events: none;
  user-select: none; white-space: nowrap; letter-spacing: -.05em;
}
/* Background pattern */
.hero__pattern {
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle at 1.5px 1.5px, rgba(255,255,255,.03) 1px, transparent 0);
  background-size: 40px 40px;
}

/* ═══════════════════════════════════════
   METRICS BAND
═══════════════════════════════════════ */
.metrics {
  background: var(--ink-mid);
  border-block: 1px solid rgba(201,168,76,.15);
}
.metrics__inner {
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.metrics__item {
  padding: var(--sp-10) var(--sp-6);
  border-right: 1px solid rgba(255,255,255,.06);
  text-align: center;
  position: relative;
}
.metrics__item:last-child { border-right: 0; }
.metrics__value {
  font-family: var(--f-display); font-size: var(--t-5xl);
  font-weight: 400; color: var(--gold);
  line-height: 1; display: block; margin-bottom: var(--sp-2);
}
.metrics__label {
  font-family: var(--f-ui); font-size: var(--t-xs); font-weight: 500;
  color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: .1em;
}

/* ═══════════════════════════════════════
   SECTION WRAPPERS
═══════════════════════════════════════ */
.section { padding-block: var(--section); }
.section--parchment { background: var(--parchment); }
.section--white     { background: #fff; }
.section--ink       { background: var(--ink); }
.section--fog       { background: var(--fog); }

.section__header { margin-bottom: var(--sp-16); }
.section__header--center { text-align: center; }
.section__header--center .gold-rule { margin-inline: auto; }

/* ═══════════════════════════════════════
   SERVICE CARDS
═══════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1px; background: var(--fog);
  border: 1px solid var(--fog);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.service-card {
  background: #fff; padding: var(--sp-10) var(--sp-8);
  position: relative; overflow: hidden;
  transition: background var(--dur-base) var(--ease-out);
  text-decoration: none; display: flex; flex-direction: column;
}
.service-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--dur-base) var(--ease-out);
}
.service-card:hover { background: var(--parchment); }
.service-card:hover::after { transform: scaleX(1); }
.service-card__icon {
  width: 48px; height: 48px;
  background: var(--gold-dim); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--sp-6);
  transition: background var(--dur-fast);
}
.service-card:hover .service-card__icon { background: rgba(201,168,76,.2); }
.service-card__icon svg { width: 24px; height: 24px; color: var(--gold); }
.service-card__title {
  font-family: var(--f-display); font-size: var(--t-2xl); font-weight: 500;
  color: var(--ink); line-height: 1.2; margin-bottom: var(--sp-3);
  letter-spacing: -.01em;
}
.service-card__desc {
  font-family: var(--f-ui); font-size: var(--t-sm); color: var(--body);
  line-height: 1.65; flex: 1;
}
.service-card__cta {
  margin-top: var(--sp-6); display: flex; align-items: center; gap: 8px;
  font-family: var(--f-ui); font-size: var(--t-xs); font-weight: 600;
  color: var(--gold); letter-spacing: .08em; text-transform: uppercase;
}
.service-card__cta svg { width: 14px; height: 14px; transition: transform var(--dur-fast); }
.service-card:hover .service-card__cta svg { transform: translateX(4px); }

/* ═══════════════════════════════════════
   ABOUT
═══════════════════════════════════════ */
.about__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: var(--sp-20); align-items: center;
}
.about__photo-wrap { position: relative; padding-bottom: 40px; }
.about__photo {
  width: 100%; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4/5; object-fit: cover; object-position: top;
  display: block;
}
.about__badge {
  position: absolute; bottom: -24px; right: -24px;
  background: var(--ink); border: 1px solid rgba(201,168,76,.25);
  border-radius: var(--radius-lg); padding: var(--sp-6) var(--sp-8);
  box-shadow: var(--shadow-lg);
  text-align: center; z-index: 2;
}
.about__badge-num {
  font-family: var(--f-display); font-size: var(--t-5xl);
  font-weight: 400; color: var(--gold); line-height: 1;
  display: block;
}
.about__badge-txt {
  font-family: var(--f-ui); font-size: var(--t-xs); font-weight: 600;
  color: rgba(255,255,255,.5); text-transform: uppercase;
  letter-spacing: .1em; display: block; margin-top: 6px;
}
/* Gold corner */
.about__photo-frame {
  position: relative; display: block; width: 100%;
}
.about__photo-frame::before {
  content: ''; position: absolute;
  bottom: -12px; left: -12px; z-index: 1;
  width: 60px; height: 60px;
  border-bottom: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
  border-radius: 0 0 0 var(--radius-lg);
}
.about__body { font-size: var(--t-base); color: var(--body); line-height: 1.8; margin-bottom: var(--sp-5); }
.about__timeline { margin-top: var(--sp-10); border-top: 1px solid var(--fog); padding-top: var(--sp-8); display: flex; flex-direction: column; gap: var(--sp-6); }
.timeline-entry { display: flex; gap: var(--sp-5); }
.timeline-entry__dot {
  flex-shrink: 0; width: 30px; height: 30px;
  border: 1.5px solid var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; margin-top: 3px;
}
.timeline-entry__dot svg { width: 12px; height: 12px; color: var(--gold); }
.timeline-entry__year { font-family: var(--f-ui); font-size: var(--t-xs); font-weight: 700; color: var(--gold); letter-spacing: .08em; margin-bottom: 4px; }
.timeline-entry__text { font-size: var(--t-sm); color: var(--body); line-height: 1.6; }

/* ═══════════════════════════════════════
   CREDENTIALS BAND
═══════════════════════════════════════ */
.creds { background: var(--ink); padding-block: var(--sp-20); }
.creds__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-2); }
.cred-item {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: var(--sp-4); padding: var(--sp-8) var(--sp-4);
  border: 1px solid rgba(255,255,255,.04); border-radius: var(--radius);
  transition: border-color var(--dur-base);
}
.cred-item:hover { border-color: rgba(201,168,76,.25); }
.cred-item__icon {
  width: 52px; height: 52px; background: var(--gold-dim);
  border: 1px solid var(--gold-mid); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
}
.cred-item__icon svg { width: 26px; height: 26px; color: var(--gold); }
.cred-item__label { font-family: var(--f-ui); font-size: var(--t-sm); font-weight: 600; color: #fff; line-height: 1.3; }
.cred-item__sub { font-family: var(--f-ui); font-size: var(--t-xs); color: rgba(255,255,255,.35); line-height: 1.5; }

/* ═══════════════════════════════════════
   WHY US
═══════════════════════════════════════ */
.why__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-1); background: var(--fog); border: 1px solid var(--fog); border-radius: var(--radius-lg); overflow: hidden; }
.why-card { background: #fff; padding: var(--sp-10) var(--sp-8); border-left: 3px solid transparent; transition: border-color var(--dur-base), background var(--dur-base); }
.why-card:hover { border-left-color: var(--gold); background: var(--parchment); }
.why-card__num { font-family: var(--f-display); font-size: var(--t-5xl); font-weight: 300; color: var(--fog); line-height: 1; margin-bottom: var(--sp-4); }
.why-card__title { font-family: var(--f-display); font-size: var(--t-2xl); font-weight: 500; color: var(--ink); margin-bottom: var(--sp-3); line-height: 1.2; }
.why-card__desc { font-size: var(--t-sm); color: var(--body); line-height: 1.7; }

/* ═══════════════════════════════════════
   CTA BAND
═══════════════════════════════════════ */
.cta-band {
  background: var(--ink);
  padding-block: var(--sp-20);
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 100% at 50% 0%, rgba(201,168,76,.08) 0%, transparent 70%);
}
.cta-band__overline { color: var(--gold); margin-bottom: var(--sp-5); display: block; }
.cta-band__title {
  font-family: var(--f-display); font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400; color: #fff; letter-spacing: -.02em;
  line-height: 1.2; margin-bottom: var(--sp-5);
}
.cta-band__title em { font-style: italic; color: var(--gold); }
.cta-band__desc { font-size: var(--t-lg); color: rgba(255,255,255,.55); margin-bottom: var(--sp-10); max-width: 500px; margin-inline: auto; }
.cta-band__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ═══════════════════════════════════════
   CONTACT
═══════════════════════════════════════ */
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-20); align-items: start; }
.contact__info-title { font-family: var(--f-display); font-size: var(--t-4xl); font-weight: 500; color: var(--ink); line-height: 1.2; letter-spacing: -.02em; margin-bottom: var(--sp-5); }
.contact__info-desc { font-size: var(--t-base); color: var(--body); line-height: 1.75; margin-bottom: var(--sp-10); }
.contact__list { display: flex; flex-direction: column; gap: var(--sp-6); }
.contact-item { display: flex; gap: var(--sp-5); align-items: flex-start; }
.contact-item__icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--gold-dim); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center; margin-top: 1px;
}
.contact-item__icon svg { width: 20px; height: 20px; color: var(--gold); }
.contact-item__label { font-family: var(--f-ui); font-size: var(--t-xxs); font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: rgba(44,51,64,.5); margin-bottom: 3px; }
.contact-item__value { font-size: var(--t-base); color: var(--ink); font-weight: 500; }
.contact-item__value a { color: var(--ink); transition: color var(--dur-fast); }
.contact-item__value a:hover { color: var(--gold); }
.contact__hours { margin-top: var(--sp-8); padding: var(--sp-6); background: var(--parchment); border-radius: var(--radius); border-left: 2px solid var(--gold); }
.contact__hours-title { font-family: var(--f-ui); font-size: var(--t-xxs); font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: var(--sp-3); }
.contact__hours p { font-size: var(--t-sm); color: var(--body); line-height: 1.7; }
/* Form */
.form-box { background: #fff; border-radius: var(--radius-lg); border: 1px solid var(--fog); padding: var(--sp-10); box-shadow: var(--shadow-xs); }
.form-title { font-family: var(--f-display); font-size: var(--t-3xl); font-weight: 500; color: var(--ink); margin-bottom: var(--sp-8); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-4); }
.form-group { margin-bottom: var(--sp-5); }
.form-group label { display: block; font-family: var(--f-ui); font-size: var(--t-xs); font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: rgba(44,51,64,.65); margin-bottom: 8px; }
.form-group label .req { color: var(--gold); margin-left: 2px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px;
  background: var(--parchment); border: 1px solid var(--fog);
  border-radius: var(--radius-sm); font-family: var(--f-ui); font-size: var(--t-base); color: var(--ink);
  transition: border-color var(--dur-fast), box-shadow var(--dur-fast);
  -webkit-appearance: none; appearance: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,.12);
  background: #fff;
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-submit { width: 100%; justify-content: center; margin-top: var(--sp-4); font-size: 13px; padding: 16px; }

/* ── Validación de formulario ── */
.field--error {
  border-color: #e53e3e !important;
  box-shadow: 0 0 0 3px rgba(229,62,62,.12) !important;
  background: #fff8f8 !important;
}
.field-error-msg {
  display: block;
  margin-top: 6px;
  font-size: var(--t-xs);
  color: #c53030;
  font-weight: 500;
}

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.footer {
  background: var(--ink); padding-block: var(--sp-20) var(--sp-10);
  border-top: 1px solid rgba(201,168,76,.2);
}
.footer__top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: var(--sp-12); margin-bottom: var(--sp-16); }
.footer__logo { height: 40px; width: auto; margin-bottom: var(--sp-5); }
.footer__brand-name { font-family: var(--f-display); font-size: var(--t-2xl); font-weight: 400; color: #fff; margin-bottom: var(--sp-3); }
.footer__brand-desc { font-size: var(--t-sm); color: rgba(255,255,255,.35); line-height: 1.7; }
.footer__col-title { font-family: var(--f-ui); font-size: var(--t-xxs); font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--gold); margin-bottom: var(--sp-5); }
.footer__col-links { display: flex; flex-direction: column; gap: var(--sp-3); }
.footer__col-link { font-size: var(--t-sm); color: rgba(255,255,255,.4); transition: color var(--dur-fast); }
.footer__col-link:hover { color: rgba(255,255,255,.8); }
.footer__contact-item { display: flex; gap: var(--sp-3); margin-bottom: var(--sp-4); }
.footer__contact-item svg { width: 14px; height: 14px; color: var(--gold); flex-shrink: 0; margin-top: 3px; }
.footer__contact-item span, .footer__contact-item a { font-size: var(--t-sm); color: rgba(255,255,255,.4); transition: color var(--dur-fast); line-height: 1.5; }
.footer__contact-item a:hover { color: rgba(255,255,255,.8); }
.footer__bottom { padding-top: var(--sp-8); border-top: 1px solid rgba(255,255,255,.06); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: var(--sp-4); }
.footer__copy { font-size: var(--t-xs); color: rgba(255,255,255,.2); }
.footer__legal { display: flex; gap: var(--sp-8); }
.footer__legal-link { font-size: var(--t-xs); color: rgba(255,255,255,.2); transition: color var(--dur-fast); }
.footer__legal-link:hover { color: rgba(255,255,255,.5); }

.footer__legal a { font-size: var(--t-xs); color: rgba(255,255,255,.2); transition: color var(--dur-fast); }
.footer__legal a:hover { color: rgba(255,255,255,.5); }

/* ─── WA Floating Button ─── */
.wa-fab {
  position: fixed; bottom: 28px; right: 28px; z-index: 90;
  width: 58px; height: 58px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: transform var(--dur-fast), box-shadow var(--dur-fast);
  text-decoration: none;
}
.wa-fab:hover { transform: scale(1.1); box-shadow: 0 8px 28px rgba(37,211,102,.5); }
.wa-fab svg { width: 28px; height: 28px; fill: #fff; }
.wa-fab__ring {
  position: absolute; inset: -6px; border-radius: 50%;
  border: 1.5px solid rgba(37,211,102,.4);
  animation: wa-ring 2.5s ease-out infinite;
}
@keyframes wa-ring { 0% { transform: scale(1); opacity: .8; } 100% { transform: scale(1.5); opacity: 0; } }

/* ═══════════════════════════════════════
   SERVICE PAGE SPECIFIC
═══════════════════════════════════════ */
.service-hero {
  background: var(--ink); padding-top: 72px; padding-bottom: 0;
  position: relative; overflow: hidden;
}
.breadcrumb {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  font-family: var(--f-ui); font-size: var(--t-xs);
  color: rgba(255,255,255,.35); margin-bottom: var(--sp-8);
}
.breadcrumb a { color: rgba(255,255,255,.35); transition: color var(--dur-fast); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,.2); }
.breadcrumb strong { color: rgba(255,255,255,.6); font-weight: 400; }
.service-hero__content { padding-block: var(--sp-20) var(--sp-16); }
.service-hero__title { font-family: var(--f-display); font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 400; color: #fff; line-height: 1.1; letter-spacing: -.02em; margin-bottom: var(--sp-6); }
.service-hero__title em { font-style: italic; color: var(--gold); }
.service-hero__desc { font-size: var(--t-xl); color: rgba(255,255,255,.6); line-height: 1.7; max-width: 600px; margin-bottom: var(--sp-10); }
.service-hero__wave {
  height: 60px; background: var(--parchment);
  clip-path: ellipse(55% 100% at 50% 100%);
}
/* Includes list */
.includes-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: var(--sp-5); }
.include-item { display: flex; gap: var(--sp-4); align-items: flex-start; padding: var(--sp-6) var(--sp-5); background: #fff; border-radius: var(--radius); border: 1px solid var(--fog); transition: border-color var(--dur-fast), box-shadow var(--dur-fast); }
.include-item:hover { border-color: rgba(201,168,76,.3); box-shadow: var(--shadow-sm); }
.include-item__dot { width: 28px; height: 28px; background: var(--gold-dim); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.include-item__dot svg { width: 14px; height: 14px; color: var(--gold); }
.include-item__text { font-size: var(--t-sm); color: var(--body); line-height: 1.6; }
/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: var(--sp-3); }
.faq-item { border: 1px solid var(--fog); border-radius: var(--radius); overflow: hidden; }
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  padding: var(--sp-6) var(--sp-8); cursor: pointer; gap: var(--sp-4);
  background: #fff; transition: background var(--dur-fast);
  font-family: var(--f-ui); font-size: var(--t-base); font-weight: 500; color: var(--ink);
  list-style: none;
}
.faq-question:hover { background: var(--parchment); }
.faq-question::marker { display: none; }
.faq-icon { width: 20px; height: 20px; flex-shrink: 0; color: var(--gold); transition: transform var(--dur-base) var(--ease-io); }
details[open] .faq-icon { transform: rotate(45deg); }
.faq-answer { padding: 0 var(--sp-8) var(--sp-6); font-size: var(--t-sm); color: var(--body); line-height: 1.75; background: #fff; }
/* Related services */
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-5); }

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 1023px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .hero__content { display: flex; flex-direction: column; justify-content: center; }
.hero__grid { grid-template-columns: 1fr; gap: var(--sp-12); }
  .hero__visual { display: none; }
  .hero__body { max-width: 100%; }
  .metrics__inner { grid-template-columns: repeat(2, 1fr); }
  .about__grid { grid-template-columns: 1fr; gap: var(--sp-16); }
  .about__photo-wrap { max-width: 420px; margin-inline: auto; padding-bottom: 40px; }
  .creds__grid { grid-template-columns: repeat(2, 1fr); }
  .contact__grid { grid-template-columns: 1fr; gap: var(--sp-12); }
  .footer__top { grid-template-columns: 1fr 1fr; gap: var(--sp-10); }
  .why__grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
}
@media (max-width: 767px) {
  :root { --section: 3.5rem; }
  .hero__title { font-size: clamp(2.5rem, 10vw, 4rem); }
  .metrics__inner { grid-template-columns: repeat(2, 1fr); }
  .metrics__item { padding: var(--sp-6) var(--sp-4); }
  .metrics__value { font-size: var(--t-4xl); }
  .form-row { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; gap: var(--sp-8); }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .about__badge { bottom: -16px; right: 12px; }
  .cta-band__actions { flex-direction: column; align-items: center; }
  .service-hero__title { font-size: clamp(2rem, 8vw, 3rem); }
}
@media (max-width: 480px) {
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
}

/* ═══════════════════════════════════════
   TESTIMONIOS
═══════════════════════════════════════ */
.section--fog { background: var(--fog); }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
  margin-bottom: var(--sp-10);
}
.testi-card {
  background: #fff;
  border: 1px solid rgba(201,168,76,.12);
  border-radius: var(--radius-lg);
  padding: var(--sp-8) var(--sp-8) var(--sp-6);
  display: flex; flex-direction: column; gap: var(--sp-5);
  transition: box-shadow var(--dur-base), border-color var(--dur-base);
  position: relative;
}
.testi-card::before {
  content: '"';
  position: absolute; top: 20px; right: 24px;
  font-family: var(--f-display); font-size: 5rem; font-weight: 300;
  color: var(--gold-dim); line-height: 1; pointer-events: none;
}
.testi-card:hover { box-shadow: var(--shadow-md); border-color: rgba(201,168,76,.3); }
.testi-stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; }
.testi-quote {
  font-family: var(--f-display); font-size: var(--t-lg);
  font-weight: 400; font-style: italic;
  color: var(--ink); line-height: 1.65; flex: 1;
  quotes: none;
}
.testi-author { border-top: 1px solid var(--fog); padding-top: var(--sp-4); }
.testi-name { display: block; font-family: var(--f-ui); font-size: var(--t-sm); font-weight: 600; color: var(--ink); margin-bottom: 2px; }
.testi-role { display: block; font-family: var(--f-ui); font-size: var(--t-xs); color: rgba(44,51,64,.5); letter-spacing: .04em; }
.testi-cta { text-align: center; }
.testi-review-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--f-ui); font-size: var(--t-sm); font-weight: 600;
  color: var(--gold); letter-spacing: .04em;
  transition: opacity var(--dur-fast), gap var(--dur-fast);
}
.testi-review-link:hover { opacity: .8; gap: 12px; }

/* ═══════════════════════════════════════
   GOOGLE REVIEWS CTA BANNER
═══════════════════════════════════════ */
.google-review-cta { margin-top: var(--sp-10); }
.google-review-cta__inner {
  display: flex; align-items: center; gap: var(--sp-8);
  background: #fff;
  border: 1px solid rgba(201,168,76,.18);
  border-radius: var(--radius-lg);
  padding: var(--sp-7) var(--sp-8);
  box-shadow: 0 2px 20px rgba(6,24,44,.06);
  flex-wrap: wrap; justify-content: center;
}
.google-review-cta__badge {
  display: flex; align-items: center; gap: var(--sp-4); flex-shrink: 0;
}
.google-review-cta__glogo { flex-shrink: 0; }
.google-review-cta__info { display: flex; flex-direction: column; gap: 2px; }
.google-review-cta__label {
  font-family: var(--f-ui); font-size: var(--t-xxs); font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em; color: rgba(44,51,64,.45);
}
.google-review-cta__stars { display: flex; align-items: center; gap: 6px; }
.google-review-cta__star-icons { color: #FBBC05; font-size: 1.05rem; letter-spacing: 2px; }
.google-review-cta__score {
  font-family: var(--f-display); font-size: var(--t-xl); font-weight: 600;
  color: var(--ink); letter-spacing: 0;
}
.google-review-cta__text {
  font-family: var(--f-ui); font-size: var(--t-sm);
  color: rgba(44,51,64,.58); line-height: 1.65;
  text-align: center; flex: 1; min-width: 180px;
}
.google-review-cta__btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--ink); color: #fff;
  font-family: var(--f-ui); font-size: var(--t-sm); font-weight: 600;
  letter-spacing: .02em; padding: 12px 22px;
  border-radius: var(--radius); white-space: nowrap;
  transition: background var(--dur-fast), transform var(--dur-fast), box-shadow var(--dur-fast);
}
.google-review-cta__btn:hover {
  background: #1a2d42; transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(6,24,44,.18);
}
@media (max-width: 767px) {
  .google-review-cta__inner {
    flex-direction: column; gap: var(--sp-5);
    padding: var(--sp-7) var(--sp-6);
  }
}

/* ═══════════════════════════════════════
   CLIENTES GRID
═══════════════════════════════════════ */
.clientes-grid {
  display: flex; flex-wrap: wrap; gap: var(--sp-4);
  justify-content: center; margin-top: var(--sp-12);
}
.cliente-tag {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 20px;
  background: var(--parchment);
  border: 1px solid var(--fog);
  border-radius: var(--radius);
  font-family: var(--f-ui); font-size: var(--t-sm); font-weight: 500;
  color: var(--ink); letter-spacing: .02em;
  transition: border-color var(--dur-fast), background var(--dur-fast), box-shadow var(--dur-fast);
}
.cliente-tag:hover { border-color: rgba(201,168,76,.4); background: #fff; box-shadow: var(--shadow-sm); }
.cliente-tag svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; }

/* ═══════════════════════════════════════
   GOOGLE MAPS
═══════════════════════════════════════ */
.contact__map-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: var(--sp-3);
  font-family: var(--f-ui); font-size: var(--t-xs); font-weight: 500;
  color: var(--gold); letter-spacing: .04em;
  transition: opacity var(--dur-fast);
}
.contact__map-link:hover { opacity: .75; }

/* ═══════════════════════════════════════
   FAQ
═══════════════════════════════════════ */
.faq-section { display: flex; flex-direction: column; align-items: center; }
.faq-section__header { text-align: center; margin-bottom: var(--sp-10); }
.faq-col { width: 100%; max-width: 760px; }

/* FAQ Accordion */
.faq-list { display: flex; flex-direction: column; gap: var(--sp-3); margin-top: var(--sp-2); }
.faq-item {
  background: #fff;
  border: 1px solid rgba(201,168,76,.14);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--dur-base), box-shadow var(--dur-base);
}
.faq-item--open {
  border-color: rgba(201,168,76,.35);
  box-shadow: 0 4px 20px rgba(6,24,44,.07);
}
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: var(--sp-4);
  padding: var(--sp-6) var(--sp-7);
  background: none; border: none; cursor: pointer;
  font-family: var(--f-ui); font-size: var(--t-base); font-weight: 600;
  color: var(--ink); text-align: left; line-height: 1.45;
  transition: color var(--dur-fast);
  min-height: 44px;
}
.faq-q:hover { color: var(--gold); }
.faq-item--open .faq-q { color: var(--gold); }
.faq-chevron {
  flex-shrink: 0; color: currentColor;
  transition: transform var(--dur-base) var(--ease-out);
}
.faq-item--open .faq-chevron { transform: rotate(180deg); }
.faq-a {
  padding: 0 var(--sp-7) var(--sp-6);
  font-family: var(--f-ui); font-size: var(--t-base);
  color: var(--body); line-height: 1.7;
}
.faq-a p + p { margin-top: var(--sp-3); }
.faq-list-items {
  margin: var(--sp-4) 0;
  padding-left: var(--sp-5);
  display: flex; flex-direction: column; gap: var(--sp-2);
}
.faq-list-items li { font-size: var(--t-sm); line-height: 1.65; }
.faq-a__note {
  font-size: var(--t-xs); color: rgba(44,51,64,.45);
  border-top: 1px solid var(--fog); padding-top: var(--sp-4); margin-top: var(--sp-4);
}
/* ── Responsive Testimonios ── */
@media (max-width: 1023px) {
  .testi-grid { grid-template-columns: 1fr; }
}
@media (min-width: 640px) and (max-width: 1023px) {
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ═══════════════════════════════════════════════
   MARQUEE / CLIENT CAROUSEL
   ═══════════════════════════════════════════════ */
.marq-section { padding-block: var(--sp-16); overflow: hidden; }

.marq-track {
  width: 100%;
  overflow: hidden;
  /* Edge fade mask */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.marq-belt {
  display: flex;
  gap: var(--sp-4);
  width: max-content;
  will-change: transform;
}

@keyframes marq-ltr {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes marq-rtl {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

.marq-belt--ltr {
  animation: marq-ltr 140s linear infinite;
}
.marq-belt--rtl {
  animation: marq-rtl 120s linear infinite;
}

/* Pause on hover */
.marq-track:hover .marq-belt { animation-play-state: paused; }

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  .marq-belt { animation: none; flex-wrap: wrap; justify-content: center; }
  .marq-track { -webkit-mask-image: none; mask-image: none; }
}

.marq-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 20px;
  background: #fff;
  border: 1px solid var(--fog);
  border-radius: 8px;
  min-width: 220px;
  max-width: 300px;
  box-shadow: 0 1px 4px rgba(6,24,44,.06);
  transition: box-shadow .2s, border-color .2s;
  cursor: default;
  flex-shrink: 0;
}
.marq-card:hover {
  box-shadow: 0 4px 16px rgba(6,24,44,.12);
  border-color: var(--gold);
}

.marq-card__name {
  font-family: var(--f-serif);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.marq-card__sector {
  font-family: var(--f-sans);
  font-size: 0.7rem;
  color: var(--gold);
  letter-spacing: .06em;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ═══════════════════════════════════════════════
   SECTOR CATEGORY GRID
   ═══════════════════════════════════════════════ */
.sector-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  justify-content: center;
  margin-bottom: var(--sp-10);
}

.sector-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: transparent;
  border: 1px solid rgba(201,168,76,.35);
  border-radius: 100px;
  color: var(--ink);
  font-family: var(--f-sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: .04em;
  cursor: default;
  transition: background .25s ease, border-color .25s ease, color .25s ease, transform .25s ease;
  white-space: nowrap;
}

.sector-pill svg {
  color: var(--gold);
  flex-shrink: 0;
  transition: color .25s ease;
}

.sector-pill:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--gold);
  transform: translateY(-2px);
}

.sector-pill:hover svg {
  color: var(--gold);
}

/* Section --fog override: slightly darker pill bg */
.section--fog .sector-pill,
.marq-section .sector-pill {
  background: rgba(255,255,255,.6);
  border-color: rgba(201,168,76,.4);
}

.marq-section .sector-pill:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--gold);
}

@media (max-width: 640px) {
  .sector-pill {
    font-size: 0.72rem;
    padding: 8px 14px;
    gap: 6px;
  }
  .sector-pill svg {
    width: 15px;
    height: 15px;
  }
}

/* ═══════════════════════════════════════════════
   SECTOR PILL — ACTIVE STATE
   ═══════════════════════════════════════════════ */
.sector-pill--active {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(6,24,44,.18);
}
.sector-pill--active svg { color: var(--gold); }
.sector-pill { cursor: pointer; }

/* ═══════════════════════════════════════════════
   SECTOR CLIENT PANEL
   ═══════════════════════════════════════════════ */
.sector-panel {
  margin-top: var(--sp-8);
  display: none; /* shown by JS */
}

.sector-panel__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: var(--sp-3);
}

/* Card base */
.sector-client-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 18px;
  background: #fff;
  border: 1px solid var(--fog);
  border-left: 3px solid var(--gold);
  border-radius: 6px;
  box-shadow: 0 1px 4px rgba(6,24,44,.05);
  transition: box-shadow .2s, transform .2s;
}
.sector-client-card:hover {
  box-shadow: 0 4px 16px rgba(6,24,44,.1);
  transform: translateY(-1px);
}

.sector-client-card__name {
  font-family: var(--f-serif);
  font-size: .85rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
}
.sector-client-card__sector {
  font-family: var(--f-sans);
  font-size: .68rem;
  color: var(--gold);
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* ── Enter animation (stagger via animationDelay) ── */
.sector-client-card--enter {
  opacity: 0;
  transform: translateY(12px) scale(.97);
  transition: opacity .28s cubic-bezier(.22,1,.36,1),
              transform .28s cubic-bezier(.22,1,.36,1);
}
.sector-client-card--enter.sector-client-card--visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ── Exit animation ── */
.sector-client-card--exit {
  opacity: 0;
  transform: translateY(-6px) scale(.97);
  transition: opacity .18s ease-in,
              transform .18s ease-in;
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  .sector-client-card--enter,
  .sector-client-card--exit {
    transition: none;
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 640px) {
  .sector-panel__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-2);
  }
  .sector-client-card {
    padding: 10px 12px;
  }
}
@media (max-width: 400px) {
  .sector-panel__grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════
   MOBILE OPTIMIZATIONS — comprehensive pass
   Breakpoints: 1023, 767, 480, 375
═══════════════════════════════════════════════════════════════ */

/* ─── Safe-area insets (iPhone notch / Dynamic Island) ─── */
.nav__inner      { padding-inline: max(var(--gutter), env(safe-area-inset-left)); }
.footer__bottom  { padding-bottom: max(var(--sp-6), env(safe-area-inset-bottom)); }

/* ─── Prevent iOS input zoom (font-size must be ≥16px) ─── */
@media (max-width: 767px) {
  input, select, textarea {
    font-size: 16px !important;
  }
}

/* ═══════════════════════════════════════
   HERO — mobile overhaul
═══════════════════════════════════════ */
.hero__badge-mobile { display: none; }

@media (max-width: 1023px) {
  .hero {
    min-height: 100svh;
    /* Subtle texture so the navy doesn't feel flat without the photo */
    background-image: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201,168,76,.07) 0%, transparent 70%);
  }
  .hero__grid {
    grid-template-columns: 1fr;
    gap: var(--sp-8);
    padding-block: var(--sp-20) var(--sp-12);
    text-align: center;
  }
  .hero__overline  { justify-content: center; }
  .hero__overline-line { max-width: 80px; }
  .hero__body      { max-width: 100%; margin-inline: auto; }
  .hero__actions   { justify-content: center; }
  .hero__trust     { justify-content: center; }

  /* Badge: pull out of hidden visual, show as inline strip under trust pills */
  .hero__visual    { display: none; }
  .hero__badge-mobile {
    display: inline-flex; align-items: center; gap: var(--sp-4);
    background: rgba(201,168,76,.10);
    border: 1px solid rgba(201,168,76,.25);
    border-radius: var(--radius-sm);
    padding: var(--sp-3) var(--sp-6);
    margin-top: var(--sp-8);
  }
  .hero__badge-mobile-num {
    font-family: var(--f-display); font-size: var(--t-4xl);
    font-weight: 400; color: var(--gold); line-height: 1;
  }
  .hero__badge-mobile-label {
    font-family: var(--f-ui); font-size: var(--t-xs); font-weight: 600;
    color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .1em;
    line-height: 1.4;
  }
}

/* ─── Touch targets: minimum 44×44px ─── */
@media (max-width: 1023px) {
  .btn          { min-height: 48px; }
  .nav__toggle  { min-height: 44px; min-width: 44px; }
  .nav__overlay-link { min-height: 48px; display: flex; align-items: center; justify-content: center; }
}

/* ═══════════════════════════════════════
   SECTOR PILLS — horizontal scroll on mobile
═══════════════════════════════════════ */
@media (max-width: 767px) {
  .sector-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    gap: var(--sp-2);
    padding-bottom: var(--sp-2);
    /* Hide scrollbar visually but keep functional */
    scrollbar-width: none;
    -ms-overflow-style: none;
    /* Fade edges */
    -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 4%, #000 94%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, #000 4%, #000 94%, transparent 100%);
    padding-inline: var(--sp-4);
    margin-inline: calc(-1 * var(--gutter));
  }
  .sector-grid::-webkit-scrollbar { display: none; }
  .sector-pill {
    flex-shrink: 0;
    min-height: 44px;
    white-space: nowrap;
  }
}

/* ═══════════════════════════════════════
   SERVICE CARDS — tighter mobile padding
═══════════════════════════════════════ */
@media (max-width: 640px) {
  .service-card { padding: var(--sp-6) var(--sp-6); }
  .service-card__icon { margin-bottom: var(--sp-4); }
  .services-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════
   CREDENTIALS GRID
═══════════════════════════════════════ */
@media (max-width: 640px) {
  .creds__grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════
   TESTIMONIALS — single card scroll on small
═══════════════════════════════════════ */
@media (max-width: 480px) {
  .testi-grid {
    display: flex; flex-direction: column; gap: var(--sp-4);
  }
  .testi-card { padding: var(--sp-6); }
}

/* ═══════════════════════════════════════
   CTA BAND — full-width buttons on mobile
═══════════════════════════════════════ */
@media (max-width: 640px) {
  .cta-band__actions { flex-direction: column; align-items: stretch; }
  .cta-band__actions .btn { width: 100%; justify-content: center; }
  .cta-band__title { font-size: clamp(2rem, 8vw, 3rem); }
}

/* ═══════════════════════════════════════
   CONTACT SECTION
═══════════════════════════════════════ */
@media (max-width: 640px) {
  .contact__info-title { font-size: var(--t-3xl); }
  .contact__hours { padding: var(--sp-4); }
}

/* ═══════════════════════════════════════
   FOOTER ACCORDION (mobile)
═══════════════════════════════════════ */
@media (max-width: 767px) {
  .footer__col-title {
    cursor: pointer;
    display: flex; justify-content: space-between; align-items: center;
    padding-block: var(--sp-3);
    border-bottom: 1px solid rgba(255,255,255,.06);
    margin-bottom: 0;
    user-select: none;
  }
  .footer__col-title::after {
    content: '+';
    font-size: 1.1rem; color: var(--gold);
    transition: transform var(--dur-fast);
    font-family: var(--f-ui); font-weight: 300;
  }
  .footer__col-title.open::after { content: '−'; }
  .footer__col-links,
  .footer__col-contacts {
    max-height: 0; overflow: hidden;
    transition: max-height .3s var(--ease-out), padding .2s;
  }
  .footer__col-title.open ~ .footer__col-links,
  .footer__col-title.open ~ .footer__col-contacts {
    max-height: 400px;
    padding-top: var(--sp-4);
  }
  /* First col (brand) always visible */
  .footer__brand { margin-bottom: var(--sp-8); }
}

/* ═══════════════════════════════════════
   FLOATING WHATSAPP — all screens
═══════════════════════════════════════ */
.wa-fab {
  display: flex; align-items: center; justify-content: center;
  position: fixed; bottom: calc(28px + env(safe-area-inset-bottom)); right: 28px;
  z-index: 90;
  width: 58px; height: 58px;
  background: #25D366; color: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(37,211,102,.45), 0 2px 8px rgba(0,0,0,.2);
  transition: transform var(--dur-fast), box-shadow var(--dur-fast);
  text-decoration: none;
}
.wa-fab:hover, .wa-fab:focus-visible {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37,211,102,.55), 0 2px 8px rgba(0,0,0,.2);
}
.wa-fab svg { width: 28px; height: 28px; fill: #fff; }
/* Pulse ring */
.wa-fab::before {
  content: ''; position: absolute; inset: -6px;
  border-radius: 50%; border: 2px solid rgba(37,211,102,.4);
  animation: wa-pulse 2.5s ease-out infinite;
}
@keyframes wa-pulse {
  0%   { opacity: 1; transform: scale(1); }
  70%  { opacity: 0; transform: scale(1.4); }
  100% { opacity: 0; transform: scale(1.4); }
}
@media (max-width: 1023px) {
  .wa-fab {
    bottom: calc(20px + env(safe-area-inset-bottom)); right: 20px;
    width: 56px; height: 56px;
  }
}

/* ═══════════════════════════════════════
   SECTION HEADINGS — fluid on small
═══════════════════════════════════════ */
@media (max-width: 480px) {
  .section-heading { font-size: clamp(2rem, 9vw, 3rem); }
  :root { --section: 3rem; }
  .hero__title { font-size: clamp(2.2rem, 11vw, 3.5rem); }
}

/* ═══════════════════════════════════════
   METRICS BAND — single col on tiny
═══════════════════════════════════════ */
@media (max-width: 375px) {
  .metrics__inner { grid-template-columns: repeat(2, 1fr); }
  .metrics__value { font-size: var(--t-3xl); }
}

/* ═══════════════════════════════════════
   WA HORARIO TOOLTIP (hover)
═══════════════════════════════════════ */
.wa-toast {
  position: fixed;
  z-index: 9999;
  width: 300px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(0,0,0,.18), 0 2px 8px rgba(0,0,0,.10);
  padding: 16px 18px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-left: 4px solid #25D366;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}
.wa-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.wa-toast__header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: .92rem;
  color: #1a1a2e;
}
.wa-toast__icon {
  width: 12px; height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}
.wa-toast__icon svg { display: none; }
.wa-toast__icon--on  { background: #25D366; box-shadow: 0 0 0 3px rgba(37,211,102,.25); }
.wa-toast__icon--off { background: #f0ad4e; box-shadow: 0 0 0 3px rgba(240,173,78,.25); }
.wa-toast__body {
  font-size: .83rem;
  color: #666;
  line-height: 1.5;
  margin: 0;
}
.wa-toast__horario {
  background: #f7f7f7;
  border-radius: 8px;
  padding: 8px 10px;
  font-size: .8rem;
  color: #444;
  line-height: 1.7;
}
.wa-toast__horario strong { color: #1a1a2e; display: block; margin-bottom: 2px; }
