/* ============================================================================
   Prudencia Seguros — Sistema visual "Geométrico Moderno"
   PS Azul #041879 · PS Celeste #136CF2 · Poppins · Iconos SVG lineales
   ============================================================================ */

:root {
  --ps-azul: #041879;
  --ps-celeste: #136CF2;
  --ps-celeste-claro: #7EAAFF;
  --bg: #fdfdfb;
  --bg-warm: #f5f4ef;
  --line: #ebeae5;
  --line-strong: #d9d6cc;
  --ink: #0f1729;
  --ink-soft: #4a5266;
  --ink-mute: #6a7080;
}

html { scroll-behavior: smooth; }
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: 'Poppins', sans-serif;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* ── TOPBAR ───────────────────────────────────────────────────────────────── */
.topbar {
  background: var(--ps-azul);
  padding: 8px 56px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.2px;
}
.topbar a { color: rgba(255,255,255,0.7); text-decoration: none; transition: color 0.15s; }
.topbar a:hover { color: white; }
.top-contacts, .top-links { display: flex; gap: 22px; align-items: center; }

/* ── NAVBAR ───────────────────────────────────────────────────────────────── */
#navbar { position: sticky; top: 0; z-index: 100; }
.navbar {
  background: white;
  padding: 0 56px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.25s ease, padding 0.25s ease;
}
.navbar--scrolled {
  box-shadow: 0 4px 22px rgba(4,24,121,0.08);
  border-bottom-color: transparent;
}
.navbar--scrolled .nav-logo img { height: 46px; }
.nav-logo { padding: 14px 0; display: flex; align-items: center; }
.nav-logo a { display: block; }
.nav-logo img { height: 56px; width: auto; display: block; transition: height 0.25s ease; }

.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  text-decoration: none;
  padding: 22px 0;
  position: relative;
  transition: color 0.15s;
  letter-spacing: 0.2px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 18px; left: 0; right: 0;
  height: 2px;
  background: var(--ps-celeste);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav-links a:hover, .nav-links a.active { color: var(--ps-azul); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

.nav-cta {
  background: var(--ps-azul);
  color: white;
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: background 0.18s, transform 0.18s, box-shadow 0.18s;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 0.2px;
}
.nav-cta:hover {
  background: var(--ps-celeste);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(19,108,242,0.3);
}

/* ── HAMBURGER ────────────────────────────────────────────────────────────── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.nav-hamburger span {
  width: 22px;
  height: 2px;
  background: var(--ps-azul);
  border-radius: 2px;
  transition: all 0.25s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO (split: bloque azul + panel claro de tarjetas) ──────────────────── */
.hero {
  display: block;
  min-height: auto;
  background: var(--ps-azul);
}
.hero-left {
  background: var(--ps-azul);
  padding: 80px 56px 70px;
  color: white;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-left::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(115deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 60%, transparent 100%);
  mask-image: linear-gradient(115deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 60%, transparent 100%);
}
.hero-left::after {
  content: '';
  position: absolute;
  bottom: -160px; right: -160px;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(19,108,242,0.45) 0%, transparent 65%);
  pointer-events: none;
}
.hero-left > * { position: relative; z-index: 1; }
.hero-overlay { display: none; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 16px;
  background: rgba(19,108,242,0.18);
  border: 1px solid rgba(126,170,255,0.3);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ps-celeste-claro);
  margin-bottom: 28px;
  width: fit-content;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--ps-celeste-claro);
}

.hero-text { display: contents; }
.hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 60px;
  font-weight: 600;
  color: white;
  line-height: 1.05;
  margin-bottom: 22px;
  letter-spacing: -1.5px;
  max-width: 600px;
}
.hero h1 em { font-style: normal; color: var(--ps-celeste-claro); }
.hero p {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  line-height: 1.65;
  max-width: 480px;
  margin-bottom: 32px;
  font-weight: 400;
}

.hero-actions { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.btn-primary {
  background: var(--ps-celeste);
  color: white;
  padding: 13px 26px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: background 0.18s, transform 0.18s, box-shadow 0.18s;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 0.2px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.btn-primary:hover {
  background: #0d4fbd;
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(19,108,242,0.35);
}
.btn-outline {
  background: transparent;
  color: white;
  padding: 13px 26px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.3);
  transition: all 0.18s;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 0.2px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-outline:hover { border-color: white; background: rgba(255,255,255,0.08); }

.hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.hero-stats > div { min-width: 0; }
.hero-stat-num {
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  color: white;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.5px;
}
.hero-stat-label {
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  margin-top: 7px;
  letter-spacing: 0.3px;
}

/* HERO right (panel claro con tarjetas-dato) */
.hero-visual {
  background: var(--bg);
  padding: 80px 56px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: center;
}
.hero-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 26px 28px;
  backdrop-filter: none;
  box-shadow: 0 1px 0 rgba(0,0,0,0.02);
}
.hero-card-title {
  font-size: 11px;
  color: var(--ps-celeste);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 18px;
  font-weight: 500;
}
.hero-card-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 0;
  border-bottom: 1px dashed var(--line);
}
.hero-card-item:last-of-type { border-bottom: none; }
.hero-card-item-label { font-size: 12px; color: var(--ink-mute); }
.hero-card-item-val { font-size: 13px; color: var(--ps-azul); font-weight: 500; }
.hero-card-badge {
  margin-top: 18px;
  padding: 10px 14px;
  background: rgba(19,108,242,0.08);
  border-radius: 8px;
  border: 1px solid rgba(19,108,242,0.2);
  font-size: 12px;
  color: var(--ps-celeste);
  text-align: center;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.hero-card-badge svg { width: 14px; height: 14px; }
.hero-mini-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.hero-mini {
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px;
}
.hero-mini-icon { color: var(--ps-celeste); margin-bottom: 12px; }
.hero-mini-icon svg { width: 22px; height: 22px; }
.hero-mini-num { font-size: 22px; font-weight: 600; color: var(--ps-azul); line-height: 1; }
.hero-mini-lbl { font-size: 11px; color: var(--ink-mute); margin-top: 6px; line-height: 1.45; }

/* ── ACCESOS RÁPIDOS ──────────────────────────────────────────────────────── */
.accesos {
  background: var(--bg-warm);
  padding: 12px 56px 16px;
  border-bottom: 1px solid var(--line);
}
.accesos-inner { max-width: 1180px; margin: 0 auto; }
.accesos-head {
  margin-bottom: 6px;
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.accesos-eyebrow {
  font-size: 10px;
  font-weight: 600;
  color: var(--ps-celeste);
  text-transform: uppercase;
  letter-spacing: 1.4px;
}
.accesos-title-h {
  font-size: 14px;
  font-weight: 600;
  color: var(--ps-azul);
  letter-spacing: -0.2px;
}
.accesos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 8px;
}
.acceso-card {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 9px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.18s ease;
  position: relative;
}
.acceso-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 5px;
  background: var(--bg-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ps-celeste);
  transition: all 0.18s ease;
}
.acceso-icon svg { width: 13px; height: 13px; }
.acceso-text { flex: 1; min-width: 0; }
.acceso-name {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--ps-azul);
  line-height: 1.2;
}
.acceso-desc {
  font-size: 10px;
  color: var(--ink-mute);
  margin-top: 1px;
  font-weight: 400;
  line-height: 1.2;
}
.acceso-arrow {
  flex-shrink: 0;
  width: 11px;
  height: 11px;
  color: var(--ink-mute);
  opacity: 0;
  transform: translate(-3px, 3px);
  transition: all 0.18s ease;
}
.acceso-card:hover {
  border-color: var(--ps-celeste);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(4,24,121,0.07);
}
.acceso-card:hover .acceso-icon { background: var(--ps-celeste); color: white; }
.acceso-card:hover .acceso-arrow { opacity: 1; transform: translate(0, 0); color: var(--ps-celeste); }
.accesos-grid-flat {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
}

@media (max-width: 900px) {
  .accesos-grid-flat { grid-template-columns: repeat(2, 1fr); gap: 5px; }
}

/* ── BANNER AUXILIO 24HS ──────────────────────────────────────────────────── */
.auxilio-banner {
  background: linear-gradient(135deg, var(--ps-azul) 0%, #0a2d8f 100%);
  padding: 12px 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.auxilio-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 14px;
}
.auxilio-pulse {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  position: relative;
}
.auxilio-pulse svg { width: 14px; height: 14px; }
.auxilio-pulse::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.3);
  animation: auxilioRing 2.4s ease-out infinite;
}
@keyframes auxilioRing {
  0%   { transform: scale(0.95); opacity: 1; }
  100% { transform: scale(1.4); opacity: 0; }
}
.auxilio-text { flex: 1; min-width: 0; }
.auxilio-eyebrow {
  font-size: 9px;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 1.3px;
  margin-bottom: 1px;
}
.auxilio-title {
  font-size: 13px;
  font-weight: 600;
  color: white;
  letter-spacing: -0.1px;
}
.auxilio-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: white;
  color: var(--ps-azul);
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-decoration: none;
  transition: all 0.2s ease;
  flex-shrink: 0;
}
.auxilio-cta:hover {
  background: var(--ps-celeste);
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(19,108,242,0.4);
}
@media (max-width: 700px) {
  .auxilio-banner { padding: 16px 20px; }
  .auxilio-inner { flex-wrap: wrap; gap: 12px; }
  .auxilio-cta { width: 100%; justify-content: center; }
}

/* ── SECTIONS GENERIC ─────────────────────────────────────────────────────── */
.section { padding: 80px 56px; }
.section-label {
  font-size: 11px;
  font-weight: 500;
  color: var(--ps-celeste);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Poppins', sans-serif;
  font-size: 42px;
  font-weight: 600;
  color: var(--ps-azul);
  margin-bottom: 14px;
  line-height: 1.1;
  letter-spacing: -1px;
}
.section-subtitle {
  font-size: 15px;
  color: var(--ink-soft);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 48px;
  font-weight: 400;
}

/* ── PRODUCTOS ────────────────────────────────────────────────────────────── */
.products-section { background: var(--bg-warm); }
.products-section .section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 40px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}
.products-section .section-head > div:first-child { flex: 1 1 360px; }
.products-section .section-subtitle {
  margin-bottom: 0;
  max-width: 380px;
  flex: 0 1 380px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 12px;
}
.product-card {
  background: white;
  border-radius: 14px;
  padding: 24px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  border: 1px solid var(--line);
  position: relative;
  text-decoration: none;
  display: block;
}
.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(4,24,121,0.08);
  border-color: var(--ps-celeste);
}
.product-arrow {
  position: absolute;
  top: 24px;
  right: 24px;
  color: #c4c8d2;
  transition: color 0.18s, transform 0.18s;
}
.product-arrow svg { width: 16px; height: 16px; }
.product-card:hover .product-arrow {
  color: var(--ps-celeste);
  transform: translateX(3px);
}
.product-icon {
  width: 46px; height: 46px;
  border-radius: 10px;
  background: #eef4ff;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  color: var(--ps-celeste);
}
.product-icon svg { width: 22px; height: 22px; }
.product-icon.is-emoji { font-size: 22px; }
.product-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--ps-azul);
  margin-bottom: 6px;
  line-height: 1.3;
}
.product-desc {
  font-size: 12px;
  color: var(--ink-mute);
  line-height: 1.55;
  font-weight: 400;
}
.product-link {
  display: none;
}

/* ── EMPRESA ──────────────────────────────────────────────────────────────── */
.empresa-section {
  background: white;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 40px;
}
.empresa-photo {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4/2.5;
  background: var(--ps-azul);
}
.empresa-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.empresa-photo-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(4,24,121,0.85));
  color: rgba(255,255,255,0.85);
  font-size: 11px;
  padding: 28px 18px 14px;
  font-weight: 400;
  letter-spacing: 0.3px;
}

.empresa-visual {
  display: none;
}
.empresa-text { }
.empresa-text > p,
.empresa-text .section-subtitle {
  margin-bottom: 32px;
}
.empresa-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 8px;
}
.empresa-feature {
  background: var(--bg-warm);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.empresa-feature-dot {
  display: none;
}
.empresa-feature-icon {
  color: var(--ps-celeste);
  margin-bottom: 8px;
}
.empresa-feature-icon svg { width: 20px; height: 20px; }
.empresa-feature-text { display: contents; }
.empresa-feature-text h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--ps-azul);
  margin-bottom: 4px;
}
.empresa-feature-text p {
  font-size: 12px;
  color: var(--ink-mute);
  line-height: 1.55;
}
.empresa-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
  padding: 12px 22px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ps-azul);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.18s;
  font-family: 'Poppins', sans-serif;
}
.empresa-link svg { width: 14px; height: 14px; transition: transform 0.18s; }
.empresa-link:hover {
  border-color: var(--ps-celeste);
  color: var(--ps-celeste);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(19,108,242,0.15);
}
.empresa-link:hover svg { transform: translateX(3px); }

/* ── CONTACTO ─────────────────────────────────────────────────────────────── */
.contacto-section {
  background-color: #041879;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  position: relative;
  overflow: hidden;
}
.contacto-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
}
.contacto-section::after {
  content: '';
  position: absolute;
  bottom: -180px;
  right: -180px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(19,108,242,0.35) 0%, transparent 65%);
  pointer-events: none;
}
.contacto-section > * { position: relative; z-index: 1; }
.contacto-section .section-label { color: var(--ps-celeste-claro); }
.contacto-section .section-title { color: white; }
.contacto-section .section-subtitle { color: rgba(255,255,255,0.6); margin-bottom: 32px; }

.contacto-left { }
.contacto-divider { display: none; }
.contacto-right { }

.contacto-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.contacto-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: stretch;
}
.contacto-item-icon {
  width: 22px; height: 22px;
  background: none;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--ps-celeste-claro);
  margin-bottom: 8px;
}
.contacto-item-icon svg { width: 22px; height: 22px; }
.contacto-item > div:last-child { flex: 1; min-width: 0; }
.contacto-item-label {
  font-size: 10px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 4px;
}
.contacto-item-value {
  font-size: 13px;
  color: white;
  font-weight: 500;
  word-break: break-word;
}
.contacto-item-value a { color: white; text-decoration: none; }
.contacto-item-value a:hover { text-decoration: underline; }

.contacto-horarios {
  margin-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contacto-horario-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}
.contacto-horario-dia { color: rgba(255,255,255,0.5); }
.contacto-horario-hora { color: white; font-weight: 500; }

.contacto-form {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 32px;
}
.form-title {
  font-size: 18px;
  font-weight: 600;
  color: white;
  margin-bottom: 6px;
}
.form-sub {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 24px;
}
.form-group { margin-bottom: 12px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 13px;
  color: white;
  font-family: 'Poppins', sans-serif;
  outline: none;
  transition: border-color 0.15s, background 0.15s;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.35); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--ps-celeste-claro);
  background: rgba(255,255,255,0.08);
}
.form-group select { color: rgba(255,255,255,0.7); }
.form-group select option { background: var(--ps-azul); color: white; }
.form-group textarea { resize: none; height: 80px; }
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
}
.form-check input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 17px;
  height: 17px;
  min-width: 17px;
  border: 2px solid rgba(255,255,255,0.35);
  border-radius: 4px;
  background: transparent;
  cursor: pointer;
  margin-top: 2px;
  transition: border-color 0.2s, background 0.2s;
}
.form-check input[type="checkbox"]:checked {
  background: var(--ps-celeste);
  border-color: var(--ps-celeste);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 10 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4l3 3 5-6' stroke='white' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px 8px;
}
.form-check label {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
  cursor: pointer;
}
.form-submit {
  width: 100%;
  background: var(--ps-celeste);
  color: white;
  border: none;
  padding: 13px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  transition: background 0.18s, transform 0.18s;
  margin-top: 6px;
  letter-spacing: 0.2px;
}
.form-submit:hover { background: #0d4fbd; transform: translateY(-1px); }

/* ── SSN NOTICE ───────────────────────────────────────────────────────────── */
.ssn-section {
  background: var(--bg-warm);
  padding: 32px 56px 36px;
  border-top: 1px solid var(--line);
}
.ssn-inner {
  max-width: 1180px;
  margin: 0 auto;
}
.ssn-card {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}
.ssn-card-head {
  padding-bottom: 14px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.ssn-card-eyebrow {
  font-size: 10px;
  font-weight: 600;
  color: var(--ps-celeste);
  text-transform: uppercase;
  letter-spacing: 1.4px;
  margin-bottom: 4px;
}
.ssn-card-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--ps-azul);
  line-height: 1.4;
  max-width: 720px;
}
.ssn-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto;
  gap: 20px;
  align-items: center;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.ssn-col-divider {
  width: 1px;
  height: 28px;
  background: var(--line);
}
.ssn-col-label {
  font-size: 10px;
  color: var(--ink-mute);
  margin-bottom: 4px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}
.ssn-col-value {
  font-size: 13px;
  color: var(--ps-azul);
  font-weight: 600;
  letter-spacing: -0.2px;
}
.ssn-col-value a { color: var(--ps-azul); text-decoration: none; transition: color 0.15s; }
.ssn-col-value a:hover { color: var(--ps-celeste); }
.ssn-logo-col { justify-self: end; padding-left: 8px; }
.ssn-logo-link { display: block; }
.ssn-logo-link:hover { opacity: 0.8; }
.ssn-logo-link svg { height: 36px; width: auto; display: block; }

.ssn-roles {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px dashed var(--line);
}
.ssn-role {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.ssn-role-label {
  font-size: 9px;
  color: var(--ink-mute);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: 500;
}
.ssn-role-value {
  font-size: 12px;
  color: var(--ink);
  font-weight: 600;
}
.ssn-paragraph {
  font-size: 11.5px;
  color: var(--ink-mute);
  line-height: 1.6;
  font-weight: 400;
  max-width: 920px;
}
.ssn-paragraph a { color: var(--ps-celeste); text-decoration: none; font-weight: 500; }
.ssn-paragraph a:hover { text-decoration: underline; }

/* ── FOOTER ───────────────────────────────────────────────────────────────── */
.footer {
  background: #050d24;
  padding: 56px 56px 24px;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--ps-azul) 0%, var(--ps-celeste) 50%, var(--ps-celeste-claro) 100%);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.1fr 2fr;
  gap: 60px;
  margin-bottom: 36px;
}
.footer-brand { }
.footer-logo { margin-bottom: 16px; }
.footer-logo img { height: 100px; width: auto; display: block; }
.footer-social { display: flex; gap: 8px; margin-top: 20px; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: all 0.15s;
  font-weight: 500;
}
.footer-social a:hover {
  background: var(--ps-celeste);
  color: white;
  transform: translateY(-2px);
}
.footer-brand p {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  font-weight: 400;
  max-width: 320px;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer-col h5 {
  font-size: 11px;
  font-weight: 600;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 18px;
}
.footer-col a {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.15s;
}
.footer-col a:hover { color: white; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a { color: rgba(255,255,255,0.45); text-decoration: none; }
.footer-bottom a:hover { color: white; }

/* ── FOOTER CERTS ───────────────────────────────────────────────────────── */
.footer-certs {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,0.07);
  justify-content: flex-end;
}
.fcert-iso {
  display: flex;
  align-items: center;
  gap: 9px;
  background: white;
  border-radius: 5px;
  padding: 5px 10px;
  height: 36px;
  box-sizing: border-box;
}
.fcert-iso-text { display: flex; flex-direction: column; gap: 1px; }
.fcert-certified {
  font-size: 6.5px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #444;
  text-transform: uppercase;
  line-height: 1;
}
.fcert-norm {
  font-size: 13px;
  font-weight: 800;
  color: #111;
  letter-spacing: 0;
  line-height: 1.1;
}
.fcert-sep { width: 1px; height: 22px; background: #ddd; }
.fcert-bv { display: flex; align-items: center; gap: 5px; }
.fcert-bv svg { width: 18px; height: 18px; }
.fcert-bv-name {
  display: flex;
  flex-direction: column;
  font-size: 6px;
  font-weight: 700;
  letter-spacing: 0.6px;
  color: #333;
  text-transform: uppercase;
  line-height: 1.3;
}
.fcert-fiscal {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  background: #0ea5e9;
  border-radius: 5px;
  padding: 4px 7px;
  text-decoration: none;
  height: 36px;
  width: 44px;
  box-sizing: border-box;
  transition: opacity 0.15s;
}
.fcert-fiscal:hover { opacity: 0.85; }
.fcert-fiscal-qr { width: 22px; height: auto; flex: 1; }
.fcert-fiscal-label {
  font-size: 6.5px;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: white;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.15;
}

/* ── NAV MOBILE PRODUCTORES ─────────────────────────────────────────────── */
.nav-link-mob-prod { display: none; }

/* ── FADE-IN ─────────────────────────────────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-in { opacity: 0; transform: translateY(40px); }
.fade-in.visible { animation: fadeInUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards; }

@keyframes heroEntrance {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroSlideIn {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}
.hero-badge   { animation: heroEntrance 0.7s cubic-bezier(0.16, 1, 0.3, 1) both; animation-delay: 0.05s; }
.hero h1      { animation: heroEntrance 0.8s cubic-bezier(0.16, 1, 0.3, 1) both; animation-delay: 0.2s; }
.hero p       { animation: heroEntrance 0.8s cubic-bezier(0.16, 1, 0.3, 1) both; animation-delay: 0.35s; }
.hero-actions { animation: heroEntrance 0.8s cubic-bezier(0.16, 1, 0.3, 1) both; animation-delay: 0.5s; }
.hero-stats   { animation: heroEntrance 0.8s cubic-bezier(0.16, 1, 0.3, 1) both; animation-delay: 0.65s; }
.hero-visual > * { animation: heroSlideIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) both; }
.hero-visual > *:nth-child(1) { animation-delay: 0.3s; }
.hero-visual > *:nth-child(2) { animation-delay: 0.45s; }

/* ── WHATSAPP FLOTANTE (igual que antes) ──────────────────────────────────── */
@keyframes waPulse {
  0%   { box-shadow: 0 4px 20px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0.4); }
  70%  { box-shadow: 0 4px 20px rgba(37,211,102,0.45), 0 0 0 14px rgba(37,211,102,0); }
  100% { box-shadow: 0 4px 20px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0); }
}
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  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,0.45);
  z-index: 999;
  text-decoration: none;
  animation: waPulse 2.5s ease-out infinite;
  transition: transform 0.2s, box-shadow 0.2s;
}
.wa-float svg { width: 30px; height: 30px; flex-shrink: 0; }
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.6);
  animation: none;
}
.wa-tooltip {
  position: absolute;
  right: 68px;
  background: var(--ps-azul);
  color: white;
  font-size: 12px;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
  font-family: 'Poppins', sans-serif;
}
.wa-tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--ps-azul);
}
.wa-float:hover .wa-tooltip { opacity: 1; }

/* ── RESPONSIVE ───────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; }
  .hero-left { padding: 60px 32px; }
  .hero-visual { padding: 32px; flex-direction: row; }
  .hero-visual > * { flex: 1; }
  .empresa-section { grid-template-columns: 1fr; }
  .empresa-photo { aspect-ratio: 16/9; max-height: 360px; }
  .contacto-section { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .topbar { padding: 8px 32px; font-size: 11px; }
  .navbar { padding: 0 32px; }
  .accesos { padding: 24px 32px; }
  .section { padding: 64px 32px; }
  .ssn-section { padding: 24px 32px; }
  .footer { padding: 48px 32px 20px; }
}

@media (max-width: 768px) {
  .topbar { display: none; }
  .navbar { padding: 0 20px; }
  .nav-logo img { height: 50px; }
  .navbar--scrolled .nav-logo img { height: 44px; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: white;
    flex-direction: column;
    gap: 0;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 6px 20px rgba(4,24,121,0.08);
    z-index: 99;
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    padding: 14px 20px;
    border-bottom: 1px solid var(--line);
    width: 100%;
  }
  .nav-links a::after { display: none; }
  .nav-links a:last-child { border-bottom: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .hero-left { padding: 56px 20px 48px; }
  .hero h1 { font-size: 36px; }
  .hero p { font-size: 14px; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .hero-visual { padding: 24px 20px 48px; flex-direction: column; }
  .accesos { padding: 22px 20px; }
  .section { padding: 56px 20px; }
  .empresa-section { gap: 32px; }
  .empresa-features { grid-template-columns: 1fr; }
  .contacto-section { gap: 32px; }
  .contacto-items { grid-template-columns: 1fr; }
  .ssn-section { padding: 32px 20px; }
  .ssn-card { padding: 24px 22px; border-radius: 12px; }
  .ssn-card-title { font-size: 16px; }
  .ssn-grid { grid-template-columns: 1fr; gap: 18px; }
  .ssn-col-divider { display: none; }
  .ssn-logo-col { justify-self: start; padding-left: 0; margin-top: 4px; }
  .ssn-roles { gap: 20px; }
  .footer { padding: 40px 20px 20px; }
  .footer-cols { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .footer-certs { justify-content: center; }
  .nav-link-mob-prod { display: block; }
  .products-section .section-head { gap: 16px; }
  .products-section .section-subtitle { max-width: none; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 30px; }
  .section-title { font-size: 32px; }
  .hero-actions { width: 100%; }
  .hero-actions .btn-primary, .hero-actions .btn-outline { flex: 1; justify-content: center; }
  .footer-cols { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .contacto-form { padding: 24px; }
}
