:root {
  --color-primary: #4e7183; /* color marca */
  --color-black: #000000;
  --color-white: #ffffff;
  --color-bg: #f5f7f9;
  --color-muted: #6e7580;
  --max-width: 1100px;
  --radius-card: 18px;
  --shadow-soft: 0 12px 30px rgba(0, 0, 0, 0.08);
  --transition-fast: 0.2s ease-out;
  --color-cta: #ffdd00;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: var(--color-bg);
  color: var(--color-black);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* NAV */


.nav {
  position: sticky;
  top: 0;
  z-index: 999;
  backdrop-filter: blur(16px);
  background-color: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.nav-logo img {
  height: 40px;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.92rem;
  color: var(--color-primary);
}

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background-color: var(--color-primary);
  transition: width 0.2s ease-out;
}

.nav-menu a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 8px 18px;
  border: 2px solid var(--color-primary);
  border-radius: 999px;
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
  transition: all 0.28s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 36px; /* asegura alineación exacta con el nav */
}

/* HOVER */
.nav-cta:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
}

/* NAV TOGGLE (MOBILE) */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 999;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background-color: var(--color-black);
  border-radius: 999px;
}

/* HERO */
.hero {
  position: relative; /* Necesario para el overlay */
  height: 60vh;
  padding: 80px 20px 60px;
  background-image: url("./Media/banner_ini.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center 50%;
  overflow: hidden;
}

/* Overlay */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45); /* Ajustá opacidad */
  z-index: 1;
}

/* Que el contenido quede ARRIBA del overlay */
.hero > * {
  position: relative;
  z-index: 2;
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 40px;
  align-items: center;
  padding-top: 3%;
}

.hero-text h1 {
  font-size: clamp(2.3rem, 4vw, 3rem);
  line-height: 1.15;
  margin-bottom: 0.75rem;
  color: #fff;
}

.hero-text h1 span {
  color: var(--color-primary);
}

.hero-text p {
  max-width: 480px;
  color: var(--color-white);
  font-size: 0.98rem;
  margin-bottom: 1.2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 1rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--color-white);
}

.hero-meta span {
  background-color: rgba(0, 0, 0, 0.03);
  border-radius: 999px;
  padding: 5px 10px;
}

/* HERO MEDIA */

.hero-media {
  display: flex;
  justify-content: flex-end;
}

.hero-photo {
  width: 100%;
  max-width: 390px;
  border-radius: 28px;
  padding: 10px;
  background: var(--color-primary);
  box-shadow: var(--shadow-soft);
  position: relative;;
}

.hero-photo-img {
  border-radius: 22px;
  height: 350px;
  background-size: cover;
  background-position: center;
  justify-content: center;
  align-items: center;
  margin: auto;
}

.hero-photo-tag {
  position: absolute;
  left: 24px;
  bottom: 20px;
  background-color: var(--color-primary);
  color: var(--color-white);
  font-size: 0.8rem;
  padding: 6px 12px;
  border-radius: 999px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25);
}

/* SECCIONES */
.section {
  display: flex;
  flex-direction: column;
  padding: 80px 20px;
  height: auto;
  min-height: auto;
  align-items: center;
  justify-content: center;
}

.section-alt {
  background-color: #ffffff;
}

.section-header {
  max-width: var(--max-width);
  margin: 0 auto 30px;
  text-align: center;
}

.section-header h2 {
  font-size: 2.8rem;
  margin-bottom: 10px;
}

.section-header p {
  max-width: 620px;
  margin: 0 auto;
  color: var(--color-muted);
  font-size: 0.96rem;
}

/* BOTONES GENERALES */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background-color var(--transition-fast), color var(--transition-fast), box-shadow var(--transition-fast), transform var(--transition-fast);
}

.btn-primary {
  background-color: var(--color-cta);
  color: var(--color-black);
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
  background-color: #fff;
  color: var(--color-primary);
  transform: translateY(-1px);
}

.btn-outline {
  background-color: transparent;
  color: var(--color-white);
  border-color: #fff;
}

.btn-outline:hover {
  background-color: rgba(78, 113, 131, 0.06);
}

/* CARDS */
.cards-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.card {
  background-color: var(--color-primary);
  border-radius: var(--radius-card);
  padding: 20px 18px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(0, 0, 0, 0.03);
  font-size: 0.95rem;
}

.card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: var(--color-white);
}
.card p{
  color: var(--color-white);
}

/* HORARIOS */
.horarios-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.horario-card {
  background-color: var(--color-bg);
  border-radius: var(--radius-card);
  padding: 20px 18px;
  border: 1px solid rgba(0, 0, 0, 0.03);
  font-size: 0.94rem;
}

.horario-card h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.horario-time {
  font-weight: 600;
  margin-bottom: 6px;
}

/* ZONAS */
.zonas-layout {
  max-width: var(--max-width);
  margin: 0 auto;
  gap: 32px;
  align-items: center;
}

.zonas-layout p {
  text-align: center;
  font-size: 0.95rem;
  color: var(--color-muted);
  justify-content: center;

}

.zonas-tags {
  margin: 16px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.zonas-tags span {
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  background-color: #ffffff;
  font-size: 0.85rem;
}
.zonas-btn{
    display: block;
  margin: 20px auto 0; /* auto centra horizontalmente */
  text-align: center;
}

/* CÓMO FUNCIONA */
.steps {
  max-width: var(--max-width);
  margin: 0 auto;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.steps li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background-color: #ffffff;
  border-radius: var(--radius-card);
  padding: 18px 16px;
  box-shadow: var(--shadow-soft);
  font-size: 0.94rem;
}

.step-number {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background-color: var(--color-primary);
  color: var(--color-white);
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* CTA FINAL */
.section-cta {
  padding: 70px 20px;
  background-color: var(--color-primary);
  color: var(--color-white);
  text-align: center;
}

.section-cta-inner {
  max-width: 620px;
  margin: 0 auto;
}

.section-cta h2 {
  font-size: 1.9rem;
  margin-bottom: 10px;
  line-height: 1.1;
}

.section-cta p {
  font-size: 0.98rem;
  margin-bottom: 20px;
}

.section-cta-note {
  margin-top: 10px;
  font-size: 0.84rem;
  opacity: 0.9;
}

/* FOOTER */
.footer {
  padding: 18px 20px 26px;
  text-align: center;
  font-size: 0.8rem;
  color: var(--color-muted);
}

/* RESPONSIVE */
@media (max-width: 960px) {
  .hero-inner,
  .zonas-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-media,
  .zonas-map {
    justify-content: flex-start;
  }

  .hero-photo {
    margin-top: 10px;
  }
}

@media (max-width: 840px) {
  .cards-grid,
  .horarios-grid,
  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  
}

@media (max-width: 720px) {
  .nav-toggle {
    display: flex;
  }
  .nav-logo img {
    width: 50%;
  object-fit: contain;
}
@media (max-width: 720px) {
  .section {
    height: auto;
    padding: 50px 20px;
    justify-content: flex-start;
  }
}
  .nav-menu {
    position: absolute;
    height: 80vh;  
    inset: 100% 0 auto 0;
    background-color: var(--color-white);
    flex-direction: column;
    padding: 40px 20px 14px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transform-origin: top;
    transform: scaleY(0);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.18s ease-out, opacity 0.18s ease-out;
    border-bottom: 8px solid #ffffff;
  }

  .nav-menu.open {
    transform: scaleY(1);
    opacity: 1;
    pointer-events: auto;
  }

  .cards-grid,
  .horarios-grid,
  .steps {
    grid-template-columns: minmax(0, 1fr);
  }
  .btn{
    font-size: 12px;
  }
}

@media (max-width: 520px) {
  .hero {
    padding-top: 70px;
    min-height: 100vh; 
  }
}
.hero-badge-free {
  display: inline-block;
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 14px;
  box-shadow: 0 8px 20px rgba(78, 113, 131, 0.35);
}
.hero-badge-free {
  display: inline-block;
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 14px;
  box-shadow: 0 8px 20px rgba(78, 113, 131, 0.35);
}

.hero-urbandog {
  position: relative;
  width: 100%;
  height: 75vh;
  min-height: 520px;
  background-image: url("./Media/perros-banner.png"); /* <-- Cámbiala por tu imagen */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  overflow: hidden;
}

.hero-urbandog .hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.20);
  backdrop-filter: blur(2px);
}

.hero-urbandog .hero-content {
  position: relative;
  text-align: center;
  z-index: 2;
  color: #ffffff;
  max-width: 900px;
}

.hero-urbandog h1 .small {
  font-size: 32px;
  font-weight: 600;
  display: block;
  color: #ffffff;
}

.hero-urbandog h1 .big {
  font-size: 82px;
  font-weight: 900;
  color: #ffdd00;
  line-height: 1.05;
}

.hero-urbandog h1 .big span {
  color: #000000;
  -webkit-text-stroke: 2px white;
}

.hero-btn {
  margin-top: 30px;
  padding: 14px 34px;
  background: #FF8A48;
  color: #000;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  font-size: 18px;
  transition: 0.3s;
}

.hero-btn:hover {
  background: #e0c400;
}

.section-gap {
  height: 80px;
}

/* ================================
HERO NUEVO
================================ */

.banner-inicial {
  background: #4e7183; /* tu color de fondo */
  padding: 70px 20px 60px;
  text-align: center;
  position: relative;
}

.banner-inicial-inner {
  max-width: 1450px;
  margin: 0 auto;
  position: relative;
  
}

/* ----------------- Texto ----------------- */

.banner-inicial-content {
  text-align: center;
  position: relative;
  z-index: 2;
  margin-bottom: 20px;
}

.banner-subtitle {
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}

/* ----------------- Logo ----------------- */

.banner-logo img {
  width: 60%;
  max-width: 95%;
  margin: 0 auto 20px;
  display: block;
}

/* ----------------- Botón ----------------- */

.banner-btn {
  display: inline-block;
  padding: 16px 38px;
  background: #ffdd00;
  color: #000;
  font-size: 18px;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s ease;
  margin-top: 20px; /* Antes 10px — LO BAJA */
}

.banner-btn:hover {
  background: #e4c800;
}
.valor-actions {
  margin-top: 25px;
  display: flex;
  gap: 16px;
  padding: 15px 10px;
  justify-content: center;

}
/* ----------------- Perros ----------------- */

.banner-inicial-dogs {
  text-align: center;
  position: relative;
  z-index: 6;
  margin-top: -100px; 
  overflow: visible;
}

.banner-inicial-dogs img {
  width: 100%;
  max-width: 1100px;
  display: block;
  margin: 0 auto;
}

/* ==============================================
   RESPONSIVE HERO NEW
================================================ */

/* Tablets grandes */
@media (max-width: 1024px) {
  .banner-logo img {
    width: 250px;
  }

  .banner-subtitle {
    font-size: 26px;
  }

  .banner-btn {
    font-size: 16px;
  }

  .banner-inicial-dogs img {
    max-width: 900px;
  }
}

/* Tablets pequeñas y móviles grandes */
@media (max-width: 768px) {
  .banner-inicial {
    padding-top: 50px;
  }

  .banner-logo img {
    width: 220px;
  }

  .banner-subtitle {
    font-size: 18px;
  }

  .banner-btn {
    font-size: 15px;
    padding: 14px 30px;
  }

  .banner-inicial-dogs img {
    max-width: 800px;
  }
}

/* Móviles medianos */
@media (max-width: 560px) {
  .banner-inicial {
    min-height: 60vh;         /* permite acomodar texto, perros y botones */
    padding-top: 40px;
    padding-bottom: 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* texto arriba */
    align-items: center;
  }

  /* Texto ARRIBA del banner */
  .banner-inicial-content {
    order: 1;        /* aparece primero */
    margin-bottom: 20px;
  }

  .banner-subtitle {
    font-size: 20px;
    margin-bottom: 4px;
  }

  .banner-logo img {
    width: 500px;
  }

  /* Perros CENTRADOS en el medio */
  .banner-inicial-dogs {
    order: 2;
    margin: 10px 0;
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .banner-inicial-dogs img {
    max-width: 430px; /* menos ancho para evitar desbordes */
    margin: 0 auto;
  }

  /* BOTONES abajo, separados del borde blanco */
  .banner-btn {
    font-size: 14px;
    padding: 12px 28px;
    margin: 0;
  }

  .valor-actions {
    order: 3;
  }

  /* BOTÓN BAJO (30px del borde blanco) */
  .banner-btn {
    margin-top: 20px;
    margin-bottom: 10px;  /* Puntual: separa del borde inferior */
    position: relative;
    z-index: 3;
  }
}
/* ======================================
   SECCIÓN DE VALOR (segunda sección)
====================================== */

.section-valor {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 20px;
  background:var(--color-white);
  text-align: center;
}

.valor-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  gap: 50px;
  align-items: center;
  justify-content: center;
}

/* Texto */
.valor-text h2 {
  font-size: 42px;
  line-height: 1.1;
  color: #1a1a1a;
}

.valor-text h2 span {
  color: #4e7183;
}

/* Badge */
.valor-badge {
  display: inline-block;
  background: #ffdd00;
  padding: 8px 18px;
  border-radius: 6px;
  font-weight: 700;
  margin-bottom: 14px;
  font-size: 16px;
}

/* Párrafo */
.valor-text p {
  color: #333;
  font-size: 18px;
  max-width: 70%;
  margin: auto;
  padding: 30px 0 10px;
}

/* Beneficios */
.valor-beneficios {
  margin: 25px 0;
  display: flex;
  flex-direction: row;
  gap: 60px;
  font-size: 0.96rem;
  color: var(--color-muted);
  justify-content: center;
}

/* Botones */
.valor-actions {
  margin-top: 25px;
  display: flex;
  gap: 16px;
}

/* Imagen */
.valor-media img {
  width: 100%;
  max-width: 440px;
  display: block;
}

/* ==========================
  RESPONSIVE
=========================== */

@media (max-width: 900px) {
  .valor-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .valor-text h2 {
    font-size: 32px;
  }

  .valor-text p {
  color: #333;
  font-size: 16px;
  max-width: 90%;
  margin: auto;
  padding: 30px 0 10px;
}
  .valor-beneficios {
    justify-content: left;
    align-items: center;
    font-size: 14px;
    gap:0px;
  }

  .valor-media img {
    margin: 0 auto;
  }
  .section-header h2 {
  max-width: var(--max-width);
  margin: 0 auto 30px;
  text-align: center;
  font-size: 32px;
  line-height: 1.1;
  }
}

/* ==========================
Top bar
=========================== */

.top-banner {
  width: 100%;
  background: #ffdd00;
  color: #000;
  font-weight: 700;
  text-align: center;
  padding: 8px 12px;
  font-size: 15px;
  letter-spacing: 0.3px;

  top: 0;
  z-index: 50; /* por encima del nav */
}

/* ===== OVERLAY ===== */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999999;
  padding: 20px;
}

/* ===== CONTENEDOR POPUP ===== */
.popup-content {
  background: #fff;
  width: 100%;
  max-width: 420px;
  padding: 25px;
  border-radius: 16px;
  position: relative;
  text-align: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
  animation: popupFade .3s ease-out;
}

/* Animación */
@keyframes popupFade {
  from { opacity: 0; transform: scale(0.95); }
  to   { opacity: 1; transform: scale(1); }
}

/* Botón cerrar */
.popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  border: 0;
  background: transparent;
  font-size: 28px;
  cursor: pointer;
}

/* Texto */
.popup-header h2 {
  font-size: 22px;
  margin: 0 0 10px;
}

.popup-logo-lavakan {
  max-width: 140px;
  margin-bottom: 10px;
  margin: 0 auto;
  display: block;
}

.popup-off {
  color: #e03a3a;
  font-weight: 700;
  font-size: 26px;
  margin: 10px 0;
}

.popup-text {
  font-size: 16px;
  margin: 10px 0 18px;
}

.popup-code {
  background: #4e7183;
  color: white;
  padding: 10px 18px;
  display: inline-block;
  border-radius: 8px;
  margin-bottom: 18px;
  font-size: 18px;
}

.popup-dog {
  width: 40%;
  max-width: 260px;
  margin: 15px auto 5px;
  display: block;
}

.popup-udb-logo {
  width: 50%;
  opacity: 0.9;
  margin: 10px auto 0;
  display: block;
}

/*--------------------------Whatsapps--------------------------*/

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  z-index: 9999;
  transition: transform .25s ease, box-shadow .25s ease;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 30px rgba(0,0,0,0.35);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}
/* ===== WHATSAPP FLOAT RESPONSIVE ===== */
@media (max-width: 768px) {
  .whatsapp-float {
    width: 48px;
    height: 48px;
    bottom: 16px;
    right: 16px;
  }

  .whatsapp-float svg {
    width: 24px;
    height: 24px;
  }
}

/* Ajuste extra para teléfonos muy chicos */
@media (max-width: 390px) {
  .whatsapp-float {
    bottom: 200px; /* evita choque con barras del navegador */
    right: 14px;
  }
}

/*<---------------------------------------- NOSOTROS -------------------------------------------->*/

/* ===== SECCIÓN NOSOTROS ===== */
.section-nosotros {
  background-color: var(--color-bg);
}

.nosotros-container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

/* Imagen */
.nosotros-image {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.nosotros-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Texto */
.nosotros-text {
  background-color: var(--color-white);
  border-radius: 28px;
  padding: 32px 28px;
  box-shadow: var(--shadow-soft);
}

.nosotros-text h2 {
  font-size: 1.8rem;
  margin-bottom: 14px;
  color: var(--color-black);
}

.nosotros-text p {
  font-size: 0.96rem;
  color: var(--color-muted);
  margin-bottom: 14px;
  line-height: 1.6;
}

.nosotros-highlight {
  font-weight: 600;
  color: var(--color-primary);
  margin-top: 10px;
}

@media (max-width: 900px) {
  .nosotros-container {
    grid-template-columns: minmax(0, 1fr);
  }

  .nosotros-text {
    padding: 26px 22px;
  }
  .nosotros-image {
  border-radius: 50px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.nosotros-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
    }
}





/*-------------------------Paginas de cupones---------------------------*/

.hero-small {
  height: auto;
  padding: 70px 20px 60px;
  background: linear-gradient(
    180deg,
    rgba(78, 113, 131, 0.15),
    rgba(78, 113, 131, 0.05)
  );
}

.hero-center {
  text-align: center;
}

.hero-center h1 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.hero-center p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--color-muted);
}
.section-coupons {
  background-color: var(--color-bg);
}

.coupons-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}
.coupon-logo {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.coupon-card {
  background-color: var(--color-white);
  border-radius: 24px;
  padding: 22px 20px 24px;

  /* 👇 BORDE REAL DE CARD */
  border: 1.5px solid rgba(78, 113, 131, 0.35);

  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;

  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.coupon-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.12);
}
 
.coupon-logo img {
  max-height: 60px;
  max-width: 100%;
  object-fit: contain;
}
.coupon-code {
  background-color: rgba(78, 113, 131, 0.08);
  border: 1px dashed rgba(78, 113, 131, 0.45);
  border-radius: 14px;
  padding: 12px 14px;
  text-align: center;
}

.coupon-code span {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-muted);
}

.coupon-code strong {
  font-size: 1.1rem;
  color: var(--color-primary);
  letter-spacing: 1px;
}
/* Botón Cómo llegar */
.coupon-map-btn {
  margin-top: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-primary);
  border: 1px solid rgba(78, 113, 131, 0.45);
  background-color: transparent;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.coupon-map-btn:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-1px);
}

/* ===== BENEFICIOS / CUPONES - RESPONSIVE FIX ===== */
@media (max-width: 900px) {
  .coupons-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .coupons-grid {
    grid-template-columns: 1fr;
  }

  /* Para que se vea centrada y prolija con 1 solo cupón */
  .coupon-card {
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
  }
}
