/* =============================================
   VARIABLES Y BASE
============================================= */
:root {
  --azul-noche:   #1A1A2E;
  --azul-billar:  #16213E;
  --azul-medio:   #0F3460;
  --oro:          #C9A84C;
  --oro-suave:    #E8D5A3;
  --verde-pano:   #2D6A4F;
  --verde-claro:  #40916C;
  --blanco-hueso: #F5F5F0;
  --gris-texto:   #9CA3AF;
  --font-serif:   'Playfair Display', Georgia, serif;
  --font-sans:    'DM Sans', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--azul-noche);
  color: var(--blanco-hueso);
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: var(--font-serif); }

a { text-decoration: none; color: inherit; }

.oro   { color: var(--oro); }
.serif { font-family: var(--font-serif); }

/* =============================================
   NAVBAR
============================================= */
.navbar-zb {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(26, 26, 46, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  padding: 0.75rem 0;
  transition: background 0.3s;
}

.navbar-zb .logo img {
  height: 42px;
  object-fit: contain;
}

.navbar-zb .nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.navbar-zb .nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--oro-suave);
  letter-spacing: 0.03em;
  transition: color 0.2s;
  position: relative;
}

.navbar-zb .nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--oro);
  transition: width 0.3s;
}

.navbar-zb .nav-links a:hover           { color: var(--oro); }
.navbar-zb .nav-links a:hover::after    { width: 100%; }

.btn-cotizar-nav {
  background: var(--oro);
  color: var(--azul-noche) !important;
  font-weight: 700 !important;
  padding: 0.45rem 1.2rem;
  border-radius: 6px;
  font-size: 0.82rem !important;
  letter-spacing: 0.05em;
  transition: background 0.2s, transform 0.15s !important;
}

.btn-cotizar-nav:hover {
  background: var(--oro-suave) !important;
  transform: translateY(-1px);
}

.btn-cotizar-nav::after { display: none !important; }

/* Hamburguesa móvil */
.navbar-toggler-zb {
  background: none;
  border: 1px solid rgba(201, 168, 76, 0.4);
  border-radius: 6px;
  padding: 0.35rem 0.5rem;
  cursor: pointer;
}

.navbar-toggler-zb .ti {
  font-size: 1.4rem;
  color: var(--oro);
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(201, 168, 76, 0.15);
  margin-top: 0.5rem;
}

.nav-mobile.open { display: flex; }

.nav-mobile a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--oro-suave);
  padding: 0.4rem 0;
  transition: color 0.2s;
}

.nav-mobile a:hover { color: var(--oro); }

/* =============================================
   HERO
============================================= */
.hero {
  min-height: 100vh;
  background: var(--azul-billar);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 70% 50%, rgba(45, 106, 79, 0.18) 0%, transparent 60%),
    radial-gradient(circle at 20% 80%, rgba(201, 168, 76, 0.08) 0%, transparent 50%);
}

.hero::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 45%;
  height: 100%;
  background: linear-gradient(135deg, transparent 40%, rgba(45, 106, 79, 0.06) 100%);
  border-left: 1px solid rgba(201, 168, 76, 0.08);
}

.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--oro);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--oro);
}

.hero h1 {
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--blanco-hueso);
  margin-bottom: 1.5rem;
}

.hero h1 em {
  font-style: italic;
}

/* ===================================================
   Catálogo page styles
=================================================== */
.page-hero {
  background: var(--azul-billar);
  padding: 8rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 80% 50%, rgba(45,106,79,0.12) 0%, transparent 60%),
    radial-gradient(circle at 10% 80%, rgba(201,168,76,0.06) 0%, transparent 50%);
}

.page-hero-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--oro);
  margin-bottom: 0.75rem;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--blanco-hueso);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.page-hero-desc {
  font-size: 1rem;
  color: var(--gris-texto);
  line-height: 1.7;
  max-width: 500px;
}

.nosotros-page .page-hero {
  background: var(--azul-billar);
  padding: 8rem 0 3.5rem;
  position: relative;
  overflow: hidden;
}

.nosotros-page .page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 78% 40%, rgba(45,106,79,0.15) 0%, transparent 60%),
    radial-gradient(circle at 12% 75%, rgba(201,168,76,0.07) 0%, transparent 50%);
}

.nosotros-page .page-hero .container,
.nosotros-page .valores-section .container,
.nosotros-page .cta-nosotros .container {
  position: relative;
  z-index: 1;
}

.nosotros-page .page-hero-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--oro);
  margin-bottom: 0.75rem;
}

.nosotros-page .page-hero h1 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--blanco-hueso);
  line-height: 1.15;
  margin-bottom: 0.75rem;
}

.nosotros-page .page-hero-desc {
  font-size: 0.95rem;
  color: var(--gris-texto);
  line-height: 1.7;
  max-width: 480px;
}

.nosotros-page .navbar-zb .nav-links a.active,
.nosotros-page .nav-mobile a.active {
  color: var(--oro);
}

.nosotros-page .nav-mobile .btn-primary-zb {
  width: fit-content;
  margin-top: 0.25rem;
}

.nosotros-page .btn-cotizar-nav .ti {
  font-size: 0.85rem;
}

.nosotros-page .historia-note {
  font-size: 0.68rem;
  opacity: 0.6;
}

.nosotros-page .cta-nosotros .section-title {
  max-width: 520px;
  margin: 0 auto 0.75rem;
  text-align: center;
}

.nosotros-page .cta-nosotros .section-subtitle {
  margin-bottom: 2rem;
  text-align: center;
}

.nosotros-page .historia-section {
  background: var(--azul-noche);
  padding: 5rem 0;
}

.nosotros-page .historia-text {
  font-size: 0.95rem;
  color: var(--gris-texto);
  line-height: 1.85;
}

.nosotros-page .historia-text p {
  margin-bottom: 1.1rem;
}

.nosotros-page .historia-text p:last-child {
  margin-bottom: 0;
}

.nosotros-page .historia-text strong {
  color: var(--oro-suave);
  font-weight: 600;
}

.nosotros-page .historia-img-wrap {
  position: relative;
}

.nosotros-page .historia-img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--azul-medio) 0%, rgba(45,106,79,0.25) 100%);
  border-radius: 14px;
  border: 1px solid rgba(201,168,76,0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  color: rgba(201,168,76,0.3);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nosotros-page .historia-img-placeholder .ti {
  font-size: 3rem;
}

.nosotros-page .historia-badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--oro);
  color: var(--azul-noche);
  border-radius: 10px;
  padding: 0.9rem 1.2rem;
  font-weight: 700;
  font-size: 0.78rem;
  line-height: 1.3;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  box-shadow: 0 8px 24px rgba(201,168,76,0.3);
}

.nosotros-page .cifras-section {
  background: var(--azul-billar);
  padding: 4rem 0;
  border-top: 1px solid rgba(201,168,76,0.1);
  border-bottom: 1px solid rgba(201,168,76,0.1);
}

.nosotros-page .cifra-item {
  text-align: center;
  padding: 1rem;
}

.nosotros-page .cifra-num {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--oro);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.nosotros-page .cifra-label {
  font-size: 0.8rem;
  color: var(--gris-texto);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.4;
}

.nosotros-page .cifras-divider {
  width: 1px;
  height: 56px;
  background: rgba(201,168,76,0.18);
  margin: auto;
}

.nosotros-page .mvv-section {
  background: var(--azul-noche);
  padding: 5rem 0;
}

.nosotros-page .mvv-card {
  background: rgba(15,52,96,0.3);
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: 16px;
  padding: 2rem 1.75rem;
  height: 100%;
  transition: border-color 0.3s, transform 0.3s;
}

.nosotros-page .mvv-card:hover {
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-4px);
}

.nosotros-page .mvv-icon {
  width: 52px;
  height: 52px;
  border-radius: 13px;
  background: rgba(201,168,76,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
  transition: background 0.3s;
}

.nosotros-page .mvv-card:hover .mvv-icon {
  background: rgba(201,168,76,0.2);
}

.nosotros-page .mvv-icon .ti {
  font-size: 1.5rem;
  color: var(--oro);
}

.nosotros-page .mvv-eyebrow {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--oro);
  margin-bottom: 0.4rem;
}

.nosotros-page .mvv-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--blanco-hueso);
  margin-bottom: 0.75rem;
}

.nosotros-page .mvv-text {
  font-size: 0.87rem;
  color: var(--gris-texto);
  line-height: 1.75;
}

.nosotros-page .valores-section {
  background: var(--azul-billar);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.nosotros-page .valores-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 10% 50%, rgba(45,106,79,0.12) 0%, transparent 55%),
    radial-gradient(circle at 90% 50%, rgba(201,168,76,0.06) 0%, transparent 50%);
}

.nosotros-page .valor-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  border-radius: 12px;
  border: 1px solid rgba(201,168,76,0.08);
  background: rgba(15,52,96,0.2);
  height: 100%;
  transition: border-color 0.3s;
}

.nosotros-page .valor-item:hover {
  border-color: rgba(201,168,76,0.28);
}

.nosotros-page .valor-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(201,168,76,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nosotros-page .valor-icon .ti {
  font-size: 1.1rem;
  color: var(--oro);
}

.nosotros-page .valor-nombre {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--blanco-hueso);
  margin-bottom: 0.25rem;
}

.nosotros-page .valor-desc {
  font-size: 0.8rem;
  color: var(--gris-texto);
  line-height: 1.6;
}

.nosotros-page .timeline-section {
  background: var(--azul-noche);
  padding: 5rem 0;
}

.nosotros-page .timeline {
  position: relative;
  padding-left: 2rem;
}

.nosotros-page .timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: linear-gradient(to bottom,
    var(--oro) 0%,
    rgba(201,168,76,0.3) 100%);
  border-radius: 2px;
}

.nosotros-page .timeline-item {
  position: relative;
  margin-bottom: 2.5rem;
  padding-left: 1.5rem;
}

.nosotros-page .timeline-item:last-child {
  margin-bottom: 0;
}

.nosotros-page .timeline-dot {
  position: absolute;
  left: -2.45rem;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--oro);
  border: 3px solid var(--azul-noche);
  box-shadow: 0 0 0 2px rgba(201,168,76,0.3);
}

.nosotros-page .timeline-year {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--oro);
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}

.nosotros-page .timeline-title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--blanco-hueso);
  margin-bottom: 0.3rem;
}

.nosotros-page .timeline-desc {
  font-size: 0.85rem;
  color: var(--gris-texto);
  line-height: 1.65;
}

.nosotros-page .equipo-section {
  background: var(--azul-billar);
  padding: 5rem 0;
}

.nosotros-page .miembro-card {
  background: rgba(15,52,96,0.3);
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: 14px;
  overflow: hidden;
  text-align: center;
  height: 100%;
  transition: border-color 0.3s, transform 0.3s;
}

.nosotros-page .miembro-card:hover {
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-4px);
}

.nosotros-page .miembro-foto {
  width: 100%;
  aspect-ratio: 1/1;
  background: linear-gradient(135deg, var(--azul-medio) 0%, rgba(45,106,79,0.25) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(201,168,76,0.2);
}

.nosotros-page .miembro-foto .ti {
  font-size: 3.5rem;
}

.nosotros-page .miembro-foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nosotros-page .miembro-body {
  padding: 1.25rem 1.2rem 1.5rem;
}

.nosotros-page .miembro-nombre {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--blanco-hueso);
  margin-bottom: 0.2rem;
}

.nosotros-page .miembro-cargo {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--oro);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.65rem;
}

.nosotros-page .miembro-bio {
  font-size: 0.82rem;
  color: var(--gris-texto);
  line-height: 1.65;
}

.nosotros-page .cta-nosotros {
  background: var(--azul-noche);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.nosotros-page .cta-nosotros::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(45,106,79,0.15) 0%, transparent 55%),
    radial-gradient(circle at 80% 50%, rgba(201,168,76,0.07) 0%, transparent 50%);
}

.servicios-page .page-hero {
  background: var(--azul-billar);
  padding: 8rem 0 3.5rem;
  position: relative;
  overflow: hidden;
}

.servicios-page .page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 80% 40%, rgba(45,106,79,0.15) 0%, transparent 60%),
    radial-gradient(circle at 10% 75%, rgba(201,168,76,0.07) 0%, transparent 50%);
}

.servicios-page .page-hero .container,
.servicios-page .por-que-section .container,
.servicios-page .cta-servicios .container {
  position: relative;
  z-index: 1;
}

.servicios-page .page-hero-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--oro);
  margin-bottom: 0.75rem;
}

.servicios-page .page-hero h1 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--blanco-hueso);
  line-height: 1.15;
  margin-bottom: 0.75rem;
}

.servicios-page .page-hero-desc {
  font-size: 0.95rem;
  color: var(--gris-texto);
  line-height: 1.7;
  max-width: 480px;
}

.navbar-zb .nav-links a.active,
.nav-mobile a.active {
  color: var(--oro);
}

.nav-mobile .btn-primary-zb {
  width: fit-content;
  margin-top: 0.25rem;
}

.servicio-tag .ti {
  font-size: 0.8rem;
}

.btn-cotizar-nav .ti {
  font-size: 0.85rem;
}

.servicios-principales {
  background: var(--azul-noche);
  padding: 5rem 0;
}

.servicio-grande {
  background: rgba(15,52,96,0.3);
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.servicio-grande:hover {
  border-color: rgba(201,168,76,0.35);
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.3);
}

.servicio-grande-header {
  padding: 2rem 2rem 1.5rem;
  border-bottom: 1px solid rgba(201,168,76,0.08);
}

.servicio-grande-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(201,168,76,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: background 0.3s;
}

.servicio-grande:hover .servicio-grande-icon {
  background: rgba(201,168,76,0.2);
}

.servicio-grande-icon .ti {
  font-size: 1.6rem;
  color: var(--oro);
}

.servicio-grande-num {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--oro);
  margin-bottom: 0.4rem;
}

.servicio-grande-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--blanco-hueso);
  margin-bottom: 0.5rem;
}

.servicio-grande-desc {
  font-size: 0.875rem;
  color: var(--gris-texto);
  line-height: 1.75;
}

.servicio-grande-body {
  padding: 1.5rem 2rem 2rem;
}

.servicio-lista {
  list-style: none;
  padding: 0; margin: 0 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.servicio-lista li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--gris-texto);
  line-height: 1.5;
}

.servicio-lista li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--oro);
  flex-shrink: 0;
  margin-top: 6px;
}

.servicio-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  border: 1px solid rgba(201,168,76,0.25);
  color: var(--oro-suave);
  margin-right: 0.4rem;
  margin-bottom: 0.4rem;
}

.por-que-section {
  background: var(--azul-billar);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.por-que-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 50%, rgba(45,106,79,0.12) 0%, transparent 55%),
    radial-gradient(circle at 85% 50%, rgba(201,168,76,0.06) 0%, transparent 50%);
}

.razon-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: 14px;
  border: 1px solid rgba(201,168,76,0.1);
  background: rgba(15,52,96,0.25);
  height: 100%;
  transition: border-color 0.3s;
}

.razon-card:hover { border-color: rgba(201,168,76,0.3); }

.razon-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: rgba(201,168,76,0.2);
  line-height: 1;
  flex-shrink: 0;
  width: 40px;
  text-align: center;
}

.razon-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--blanco-hueso);
  margin-bottom: 0.35rem;
}

.razon-desc {
  font-size: 0.83rem;
  color: var(--gris-texto);
  line-height: 1.65;
}

.accesorios-section {
  background: var(--azul-noche);
  padding: 5rem 0;
}

.accesorio-card {
  background: rgba(15,52,96,0.3);
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: 12px;
  padding: 1.5rem 1.25rem;
  text-align: center;
  height: 100%;
  transition: border-color 0.3s, transform 0.3s;
}

.accesorio-card:hover {
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-3px);
}

.accesorio-icon {
  font-size: 2rem;
  color: var(--oro);
  display: block;
  margin-bottom: 0.75rem;
}

.accesorio-nombre {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--blanco-hueso);
  margin-bottom: 0.3rem;
}

.accesorio-desc {
  font-size: 0.78rem;
  color: var(--gris-texto);
  line-height: 1.55;
}

.cta-servicios {
  background: var(--azul-billar);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.cta-servicios::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(45,106,79,0.15) 0%, transparent 55%),
    radial-gradient(circle at 80% 50%, rgba(201,168,76,0.07) 0%, transparent 50%);
}

.cta-servicios .section-title {
  max-width: 520px;
  margin: 0 auto 0.75rem;
  text-align: center;
}

.cta-servicios .section-subtitle {
  margin-bottom: 2rem;
  text-align: center;
}

/* =============================================
   COTIZAR PAGE
============================================= */
.cotizar-page .page-hero {
  background: var(--azul-billar);
  padding: 8rem 0 3.5rem;
  position: relative;
  overflow: hidden;
}

.cotizar-page .page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 75% 50%, rgba(45,106,79,0.14) 0%, transparent 60%),
    radial-gradient(circle at 15% 80%, rgba(201,168,76,0.07) 0%, transparent 50%);
}

.cotizar-page .page-hero .container {
  z-index: 1;
}

.cotizar-page .page-hero-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--oro);
  margin-bottom: 0.75rem;
}

.cotizar-page .page-hero h1 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--blanco-hueso);
  line-height: 1.15;
  margin-bottom: 0.75rem;
}

.cotizar-page .page-hero-desc {
  font-size: 0.95rem;
  color: var(--gris-texto);
  line-height: 1.7;
  max-width: 480px;
}

.cotizar-page .stepper-section {
  background: var(--azul-noche);
  padding: 2.5rem 0 0;
}

.cotizar-page .stepper {
  display: flex;
  align-items: center;
  max-width: 480px;
  margin: 0 auto;
}

.cotizar-page .step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.cotizar-page .step-bubble {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 700;
  transition: background 0.3s, color 0.3s;
}

.cotizar-page .step-bubble.pending  { background: rgba(201,168,76,0.12); color: var(--gris-texto); }
.cotizar-page .step-bubble.active   { background: var(--oro); color: var(--azul-noche); }
.cotizar-page .step-bubble.done     { background: var(--verde-pano); color: white; }

.cotizar-page .step-name {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.cotizar-page .step-name.pending { color: var(--gris-texto); }
.cotizar-page .step-name.active  { color: var(--oro); }
.cotizar-page .step-name.done    { color: var(--verde-claro); }

.cotizar-page .step-line {
  flex: 1;
  height: 2px;
  border-radius: 2px;
  margin-bottom: 20px;
  transition: background 0.3s;
}

.cotizar-page .step-line.done    { background: var(--verde-pano); }
.cotizar-page .step-line.pending { background: rgba(201,168,76,0.15); }

.cotizar-page .cotizar-section {
  background: var(--azul-noche);
  padding: 2rem 0 5rem;
}

.cotizar-page .paso-panel {
  display: none;
}

.cotizar-page .paso-panel.activo {
  display: block;
  animation: fadeInUp 0.35s ease both;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.cotizar-page .paso-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--blanco-hueso);
  margin-bottom: 0.3rem;
}

.cotizar-page .paso-subtitle {
  font-size: 0.88rem;
  color: var(--gris-texto);
  margin-bottom: 1.75rem;
}

.cotizar-page .tipo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 576px) {
  .cotizar-page .tipo-grid { grid-template-columns: repeat(4, 1fr); }
}

.cotizar-page .tipo-card {
  background: rgba(15,52,96,0.35);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 12px;
  padding: 1.25rem 0.75rem;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.25s, background 0.25s, transform 0.2s;
}

.cotizar-page .tipo-card:hover {
  border-color: rgba(201,168,76,0.4);
  transform: translateY(-2px);
}

.cotizar-page .tipo-card.selected {
  border-color: var(--oro);
  background: rgba(201,168,76,0.08);
}

.cotizar-page .tipo-card .ti {
  font-size: 1.75rem;
  color: var(--gris-texto);
  display: block;
  margin-bottom: 0.5rem;
  transition: color 0.25s;
}

.cotizar-page .tipo-card.selected .ti { color: var(--oro); }

.cotizar-page .tipo-card-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--blanco-hueso);
  margin-bottom: 0.2rem;
}

.cotizar-page .tipo-card-sub {
  font-size: 0.72rem;
  color: var(--gris-texto);
  line-height: 1.4;
}

.cotizar-page .opcion-grupo-cot { margin-bottom: 1.25rem; }

.cotizar-page .opcion-label-cot {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gris-texto);
  margin-bottom: 0.5rem;
}

.cotizar-page .pills-wrap {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.cotizar-page .pill-cot {
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.4rem 1rem;
  border-radius: 8px;
  border: 1px solid rgba(201,168,76,0.2);
  background: transparent;
  color: var(--gris-texto);
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--font-sans);
}

.cotizar-page .pill-cot:hover {
  border-color: rgba(201,168,76,0.45);
  color: var(--oro-suave);
}

.cotizar-page .pill-cot.selected {
  border-color: var(--oro);
  color: var(--oro);
  background: rgba(201,168,76,0.08);
  font-weight: 600;
}

.cotizar-page .campo-grupo { margin-bottom: 1.1rem; }

.cotizar-page .campo-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gris-texto);
  margin-bottom: 0.4rem;
  display: block;
}

.cotizar-page .campo-label .req { color: var(--oro); margin-left: 2px; }

.cotizar-page .campo-input,
.cotizar-page .campo-select,
.cotizar-page .campo-textarea {
  width: 100%;
  background: rgba(15,52,96,0.3);
  border: 1px solid rgba(201,168,76,0.18);
  border-radius: 8px;
  padding: 0.7rem 1rem;
  font-size: 0.88rem;
  font-family: var(--font-sans);
  color: var(--blanco-hueso);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.cotizar-page .campo-input::placeholder,
.cotizar-page .campo-textarea::placeholder { color: rgba(156,163,175,0.5); }

.cotizar-page .campo-input:focus,
.cotizar-page .campo-select:focus,
.cotizar-page .campo-textarea:focus {
  border-color: var(--oro);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}

.cotizar-page .campo-input.error,
.cotizar-page .campo-select.error,
.cotizar-page .campo-textarea.error {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239,68,68,0.1);
}

.cotizar-page .campo-select { cursor: pointer; }
.cotizar-page .campo-select option { background: var(--azul-noche); color: var(--blanco-hueso); }

.cotizar-page .campo-textarea { height: 90px; resize: vertical; }

.cotizar-page .campo-error {
  font-size: 0.75rem;
  color: #f87171;
  margin-top: 0.3rem;
  display: none;
}

.cotizar-page .campo-error.visible { display: block; }

.cotizar-page .privacidad-wrap {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 1.5rem;
  cursor: pointer;
}

.cotizar-page .privacidad-wrap input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--oro);
  flex-shrink: 0;
  margin-top: 2px;
  cursor: pointer;
}

.cotizar-page .privacidad-texto {
  font-size: 0.8rem;
  color: var(--gris-texto);
  line-height: 1.5;
}

.cotizar-page .privacidad-texto a {
  color: var(--oro-suave);
  text-decoration: underline;
}

.cotizar-page .paso-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: 0.5rem;
}

.cotizar-page .btn-paso-back {
  background: transparent;
  color: var(--gris-texto);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.75rem 1.4rem;
  border-radius: 8px;
  border: 1px solid rgba(201,168,76,0.2);
  cursor: pointer;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-sans);
}

.cotizar-page .btn-paso-back:hover {
  border-color: rgba(201,168,76,0.4);
  color: var(--oro-suave);
}

.cotizar-page .btn-paso-next {
  background: var(--oro);
  color: var(--azul-noche);
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.8rem 1.8rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-sans);
}

.cotizar-page .btn-paso-next:hover {
  background: var(--oro-suave);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.25);
}

.cotizar-page .resumen-panel {
  background: rgba(15,52,96,0.3);
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: 14px;
  padding: 1.5rem;
  position: sticky;
  top: 90px;
}

.cotizar-page .resumen-titulo {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--oro);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cotizar-page .resumen-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(201,168,76,0.07);
  font-size: 0.83rem;
}

.cotizar-page .resumen-row:last-child { border-bottom: none; }

.cotizar-page .resumen-key { color: var(--gris-texto); }

.cotizar-page .resumen-val {
  color: var(--blanco-hueso);
  font-weight: 500;
  text-align: right;
}

.cotizar-page .resumen-val.placeholder { color: rgba(156,163,175,0.4); font-style: italic; font-weight: 400; }

.cotizar-page .resumen-nota {
  margin-top: 1rem;
  font-size: 0.75rem;
  color: var(--gris-texto);
  line-height: 1.6;
  padding-top: 1rem;
  border-top: 1px solid rgba(201,168,76,0.08);
}

.cotizar-page .exito-wrap {
  text-align: center;
  padding: 3rem 1rem;
}

.cotizar-page .exito-icon {
  width: 72px;
  height: 72px;
  background: rgba(45,106,79,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  border: 1px solid rgba(45,106,79,0.35);
}

.cotizar-page .exito-icon .ti {
  font-size: 2.25rem;
  color: var(--verde-claro);
}

.cotizar-page .exito-titulo {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--blanco-hueso);
  margin-bottom: 0.75rem;
}

.cotizar-page .exito-desc {
  font-size: 0.95rem;
  color: var(--gris-texto);
  line-height: 1.75;
  max-width: 420px;
  margin: 0 auto 2rem;
}

.cotizar-page .exito-btns {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-fit-content {
  width: fit-content;
  margin-top: 0.25rem;
}

.btn-cotizar-nav.btn-cotizar-nav--active {
  background: var(--verde-pano);
  border-color: var(--verde-pano);
}

.btn-cotizar-nav .ti {
  font-size: 0.85rem;
}

.text-oro-suave {
  color: var(--oro-suave);
}

.icon-oro {
  color: var(--oro);
  vertical-align: middle;
}

.link-inherit {
  color: inherit;
}

/* =============================================
   FILTROS
============================================= */
.filtros-section {
  background: var(--azul-noche);
  padding: 2rem 0;
  position: sticky;
  top: 66px;
  z-index: 100;
  border-bottom: 1px solid rgba(201,168,76,0.1);
}

.filtros-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.filtro-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gris-texto);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-right: 0.5rem;
  flex-shrink: 0;
}

.filtro-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  border: 1px solid rgba(201,168,76,0.25);
  color: var(--gris-texto);
  background: transparent;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.filtro-pill:hover {
  border-color: rgba(201,168,76,0.5);
  color: var(--oro-suave);
}

.filtro-pill.active {
  background: var(--oro);
  border-color: var(--oro);
  color: var(--azul-noche);
  font-weight: 700;
}

.filtros-divider {
  width: 1px;
  height: 24px;
  background: rgba(201,168,76,0.2);
  margin: 0 0.5rem;
  flex-shrink: 0;
}

.orden-select {
  background: transparent;
  border: 1px solid rgba(201,168,76,0.25);
  color: var(--gris-texto);
  font-size: 0.8rem;
  font-family: var(--font-sans);
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  cursor: pointer;
  outline: none;
  transition: border-color 0.2s;
  margin-left: auto;
}

.orden-select:hover { border-color: rgba(201,168,76,0.5); }
.orden-select option { background: var(--azul-noche); color: var(--blanco-hueso); }

/* contador de resultados */
.resultados-count {
  font-size: 0.78rem;
  color: var(--gris-texto);
  margin-left: 0.25rem;
}

/* =============================================
   GRID DE CATÁLOGO
============================================= */
.catalogo-grid-section {
  background: var(--azul-noche);
  padding: 3rem 0 5rem;
}

/* reutiliza .product-card del styles.css global */

/* estado vacío cuando no hay resultados */
.empty-state {
  text-align: center;
  padding: 4rem 2rem;
  display: none;
}

.empty-state .ti {
  font-size: 3rem;
  color: rgba(201,168,76,0.2);
  margin-bottom: 1rem;
  display: block;
}

.empty-state p {
  font-size: 0.95rem;
  color: var(--gris-texto);
}

/* =============================================
   PAGINACIÓN
============================================= */
.paginacion {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.4rem;
  margin-top: 3rem;
}

.pag-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid rgba(201,168,76,0.2);
  background: transparent;
  color: var(--gris-texto);
  font-size: 0.85rem;
  font-family: var(--font-sans);
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pag-btn:hover {
  border-color: rgba(201,168,76,0.5);
  color: var(--oro-suave);
}

.pag-btn.active {
  background: var(--oro);
  border-color: var(--oro);
  color: var(--azul-noche);
  font-weight: 700;
}

.pag-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

/* =============================================
   CTA FINAL — Mesa a tu medida
============================================= */
.cta-medida {
  background: var(--azul-billar);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.cta-medida::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(45,106,79,0.15) 0%, transparent 55%),
    radial-gradient(circle at 80% 50%, rgba(201,168,76,0.07) 0%, transparent 50%);
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--gris-texto);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 2rem;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-img-wrap {
  position: relative;
  z-index: 1;
}

.hero-img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--azul-medio) 0%, rgba(45, 106, 79, 0.3) 100%);
  border-radius: 12px;
  border: 1px solid rgba(201, 168, 76, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: rgba(201, 168, 76, 0.4);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}

.hero-img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(45, 106, 79, 0.15) 0%, transparent 70%);
}

.hero-img-placeholder .ti {
  font-size: 4rem;
  color: rgba(201, 168, 76, 0.25);
}

.hero-badge {
  position: absolute;
  bottom: -16px;
  left: -16px;
  background: var(--oro);
  color: var(--azul-noche);
  border-radius: 10px;
  padding: 0.8rem 1.1rem;
  font-weight: 700;
  font-size: 0.75rem;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.3);
}

/* =============================================
   BOTONES GLOBALES
============================================= */
.btn-primary-zb {
  background: var(--oro);
  color: var(--azul-noche);
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.8rem 1.8rem;
  border-radius: 6px;
  letter-spacing: 0.05em;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.btn-primary-zb:hover {
  background: var(--oro-suave);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.25);
  color: var(--azul-noche);
}

.btn-secondary-zb {
  background: transparent;
  color: var(--oro);
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.8rem 1.8rem;
  border-radius: 6px;
  border: 1px solid var(--oro);
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.btn-secondary-zb:hover {
  background: rgba(201, 168, 76, 0.1);
  transform: translateY(-2px);
  color: var(--oro);
}

.btn-whatsapp {
  background: #25D366;
  color: white;
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.8rem 1.8rem;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: 0.03em;
}

.btn-whatsapp:hover {
  background: #1da851;
  transform: translateY(-2px);
  color: white;
}

/* =============================================
   BANDA DE CONFIANZA
============================================= */
.trust-band {
  background: var(--azul-noche);
  border-top: 1px solid rgba(201, 168, 76, 0.15);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  padding: 2.5rem 0;
}

.trust-stat {
  text-align: center;
  padding: 0 1rem;
}

.trust-stat-num {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--oro);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.trust-stat-label {
  font-size: 0.78rem;
  color: var(--gris-texto);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.trust-divider {
  width: 1px;
  height: 50px;
  background: rgba(201, 168, 76, 0.2);
  margin: auto;
}

/* =============================================
   SECCIONES COMUNES
============================================= */
.section-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--oro);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--blanco-hueso);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--gris-texto);
  line-height: 1.7;
  max-width: 520px;
}

/* =============================================
   CATÁLOGO DESTACADO
============================================= */
.catalogo-section {
  background: var(--azul-billar);
  padding: 6rem 0;
}

.product-card {
  background: rgba(15, 52, 96, 0.4);
  border: 1px solid rgba(201, 168, 76, 0.12);
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 168, 76, 0.4);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35);
}

.product-card-img {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--azul-medio) 0%, rgba(45, 106, 79, 0.25) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(201, 168, 76, 0.2);
  position: relative;
  overflow: hidden;
}

.product-card-img .ti  { font-size: 3.5rem; }
.product-card-img img  { width: 100%; height: 100%; object-fit: cover; }

.product-badge {
  position: absolute;
  top: 12px; left: 12px;
  font-size: 0.68rem;
  font-weight: 600;
  padding: 0.25rem 0.7rem;
  border-radius: 20px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.badge-pool      { background: rgba(30, 64, 175, 0.85);  color: #93c5fd; }
.badge-carambola { background: rgba(22, 101, 52, 0.85);  color: #86efac; }
.badge-exterior  { background: rgba(133, 77, 14, 0.85);  color: #fcd34d; }
.badge-snooker   { background: rgba(107, 33, 168, 0.85); color: #d8b4fe; }

.badge-nuevo {
  position: absolute;
  top: 12px; right: 12px;
  background: var(--oro);
  color: var(--azul-noche);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product-card-body {
  padding: 1.25rem 1.4rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card-name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--blanco-hueso);
  margin-bottom: 0.3rem;
}

.product-card-mat {
  font-size: 0.8rem;
  color: var(--gris-texto);
  margin-bottom: 1rem;
}

.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.product-precio {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--oro);
  letter-spacing: 0.02em;
}

.btn-ver-mas {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--oro-suave);
  border: 1px solid rgba(201, 168, 76, 0.35);
  padding: 0.35rem 0.9rem;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}

.btn-ver-mas:hover {
  background: rgba(201, 168, 76, 0.12);
  color: var(--oro);
}

/* =============================================
   SERVICIOS
============================================= */
.servicios-section {
  background: var(--azul-noche);
  padding: 6rem 0;
}

.servicio-card {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: 14px;
  border: 1px solid rgba(201, 168, 76, 0.1);
  background: rgba(22, 33, 62, 0.4);
  transition: border-color 0.3s, transform 0.3s;
  height: 100%;
}

.servicio-card:hover {
  border-color: rgba(201, 168, 76, 0.35);
  transform: translateY(-4px);
}

.servicio-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: rgba(201, 168, 76, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  transition: background 0.3s;
}

.servicio-card:hover .servicio-icon { background: rgba(201, 168, 76, 0.2); }

.servicio-icon .ti {
  font-size: 1.7rem;
  color: var(--oro);
}

.servicio-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--blanco-hueso);
  margin-bottom: 0.5rem;
}

.servicio-desc {
  font-size: 0.85rem;
  color: var(--gris-texto);
  line-height: 1.7;
}

/* =============================================
   CTA FINAL
============================================= */
.cta-section {
  background: var(--azul-billar);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(45, 106, 79, 0.15) 0%, transparent 55%),
    radial-gradient(circle at 80% 50%, rgba(201, 168, 76, 0.07) 0%, transparent 50%);
}

.cta-section .section-title    { text-align: center; margin: 0 auto 0.75rem; }
.cta-section .section-subtitle { text-align: center; margin: 0 auto 2rem; }

.contacto-page .page-hero {
  background: var(--azul-billar);
  padding: 8rem 0 3.5rem;
  position: relative;
  overflow: hidden;
}

.contacto-page .page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 75% 40%, rgba(45,106,79,0.14) 0%, transparent 60%),
    radial-gradient(circle at 10% 80%, rgba(201,168,76,0.07) 0%, transparent 50%);
}

.contacto-page .page-hero .container {
  z-index: 1;
}

.contacto-page .page-hero-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--oro);
  margin-bottom: 0.75rem;
}

.contacto-page .page-hero h1 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--blanco-hueso);
  line-height: 1.15;
  margin-bottom: 0.75rem;
}

.contacto-page .page-hero-desc {
  font-size: 0.95rem;
  color: var(--gris-texto);
  line-height: 1.7;
  max-width: 460px;
}

.nav-links a.nav-active,
.nav-mobile a.nav-active {
  color: var(--oro);
}

.contacto-page .btn-full-width,
.privacidad-page .btn-full-width,
.cotizar-page .btn-full-width {
  width: 100%;
  justify-content: center;
}

.contacto-page .btn-primary-zb--sm {
  font-size: 0.95rem;
  padding: 0.9rem;
}

.contacto-page .section-subtitle--spaced {
  margin-bottom: 2rem;
}

.contacto-page .small-note {
  font-size: 0.68rem;
  opacity: 0.7;
  display: block;
}

.link-no-underline {
  text-decoration: none;
}

.icon-end {
  margin-left: auto;
  color: var(--gris-texto);
  font-size: 1rem;
}

.iframe-no-border {
  border: 0;
}

.contacto-page .canales-section {
  background: var(--azul-noche);
  padding: 4rem 0;
}

.contacto-page .canal-card {
  background: rgba(15,52,96,0.35);
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: 14px;
  padding: 1.75rem 1.5rem;
  text-align: center;
  height: 100%;
  transition: border-color 0.3s, transform 0.3s;
}

.contacto-page .canal-card:hover {
  border-color: rgba(201,168,76,0.35);
  transform: translateY(-4px);
}

.contacto-page .canal-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.contacto-page .canal-icon-wrap .ti {
  font-size: 1.6rem;
}

.contacto-page .canal-icon-wa {
  background: rgba(37,211,102,0.12);
}

.contacto-page .canal-icon-wa .ti {
  color: #25D366;
}

.contacto-page .canal-icon-tel {
  background: rgba(201,168,76,0.1);
}

.contacto-page .canal-icon-tel .ti {
  color: var(--oro);
}

.contacto-page .canal-icon-mail {
  background: rgba(201,168,76,0.1);
}

.contacto-page .canal-icon-mail .ti {
  color: var(--oro);
}

.contacto-page .canal-title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--blanco-hueso);
  margin-bottom: 0.3rem;
}

.contacto-page .canal-dato {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--oro-suave);
  margin-bottom: 0.3rem;
}

.contacto-page .canal-horario {
  font-size: 0.78rem;
  color: var(--gris-texto);
  line-height: 1.5;
  margin-bottom: 1.1rem;
}

.contacto-page .contacto-section {
  background: var(--azul-billar);
  padding: 5rem 0;
}

.contacto-page .campo-grupo {
  margin-bottom: 1.1rem;
}

.contacto-page .campo-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gris-texto);
  margin-bottom: 0.4rem;
  display: block;
}

.contacto-page .campo-label .req {
  color: var(--oro);
  margin-left: 2px;
}

.contacto-page .campo-input,
.contacto-page .campo-select,
.contacto-page .campo-textarea {
  width: 100%;
  background: rgba(15,52,96,0.35);
  border: 1px solid rgba(201,168,76,0.18);
  border-radius: 8px;
  padding: 0.7rem 1rem;
  font-size: 0.88rem;
  font-family: var(--font-sans);
  color: var(--blanco-hueso);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.contacto-page .campo-input::placeholder,
.contacto-page .campo-textarea::placeholder {
  color: rgba(156,163,175,0.45);
}

.contacto-page .campo-input:focus,
.contacto-page .campo-select:focus,
.contacto-page .campo-textarea:focus {
  border-color: var(--oro);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}

.contacto-page .campo-input.error,
.contacto-page .campo-select.error,
.contacto-page .campo-textarea.error {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239,68,68,0.1);
}

.contacto-page .campo-select {
  cursor: pointer;
}

.contacto-page .campo-select option {
  background: var(--azul-noche);
  color: var(--blanco-hueso);
}

.contacto-page .campo-textarea {
  height: 110px;
  resize: vertical;
}

.contacto-page .campo-error {
  font-size: 0.75rem;
  color: #f87171;
  margin-top: 0.3rem;
  display: none;
}

.contacto-page .campo-error.visible {
  display: block;
}

.contacto-page .privacidad-wrap {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 1.4rem;
  cursor: pointer;
}

.contacto-page .privacidad-wrap input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--oro);
  flex-shrink: 0;
  margin-top: 2px;
  cursor: pointer;
}

.contacto-page .privacidad-texto {
  font-size: 0.8rem;
  color: var(--gris-texto);
  line-height: 1.5;
}

.contacto-page .privacidad-texto a {
  color: var(--oro-suave);
  text-decoration: underline;
}

.contacto-page .form-success {
  display: none;
  text-align: center;
  padding: 2.5rem 1rem;
  background: rgba(45,106,79,0.08);
  border: 1px solid rgba(45,106,79,0.3);
  border-radius: 14px;
  animation: fadeInUp 0.35s ease both;
}

.contacto-page .form-success .ti {
  font-size: 2.5rem;
  color: var(--verde-claro);
  display: block;
  margin-bottom: 0.75rem;
}

.contacto-page .form-success h3 {
  font-size: 1.2rem;
  color: var(--blanco-hueso);
  margin-bottom: 0.5rem;
}

.contacto-page .form-success p {
  font-size: 0.88rem;
  color: var(--gris-texto);
  margin: 0;
}

.contacto-page .datos-panel {
  background: rgba(15,52,96,0.3);
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: 14px;
  overflow: hidden;
}

.contacto-page .dato-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.1rem 1.4rem;
  border-bottom: 1px solid rgba(201,168,76,0.07);
  transition: background 0.2s;
}

.contacto-page .dato-item:last-child {
  border-bottom: none;
}

.contacto-page .dato-item:hover {
  background: rgba(201,168,76,0.04);
}

.contacto-page .dato-icon {
  width: 36px;
  height: 36px;
  background: rgba(201,168,76,0.1);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contacto-page .dato-icon .ti {
  font-size: 1rem;
  color: var(--oro);
}

.contacto-page .dato-titulo {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gris-texto);
  margin-bottom: 0.2rem;
}

.contacto-page .dato-valor {
  font-size: 0.88rem;
  color: var(--blanco-hueso);
  line-height: 1.5;
  font-weight: 500;
}

.contacto-page .dato-valor a {
  color: var(--blanco-hueso);
  transition: color 0.2s;
}

.contacto-page .dato-valor a:hover {
  color: var(--oro);
}

.contacto-page .mapa-wrap {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(201,168,76,0.1);
  margin-top: 1.25rem;
}

.contacto-page .mapa-placeholder {
  height: 200px;
  background: linear-gradient(135deg, var(--azul-medio) 0%, rgba(45,106,79,0.2) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: rgba(201,168,76,0.35);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contacto-page .mapa-placeholder .ti {
  font-size: 2.5rem;
}

.contacto-page .wa-rapido {
  background: rgba(37,211,102,0.08);
  border: 1px solid rgba(37,211,102,0.2);
  border-radius: 10px;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
  transition: background 0.2s, border-color 0.2s;
  cursor: pointer;
}

.contacto-page .wa-rapido:hover {
  background: rgba(37,211,102,0.14);
  border-color: rgba(37,211,102,0.4);
}

.contacto-page .wa-rapido .ti {
  font-size: 1.5rem;
  color: #25D366;
  flex-shrink: 0;
}

.contacto-page .wa-rapido-texto {
  font-size: 0.82rem;
  color: var(--gris-texto);
  line-height: 1.4;
}

.contacto-page .wa-rapido-texto strong {
  display: block;
  color: var(--blanco-hueso);
  font-size: 0.88rem;
  margin-bottom: 1px;
}

.contacto-page .faq-section {
  background: var(--azul-noche);
  padding: 5rem 0;
}

.contacto-page .faq-item {
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: 12px;
  margin-bottom: 0.65rem;
  overflow: hidden;
  transition: border-color 0.3s;
}

.contacto-page .faq-item.open {
  border-color: rgba(201,168,76,0.3);
}

.contacto-page .faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.4rem;
  background: rgba(15,52,96,0.25);
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-sans);
  transition: background 0.2s;
}

.contacto-page .faq-btn:hover {
  background: rgba(15,52,96,0.4);
}

.contacto-page .faq-item.open .faq-btn {
  background: rgba(201,168,76,0.06);
}

.contacto-page .faq-pregunta {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--blanco-hueso);
  line-height: 1.45;
}

.contacto-page .faq-icono {
  font-size: 1.1rem;
  color: var(--oro);
  flex-shrink: 0;
  transition: transform 0.3s;
}

.contacto-page .faq-item.open .faq-icono {
  transform: rotate(45deg);
}

.contacto-page .faq-respuesta {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.contacto-page .faq-respuesta-inner {
  padding: 0 1.4rem 1.1rem;
  font-size: 0.87rem;
  color: var(--gris-texto);
  line-height: 1.75;
}

.cta-btns {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* =============================================
   FOOTER
============================================= */
.footer {
  background: #0f0f1e;
  border-top: 1px solid rgba(201, 168, 76, 0.15);
  padding: 3.5rem 0 1.5rem;
}

.footer-logo img { height: 40px; object-fit: contain; }

.footer-desc {
  font-size: 0.83rem;
  color: var(--gris-texto);
  line-height: 1.7;
  margin-top: 0.75rem;
  max-width: 240px;
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.2rem;
}

.footer-social-link {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid rgba(201, 168, 76, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gris-texto);
  font-size: 1rem;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.footer-social-link:hover {
  border-color: var(--oro);
  color: var(--oro);
  background: rgba(201, 168, 76, 0.08);
}

.footer-heading {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--oro);
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--gris-texto);
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--oro-suave); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.83rem;
  color: var(--gris-texto);
  margin-bottom: 0.6rem;
}

.footer-contact-item .ti {
  color: var(--oro);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.footer-bottom {
  border-top: 1px solid rgba(201, 168, 76, 0.1);
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-bottom a {
  color: inherit;
}

.footer-copy {
  font-size: 0.78rem;
  color: rgba(156, 163, 175, 0.6);
}

/* =============================================
   WHATSAPP FLOTANTE
============================================= */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
  transition: transform 0.2s, box-shadow 0.2s;
  animation: pulse-wa 3s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 32px rgba(37, 211, 102, 0.55);
}

.whatsapp-float .ti {
  font-size: 1.75rem;
  color: white;
}

@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4); }
  50%       { box-shadow: 0 6px 36px rgba(37, 211, 102, 0.65); }
}

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 991px) {
  .nav-links            { display: none !important; }
  .navbar-toggler-zb    { display: block; }
  .trust-divider        { display: none; }
  .hero                 { padding-top: 90px; }
  .hero-img-wrap        { margin-top: 2.5rem; }
}

@media (min-width: 992px) {
  .navbar-toggler-zb { display: none; }
}

/* ===================================================
   Producto page styles
=================================================== */
.breadcrumb-zb {
  background: var(--azul-noche);
  border-bottom: 1px solid rgba(201,168,76,0.08);
  padding: 1rem 0;
  margin-top: 66px; /* altura navbar */
}

.breadcrumb-zb ol {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  list-style: none;
  margin: 0; padding: 0;
  flex-wrap: wrap;
}

.breadcrumb-zb li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: var(--gris-texto);
}

.breadcrumb-zb li a {
  color: var(--gris-texto);
  transition: color 0.2s;
}

.breadcrumb-zb li a:hover { color: var(--oro-suave); }

.breadcrumb-zb li.active {
  color: var(--oro-suave);
  font-weight: 500;
}

.breadcrumb-sep {
  color: rgba(201,168,76,0.35);
  font-size: 0.7rem;
}

.producto-section {
  background: var(--azul-noche);
  padding: 3rem 0 4rem;
}

.galeria-wrap { position: sticky; top: 90px; }

.galeria-principal {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--azul-medio) 0%, rgba(45,106,79,0.25) 100%);
  border: 1px solid rgba(201,168,76,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: zoom-in;
  position: relative;
  margin-bottom: 0.75rem;
}

.galeria-principal img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.galeria-principal:hover img { transform: scale(1.03); }

.galeria-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(201,168,76,0.25);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.galeria-placeholder .ti { font-size: 3.5rem; }

.galeria-thumbs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.thumb-btn {
  width: 64px;
  height: 52px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid transparent;
  background: linear-gradient(135deg, var(--azul-medio) 0%, rgba(45,106,79,0.2) 100%);
  cursor: pointer;
  transition: border-color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(201,168,76,0.25);
  padding: 0;
  flex-shrink: 0;
}

.thumb-btn.active,
.thumb-btn:hover { border-color: var(--oro); }

.thumb-btn img { width: 100%; height: 100%; object-fit: cover; }
.thumb-btn .ti { font-size: 1.25rem; }

.producto-badge-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.producto-tipo-badge {
  font-size: 0.68rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.producto-nuevo-badge {
  background: var(--oro);
  color: var(--azul-noche);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.producto-nombre {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--blanco-hueso);
  line-height: 1.15;
  margin-bottom: 0.4rem;
}

.producto-subtitulo {
  font-size: 0.88rem;
  color: var(--gris-texto);
  margin-bottom: 1.5rem;
}

.opcion-grupo {
  margin-bottom: 1.25rem;
}

.opcion-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gris-texto);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.opcion-label span {
  color: var(--oro-suave);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.8rem;
}

.opcion-pills {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.opcion-pill {
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.45rem 1rem;
  border-radius: 8px;
  border: 1px solid rgba(201,168,76,0.25);
  background: transparent;
  color: var(--gris-texto);
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--font-sans);
}

.opcion-pill:hover {
  border-color: rgba(201,168,76,0.5);
  color: var(--oro-suave);
}

.opcion-pill.active {
  border-color: var(--oro);
  color: var(--oro);
  background: rgba(201,168,76,0.08);
  font-weight: 600;
}

.opcion-pill:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  text-decoration: line-through;
}

.color-swatch {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s, border-color 0.2s;
  outline-offset: 3px;
  flex-shrink: 0;
}

.color-swatch:hover { transform: scale(1.1); }
.color-swatch.active { border-color: var(--oro); box-shadow: 0 0 0 3px rgba(201,168,76,0.25); }

.precio-wrap {
  border-top: 1px solid rgba(201,168,76,0.12);
  border-bottom: 1px solid rgba(201,168,76,0.12);
  padding: 1rem 0;
  margin-bottom: 1.25rem;
}

.precio-label {
  font-size: 0.72rem;
  color: var(--gris-texto);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}

.precio-valor {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--oro);
}

.precio-nota {
  font-size: 0.75rem;
  color: var(--gris-texto);
  margin-top: 0.2rem;
}

.acciones-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 1.5rem;
}

.btn-full {
  width: 100%;
  justify-content: center;
  font-size: 0.9rem;
  padding: 0.85rem 1.5rem;
}

.garantias-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1rem 1.25rem;
  background: rgba(15,52,96,0.3);
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: 10px;
}

.garantia-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
  min-width: 120px;
}

.garantia-item .ti {
  font-size: 1.25rem;
  color: var(--oro);
  flex-shrink: 0;
}

.garantia-text {
  font-size: 0.75rem;
  color: var(--gris-texto);
  line-height: 1.35;
}

.garantia-text strong {
  display: block;
  font-weight: 600;
  color: var(--blanco-hueso);
  font-size: 0.78rem;
}

.specs-section {
  background: var(--azul-billar);
  padding: 4rem 0;
}

.specs-table {
  background: rgba(15,52,96,0.3);
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: 14px;
  overflow: hidden;
}

.spec-row {
  display: flex;
  align-items: center;
  padding: 0.85rem 1.5rem;
  border-bottom: 1px solid rgba(201,168,76,0.07);
  gap: 1rem;
}

.spec-row:last-child { border-bottom: none; }
.spec-row:nth-child(even) { background: rgba(201,168,76,0.03); }

.spec-key {
  font-size: 0.82rem;
  color: var(--gris-texto);
  min-width: 180px;
  flex-shrink: 0;
}

.spec-val {
  font-size: 0.85rem;
  color: var(--blanco-hueso);
  font-weight: 500;
}

.spec-icon {
  width: 28px;
  height: 28px;
  background: rgba(201,168,76,0.1);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-right: 0.25rem;
}

.spec-icon .ti { font-size: 0.95rem; color: var(--oro); }

.descripcion-section {
  background: var(--azul-noche);
  padding: 4rem 0;
}

.descripcion-text {
  font-size: 0.95rem;
  color: var(--gris-texto);
  line-height: 1.85;
}

.descripcion-text p { margin-bottom: 1rem; }
.descripcion-text p:last-child { margin-bottom: 0; }

.proceso-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .proceso-grid { grid-template-columns: repeat(4, 1fr); }
}

.proceso-card {
  background: rgba(15,52,96,0.3);
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: 12px;
  padding: 1.25rem 1rem;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s;
}

.proceso-card:hover {
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-3px);
}

.proceso-num {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--oro);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.proceso-icon { font-size: 1.75rem; color: var(--oro); margin-bottom: 0.5rem; display: block; }

.proceso-title {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--blanco-hueso);
  margin-bottom: 0.3rem;
}

.proceso-desc {
  font-size: 0.75rem;
  color: var(--gris-texto);
  line-height: 1.5;
}

.relacionados-section {
  background: var(--azul-billar);
  padding: 4rem 0 5rem;
}


@media (max-width: 575px) {
  .hero h1         { font-size: 2.2rem; }
  .trust-stat-num  { font-size: 1.8rem; }
}