/* ================================================
   GR PROTECCIÓN INTEGRAL — Hoja de estilos principal
   Estética: profesional sobria, base moderna + serif en títulos
   Paleta: azul marino + dorado suave + crema claro
   ================================================ */

/* === Variables de marca === */
:root {
  --color-bg: #ffffff;
  --color-bg-alt: #faf9f5;
  --color-bg-cream: #f8f6f0;
  --color-bg-dark: #0a1929;
  --color-text: #0a1929;
  --color-text-soft: #3a4554;
  --color-text-mute: #5a6678;
  --color-text-light: #8a93a0;
  --color-gold: #b8945a;
  --color-gold-light: #d4b36a;
  --color-gold-dark: #6b5524;
  --color-gold-bg: #f4f0e4;
  --color-border: rgba(10, 25, 41, 0.1);
  --color-border-strong: rgba(10, 25, 41, 0.2);
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-pill: 999px;
  --shadow-sm: 0 1px 2px rgba(10, 25, 41, 0.04);
  --shadow-md: 0 4px 12px rgba(10, 25, 41, 0.06);
  --font-sans: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --max-width: 1200px;
}

/* === Reset y base === */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

/* === Tipografía === */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: -0.5px;
  color: var(--color-text);
  line-height: 1.15;
}

h1 { font-size: clamp(32px, 5vw, 48px); font-weight: 400; letter-spacing: -1.4px; }
h2 { font-size: clamp(26px, 3.5vw, 34px); font-weight: 400; letter-spacing: -1px; }
h3 { font-size: clamp(18px, 2.2vw, 22px); }
h4 { font-size: 16px; font-weight: 500; }

em { font-style: italic; color: var(--color-gold); font-weight: 400; }

/* === Etiquetas y eyebrows === */
.eyebrow {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--color-gold);
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 14px;
}

.tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 13px;
  background: var(--color-gold-bg);
  color: var(--color-gold-dark);
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3px;
}
.tag-pill::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--color-gold);
  border-radius: 50%;
}

/* === Botones === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.2px;
  transition: transform 0.15s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--color-bg-dark);
  color: #fff;
}
.btn-primary:hover { box-shadow: 0 6px 20px rgba(10, 25, 41, 0.2); }

.btn-secondary {
  background: #fff;
  color: var(--color-text);
  border: 1px solid var(--color-text);
}
.btn-secondary:hover { background: var(--color-bg-alt); }

.btn-gold {
  background: var(--color-gold);
  color: var(--color-bg-dark);
}
.btn-gold:hover { background: var(--color-gold-light); }

.btn-ghost {
  color: var(--color-text);
}
.btn-ghost:hover { color: var(--color-gold); }

.btn-arrow::after {
  content: '→';
  margin-left: 2px;
  transition: transform 0.2s ease;
}
.btn-arrow:hover::after { transform: translateX(3px); }

/* === Header / Navegación === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  backdrop-filter: blur(8px);
  border-bottom: 0.5px solid var(--color-border);
  box-shadow: 0 10px 30px rgba(10, 25, 41, 0.06);
}

.nav-wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-mark {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--color-bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--color-gold-light);
  font-size: 22px;
  letter-spacing: 0.7px;
}
.logo-text { line-height: 1; }
.logo-text strong {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: 0.2px;
  display: block;
}
.logo-text span {
  display: block;
  font-size: 10px;
  color: var(--color-text-light);
  letter-spacing: 1.5px;
  margin-top: 4px;
  text-transform: uppercase;
}

.main-menu {
  display: flex;
  gap: 16px;
  font-size: 13px;
  list-style: none;
}
.main-menu a {
  color: var(--color-text-dark);
  padding: 10px 14px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.85);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.main-menu a:hover {
  background: rgba(10, 25, 41, 0.08);
  color: var(--color-text);
  font-weight: 600;
  transform: translateY(-1px);
}
.main-menu a.active {
  background: var(--color-gold-bg);
  color: var(--color-text);
  font-weight: 600;
}

.nav-cta {
  background: var(--color-bg-dark);
  color: #fff;
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: box-shadow 0.2s ease;
}
.nav-cta:hover { box-shadow: 0 4px 12px rgba(10, 25, 41, 0.18); }

/* Mobile menu toggle (oculto en desktop) */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 8px;
  background: transparent;
  border: 0;
  cursor: pointer;
}
.menu-toggle span {
  width: 22px;
  height: 1.5px;
  background: var(--color-text);
  transition: 0.2s;
}

/* === Hero === */
.hero {
  padding: 70px 0 54px;
  background: var(--color-bg);
}
.hero h1 {
  margin-bottom: 18px;
  max-width: 980px;
}
.hero .lede {
  font-size: 17px;
  line-height: 1.6;
  color: var(--color-text-mute);
  max-width: 520px;
  margin-bottom: 32px;
}
.hero .container {
  max-width: 1320px;
}
.hero .tag-pill {
  padding: 8px 18px;
  font-size: 14px;
  letter-spacing: 0.2px;
  margin-bottom: 16px;
}
.hero .tag-pill::before {
  width: 6px;
  height: 6px;
}
.hero-subtitle {
  font-size: 30px;
  line-height: 1.35;
  color: var(--color-text-soft);
  max-width: 1040px;
  margin-bottom: 18px;
}
.hero-highlight {
  max-width: 980px;
  font-size: 21px;
  line-height: 1.65;
  color: var(--color-text-mute);
  padding: 22px 26px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(184, 148, 90, 0.08), rgba(10, 25, 41, 0.03));
  border: 0.5px solid rgba(184, 148, 90, 0.18);
  margin-bottom: 24px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-signals {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 760px;
  margin-top: 26px;
}
.hero-signal {
  padding: 16px 18px;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 0.5px solid var(--color-border);
}
.hero-signal strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 28px;
  line-height: 1;
  color: var(--color-text);
  margin-bottom: 6px;
}
.hero-signal span {
  display: block;
  font-size: 12px;
  color: var(--color-text-mute);
}

/* === Strip de compañías === */
.companies-strip {
  padding: 22px 0;
  background: var(--color-bg-cream);
}
.companies-strip .container {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.companies-label {
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--color-gold-dark);
  text-transform: uppercase;
  font-weight: 500;
}
.companies-names {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.companies-names span {
  font-size: 12px;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  background: #fff;
  color: var(--color-text-soft);
  font-weight: 500;
}
.companies-names span.more {
  background: transparent;
  color: var(--color-text-light);
  padding-left: 4px;
}

/* === Bloque de estadísticas === */
.stats {
  padding: 60px 0 50px;
  background: #fff;
  border-top: 0.5px solid var(--color-border);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.stat-item {
  padding: 0 28px;
  border-right: 0.5px solid var(--color-border);
}
.stat-item:first-child { padding-left: 0; }
.stat-item:last-child { border-right: 0; padding-right: 0; }
.stat-num {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4.5vw, 48px);
  font-weight: 400;
  color: var(--color-text);
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 12px;
}
.stat-num span { color: var(--color-gold); }
.stat-label {
  font-size: 13px;
  color: var(--color-text-mute);
  line-height: 1.5;
}

/* === Sección genérica === */
section.section {
  padding: 72px 0;
  background: var(--color-bg);
}
section.section.alt {
  background: var(--color-bg-alt);
}
section.section .lede {
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-text-mute);
  max-width: 580px;
  margin-bottom: 40px;
}

.section-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 18px;
  align-items: start;
}

.institution-panel {
  background: var(--color-bg-alt);
  border: 0.5px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 28px;
}

.institution-panel h3 {
  margin-bottom: 14px;
}

.institution-list {
  list-style: none;
  display: grid;
  gap: 12px;
}

.institution-list li {
  position: relative;
  padding-left: 20px;
  font-size: 14px;
  color: var(--color-text-mute);
  line-height: 1.6;
}

.institution-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-gold);
}

/* === Grid de servicios / pilares === */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.service-card {
  background: var(--color-bg-alt);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border: 0.5px solid var(--color-border);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.service-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.service-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border: 0.5px solid var(--color-border);
  color: var(--color-gold);
}
.service-icon svg { width: 20px; height: 20px; stroke: currentColor; }
.service-card h3 { margin-bottom: 8px; }
.service-card p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--color-text-mute);
}

.company-logo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.company-logo-card {
  background: #fff;
  border: 0.5px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 18px 16px;
  min-height: 154px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.company-logo-card:hover {
  transform: translateY(-2px);
  border-color: rgba(184, 148, 90, 0.24);
  box-shadow: var(--shadow-md);
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 84px;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 0.5px solid var(--color-border);
  filter: grayscale(100%);
  opacity: 0.75;
  transition: filter 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

.logo-item:hover {
  filter: none;
  opacity: 1;
  transform: translateY(-2px);
}

.logo-item img {
  max-height: 42px;
  width: auto;
  display: block;
}

.logo-item span {
  display: block;
  color: var(--color-text);
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  padding: 8px 6px;
}

/* Make badges and product/service cards obvious interactive elements */
.badge { cursor: pointer; }
.product-card { cursor: pointer; }
.service-card { cursor: pointer; }

/* Expanded details for service cards (hidden by default) */
.service-card .more { display: none; margin-top: 12px; color: var(--color-text-mute); }
.service-card.expanded { box-shadow: 0 8px 24px rgba(10,25,41,0.08); }
.service-card.expanded .more { display: block; }

.badge-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.badge-column {
  display: grid;
  gap: 10px;
}

.badge-column h3 {
  margin-bottom: 14px;
}

.badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 10px 12px;
  border-radius: var(--radius-pill);
  background: var(--color-bg-alt);
  border: 0.5px solid var(--color-border);
  font-size: 13px;
  color: var(--color-text-soft);
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.location-card {
  background: #fff;
  border: 0.5px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 26px 22px;
}

.location-card h3 {
  margin-bottom: 12px;
  font-size: 16px;
}

.location-card p {
  margin: 8px 0;
  font-size: 14px;
  color: var(--color-text-mute);
}

.location-card a {
  color: var(--color-text);
  font-weight: 500;
}

.location-card a:hover { color: var(--color-gold-dark); }

.company-logo-card-compact {
  min-height: 120px;
  padding: 12px 10px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(250,249,245,0.98));
}

.company-logo-mark {
  min-width: 88px;
  min-height: 56px;
  padding: 10px 16px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ffffff, #f8f6f0);
  border: 1px solid rgba(10, 25, 41, 0.08);
  box-shadow: inset 0 0 0 1px rgba(184, 148, 90, 0.14);
  font-family: var(--font-serif);
  font-size: 26px;
  color: var(--color-text);
  margin-bottom: 18px;
}

.company-logo-wordmark {
  width: 100%;
  min-height: 72px;
  padding: 12px 12px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.98), rgba(248,246,240,0.96)),
    #fff;
}

.company-logo-wordmark-compact {
  min-height: 64px;
  padding: 10px 10px;
  border-radius: 14px;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.company-logo-wordmark span {
  display: block;
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--color-text-light);
}

.company-logo-wordmark-compact span {
  font-size: 11px;
  letter-spacing: 1px;
}

.company-logo-wordmark strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 21px;
  line-height: 1.05;
  letter-spacing: -0.6px;
  color: var(--color-text);
  margin: 0;
}

.company-logo-wordmark-compact strong {
  font-size: 20px;
}

.company-logo-card strong {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 6px;
}

.company-logo-card span {
  font-size: 12px;
  color: var(--color-text-light);
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.area-card {
  background: #fff;
  border: 0.5px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 22px 20px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.area-card:hover {
  transform: translateY(-2px);
  border-color: rgba(184, 148, 90, 0.24);
}

.area-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--color-gold-bg);
  color: var(--color-gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.area-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
}

.area-card h3 {
  margin-bottom: 8px;
}

.area-card p {
  font-size: 14px;
  color: var(--color-text-mute);
  line-height: 1.6;
}

/* === Red de productores === */
.network-shell {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 18px;
  align-items: start;
  margin-top: 12px;
}

.network-intro {
  display: grid;
  gap: 14px;
}

.network-callout,
.network-note,
.network-map-card,
.network-central,
.producer-card {
  background: #fff;
  border: 0.5px solid var(--color-border);
  border-radius: var(--radius-xl);
}

.network-callout {
  padding: 28px;
}

.network-callout h3 {
  margin: 18px 0 10px;
}

.network-callout p,
.network-note p,
.producer-card p,
.network-central p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-text-mute);
}

.network-note {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 22px 24px;
}

.network-note strong {
  display: block;
  margin-bottom: 4px;
  font-size: 14px;
  color: var(--color-text);
}

.network-note-icon,
.network-central-icon {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--color-gold-bg);
  color: var(--color-gold-dark);
}

.network-note-icon svg,
.network-central-icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
}

.network-map-card {
  padding: 22px 24px;
  background:
    radial-gradient(circle at top right, rgba(184, 148, 90, 0.12), transparent 36%),
    linear-gradient(180deg, #fff 0%, #fbfaf7 100%);
}

.network-map {
  position: relative;
  min-height: 250px;
  border-radius: 18px;
  border: 1px solid rgba(184, 148, 90, 0.18);
  background:
    linear-gradient(135deg, rgba(10, 25, 41, 0.03), rgba(184, 148, 90, 0.05)),
    #f8f6f0;
  overflow: hidden;
}

.network-map::before {
  content: '';
  position: absolute;
  inset: 14px;
  border-radius: 14px;
  border: 1px dashed rgba(10, 25, 41, 0.08);
}

.network-map::after {
  content: '';
  position: absolute;
  left: 28%;
  top: 14%;
  width: 40%;
  height: 68%;
  border-radius: 50% 44% 38% 48% / 36% 40% 56% 58%;
  background: linear-gradient(180deg, rgba(255,255,255,0.9), rgba(244,240,228,0.95));
  box-shadow: inset 0 0 0 1px rgba(184, 148, 90, 0.16);
}

.network-map-point {
  position: absolute;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: var(--radius-pill);
  background: rgba(10, 25, 41, 0.92);
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  box-shadow: 0 10px 20px rgba(10, 25, 41, 0.12);
}

.network-map-point::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-gold-light);
  box-shadow: 0 0 0 4px rgba(184, 148, 90, 0.18);
}

.point-mza { left: 18%; top: 18%; }
.point-nqn { left: 40%; top: 48%; }
.point-cent { left: 52%; top: 40%; }
.point-roca { left: 47%; top: 66%; }

.network-locations {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.network-locations span {
  font-size: 12px;
  font-weight: 500;
  color: var(--color-gold-dark);
  background: #fff;
  padding: 6px 11px;
  border-radius: var(--radius-pill);
  border: 0.5px solid rgba(184, 148, 90, 0.25);
}

.producer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.producer-card {
  padding: 22px;
  min-height: 0;
}

.producer-icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--color-gold-bg);
  font-size: 20px;
  margin-bottom: 16px;
}

.producer-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
}

.producer-zone {
  display: inline-flex;
  padding: 5px 10px;
  margin-bottom: 12px;
  border-radius: var(--radius-pill);
  background: rgba(10, 25, 41, 0.05);
  color: var(--color-text-soft);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.producer-card h3 {
  margin-bottom: 6px;
}

.producer-role {
  font-size: 13px;
  color: var(--color-gold-dark);
  font-weight: 600;
  margin-bottom: 10px;
}

.producer-phones {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.producer-phone {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: var(--radius-pill);
  background: rgba(10, 25, 41, 0.04);
  color: var(--color-text-soft);
  border: 0.5px solid var(--color-border);
  font-size: 12px;
  font-weight: 500;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.producer-phone:hover {
  background: var(--color-gold-bg);
  border-color: rgba(184, 148, 90, 0.3);
  color: var(--color-text);
}

.producer-phone-primary {
  background: rgba(184, 148, 90, 0.14);
  color: var(--color-gold-dark);
  border-color: rgba(184, 148, 90, 0.28);
}

.network-central {
  margin-top: 14px;
  padding: 24px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(10, 25, 41, 0.02), rgba(184, 148, 90, 0.06)),
    #fff;
}

.network-central-copy .eyebrow {
  margin-bottom: 10px;
}

.network-central-copy h3 {
  margin-bottom: 8px;
}

.network-central-meta {
  display: grid;
  gap: 12px;
  justify-items: end;
}

.network-central-zones {
  font-size: 12px;
  color: var(--color-text-light);
  letter-spacing: 0.4px;
}

.internal-unit {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 34px 36px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(10, 25, 41, 0.04), rgba(184, 148, 90, 0.08));
  border: 0.5px solid var(--color-border);
}

.internal-unit .lede {
  margin-bottom: 0;
}

.internal-unit-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

/* === Split: dos columnas (Empresas / A la Carta) === */
.split-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.split-card {
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
}
.split-card-light {
  background: var(--color-bg-alt);
  border: 0.5px solid var(--color-border);
  color: var(--color-text);
}
.split-card-dark {
  background: var(--color-bg-dark);
  color: #fff;
}
.split-card-label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 16px;
}
.split-card-light .split-card-label { color: var(--color-gold); }
.split-card-dark .split-card-label { color: var(--color-gold-light); }
.split-card h3 {
  font-size: 24px;
  margin-bottom: 14px;
}
.split-card-dark h3 { color: #fff; }
.split-card p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 22px;
}
.split-card-light p { color: var(--color-text-mute); }
.split-card-dark p { color: rgba(255, 255, 255, 0.78); }

.business-list {
  list-style: none;
  display: grid;
  gap: 12px;
  margin: 0 0 22px;
}

.business-list li {
  position: relative;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.55;
}

.business-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-gold-light);
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 24px;
}
.pill {
  font-size: 11px;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  font-weight: 500;
}
.split-card-light .pill {
  background: #fff;
  border: 0.5px solid var(--color-border);
  color: var(--color-text-soft);
}
.split-card-dark .pill {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 0.5px solid rgba(255, 255, 255, 0.2);
}

.card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  transition: gap 0.2s ease;
}
.card-cta:hover { gap: 10px; }
.split-card-light .card-cta { color: var(--color-text); }
.split-card-dark .card-cta { color: var(--color-gold-light); }

/* === Listas con punto numerado (para procesos) === */
.process-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  list-style: none;
  counter-reset: process;
}
.process-item {
  counter-increment: process;
  position: relative;
  padding: 28px 24px;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 0.5px solid var(--color-border);
}
.process-item::before {
  content: counter(process, decimal-leading-zero);
  font-family: var(--font-serif);
  font-size: 28px;
  color: var(--color-gold);
  font-weight: 500;
  letter-spacing: -1px;
  display: block;
  margin-bottom: 14px;
}
.process-item h3 { margin-bottom: 8px; }
.process-item p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--color-text-mute);
}

/* === Lista de servicios con icono lateral === */
.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  list-style: none;
}
.feature-item {
  display: flex;
  gap: 16px;
  padding: 8px 0;
}
.feature-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: var(--color-gold-bg);
  color: var(--color-gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-icon svg { width: 18px; height: 18px; stroke: currentColor; }
.feature-item h4 { margin-bottom: 4px; font-family: var(--font-sans); font-size: 15px; }
.feature-item p {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--color-text-mute);
}

/* === Tarjetas de rubros (Empresas) === */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.industry-card {
  background: #fff;
  border: 0.5px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.industry-card:hover {
  border-color: var(--color-gold);
  transform: translateY(-2px);
}
.industry-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.industry-card h3 svg {
  width: 22px;
  height: 22px;
  color: var(--color-gold);
  stroke: currentColor;
}
.industry-card p {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--color-text-mute);
}

/* === Tarjetas de productos personales === */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.product-card {
  background: #fff;
  border: 0.5px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 24px 18px;
  text-align: center;
  transition: all 0.2s ease;
}
.product-card:hover {
  border-color: var(--color-gold);
  transform: translateY(-2px);
}
.product-card .ico {
  width: 44px;
  height: 44px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: var(--color-gold-bg);
  color: var(--color-gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-card .ico svg { width: 22px; height: 22px; stroke: currentColor; }
.product-card h4 { margin-bottom: 4px; font-size: 14px; font-family: var(--font-sans); font-weight: 500; }
.product-card p { font-size: 12px; color: var(--color-text-mute); }

/* === CTA Banner === */
.cta-banner {
  background: var(--color-bg-dark);
  color: #fff;
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 100%;
  background: radial-gradient(circle at right, rgba(184, 148, 90, 0.15), transparent 70%);
  pointer-events: none;
}
.cta-banner .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  position: relative;
}
.cta-banner h2 {
  color: #fff;
  margin: 0;
  max-width: 500px;
}
.cta-banner p {
  color: rgba(255, 255, 255, 0.7);
  margin-top: 8px;
  font-size: 15px;
}
.cta-banner-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* === Formulario === */
.form-section {
  padding: 72px 0;
  background: var(--color-bg-alt);
}
.form-wrap {
  max-width: 720px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--radius-xl);
  border: 0.5px solid var(--color-border);
  padding: 44px 40px;
}
.form-header { margin-bottom: 28px; }
.form-header h2 { margin-bottom: 8px; }
.form-header p { color: var(--color-text-mute); font-size: 15px; }

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label {
  font-size: 12px;
  font-weight: 500;
  color: var(--color-text-soft);
  letter-spacing: 0.2px;
}
.form-field label .required { color: var(--color-gold); margin-left: 2px; }
.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--font-sans);
  font-size: 14px;
  padding: 11px 14px;
  border: 0.5px solid var(--color-border);
  border-radius: var(--radius-md);
  background: #fff;
  color: var(--color-text);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(184, 148, 90, 0.1);
}
.form-field textarea { resize: vertical; min-height: 100px; }

.radio-group { display: flex; gap: 18px; padding-top: 4px; }
.radio-group label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--color-text);
  font-weight: 400;
  cursor: pointer;
}
.radio-group input[type="radio"] {
  accent-color: var(--color-gold);
  cursor: pointer;
}

.form-submit { margin-top: 24px; }
.form-note {
  margin-top: 14px;
  font-size: 12px;
  color: var(--color-text-light);
  line-height: 1.5;
}

/* === Mensaje de éxito del formulario === */
.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.form-success.active { display: block; }
.form-success .success-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--color-gold-bg);
  color: var(--color-gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}
.form-success h3 { margin-bottom: 8px; }
.form-success p { color: var(--color-text-mute); }

/* === Footer === */
.site-footer {
  background: var(--color-bg-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 56px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand .logo-text strong { color: #fff; }
.footer-brand .logo-text span { color: rgba(255, 255, 255, 0.5); }
.footer-brand p {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 16px;
  max-width: 280px;
}
.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  color: var(--color-gold-light);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.15s ease;
}
.footer-col a:hover { color: var(--color-gold-light); }
.footer-bottom {
  padding-top: 24px;
  border-top: 0.5px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom strong {
  font-family: var(--font-serif);
  color: var(--color-gold-light);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.3px;
}

/* === Botón flotante de WhatsApp === */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  z-index: 90;
  transition: transform 0.2s ease;
}
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float svg { width: 28px; height: 28px; }

/* === Animaciones suaves === */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in {
  animation: fadeUp 0.6s ease forwards;
}
.fade-in-delay-1 { animation-delay: 0.1s; opacity: 0; }
.fade-in-delay-2 { animation-delay: 0.2s; opacity: 0; }
.fade-in-delay-3 { animation-delay: 0.3s; opacity: 0; }

/* === Responsive === */
@media (max-width: 980px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .feature-list { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .company-logo-grid { grid-template-columns: repeat(3, 1fr); }
  .section-intro-grid,
  .internal-unit { grid-template-columns: 1fr; }
  .internal-unit-actions { justify-content: flex-start; }
  .network-shell { grid-template-columns: 1fr; }
  .network-central {
    grid-template-columns: 1fr;
    justify-items: start;
  }
  .network-central-meta { justify-items: start; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .nav-wrap { padding: 16px 20px; }
  .main-menu, .nav-cta { display: none; }
  .menu-toggle { display: flex; }
  .main-menu.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    padding: 24px 20px;
    border-bottom: 0.5px solid var(--color-border);
    gap: 18px;
  }
  .hero { padding: 52px 0 42px; }
  .hero .tag-pill {
    padding: 7px 14px;
    font-size: 12px;
  }
  .hero-subtitle { font-size: 21px; }
  .hero-highlight {
    font-size: 17px;
    padding: 18px 18px;
  }
  .hero-signals { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; gap: 28px; }
  .stat-item { padding: 0; border-right: 0; border-bottom: 0.5px solid var(--color-border); padding-bottom: 20px; }
  .stat-item:last-child { border-bottom: 0; }
  .services-grid, .industry-grid, .process-list, .areas-grid { grid-template-columns: 1fr; }
  .split-cards { grid-template-columns: 1fr; }
  .producer-grid { grid-template-columns: 1fr; }
  .company-logo-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .form-grid { grid-template-columns: 1fr; }
  .form-wrap { padding: 28px 22px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  section.section { padding: 56px 0; }
  .cta-banner .container { flex-direction: column; align-items: flex-start; }
  .network-callout,
  .network-note,
  .network-map-card,
  .producer-card,
  .network-central { padding: 22px; }
  .network-map { min-height: 220px; }
  .network-map-point {
    font-size: 10px;
    padding: 6px 10px;
  }
}

@media (max-width: 480px) {
  .logo-mark { width: 38px; height: 38px; font-size: 15px; }
  .logo-text strong { font-size: 14px; }
  .logo-text span { font-size: 8px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
  .hero-subtitle {
    font-size: 19px;
    line-height: 1.42;
  }
  .hero-highlight {
    padding: 16px 16px;
    font-size: 16px;
    line-height: 1.6;
  }
  .company-logo-grid { grid-template-columns: 1fr; }
  .network-note { flex-direction: column; }
  .point-mza { left: 10%; top: 15%; }
  .point-nqn { left: 31%; top: 49%; }
  .point-cent { left: 47%; top: 37%; }
  .point-roca { left: 40%; top: 67%; }
}

/* === Logo grid responsive tweaks (desde fixes) === */
@media (max-width: 980px) {
  .logo-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
@media (max-width: 768px) {
  .logo-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 480px) {
  .logo-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

