/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:      #0E1B3D;
  --red:       #CC1717;
  --sky:       #1E9BD7;
  --white:     #FFFFFF;
  --gray:      #F4F5F7;
  --gray2:     #E5E7EB;
  --text:      #1A1A2E;
  --muted:     #6B7280;
  --font-cond: 'Barlow Condensed', sans-serif;
  --font-body: 'Rajdhani', sans-serif;
  --radius:    16px;
  --shadow:    0 4px 24px rgba(14,27,61,.10);
  --shadow-lg: 0 12px 48px rgba(14,27,61,.18);
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a   { text-decoration: none; color: inherit; }

/* ===== TIPOGRAFÍA BASE ===== */
h1, h2, h3, h4 {
  font-family: var(--font-cond);
  font-weight: 800;
  line-height: 1.05;
}

/* ===== BOTÓN WHATSAPP PRIMARIO ===== */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: #25D366; color: var(--white);
  padding: 16px 32px; border-radius: 50px;
  font-family: var(--font-cond); font-weight: 700;
  font-size: clamp(18px, 2.5vw, 24px);
  letter-spacing: .5px; text-transform: uppercase;
  border: none; cursor: pointer;
  transition: transform .2s, box-shadow .2s;
  white-space: nowrap;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,.35); }
.btn-primary svg   { width: 22px; height: 22px; flex-shrink: 0; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  background: var(--navy);
  box-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.nav-container {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 16px;
}

/* Logo: oculto en mobile */
.nav-logo { display: none; }
.img-logo-nav { height: 36px; width: auto; display: block; }

/* Hamburger izquierda en mobile */
.hamburger {
  display: flex; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
  z-index: 999; order: -1;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px; transition: all .3s;
}

.nav-links {
  display: none;
  position: fixed; top: 0; left: 0; right: 0;
  background: var(--navy);
  flex-direction: column; align-items: center; justify-content: center;
  gap: 28px; height: 100vh; z-index: 998;
  list-style: none;
}
.nav-links.open { display: flex; }
.nav-links a {
  font-family: var(--font-cond); font-weight: 700;
  font-size: 26px; letter-spacing: 1px; text-transform: uppercase;
  color: rgba(255,255,255,.85); transition: color .2s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--sky); transform: scaleX(0); transition: transform .2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

.btn-wa {
  display: none;
  align-items: center; gap: 8px;
  background: #25D366; color: var(--white);
  padding: 9px 18px; border-radius: 50px;
  font-weight: 600; font-size: 13px;
  transition: transform .2s, box-shadow .2s; white-space: nowrap;
}
.btn-wa:hover { transform: translateY(-1px); box-shadow: 0 4px 14px rgba(37,211,102,.4); }
.btn-wa svg { width: 16px; height: 16px; }

/* ===== HERO ===== */
.hero {
  background: var(--gray);
  position: relative; overflow: hidden;
  padding-top: 60px;
}
.hero-center {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center;
  padding: 16px 16px 48px;
}
.hero-big-title {
  font-family: var(--font-cond); font-weight: 800; font-style: italic;
  font-size: clamp(36px, 10vw, 120px); line-height: 0.9;
  color: var(--navy); letter-spacing: -1px; text-transform: uppercase;
  text-align: center; position: relative; z-index: 3;
  margin-bottom: -0.3em; user-select: none;
  text-shadow: 2px 2px 0 rgba(255,255,255,.20);
}
.hero-title-break { display: block; }

.hero-img-wrap {
  position: relative; z-index: 5;
  display: flex; justify-content: center; align-items: flex-start;
  width: clamp(220px, 78vw, 620px);
}
.hero-img-glow {
  position: absolute; width: 100%; height: 75%;
  top: 12%; left: 0; border-radius: 50%;
  background: radial-gradient(circle, rgba(225,210,185,.80) 0%, transparent 68%);
  animation: pulse 3s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { transform: scale(1); opacity: .65; }
  50%      { transform: scale(1.08); opacity: 1; }
}
.hero-img {
  position: relative; z-index: 1; width: 100%; object-fit: contain;
  filter: drop-shadow(0 14px 40px rgba(14,27,61,.20));
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}



/* ===== STATS STRIP ===== */
.stats-strip { background: var(--red); padding: 24px 16px; }
.stats-inner {
  max-width: 900px; margin: 0 auto;
  display: flex; justify-content: center; align-items: center;
  flex-wrap: wrap; gap: 0;
}
.stat-item {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  padding: 8px 24px;
}
.stat-num {
  font-family: var(--font-cond); font-weight: 800; font-size: 36px;
  color: var(--white); line-height: 1;
}
.stat-label { font-size: 20px; color: rgba(255,255,255,.80); text-align: center; }
.stat-divider { width: 1px; height: 44px; background: rgba(255,255,255,.25); display: none; }
.stat-item--text { flex-direction: column; align-items: center; gap: 4px; }
.stat-icon { display: flex; align-items: center; justify-content: center; color: var(--white); margin-bottom: 2px; }

/* ===== SECCIONES BASE ===== */
.section { padding: 72px 16px; }
.section-header { text-align: center; max-width: 100%; margin: 0 auto 48px; }
.section-eyebrow {
  font-family: var(--font-cond); font-weight: 600; font-size: 22px;
  letter-spacing: 3px; text-transform: uppercase; color: var(--sky); margin-bottom: 10px;
}
.section-title {
  font-family: var(--font-cond); font-weight: 800; font-style: italic;
  font-size: clamp(28px, 5vw, 52px); text-transform: uppercase;
  color: var(--navy); margin-bottom: 14px;
  /* Ocupa todo el ancho disponible del contenedor */
  width: 100%;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  /* Escala automáticamente para llenar el ancho */
  font-size: clamp(20px, 4.5vw, 64px);
}
.section-sub { font-size: 22px; color: var(--muted); line-height: 1.7; }

/* ===== PRODUCTOS ===== */
.productos-section { background: var(--gray); }
.products-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr; gap: 24px;
}
.product-card {
  background: var(--navy); border-radius: var(--radius);
  overflow: hidden; cursor: pointer;
  transition: transform .35s, box-shadow .35s;
  box-shadow: var(--shadow); border: 2px solid transparent;
}
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: rgba(30,155,215,.35); }
.product-card:focus { outline: 3px solid var(--sky); outline-offset: 2px; }
.product-card--featured { border-color: var(--sky); }
.product-card-inner { width: 100%; }
.product-img-wrap {
  position: relative; overflow: hidden; background: var(--navy);
  height: 260px; display: flex; align-items: center; justify-content: center;
}
.product-img {
  max-height: 200px; object-fit: contain;
  transition: transform .45s cubic-bezier(.25,.46,.45,.94);
}
.product-card:hover .product-img { transform: scale(1.07); }
.product-line-badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--sky); color: var(--white);
  padding: 4px 12px; border-radius: 50px;
  font-family: var(--font-cond); font-size: 12px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase; z-index: 2;
}
.product-line-badge--featured { background: var(--red); }
.product-line-badge--premium  { background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.30); }
.product-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(14,27,61,.92) 0%, rgba(14,27,61,.35) 55%, transparent 100%);
  display: flex; align-items: flex-end; justify-content: center;
  padding-bottom: 24px; opacity: 0; transition: opacity .35s;
}
.product-card:hover .product-overlay { opacity: 1; }
.product-overlay span {
  color: var(--white); font-family: var(--font-cond); font-weight: 700;
  font-size: 14px; letter-spacing: 1.5px; text-transform: uppercase;
  border-bottom: 2px solid var(--sky); padding-bottom: 2px;
}

/* CTA productos */
.productos-cta { text-align: center; margin-top: 48px; }
.productos-cta p {
  font-family: var(--font-cond); font-weight: 200; font-style: italic;
  font-size: clamp(20px, 3vw, 32px); text-transform: uppercase;
  color: var(--navy); margin-bottom: 20px;
}

/* ===== MODAL ===== */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.65);
  z-index: 1100; display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .3s; padding: 16px;
}
.modal-overlay.active { opacity: 1; pointer-events: all; }
.modal-box {
  background: var(--white); border-radius: var(--radius);
  max-width: 740px; width: 100%; max-height: 90vh; overflow-y: auto;
  position: relative; transform: translateY(20px); transition: transform .3s;
}
.modal-overlay.active .modal-box { transform: translateY(0); }
.modal-close {
  position: absolute; top: 12px; right: 12px;
  background: var(--gray); border: none; width: 34px; height: 34px;
  border-radius: 50%; cursor: pointer; z-index: 10;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, transform .2s; color: var(--navy);
}
.modal-close:hover { background: var(--gray2); transform: rotate(90deg); }
.modal-inner { display: grid; grid-template-columns: 1fr; }
.modal-img-side {
  background: var(--navy); display: flex; align-items: center; justify-content: center;
  padding: 36px; border-radius: var(--radius) var(--radius) 0 0;
}
.modal-img-side img { max-height: 200px; object-fit: contain; }
.modal-data { padding: 28px 24px; }
.modal-badge {
  display: inline-block; color: var(--white);
  padding: 4px 12px; border-radius: 50px; font-size: 11px; font-weight: 700;
  margin-bottom: 10px; text-transform: uppercase; letter-spacing: 1px;
}
.modal-name {
  font-family: var(--font-cond); font-weight: 800; font-size: 28px;
  color: var(--navy); margin-bottom: 10px;
}
.modal-desc { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 20px; }
.modal-specs { margin-bottom: 24px; }
.modal-specs h4 {
  font-family: var(--font-cond); font-size: 11px; font-weight: 700;
  color: var(--navy); margin-bottom: 10px; text-transform: uppercase; letter-spacing: 1.5px;
}
.spec-row {
  display: flex; justify-content: space-between; padding: 9px 0;
  border-bottom: 1px solid var(--gray2); font-size: 13px;
}
.spec-row:last-child { border-bottom: none; }
.spec-key { color: var(--muted); }
.spec-val { font-weight: 600; color: var(--navy); }
.modal-cta { display: flex; flex-direction: column; gap: 10px; }
.btn-modal-wa {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: #25D366; color: var(--white); padding: 13px;
  border-radius: 50px; font-weight: 600; font-size: 14px;
  transition: transform .2s, box-shadow .2s;
}
.btn-modal-wa:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,.35); }
.btn-modal-wa svg { width: 18px; height: 18px; }
.btn-modal-suc {
  display: flex; align-items: center; justify-content: center;
  background: var(--navy); color: var(--white); padding: 12px;
  border-radius: 50px; font-weight: 600; font-size: 14px; transition: background .2s;
}
.btn-modal-suc:hover { background: var(--sky); }

/* ===== NOSOTROS ===== */
.nosotros-section { background: var(--gray); }
.nosotros-section .section-header { max-width: 100%; padding: 0 16px; }
.nosotros-section .section-title {
  /* Escala el texto para llenar exactamente el ancho del contenedor */
  font-size: clamp(18px, 5.5vw, 72px);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: clip;
  width: 100%;
}

/* Bento grid */
.nosotros-bento {
  max-width: 1100px; margin: 0 auto 64px;
  display: grid; grid-template-columns: 1fr; gap: 16px;
}
.bento-card {
  background: var(--white); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow);
}
.bento-big    { background: var(--navy); }
.bento-stat-card { background: var(--red); }
.bento-dark   { background: var(--sky); }
.bento-img, .bento-img2 { padding: 0; overflow: hidden; min-height: 200px; }
.bento-img img, .bento-img2 img { width: 100%; height: 100%; object-fit: cover; }
.bento-stat {
  font-family: var(--font-cond); font-weight: 800; font-size: 48px; line-height: 1; margin-bottom: 8px;
}
.bento-big .bento-stat       { color: var(--sky); }
.bento-big p                 { color: rgba(255,255,255,.75); font-size: 15px; line-height: 1.6; }
.bento-stat-card .bento-stat { font-size: 52px; color: var(--white); }
.bento-stat-card p           { color: rgba(255,255,255,.85); font-size: 15px; }
.bento-dark .bento-stat      { font-size: 60px; color: var(--white); }
.bento-dark p                { color: rgba(255,255,255,.90); font-size: 15px; }
.bento-text { display: flex; align-items: center; }
.bento-text p { font-size: 15px; color: var(--muted); line-height: 1.7; }

/* Carrusel reseñas */
.reviews-section { max-width: 1100px; margin: 0 auto; }
.reviews-title { font-family: var(--font-cond); font-weight: 700; font-size: 28px; color: var(--navy); margin-bottom: 6px; }
.reviews-sub   { color: var(--muted); font-size: 14px; margin-bottom: 28px; }
.reviews-carousel {
  display: flex; gap: 20px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; padding-bottom: 12px;
}
.reviews-carousel::-webkit-scrollbar { display: none; }
.reviews-carousel .review-card {
  flex: 0 0 82vw; max-width: 320px; scroll-snap-align: start;
}
.review-card {
  background: var(--white); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow);
}
.review-stars  { color: #FBBF24; font-size: 16px; margin-bottom: 10px; letter-spacing: 2px; }
.review-text   { font-size: 14px; color: var(--text); line-height: 1.7; margin-bottom: 18px; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--navy); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-cond); font-weight: 700; font-size: 13px; flex-shrink: 0;
}
.review-author strong { display: block; font-size: 13px; }
.review-author small  { color: var(--muted); font-size: 12px; }

/* ===== SUCURSALES ===== */
.sucursales-section { background: var(--white); }
.sucursales-container { max-width: 1100px; margin: 0 auto; }

/* Tabs de selección */
.sucursales-tabs { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.sucursal-tab {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--gray); border: 2px solid transparent;
  padding: 14px 20px; border-radius: var(--radius); cursor: pointer;
  text-align: left; transition: all .2s;
}
.sucursal-tab.active { background: var(--navy); border-color: var(--sky); }
.sucursal-tab.active strong,
.sucursal-tab.active small { color: var(--white); }
.sucursal-tab strong {
  display: block; font-family: var(--font-cond); font-weight: 700;
  font-size: 15px; color: var(--navy);
}
.sucursal-tab small { display: block; font-size: 13px; color: var(--muted); margin-top: 2px; }

/* Mapa y horario separados — horario debajo del mapa, nunca superpuesto */
.map-wrap { border-radius: var(--radius); overflow: hidden; background: var(--gray); }
.map-frame { display: block; }
.map-frame iframe { display: block; width: 100%; }
.map-frame.hidden { display: none; }

/* Horario: fuera del map-wrap, debajo del bloque mapa */
.horario-strip {
  max-width: 1100px; margin: 24px auto 0;
  background: var(--navy); border-radius: var(--radius); padding: 24px 20px;
}
.horario-inner {
  display: flex; flex-direction: column; align-items: center; gap: 16px;
}
.horario-item   { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.horario-label  {
  font-size: 11px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 1.5px; color: rgba(255,255,255,.55);
}
.horario-val {
  font-family: var(--font-cond); font-weight: 700; font-size: 18px; color: var(--white);
}
.horario-divider { display: none; }

/* ===== CONTACTO ===== */
.contacto-section { background: var(--navy); }
.contacto-inner {
  max-width: 600px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 32px;
}
.contacto-section .section-eyebrow { color: var(--sky); }
.contacto-section .section-title   { color: var(--white); }
.contacto-section .section-sub     { color: rgba(255,255,255,.65); font-size: 16px; }

/* Botones de redes sociales y contacto */
.social-btns {
  display: flex; flex-direction: column; gap: 14px; width: 100%;
}
.btn-social {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  padding: 14px 24px; border-radius: 50px;
  font-family: var(--font-cond); font-weight: 700; font-size: 17px;
  letter-spacing: .5px; text-transform: uppercase;
  color: var(--white); transition: transform .2s, box-shadow .2s; width: 100%;
}
.btn-social:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.25); }
.btn-social svg { width: 22px; height: 22px; flex-shrink: 0; }
.btn-social--wa   { background: #25D366; }
.btn-social--ig   { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
.btn-social--fb   { background: #1877F2; }
.btn-social--mail { background: var(--sky); }

/* ===== FOOTER ===== */
.footer { background: #080F22; padding: 48px 24px 28px; }
.footer-inner {
  display: flex; flex-direction: column; align-items: center; gap: 20px;
}
.footer-logo { width: clamp(180px, 45vw, 320px); height: auto; display: block; }
.footer-copy {
  color: rgba(255,255,255,.28); font-size: 12px; text-align: center; line-height: 1.6;
}

/* ===== BOTÓN FLOTANTE WA ===== */
.wa-float {
  position: fixed; bottom: 20px; right: 20px; z-index: 900;
  background: #25D366; width: 54px; height: 54px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,.50); transition: transform .2s;
  animation: waPulse 2.5s ease-in-out infinite;
}
.wa-float:hover { transform: scale(1.1); }
.wa-float svg { width: 28px; height: 28px; fill: var(--white); }
@keyframes waPulse {
  0%,100% { box-shadow: 0 6px 24px rgba(37,211,102,.50); }
  50%      { box-shadow: 0 6px 36px rgba(37,211,102,.80); }
}

/* ===== AOS ===== */
[data-aos] { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
[data-aos].aos-animate { opacity: 1; transform: none; }

/* ============================================================
   BREAKPOINTS — mobile-first, min-width
   ============================================================ */

@media (min-width: 480px) {
  .hero-img-wrap { width: clamp(260px, 70vw, 500px); }
  .stat-divider  { display: block; }
  .stat-item     { padding: 0 32px; }
  .stat-num      { font-size: 38px; }
  .social-btns   { flex-direction: row; flex-wrap: wrap; justify-content: center; }
  .btn-social    { width: auto; flex: 1 1 180px; }
}

@media (min-width: 768px) {
  /* Navbar */
  .nav-container { padding: 14px 24px; }
  .nav-logo { display: flex; align-items: center; }
  .img-logo-nav { height: 40px; }
  .hamburger { display: none; order: 0; }
  .nav-links {
    display: flex; position: static; height: auto;
    flex-direction: row; gap: 24px; background: transparent;
  }
  .nav-links a { font-size: 15px; letter-spacing: .5px; }
  .btn-wa { display: inline-flex; }

  /* Hero */
  .hero { padding-top: 68px; }
  .hero-center { padding: 20px 24px 64px; }
  .hero-img-wrap { width: clamp(300px, 52vw, 580px); }
  .hero-title-break { display: none; }
  .hero-big-title { white-space: nowrap; }

  /* Stats */
  .stat-num  { font-size: 40px; }
  .stat-item { padding: 0 40px; }

  /* Secciones */
  .section { padding: 88px 24px; }

  /* Productos — 3 cols */
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .product-img-wrap { height: 280px; }

  /* Modal */
  .modal-inner { grid-template-columns: 1fr 1fr; }
  .modal-img-side { border-radius: var(--radius) 0 0 var(--radius); padding: 40px; }
  .modal-data { padding: 36px 32px; }
  .modal-img-side img { max-height: 240px; }

  /* Bento 2 cols */
  .nosotros-bento { grid-template-columns: repeat(2, 1fr); }
  .bento-img, .bento-img2 { min-height: 240px; }

  /* Horario fila */
  .horario-inner { flex-direction: row; justify-content: center; gap: 0; }
  .horario-divider { display: block; width: 1px; height: 40px; background: rgba(255,255,255,.18); }
  .horario-item { padding: 0 36px; }
  .horario-strip { padding: 28px 40px; }
  .horario-val { font-size: 20px; }

  /* Sucursales tabs fila */
  .sucursales-tabs { flex-direction: row; }
  .sucursal-tab { flex: 1; }

  /* Carrusel → grid 2 cols */
  .reviews-carousel {
    display: grid; grid-template-columns: repeat(2, 1fr);
    overflow-x: visible; scroll-snap-type: none;
  }
  .reviews-carousel .review-card { flex: none; max-width: none; }

  /* WA flotante */
  .wa-float { width: 60px; height: 60px; bottom: 28px; right: 28px; }
  .wa-float svg { width: 32px; height: 32px; }
}

@media (min-width: 1024px) {
  .nav-links { gap: 36px; }

  /* Hero */
  .hero-center { padding: 24px 24px 80px; }
  .hero-img-wrap { width: clamp(380px, 46vw, 660px); }

  /* Bento 3 cols */
  .nosotros-bento { grid-template-columns: repeat(3, 1fr); }
  .bento-big      { grid-column: 1 / 2; grid-row: 1; }
  .bento-img      { grid-column: 2 / 3; grid-row: 1; }
  .bento-text     { grid-column: 3 / 4; grid-row: 1; }
  .bento-stat-card{ grid-column: 1 / 2; grid-row: 2; }
  .bento-img2     { grid-column: 2 / 3; grid-row: 2; }
  .bento-dark     { grid-column: 3 / 4; grid-row: 2; }
  .bento-img, .bento-img2 { min-height: 200px; }

  /* Carrusel 3 cols */
  .reviews-carousel { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1200px) {
  .nav-container { padding: 16px 32px; }
  .section { padding: 100px 32px; }
  .stat-item { padding: 0 52px; }
}
/* WA flotante — móvil chico */
@media (max-width: 479px) {
  .wa-float {
    width: 48px;
    height: 48px;
    bottom: 16px;
    right: 16px;
  }
  .wa-float svg {
    width: 24px;
    height: 24px;
  }
}
/* ===== RECICLAJE BANNER ===== */
.reciclaje-banner {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 48px;
  background: linear-gradient(135deg, #0d1f3c 0%, #1a3a2a 100%);
  border: 1px solid rgba(34, 197, 94, 0.25);
  border-left: 4px solid #22c55e;
  border-radius: 16px;
  padding: 32px 36px;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.reciclaje-icon {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  background: rgba(34, 197, 94, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #22c55e;
}

.reciclaje-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #ffffff;
  margin: 0 0 10px;
  text-transform: uppercase;
}

.reciclaje-desc {
  font-family: 'Barlow', sans-serif;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.65;
  margin: 0;
}

.reciclaje-desc strong {
  color: #22c55e;
}

@media (max-width: 600px) {
  .reciclaje-banner {
    flex-direction: column;
    text-align: center;
    padding: 28px 20px;
  }
}
/* ===== OCULTAR BADGE ELFSIGHT ===== */
a[href*="elfsight.com"] {
  display: none !important;
}
/* ===== ELFSIGHT WIDGET TAMAÑO ===== */
.elfsight-app-d22b63e2-b420-4dfa-aff9-4b00ad08d57b {
  width: 100% !important;
  max-width: 1100px !important;
  margin: 0 auto 48px !important;
  display: block !important;
}

/* ===== OCULTAR BADGE ELFSIGHT ===== */
.eapps-widget-toolbar,
.eapps-widget-toolbar *,
a[href*="elfsight.com"]:not(.btn-social),
a[href*="elfsight.com"]:not(.btn-social) * {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  height: 0 !important;
  width: 0 !important;
  overflow: hidden !important;
  pointer-events: none !important;
  position: absolute !important;
  clip: rect(0,0,0,0) !important;
}