/* ================================================================
   SWMarin – main.css v2.0
   UI Refinement: tipografía Inter, espaciado px, look premium
   Sin jQuery · Sin librerías · Sin sliders
   ================================================================ */

/* ── 1. VARIABLES ────────────────────────────────────────────── */
:root {
  /* Paleta SWMarin – rojo como acento, fondos neutros */
  --c-primary:       #0b0b0b;
  --c-primary-l:     #1a1a1a;
  --c-primary-xl:    #f5f5f5;
  --c-accent:        #ba0505;
  --c-accent-d:      #950404;
  --c-cta:           #25D366;
  --c-cta-d:         #1eb358;
  --c-text:          #1a1a1a;
  --c-text-light:    #4b5563;
  --c-text-muted:    #9ca3af;
  --c-bg:            #ffffff;
  --c-bg-alt:        #f7f7f7;
  --c-bg-dark:       #0b0b0b;
  --c-border:        #eeeeee;
  --c-border-d:      #d1d5db;
  --c-white:         #ffffff;

  /* Tipografía profesional */
  --font:      'Inter', system-ui, -apple-system, sans-serif;
  --fs-xs:     12px;
  --fs-sm:     14px;
  --fs-base:   16px;
  --fs-lg:     18px;
  --fs-xl:     20px;
  --fs-2xl:    24px;
  --fs-3xl:    30px;
  --fs-4xl:    36px;
  --fs-5xl:    48px;
  --fs-6xl:    56px;
  --fw-light:      300;
  --fw-regular:    400;
  --fw-medium:     500;
  --fw-semibold:   600;
  --fw-bold:       700;
  --lh-tight:   1.2;
  --lh-snug:    1.4;
  --lh-normal:  1.6;      /* body line-height per spec */
  --lh-relaxed: 1.7;

  /* Espaciado en px (8px base) */
  --sp-1:   4px;
  --sp-2:   8px;
  --sp-3:   12px;
  --sp-4:   16px;
  --sp-5:   20px;
  --sp-6:   24px;
  --sp-8:   32px;
  --sp-10:  40px;
  --sp-12:  48px;
  --sp-16:  64px;
  --sp-20:  80px;
  --sp-24:  96px;

  /* Layout */
  --max-w:      1100px;   /* → más elegante, más cerrado */
  --max-w-text:  660px;
  --header-h:    90px;

  /* Radios */
  --radius-sm:  4px;
  --radius:     8px;      /* botones – per spec */
  --radius-md:  12px;     /* cards – per spec */
  --radius-lg:  16px;
  --radius-xl:  24px;
  --radius-full: 9999px;

  /* Sombras – reducidas, solo donde importan */
  --shadow-sm: 0 1px 4px rgba(0,0,0,.05);
  --shadow:    0 4px 12px rgba(0,0,0,.05);
  --shadow-md: 0 10px 30px rgba(0,0,0,.06);  /* cards hover */
  --shadow-lg: 0 20px 48px rgba(0,0,0,.08);

  /* Transiciones */
  --ease:     cubic-bezier(.4,0,.2,1);
  --dur-fast: 150ms;
  --dur:      200ms;
  --dur-slow: 600ms;
}

/* ── 2. RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: var(--fs-base);
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  font-size: var(--fs-base);
  line-height: var(--lh-normal);   /* 1.6 per spec */
  color: var(--c-text);
  background: var(--c-bg);
  padding-top: var(--header-h);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.admin-bar {
  padding-top: calc(var(--header-h) + 32px);
}

body.admin-bar .site-header {
  top: 32px;
}

img, video, svg { display: block; max-width: 100%; height: auto; }

a {
  color: var(--c-accent);
  text-decoration: none;
  transition: color var(--dur-fast) var(--ease);
}
a:hover { color: var(--c-accent-d); }

ul, ol { list-style: none; }

/* Tipografía base */
h1, h2, h3, h4, h5, h6 {
  line-height: var(--lh-tight);
  color: var(--c-primary);
}

/* H1 – máximo peso y contraste */
h1 {
  font-size: clamp(32px, 5vw, var(--fs-6xl));
  font-weight: 700;
  letter-spacing: -1px;   /* ← más impacto visual */
}

/* H2 – semibold, más limpio */
h2 {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 600;
  letter-spacing: -0.5px;
}

h3 {
  font-size: clamp(var(--fs-xl), 2.5vw, var(--fs-2xl));
  font-weight: 600;
  letter-spacing: -0.3px;
}

/* Body 16–18px */
p {
  font-size: clamp(var(--fs-base), 1.1vw, var(--fs-lg));
  line-height: var(--lh-normal);
  color: var(--c-text-light);
}

button { cursor: pointer; font-family: inherit; }

/* Accesibilidad */
.screen-reader-text {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.skip-link:focus {
  position: fixed;
  top: var(--sp-4); left: var(--sp-4);
  width: auto; height: auto;
  padding: var(--sp-3) var(--sp-6);
  background: var(--c-primary);
  color: var(--c-white);
  z-index: 9999;
  border-radius: var(--radius);
  clip: auto;
}

/* ── 3. LAYOUT / CONTAINER ───────────────────────────────────── */
.container {
  max-width: var(--max-w);   /* 1200px per spec */
  margin: 0 auto;
  padding: 0 20px;           /* per spec */
}

@media (max-width: 640px) {
  .container { padding: 0 16px; }
}

.section       { padding: var(--sp-20) 0; border-bottom: 1px solid #f1f1f1; }
.section--sm   { padding: var(--sp-12) 0; border-bottom: 1px solid #f1f1f1; }
.section--lg   { padding: var(--sp-24) 0; border-bottom: 1px solid #f1f1f1; }
/* Secciones sin separador visual */
.section--no-border { border-bottom: none; }

.section-label {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: var(--sp-3);
}

.section-title {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: var(--fw-bold);
  letter-spacing: -0.5px;
  color: var(--c-primary);
  line-height: var(--lh-tight);
  margin-bottom: var(--sp-4);
}

.section-desc {
  font-size: var(--fs-lg);
  color: var(--c-text-light);
  max-width: var(--max-w-text);
  line-height: var(--lh-normal);
}

.section-header { margin-bottom: var(--sp-12); }
.section-header--center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ── 4. HEADER – más profesional per spec ────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  min-height: var(--header-h);
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,.06);
  transition: box-shadow var(--dur) var(--ease);
}

.site-header.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-6);
  min-height: var(--header-h);
}

/* ── BRAND / LOGO ────────────────────────────────────────────── */
.site-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-logo {
  height: 75px;
  width: auto;
  display: block;
  object-fit: contain;
}

@media (max-width: 768px) {
  .brand-logo { height: 38px; }
}

/* Fallback .site-logo (por compatibilidad) */
.site-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.site-logo img { height: 48px; width: auto; }
.site-logo__text {
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  color: var(--c-primary);
  letter-spacing: -0.03em;
}

.nav-shell {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: var(--sp-6);
}

.site-nav { flex: 1; }

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: var(--sp-1);
}

.menu-item {
  position: relative;
}

.nav-item-row {
  display: flex;
  align-items: center;
}

.nav-menu .menu-item > .nav-item-row > a,
.nav-menu .menu-item > a {
  display: block;
  padding: var(--sp-3) var(--sp-4);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--c-text-light);
  border-radius: var(--radius-full);
  transition: background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
  white-space: nowrap;
}

.nav-menu .menu-item > .nav-item-row > a:hover,
.nav-menu .menu-item > a:hover,
.menu-item--has-children:hover > .nav-item-row > a,
.menu-item--has-children:focus-within > .nav-item-row > a {
  background: var(--c-primary-xl);
  color: var(--c-primary);
}

.submenu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-left: -6px;
  border: 0;
  background: transparent;
  color: var(--c-text-light);
  border-radius: 999px;
}

.submenu-toggle span {
  width: 10px;
  height: 10px;
  border-right: 1.8px solid currentColor;
  border-bottom: 1.8px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform var(--dur) var(--ease);
}

.menu-item--has-children:hover .submenu-toggle span,
.menu-item--has-children:focus-within .submenu-toggle span,
.menu-item--has-children.is-expanded .submenu-toggle span {
  transform: rotate(225deg) translateY(-1px);
}

.sub-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 240px;
  padding: var(--sp-3);
  background: rgba(255,255,255,.98);
  border: 1px solid rgba(15,44,78,.08);
  border-radius: var(--radius-md);
  box-shadow: 0 18px 40px rgba(15,44,78,.12);
  display: grid;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease), visibility var(--dur) var(--ease);
}

.sub-menu .menu-item a {
  display: block;
  padding: 10px 12px;
  font-size: var(--fs-sm);
  color: var(--c-text-light);
  border-radius: var(--radius);
}

.sub-menu .menu-item a:hover {
  background: var(--c-primary-xl);
  color: var(--c-primary);
}

.menu-item--has-children:hover > .sub-menu,
.menu-item--has-children:focus-within > .sub-menu,
.menu-item--has-children.is-expanded > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header-cta {
  flex-shrink: 0;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px; height: 44px;
  background: transparent;
  border: 1px solid var(--c-border-d);
  border-radius: var(--radius);
  flex-shrink: 0;
}
.nav-toggle__bar {
  display: block;
  width: 20px; height: 2px;
  background: var(--c-text);
  border-radius: 2px;
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── 5. BOTONES – más premium per spec ───────────────────────── */

/* WhatsApp – border-radius 8px per spec */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: 14px 24px;                         /* per spec */
  background: var(--c-cta);
  color: var(--c-white) !important;
  font-weight: var(--fw-semibold);             /* 600 per spec */
  font-size: var(--fs-base);
  border-radius: var(--radius);               /* 8px per spec */
  transition: all .2s ease;                   /* per spec */
  box-shadow: 0 2px 8px rgba(37,211,102,.25);
  white-space: nowrap;
  text-decoration: none;
}
.btn-whatsapp:hover {
  background: var(--c-cta-d);
  transform: translateY(-2px);               /* per spec */
  box-shadow: 0 10px 25px rgba(0,0,0,.15);   /* per spec */
  color: var(--c-white) !important;
}
.btn-whatsapp:active { transform: translateY(0); }

.btn-whatsapp--sm  { padding: 10px 18px; font-size: var(--fs-sm); }
.btn-whatsapp--lg  { padding: 16px 32px; font-size: var(--fs-lg); font-weight: var(--fw-bold); }

/* Primary – minimalista oscuro */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: 14px 28px;
  background: #111;          /* ← negro puro = más premium */
  color: var(--c-white);
  font-weight: var(--fw-semibold);
  font-size: var(--fs-base);
  border-radius: 12px;
  transition: all .2s ease;
}
.btn-primary:hover {
  opacity: .88;
  color: var(--c-white);
}

/* Accent – rojo SWMARIN */
.btn-accent {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: 12px 20px;
  background: var(--c-accent);
  color: var(--c-white);
  font-weight: var(--fw-semibold);
  font-size: var(--fs-base);
  border-radius: 12px;
  transition: all .2s ease;
  text-decoration: none;
}
.btn-accent:hover { opacity: .9; color: var(--c-white); }

/* Secondary */
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: 14px 24px;
  background: transparent;
  color: var(--c-primary);
  font-weight: var(--fw-semibold);
  font-size: var(--fs-base);
  border: 1.5px solid var(--c-border-d);
  border-radius: var(--radius);
  transition: all .2s ease;
}
.btn-secondary:hover {
  background: var(--c-primary);
  color: var(--c-white);
  border-color: var(--c-primary);
  transform: translateY(-1px);
}

/* Outline blanco (sobre fondos oscuros) */
.btn-outline-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: 14px 24px;
  background: transparent;
  color: rgba(255,255,255,.9);
  font-weight: var(--fw-semibold);
  font-size: var(--fs-base);
  border: 1.5px solid rgba(255,255,255,.4);
  border-radius: var(--radius);
  transition: all .2s ease;
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.8);
  color: var(--c-white);
}

/* ── 6. HERO – limpio y premium ──────────────────────────────── */
.hero {
  position: relative;
  padding: calc(var(--header-h) + 48px) 0 72px;
  background: linear-gradient(160deg, #0b0b0b 0%, #151515 55%, #1a1a1a 100%);
  overflow: hidden;
  min-height: auto;
  display: flex;
  align-items: center;
}

/* Overlay sutil – capa de profundidad */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 600px 400px at 80% 30%, rgba(186,5,5,.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-12);
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-2) var(--sp-4);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-full);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  margin-bottom: var(--sp-6);
}

.hero-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  margin-top: var(--sp-8);
}

.hero-pill {
  padding: 10px 14px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.86);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
}

.hero-badge__dot {
  width: 7px; height: 7px;
  background: var(--c-cta);
  border-radius: 50%;
  animation: pulse-dot 2.5s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50%       { opacity: .4; }
}

.hero h1 {
  font-size: clamp(32px, 5vw, var(--fs-6xl));
  font-weight: var(--fw-bold);
  color: var(--c-white);
  line-height: 1.15;
  letter-spacing: -0.5px;              /* per spec */
  margin-bottom: var(--sp-6);
}

.hero h1 .highlight { color: #ff8080; }

.hero-desc {
  font-size: var(--fs-lg);
  color: rgba(255,255,255,.72);
  max-width: 520px;
  line-height: var(--lh-normal);
  margin-bottom: var(--sp-8);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  align-items: center;
}

.hero-social-proof {
  margin-top: var(--sp-10);
  display: flex;
  align-items: center;
  gap: var(--sp-6);
  flex-wrap: wrap;
}

.proof-item { display: flex; flex-direction: column; gap: 2px; }
.proof-num {
  font-size: var(--fs-2xl);
  font-weight: var(--fw-bold);
  color: var(--c-white);
  line-height: 1;
}
.proof-label { font-size: var(--fs-xs); color: rgba(255,255,255,.5); }
.proof-divider { width: 1px; height: 36px; background: rgba(255,255,255,.15); }

.hero-visual { display: flex; justify-content: center; align-items: center; }

/* Mock de PageSpeed – decorativo */
.hero-card-mock {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
  width: 100%;
  max-width: 380px;
}
.hero-card-mock__header { display: flex; gap: var(--sp-2); margin-bottom: var(--sp-5); }
.mock-dot { width: 10px; height: 10px; border-radius: 50%; }
.mock-dot--red    { background: #ff5f56; }
.mock-dot--yellow { background: #ffbd2e; }
.mock-dot--green  { background: #27c93f; }
.mock-bar {
  height: 8px;
  background: rgba(255,255,255,.08);
  border-radius: var(--radius-full);
  margin-bottom: var(--sp-2);
}
.mock-bar--w80 { width: 80%; }
.mock-bar--w60 { width: 60%; }
.mock-bar--w90 { width: 90%; }
.mock-bar--sm  { height: 5px; }
.mock-score {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-5);
  margin-top: var(--sp-5);
  padding-top: var(--sp-5);
  border-top: 1px solid rgba(255,255,255,.08);
}
.score-circle { display: flex; flex-direction: column; align-items: center; gap: 3px; }
.score-num {
  font-size: var(--fs-3xl);
  font-weight: var(--fw-bold);
  color: #4ade80;
  line-height: 1;
}
.score-label { font-size: var(--fs-xs); color: rgba(255,255,255,.45); text-align: center; }

.hero-system-panel {
  width: 100%;
  max-width: 430px;
  padding: var(--sp-6);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  box-shadow: 0 22px 70px rgba(0,0,0,.18);
}

.hero-system-panel__header {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  margin-bottom: var(--sp-5);
}

.hero-system-panel__label {
  margin-left: auto;
  color: rgba(255,255,255,.6);
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: .08em;
}

.system-stack {
  display: grid;
  gap: var(--sp-3);
}

.system-stack__layer {
  padding: 16px 18px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
}

.system-stack__eyebrow {
  display: block;
  margin-bottom: 6px;
  font-size: var(--fs-xs);
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
}

.system-stack__layer strong {
  color: var(--c-white);
  font-size: var(--fs-base);
  font-weight: var(--fw-semibold);
  line-height: 1.45;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-3);
  margin-top: var(--sp-5);
  padding-top: var(--sp-5);
  border-top: 1px solid rgba(255,255,255,.08);
}

.hero-metric-card {
  padding: 14px 16px;
  background: rgba(255,255,255,.04);
  border-radius: var(--radius);
}

.hero-metric-card__label {
  display: block;
  margin-bottom: 4px;
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,.5);
}

.hero-metric-card strong {
  color: var(--c-white);
  font-size: var(--fs-base);
  font-weight: var(--fw-semibold);
}

/* ── 7. SERVICIOS – cards limpias per spec ───────────────────── */

/* Grid responsive 3→2→1 per spec */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);  /* per spec */
  gap: var(--sp-8);                        /* per spec */
}

@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }  /* per spec */
}

@media (max-width: 640px) {
  .services-grid { grid-template-columns: 1fr; }             /* per spec */
}

/* Card – per spec */
.service-card {
  padding: var(--sp-6);                 /* 24px per spec */
  background: var(--c-bg);             /* #fff per spec */
  border-radius: var(--radius-md);     /* 12px per spec */
  border: 1px solid var(--c-border);   /* #eee per spec */
  transition: all .25s ease;           /* per spec */
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.service-card:hover {
  transform: translateY(-4px);              /* más sutil = más premium */
  box-shadow: 0 10px 30px rgba(0,0,0,.06); /* sombra reducida */
  border-color: var(--c-border-d);
}

/* Sin ícono – look limpio per spec */
.service-card__icon { display: none; }

.service-card__title {
  font-size: var(--fs-lg);
  font-weight: var(--fw-semibold);
  color: var(--c-primary);
  letter-spacing: -0.3px;
}

.service-card__desc {
  font-size: var(--fs-sm);
  color: var(--c-text-light);
  line-height: var(--lh-normal);
  flex: 1;
}

.service-card__link {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--c-accent);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: var(--sp-2);
  transition: gap var(--dur-fast) var(--ease);
}
.service-card__link:hover { gap: var(--sp-2); color: var(--c-accent-d); }
.service-card__link::after { content: '→'; }

/* Card como enlace directo */
a.service-card {
  text-decoration: none;
  color: inherit;
}

.solutions-section {
  background: var(--c-bg-alt);
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
}

.solution-card {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  padding: var(--sp-6);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.92);
  color: inherit;
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.solution-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(186,5,5,.16);
}

.solution-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--c-primary-xl);
  color: var(--c-primary);
}

.solution-card__title {
  font-size: var(--fs-lg);
  font-weight: var(--fw-semibold);
  color: var(--c-primary);
}

.solution-card__desc {
  font-size: var(--fs-sm);
  color: var(--c-text-light);
  line-height: var(--lh-normal);
}

/* ── 8. BENEFICIOS ───────────────────────────────────────────── */
.benefits-section { background: var(--c-bg-alt); }

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-12);
  align-items: center;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
  margin-top: var(--sp-8);
}

.benefit-item {
  display: flex;
  gap: var(--sp-4);
  align-items: flex-start;
}

.benefit-icon {
  width: 36px; height: 36px;
  background: var(--c-primary);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-white);
  flex-shrink: 0;
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
}

.benefit-text h3 {
  font-size: var(--fs-base);
  font-weight: var(--fw-semibold);
  margin-bottom: 4px;
  letter-spacing: -0.2px;
}
.benefit-text p {
  font-size: var(--fs-sm);
  color: var(--c-text-light);
}

.benefits-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
}

.stat-card {
  padding: var(--sp-6);
  background: var(--c-bg);
  border-radius: var(--radius-md);
  border: 1px solid var(--c-border);
  text-align: center;
}
.stat-card--accent {
  background: var(--c-primary);
  border-color: transparent;
}

.stat-num {
  font-size: var(--fs-4xl);
  font-weight: var(--fw-bold);
  color: var(--c-primary);
  line-height: 1;
  margin-bottom: var(--sp-2);
  letter-spacing: -0.5px;
}
.stat-card--accent .stat-num { color: var(--c-white); }

.stat-label { font-size: var(--fs-xs); color: var(--c-text-muted); font-weight: var(--fw-medium); }
.stat-card--accent .stat-label { color: rgba(255,255,255,.65); }

/* ── 9. PROCESO ──────────────────────────────────────────────── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
  position: relative;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 1px;
  background: var(--c-border-d);
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--sp-4);
}

.process-step__num {
  width: 56px; height: 56px;
  background: var(--c-primary);
  color: var(--c-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 4px var(--c-bg), 0 0 0 6px var(--c-border);
}

.process-step__title {
  font-size: var(--fs-base);
  font-weight: var(--fw-semibold);
  letter-spacing: -0.2px;
}

.process-step__desc {
  font-size: var(--fs-sm);
  color: var(--c-text-light);
  line-height: var(--lh-normal);
}

/* ── 10. TESTIMONIOS ─────────────────────────────────────────── */
.testimonials-section { background: var(--c-bg-alt); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}

.testimonial-card {
  background: var(--c-bg);
  border-radius: var(--radius-md);
  border: 1px solid var(--c-border);
  padding: var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.testimonial-stars { display: flex; gap: 2px; color: #f59e0b; }

.testimonial-text {
  font-size: var(--fs-sm);
  color: var(--c-text-light);
  line-height: var(--lh-relaxed);
  font-style: italic;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  border-top: 1px solid var(--c-border);
  padding-top: var(--sp-4);
}

.testimonial-author__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--c-primary-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--fw-bold);
  color: var(--c-primary);
  font-size: var(--fs-base);
  flex-shrink: 0;
}
.testimonial-author__name { font-weight: var(--fw-semibold); color: var(--c-primary); font-size: var(--fs-sm); }
.testimonial-author__role { font-size: var(--fs-xs); color: var(--c-text-muted); }

/* ── 11. FOOTER CTA ──────────────────────────────────────────── */
.footer-cta {
  background: linear-gradient(135deg, #0b0b0b 0%, #1a1a1a 100%);
  padding: var(--sp-16) 0;
}

.footer-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-8);
  flex-wrap: wrap;
}

.footer-cta__text h2 {
  font-size: clamp(22px, 3vw, 36px);
  color: var(--c-white);
  margin-bottom: var(--sp-2);
  letter-spacing: -0.5px;
}

.footer-cta__text p { font-size: var(--fs-base); color: rgba(255,255,255,.65); }

/* ── 12. FOOTER ──────────────────────────────────────────────── */
.footer-main {
  background: #111111;
  padding: var(--sp-16) 0 var(--sp-8);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-8);
}

.footer-logo { margin-bottom: var(--sp-4); }
.footer-logo img { height: 36px; width: auto; filter: brightness(0) invert(1); }
.footer-logo__text {
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  color: var(--c-white);
  letter-spacing: -0.03em;
}

.footer-tagline { font-size: var(--fs-sm); color: rgba(255,255,255,.45); line-height: var(--lh-normal); margin-bottom: var(--sp-4); }
.footer-address { font-size: var(--fs-sm); color: rgba(255,255,255,.45); font-style: normal; line-height: var(--lh-normal); }
.footer-address a { color: rgba(255,255,255,.6); }
.footer-address a:hover { color: var(--c-white); }

.footer-heading {
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  color: var(--c-white);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: var(--sp-4);
}

.footer-menu { display: flex; flex-direction: column; gap: var(--sp-2); }
.footer-menu a { font-size: var(--fs-sm); color: rgba(255,255,255,.45); }
.footer-menu a:hover { color: var(--c-white); }

.footer-social { display: flex; flex-direction: column; gap: var(--sp-3); }
.footer-social a {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: var(--fs-sm);
  color: rgba(255,255,255,.45);
}
.footer-social a:hover { color: var(--c-white); }
.footer-social svg { flex-shrink: 0; }

.footer-bottom {
  background: #0b0b0b;
  padding: var(--sp-5) 0;
  border-top: 1px solid rgba(255,255,255,.05);
}
.footer-bottom__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
}
.footer-bottom p { font-size: var(--fs-xs); color: rgba(255,255,255,.3); }

/* ── 13. WHATSAPP FLOTANTE ───────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: var(--sp-8);
  right: var(--sp-8);
  z-index: 999;
  width: 56px; height: 56px;
  background: var(--c-cta);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-white);
  box-shadow: 0 4px 16px rgba(37,211,102,.4);
  transition: all .2s ease;
}
.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 24px rgba(37,211,102,.5);
  color: var(--c-white);
}

.whatsapp-float__tooltip {
  position: absolute;
  right: calc(100% + 10px);
  top: 50%;
  transform: translateY(-50%);
  background: var(--c-text);
  color: var(--c-white);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  padding: var(--sp-2) var(--sp-3);
  border-radius: var(--radius-sm);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur-fast) var(--ease);
}
.whatsapp-float:hover .whatsapp-float__tooltip { opacity: 1; }

/* ── 14. LANDING HERO – limpio, centrado, premium ────────────── */
.landing-hero {
  padding: calc(var(--header-h) + 48px) 0 72px;
  background: linear-gradient(160deg, #0b0b0b 0%, #151515 60%, #1a1a1a 100%);
  text-align: center;
}

.landing-hero__inner {
  max-width: 760px;
  margin: 0 auto;
}

.landing-hero h1 {
  font-size: clamp(32px, 5vw, var(--fs-6xl));
  font-weight: var(--fw-bold);
  letter-spacing: -0.5px;           /* per spec */
  color: var(--c-white);
  line-height: 1.15;
  margin-bottom: var(--sp-5);
}

.landing-hero p {
  font-size: var(--fs-lg);
  color: rgba(255,255,255,.72);
  max-width: 580px;
  margin: 0 auto var(--sp-8);
  line-height: var(--lh-normal);
}

.landing-hero .hero-actions { justify-content: center; }

/* Breadcrumb */
.breadcrumb {
  padding: var(--sp-4) 0;
  border-bottom: 1px solid var(--c-border);
  background: var(--c-bg-alt);
}
.breadcrumb__list {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  flex-wrap: wrap;
}
.breadcrumb__item { font-size: var(--fs-sm); color: var(--c-text-muted); }
.breadcrumb__item a { color: var(--c-accent); }
.breadcrumb__sep { color: var(--c-text-muted); user-select: none; }
.breadcrumb__item--active { color: var(--c-text); font-weight: var(--fw-medium); }

/* ── 15. CONTENIDO LANDING ───────────────────────────────────── */
.content-section { padding: var(--sp-16) 0; }

.content-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--sp-12);
  align-items: start;
}

.content-body h2 {
  font-size: clamp(22px, 3vw, 32px);
  margin-bottom: var(--sp-4);
  margin-top: var(--sp-10);
  letter-spacing: -0.4px;
}
.content-body h2:first-child { margin-top: 0; }

.content-body p {
  font-size: var(--fs-base);
  color: var(--c-text-light);
  line-height: var(--lh-normal);
  margin-bottom: var(--sp-4);
}

.content-body ul {
  list-style: none;
  margin-bottom: var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.content-body ul li {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  font-size: var(--fs-base);
  color: var(--c-text-light);
}

.content-body ul li::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px; height: 20px;
  background: var(--c-primary);
  color: var(--c-white);
  border-radius: 50%;
  font-size: 11px;
  font-weight: var(--fw-bold);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Sidebar */
.sidebar-sticky {
  position: sticky;
  top: calc(var(--header-h) + var(--sp-6));
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.cta-card {
  background: var(--c-primary);
  border-radius: var(--radius-md);
  padding: var(--sp-6);
  text-align: center;
}
.cta-card h3 { font-size: var(--fs-lg); color: var(--c-white); margin-bottom: var(--sp-3); }
.cta-card p  { font-size: var(--fs-sm); color: rgba(255,255,255,.7); margin-bottom: var(--sp-5); }
.cta-card .btn-whatsapp { width: 100%; }

.info-card {
  background: var(--c-bg-alt);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: var(--sp-5);
}
.info-card h4 {
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  margin-bottom: var(--sp-3);
  letter-spacing: -0.2px;
}
.info-card ul { list-style: none; display: flex; flex-direction: column; gap: var(--sp-2); }
.info-card ul li {
  font-size: var(--fs-sm);
  color: var(--c-text-light);
  padding-left: var(--sp-4);
  position: relative;
}
.info-card ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--c-accent);
}

/* ── 16. ANIMACIONES – per spec ──────────────────────────────── */

/* Clase base: invisible por defecto */
.fade-up {
  opacity: 0;
  transform: translateY(20px);         /* per spec */
  transition: all .6s ease;           /* per spec */
}

/* Estado visible – agregado por JS con IntersectionObserver */
.fade-up.show, .fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  opacity: 0;
  transition: opacity .6s ease;
}
.fade-in.show, .fade-in.is-visible { opacity: 1; }

/* Delays escalonados */
.delay-1 { transition-delay: 100ms; }
.delay-2 { transition-delay: 200ms; }
.delay-3 { transition-delay: 300ms; }
.delay-4 { transition-delay: 400ms; }

/* ── 17. BLOG / POSTS ────────────────────────────────────────── */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}

.post-card {
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all .25s ease;
}
.post-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--c-border-d);
}

.post-card__thumb { display: block; overflow: hidden; }
.post-card__thumb img { transition: transform .5s ease; }
.post-card:hover .post-card__thumb img { transform: scale(1.03); }

.post-card__body { padding: var(--sp-5); display: flex; flex-direction: column; gap: var(--sp-3); }
.post-card__date { font-size: var(--fs-xs); color: var(--c-text-muted); }
.post-card__title { font-size: var(--fs-lg); font-weight: var(--fw-semibold); letter-spacing: -0.3px; }
.post-card__title a { color: var(--c-primary); }
.post-card__title a:hover { color: var(--c-accent); }
.post-card__excerpt { font-size: var(--fs-sm); color: var(--c-text-light); }

/* ── 18. 404 ─────────────────────────────────────────────────── */
.not-found {
  padding: calc(var(--header-h) + var(--sp-16)) 0 var(--sp-24);
  text-align: center;
}
.not-found h1 { font-size: 96px; font-weight: var(--fw-bold); color: var(--c-border-d); margin-bottom: var(--sp-4); }
.not-found p  { font-size: var(--fs-xl); color: var(--c-text-light); margin-bottom: var(--sp-8); }

/* ── 19. PAGE GENÉRICA ───────────────────────────────────────── */
.page-hero {
  padding: var(--sp-16) 0 var(--sp-12);
  background: var(--c-bg-alt);
  border-bottom: 1px solid var(--c-border);
}
.page-hero h1 { margin-bottom: var(--sp-4); }
.page-hero p  { font-size: var(--fs-lg); color: var(--c-text-light); max-width: 600px; }

.page-content { padding: var(--sp-16) 0; }

/* ── 20. CTA FINAL (page-servicio) ───────────────────────────── */
.cta-final {
  background: linear-gradient(135deg, var(--c-primary) 0%, #112b52 100%);
  border-radius: var(--radius-xl);
  padding: var(--sp-16);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--sp-10);
  align-items: center;
}
.cta-final h2 { font-size: clamp(22px, 3.5vw, 36px); color: var(--c-white); margin-bottom: var(--sp-4); letter-spacing: -0.5px; }
.cta-final p  { font-size: var(--fs-base); color: rgba(255,255,255,.7); margin-bottom: var(--sp-5); }
.cta-final__list { list-style: none; display: flex; flex-direction: column; gap: var(--sp-2); }
.cta-final__list li { color: rgba(255,255,255,.65); font-size: var(--fs-sm); padding-left: var(--sp-5); position: relative; }
.cta-final__list li::before { content: '✓'; position: absolute; left: 0; color: var(--c-cta); font-weight: var(--fw-bold); }
.cta-final__actions { display: flex; flex-direction: column; gap: var(--sp-3); min-width: 240px; }
.cta-final__actions .btn-secondary {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.2);
  color: var(--c-white);
  text-align: center;
}
.cta-final__actions .btn-secondary:hover {
  background: rgba(255,255,255,.15);
  border-color: rgba(255,255,255,.4);
}

/* ── 21. FAQ ─────────────────────────────────────────────────── */
.faq-list { margin: var(--sp-5) 0; display: flex; flex-direction: column; gap: var(--sp-3); }
.faq-item { border: 1px solid var(--c-border); border-radius: var(--radius-md); overflow: hidden; }
.faq-question {
  padding: var(--sp-5) var(--sp-6);
  font-size: var(--fs-base);
  font-weight: var(--fw-semibold);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--c-primary);
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after { content: '+'; font-size: var(--fs-xl); color: var(--c-accent); transition: transform .2s ease; }
details[open] .faq-question::after { transform: rotate(45deg); }
.faq-answer { padding: 0 var(--sp-6) var(--sp-5); }
.faq-answer p { color: var(--c-text-light); font-size: var(--fs-base); }

/* ── 22. UTILITY ─────────────────────────────────────────────── */
.text-center { text-align: center; }
.text-white  { color: var(--c-white) !important; }
.bg-dark     { background: var(--c-bg-dark); }
.bg-alt      { background: var(--c-bg-alt); }

/* ── 23. RESPONSIVE ──────────────────────────────────────────── */

/* Tablet ≤1024px */
@media (max-width: 1024px) {
  .hero-inner         { grid-template-columns: 1fr; }
  .hero-visual        { display: none; }
  .solutions-grid     { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid      { grid-template-columns: 1fr; }
  .benefits-visual    { grid-template-columns: repeat(4, 1fr); }
  .footer-grid        { grid-template-columns: 1fr 1fr; gap: var(--sp-10); }
  .footer-col--brand  { grid-column: 1 / -1; }
  .process-grid       { grid-template-columns: repeat(2, 1fr); }
  .process-grid::before { display: none; }
  .content-grid       { grid-template-columns: 1fr; }
  .sidebar-sticky     { position: static; }
  .cta-final          { grid-template-columns: 1fr; }
  .cta-final__actions { min-width: auto; }
  .testimonials-grid  { grid-template-columns: repeat(2, 1fr); }
  .posts-grid         { grid-template-columns: repeat(2, 1fr); }
}

/* Mobile ≤640px – per spec */
@media (max-width: 640px) {
  /* Tipografía mobile per spec */
  h1 { font-size: 32px; }
  h2 { font-size: 24px; }

  .section    { padding: var(--sp-12) 0; }
  .section--lg { padding: var(--sp-16) 0; }

  /* Header mobile */
  .nav-shell {
    display: none;
    position: fixed;
    inset: var(--header-h) 0 0 0;
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(12px);
    padding: var(--sp-6) var(--sp-5);
    overflow-y: auto;
    border-top: 1px solid var(--c-border);
    z-index: 999;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: var(--sp-5);
  }
  .nav-shell.is-open { display: flex; }

  .site-nav { width: 100%; }

  .nav-menu {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 4px;
  }
  .nav-item-row {
    justify-content: space-between;
    gap: var(--sp-3);
  }
  .nav-menu .menu-item > .nav-item-row > a,
  .nav-menu .menu-item > a {
    width: 100%;
    padding: var(--sp-3) var(--sp-4);
    font-size: var(--fs-base);
  }
  .submenu-toggle {
    width: 40px;
    height: 40px;
    margin-left: 0;
    border: 1px solid var(--c-border);
  }
  .sub-menu {
    position: static;
    min-width: 0;
    padding: var(--sp-2) 0 0;
    margin-left: var(--sp-4);
    border: 0;
    border-left: 1px solid var(--c-border);
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    background: transparent;
  }
  .menu-item--has-children:hover > .sub-menu,
  .menu-item--has-children:focus-within > .sub-menu {
    display: none;
  }
  .menu-item--has-children.is-expanded > .sub-menu {
    display: grid;
  }
  .sub-menu .menu-item a {
    padding: 10px 12px;
    font-size: var(--fs-sm);
  }

  .nav-toggle { display: flex; }

  /* Header CTA mobile: solo ícono */
  .header-cta { width: 100%; }
  .header-cta .btn-whatsapp { width: 100%; }
  .header-cta .btn-whatsapp span { display: inline; }

  /* Botones full-width en mobile per spec */
  .btn-whatsapp {
    width: 100%;                       /* per spec */
    justify-content: center;           /* per spec */
  }

  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn-whatsapp,
  .hero-actions .btn-outline-white { justify-content: center; }
  .hero-pill-row { gap: var(--sp-2); }
  .hero-social-proof {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--sp-4);
  }
  .proof-divider { display: none; }

  .landing-hero .hero-actions { flex-direction: column; }

  /* Grids mobile */
  .solutions-grid     { grid-template-columns: 1fr; }
  .benefits-visual    { grid-template-columns: 1fr 1fr; }
  .footer-grid        { grid-template-columns: 1fr; }
  .testimonials-grid  { grid-template-columns: 1fr; }
  .posts-grid         { grid-template-columns: 1fr; }
  .process-grid       { grid-template-columns: 1fr; }

  /* Footer CTA mobile */
  .footer-cta__inner { flex-direction: column; text-align: center; }
  .footer-cta__inner .btn-whatsapp { width: auto; }

  .footer-bottom__inner { flex-direction: column; text-align: center; }

  /* WhatsApp flotante mobile */
  .whatsapp-float { bottom: var(--sp-5); right: var(--sp-5); width: 50px; height: 50px; }

  /* CTA final mobile */
  .cta-final { padding: var(--sp-8); border-radius: var(--radius-lg); }

  .stat-num { font-size: var(--fs-3xl); }
}

/* ── 24. PRINT ───────────────────────────────────────────────── */
@media (max-width: 782px) {
  body.admin-bar {
    padding-top: calc(var(--header-h) + 46px);
  }

  body.admin-bar .site-header {
    top: 46px;
  }

  body.admin-bar .nav-shell {
    inset: calc(var(--header-h) + 46px) 0 0 0;
  }
}

@media print {
  .site-header, .whatsapp-float, .footer-cta, .nav-toggle { display: none !important; }
  body { font-size: 12pt; color: #000; }
}
