:root {
  --color-rosa: #f9c9d5;
  --color-azul: #003f9e;
  --color-amarillo: #ffd84a;
  --color-verde: #c9ff70;
  --color-rojo: #ff2b23;
  --texto-oscuro: #1a1a1a;
  --texto-claro: #fff;
}

body {
    padding-top: 120px; /* Ajusta según la altura de tu header */

  margin: 0;
  font-family: "Poppins", sans-serif;
  color: var(--texto-oscuro);
  background: linear-gradient(to right, rgba(0, 63, 158, 0.8), rgba(249, 201, 213, 0.8));
  scroll-behavior: smooth;
}

/* ----- MENÚ GENERAL ----- */


/* Móvil */
@media (max-width: 768px) {
  header .logo img {
    width: 160px;   /* Tamaño más pequeño para celular */
  }
}

/* HEADER RESPONSIVO 
header {
  
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #003f9e;
  padding: 10px 20px;
  position: relative;
}*/
header {
  align-items: center;
  justify-content: space-between;
  display: flex;


  position: fixed;      /* 🔥 Lo deja fijo arriba */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 500;        /* Para que quede por encima del contenido */
  background: #003f9e;
  padding: 10px 20px;
}



/* MENÚ DESKTOP */
.menu {
  display: flex;
  gap: 25px;
}

.menu a {
  color: white;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
}

/* ICONO HAMBURGUESA (OCULTO EN DESKTOP) */
.menu-icon {
  font-size: 32px;
  color: white;
  cursor: pointer;
  display: none;
}

/* RESPONSIVE */
@media (max-width: 768px) {

  .menu-icon {
    display: block;
  }

  /* Ocultar menú inicialmente */
  .menu {
    display: none;
    position: absolute;
    top: 70px;
    right: 0;
    background: #003f9e;
    width: 100%;
    padding: 15px 0;
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .menu.active {
    display: flex;
  }

  header .logo {
    width: 100px;
  }

  /* El carrito se hace más pequeño */
  .carrito-header {
    padding: 10px;
  }
}





.banner-cdmx {
  background: #003f66;
  color: white;
  text-align: center;
  padding: 6px 0;
  font-size: 0.95rem;
  font-weight: bold;
}


.logo {
  display: flex;
  align-items: center;
  width: 200px;   /* Aumenta solo hacia la derecha */
  height: auto;   /* Mantiene la altura igual */
  overflow: visible; /* permite que el logo salga un poco */
}

nav a {
  color: var(--texto-claro);
  margin: 0 15px;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

nav a:hover {
  color: var(--color-amarillo);
}


/* 🛒 Carrito en header */
.carrito-header {
  position: relative;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 18px;
  font-weight: bold;
  padding: 28px 20px;
  border-radius: 10px;
  transition: 0.3s;
}

.icono-carrito {
  width: 35px;
  height: 35px;
}

.carrito-header span {
  position: absolute;
  top: -8px;
  right: -10px;
  background: red;
  color: white;
  padding: 3px 7px;
  border-radius: 50%;
  font-size: 0.8rem;
}


.btn-carrito {
  margin-top: 10px;
  background: #8b47fd;
  color: white;
  border: none;
  width: 100%;
  padding: 10px;
  border-radius: 6px;
  cursor: pointer;
}


.carrito-panel {
  position: fixed;
  top: 0;
  right: -350px;
  width: 350px;
  height: 100%;
   background: #ffffff;
  box-shadow: -4px 0 12px rgba(0,0,0,0.2);
  padding: 20px;
  transition: 0.4s;
  z-index: 9999;
   border-radius: 15px 0 0 15px;
}



#btnCarritoFlotante svg {
  width: 34px;
  height: 34px;
}

#btnCarritoFlotante span {
  background: red;
  color: white;
  padding: 3px 7px;
  border-radius: 50%;
  font-size: 0.8rem;
  position: absolute;
  top: -8px;
  right: -8px;
}
.carrito-panel.active {
  right: 0;
}

.carrito-panel h2 {
  margin-top: 0;
}

#listaCarrito {
  list-style: none;
  padding: 0;
}

#listaCarrito li {
  display: flex;
  justify-content: space-between;
  margin: 10px 0;
  padding-bottom: 10px;
  border-bottom: 1px solid #ddd;
}

.btn-whatsapp {
  width: 100%;
  padding: 12px;
  background: #25D366;
  border: none;
  border-radius: 6px;
  color: white;
  font-size: 1.1em;
  cursor: pointer;
  margin-top: 15px;
}

.btn-cerrar {
  width: 100%;
  margin-top: 10px;
  padding: 10px;
  background: #777;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}


.btn-continuar {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 10px;
  background: #003f66;
  color: #fff;
  cursor: pointer;
  margin-top: 10px;
}


/* PANEL FORMULARIO */
.panel-formulario {
  position: fixed;
  top: 0;
  right: 0;
  width: 380px;
  height: 100%;
  background: #ffffff;
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.18);
  padding: 30px;
  z-index: 2000;
  overflow-y: auto;
  border-radius: 15px 0 0 15px;
 /* animation: slideIn 0.3s ease;*/
}




/* Animación de entrada */
@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.panel-formulario h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #003f66;
  font-size: 22px;
  font-weight: bold;
}

/* LABELS */
.panel-formulario label {
  font-weight: 600;
  color: #003f66;
  margin-bottom: 6px;
  display: block;
}

/* INPUTS */
.panel-formulario input,
.panel-formulario textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #d3d3d3;
  border-radius: 12px;
  background: #f7faff;
  margin-bottom: 15px;
  font-size: 15px;
  transition: all 0.2s ease;
}

/* Efecto al escribir */
.panel-formulario input:focus,
.panel-formulario textarea:focus {
  border-color: #003f66;
  background: #ffffff;
  box-shadow: 0 0 8px rgba(0, 63, 102, 0.25);
  outline: none;
}

.panel-formulario textarea {
  height: 90px;
  resize: none;
}

/* BOTÓN FINALIZAR */
.btn-finalizar {
  width: 100%;
  background: #25d366;
  color: #ffffff;
  padding: 14px;
  border: none;
  border-radius: 12px;
  font-size: 17px;
  font-weight: bold;
  cursor: pointer;
  margin-top: 10px;
  transition: background 0.3s, transform 0.1s ease-in-out;
}

.btn-finalizar:hover {
  background: #1ebe5c;
}

.btn-finalizar:active {
  transform: scale(0.98);
}

/* BOTÓN REGRESAR */
.btn-cerrar {
  width: 100%;
  background: #dcdcdc;
  padding: 12px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  font-size: 15px;
  margin-top: 12px;
  transition: background 0.3s;
}

.btn-cerrar:hover {
  background: #c4c4c4;
}


#mapaUbicacion {
  width: 100%;
  height: 250px;
  border-radius: 12px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.texto-direccion {
  font-size: 14px;
  color: #003f66;
  margin-bottom: 10px;
  font-weight: 600;
}

/* PANEL DE SELECCIÓN DE ENTREGA */
.panel-entrega {
  position: fixed;
  top: 0;
  right: 0;
  width: 360px;
  height: 100%;
  background: #ffffff;
  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.15);
  padding: 20px 25px;
  z-index: 9999;
  overflow-y: auto;
  border-left: 4px solid #003f66;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-radius: 15px 0 0 15px;

  animation: slideIn 0.3s ease forwards;
}

/* Animación */
@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Título */
.titulo-entrega {
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  color: #003f66;
  margin-bottom: 10px;
}

/* Contenedor de botones */
.opciones-entrega {
  display: flex;
  flex-direction: column;
  gap: 15px;
  
}

/* Botones principales */
.btn-entrega {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #f2f8fc;
  border: 2px solid #003f66;
  padding: 14px;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  color: #003f66;
  transition: 0.2s ease;
}

.btn-entrega:hover {
  background: #003f66;
  color: white;
  transform: translateY(-2px);
}

/* Iconos dentro del botón (emoji o svg) */
.btn-entrega svg,
.btn-entrega emoji {
  font-size: 22px;
}

/* Botón regresar */
.btn-cerrar {
  margin-top: 20px;
  background: #ccc;
  border: none;
  padding: 12px;
  border-radius: 10px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.2s ease;
}

.btn-cerrar:hover {
  background: #b1b1b1;
}

/* ===== SLIDER CON RECUADRO Y TEXTO ===== */

.hero-slider {
  position: relative;
  width: 80%;
  height: calc(100vh - 90px); /* Ajusta altura restando el header */
  background: linear-gradient(to right, rgba(0, 63, 158, 0.8), rgba(249, 201, 213, 0.8));
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  padding-top: 0px;
}

/* ✔ Texto del inicio */
.pagina-inicio h1,
.pagina-inicio h3 {
  color: red;
  text-align: center;
}

/* ✔ Contenedor del slider */
.slider-wrapper {
  position: relative;
  width: 100%;
  height: 65vh;
  overflow: hidden;
}

/* ✔ Escenario del carrusel */
.slider-contenedor {
  display: flex;
  transition: transform 0.5s ease-in-out;
  height: 100%;
}

/* ✔ Cada imagen */
.slide-item {
  min-width: 100%;
  flex: 0 0 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slide-item img {
 
  object-fit: cover;   /* 👈 hace que se vea completa sin deformarse */
  display: block;
  width: 100%;
  height: 100%;
  /*object-fit: contain;*/
  background: #000;
}




/* ✔ Móvil */
@media (max-width: 600px) {
  .slider-wrapper {
    height: 23vh;
  }

}


/* Flechas */
.flecha-slider {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.7);
  border: none;
  font-size: 3rem;
  cursor: pointer;
  padding: 8px 15px;
  z-index: 20;
  border-radius: 10px;
  transition: 0.3s;
}

.flecha-slider:hover {
  background: rgba(255,255,255,1);
}

.flecha-slider.izq { left: 40px; }
.flecha-slider.der { right: 40px; }




/*---------------------------------------------------------------------
/* Servicios */
.servicios {
  justify-self: center;
  text-align: center;
  justify-content: center;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.btn-servicio {
  display: inline-block;
  margin-top: 10px;
  background: #7b2ff7;
  color: white;
  border: none;
  padding: 12px 22px;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
}

.btn-servicio:hover {
  background: #5d0be3;
  transform: translateY(-3px);
}

.btn-servicio:active {
  transform: scale(0.95);
}


.servicios-contenedor {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 60px;
}

.servicio {
  background: #fff;
  border-radius: 20px;
  width: 400px;
  padding: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.servicios h1 {
  color: var(--color-azul);
  font-size: 1.6em;
  margin-bottom: 15px;
}

.servicios a {
  flex-grow: 1;
}


.servicios:hover {
  transform: translateY(-10px);
}

.servicios img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 15px;
}


/*---------------------------------------------------------------------
/* Equipos */
.equipos {
  position: relative;
  padding: 80px 50px;
  background: var(--color-verde);
  color: var(--texto-oscuro);
  text-align: center;
}

.equipos h2 {
  font-size: 2.5em;
  margin-bottom: 10px;
  color: var(--texto-oscuro);
}

.equipos p {
  color: var(--texto-oscuro);
  margin-bottom: 40px;
  font-size: 1.1em;
}

.equipos-grid {
  overflow: visible;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}


section.equipos {
  position: relative;
  padding: 80px 50px;
   background: linear-gradient(to right, rgba(0, 63, 158, 0.8), rgba(249, 201, 213, 0.8));
  text-align: center;
}

.equipos-grid .equipos {
  position: relative;
  background-color: #fff; /* tarjetas blancas sobre fondo verde */
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 20px;
  transition: transform 0.3s ease;
  cursor: pointer;
  overflow: visible;
  z-index: 1;
}

.equipos:hover {
  transform: translateY(-8px);
}

.equipos img {
  width: 100%;
  border-radius: 15px;
  margin-bottom: 15px;
   height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(6px);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  align-items: flex-start;
  overflow-y: auto; 
  padding: 25px 30px; 
  opacity: 0;
  pointer-events: none;
  transform: scale(0.96);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 15; 
  border-radius: 20px;
  
}

.overlay p {
  color: #fff;
  font-size: 1em;
  margin-bottom: 15px;
  line-height: 1.4;
}


/* Lista de características */
.overlay ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.overlay ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  font-size: 0.95em;
  line-height: 1.4;
  color: #f0f0f0;
}

.overlay ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--color-amarillo);
  font-weight: bold;
}

/* Mostrar overlay al pasar el mouse */
.equipos:hover .overlay {
  opacity: 0 !important;
  transform: scale(0.96) !important;
  pointer-events: none !important;
}
.overlay.mostrar {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.overlay .info {
   width: 100%;
  animation: fadeInOverlay 0.4s ease forwards;
}


.overlay .info p {
  font-size: 1.1em;
  margin-bottom: 15px;
  font-weight: 500;
}

/* Accesorios */
.accesorios {
  position: relative;
  padding: 80px 50px;
  background: var(--color-verde);
  color: var(--texto-oscuro);
  text-align: center;
}

.accesorios h2 {
  font-size: 2.5em;
  margin-bottom: 10px;
  color: var(--texto-oscuro);
}

.accesorios p {
  color: var(--texto-oscuro);
  margin-bottom: 40px;
  font-size: 1.1em;
}

.accesorios-grid {
  overflow: visible;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}


section.accesorios {
  position: relative;
  padding: 80px 50px;
   background: linear-gradient(to right, rgba(0, 63, 158, 0.8), rgba(249, 201, 213, 0.8));
  text-align: center;
}

.accesorios-grid .accesorios {
  position: relative;
  background-color: #fff; /* tarjetas blancas sobre fondo verde */
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 20px;
  transition: transform 0.3s ease;
  cursor: pointer;
  overflow: visible;
  z-index: 1;
}

.accesorios:hover {
  transform: translateY(-8px);
}

.accesorios img {
  width: 100%;
  border-radius: 15px;
  margin-bottom: 15px;
   height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(6px);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  align-items: flex-start;
  overflow-y: auto; 
  padding: 25px 30px; 
  opacity: 0;
  pointer-events: none;
  transform: scale(0.96);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 15; 
  border-radius: 20px;
  
}

.overlay p {
  color: #fff;
  font-size: 1em;
  margin-bottom: 15px;
  line-height: 1.4;
}


/* Lista de características */
.overlay ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.overlay ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  font-size: 0.95em;
  line-height: 1.4;
  color: #f0f0f0;
}

.overlay ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--color-amarillo);
  font-weight: bold;
}

/* Mostrar overlay al pasar el mouse */
.equipos:hover .overlay {
  opacity: 0 !important;
  transform: scale(0.96) !important;
  pointer-events: none !important;
}
.overlay.mostrar {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.overlay .info {
   width: 100%;
  animation: fadeInOverlay 0.4s ease forwards;
}


.overlay .info p {
  font-size: 1.1em;
  margin-bottom: 15px;
  font-weight: 500;
}


/* Accesorios */
.mobiliario {
  position: relative;
  padding: 80px 50px;
  color: var(--texto-oscuro);
  text-align: center;
}

.mobiliario h2 {
  font-size: 2.5em;
  margin-bottom: 10px;
  color: var(--texto-oscuro);
}

.mobiliario p {
  color: var(--texto-oscuro);
  margin-bottom: 40px;
  font-size: 1.1em;
}

.mobiliario-grid {
  overflow: visible;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}


section.mobiliario {
  position: relative;
  padding: 80px 50px;
   background: linear-gradient(to right, rgba(0, 63, 158, 0.8), rgba(249, 201, 213, 0.8));
  text-align: center;
}

.mobiliario-grid .mobiliario {
  position: relative;
  background-color: #fff; /* tarjetas blancas sobre fondo verde */
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 20px;
  transition: transform 0.3s ease;
  cursor: pointer;
  overflow: visible;
  z-index: 1;
}

.mobiliario:hover {
  transform: translateY(-8px);
}

.mobiliario img {
  width: 90%;
  border-radius: 15px;
  margin-bottom: 15px;
   height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(6px);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  align-items: flex-start;
  overflow-y: auto; 
  padding: 25px 30px; 
  opacity: 0;
  pointer-events: none;
  transform: scale(0.96);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 15; 
  border-radius: 20px;
  
}

.overlay p {
  color: #fff;
  font-size: 1em;
  margin-bottom: 15px;
  line-height: 1.4;
}


/* Lista de características */
.overlay ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.overlay ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  font-size: 0.95em;
  line-height: 1.4;
  color: #f0f0f0;
}

.overlay ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--color-amarillo);
  font-weight: bold;
}

/* Mostrar overlay al pasar el mouse */
.equipos:hover .overlay {
  opacity: 0 !important;
  transform: scale(0.96) !important;
  pointer-events: none !important;
}
.overlay.mostrar {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.overlay .info {
   width: 100%;
  animation: fadeInOverlay 0.4s ease forwards;
}


.overlay .info p {
  font-size: 1.1em;
  margin-bottom: 15px;
  font-weight: 500;
}

/* ===== CINTA DIAGONAL CON PRECIO ===== */
.precio-cinta {
  position: absolute;
  top: 10px;
  left: -40px;
  background: #ff004c;
  color: white;
  padding: 8px 40px;
  font-size: 1rem;
  font-weight: bold;
  transform: rotate(-45deg);
  z-index: 5;
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
  pointer-events: none;
  user-select: none;
  text-align: center;
}


/* Efecto de aparición más elegante */
@keyframes fadeInOverlay {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.overlay.mostrar .info {
  animation: fadeInOverlay 0.4s ease forwards;
}
/*-----------------------------------------------------------------
/* =========================
   SECCIÓN CONTACTO
========================= */
.contacto {
  background: linear-gradient(to right, rgba(0, 63, 158, 0.8), rgba(249, 201, 213, 0.8));
  padding: 70px 50px;
  text-align: center;
  display: flex;
  gap: 25px;
}

.btn-whatsapp {
  width: 100%;
  padding: 10px;
  background: #25D366;
  border: none;
  color: white;
  margin-top: 15px;
}

.btn-cerrar {
  width: 100%;
  padding: 10px;
  background: #555;
  color: white;
  border: none;
}

.contacto h1 {
  text-align: center;
 color: white;
  font-size: 1.6em;
  margin-bottom: 15px;
}

form {
  display: flex;
  flex-direction: column;
  max-width: 500px;
  margin: auto;
}

form input,
form textarea {
  margin: 10px 0;
  padding: 12px;
  border-radius: 10px;
  border: none;
  font-size: 1em;
}

form button {
  margin-top: 10px;
}


.contacto-container {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 30px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.contacto-form {
  flex: 1;
  min-width: 300px;
  max-width: 450px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contacto-form input,
.contacto-form textarea {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 16px;
}


.contacto-form textarea {
  height: 140px;
  resize: none;
}

.contacto-mapa {
  flex: 1;
  min-width: 320px;
  max-width: 500px;
  height: 350px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/*---------------------------------------------------------------------*/
footer {
  background-color: var(--color-azul);
  color: var(--texto-claro);
  text-align: center;
  padding: 20px;
}

.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 25px;
  background: var(--color-rojo);
  color: var(--texto-claro);
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s, transform 0.2s;
}

.btn:hover {
  background: var(--color-amarillo);
  color: var(--texto-oscuro);
  transform: scale(1.05);
}



.whatsapp-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 70px;
  height: 70px;
  background: var(--color-verde);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 1000;
}

.whatsapp-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

/* =========================
   ANIMACIONES
========================= */
[data-animar] {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

[data-animar].visible {
  opacity: 1;
  transform: translateY(0);
}
/*-----------------------------------------------------------------
/* ===== Redes sociales en contacto ===== */
.redes-sociales {
  background: linear-gradient(to right, rgba(0, 63, 158, 0.8), rgba(249, 201, 213, 0.8));
  margin-top: 40px;
  text-align: center;
}

.redes-sociales h3 {
  color: var(--texto-claro);
  font-size: 1.6em;
  margin-bottom: 15px;
}

.iconos-redes {
  display: flex;
  justify-content: center;
  gap: 25px;
}

.iconos-redes a {
  display: inline-block;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.iconos-redes a:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.iconos-redes img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*----------------------------------------------------------------------------
/* ===== FOOTER ===== */
.footer {
  text-align: center;
  padding: 20px;
  background: #111;
  color: #fff;
  font-size: 0.9em;
  margin-top: 60px;
}

.footer-link {
  background: none;
  border: none;
  color: #aaff00;
  cursor: pointer;
  text-decoration: underline;
  font-size: 0.9em;
}

.footer-link:hover {
  color: #d4ff88;
}

/*--------------------------------------------------------------------------------
/* ===== MODALES ===== */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.65);
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.modal-contenido {
  background: #fff;
  padding: 25px 35px;
  border-radius: 12px;
  max-width: 650px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  animation: fadeIn 0.3s ease;
}

.modal-contenido h2 {
  margin-top: 0;
}

.modal-contenido p {
  margin-bottom: 14px;
}
.modal-contenido ul {
  margin-bottom: 16px;
}

.cerrar {
  float: right;
  font-size: 28px;
  cursor: pointer;
  color: #333;
}

.cerrar:hover {
  color: #ff4444;
}

/* Animación */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}
 

/* carrito*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


/* --- CONTACTO RESPONSIVE --- */

/* Contenedor base */
.contacto {
    display: flex;
    gap: 25px;
    padding: 40px;
}

#mapaUbicacion {
  min-height: 250px;
  height: 300px !important;
}

/* Hacer mapa e inputs adaptables */
.formulario,
.mapa {
    flex: 1;
}

/* Para pantallas medianas */
@media (max-width: 992px) {
    .contacto {
        padding: 25px;
        gap: 20px;
    }

    .mapa {
        height: 300px;
    }
}

/* Para tablets y celulares */
@media (max-width: 768px) {
    .contacto {
        flex-direction: column;  
        padding: 20px;
        gap: 20px;
    }

    .mapa {
        height: 250px;         
        width: 100%;
    }

    .formulario input,
    .formulario textarea {
        font-size: 1rem;
    }
}

/* Para celulares pequeños */
@media (max-width: 480px) {

    .contacto {
        padding: 15px;
    }

    .mapa {
        height: 220px;
    }

    .formulario h1 {
        font-size: 1.4rem;
    }
}
/*--------------------------------*/
/*paquetes*/
/* ======================== PAQUETES =========================== */

.paquetes {
  padding: 40px 20px;
    color: red;
    justify-content: center;
  align-items: center;
}

.PaqueteCine h1{
   color: white;
  text-align: center;
}

.PaqueteKaraoke h1{
   color:white ;
     text-align: center;
}

.PaqueteConferencia h1{
   color: white;
     text-align: center;
}

.paquetes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  margin-bottom: 40px;
   justify-content: center;
  align-items: center;

}
 

.paquete-card {
  background: linear-gradient(135deg, #6a11cb, #2575fc);
  padding: 25px;
  border-radius: 18px;
  color: white;
  text-align: center;
  box-shadow: 0 6px 15px rgba(0,0,0,0.25);
  transition: 0.25s ease;
}

.paquete-card:hover {
  transform: translateY(-8px);
}
.pagina-servicio h1 , h3{
  color: red;
  text-align: center;

}


.descripcion-larga {
  color: white;
  text-align: center;

}

.paquete-card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  font-weight: bold;
}

.paquete-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 15px;
}

.paquete-card ul li {
  margin: 6px 0;
  font-size: 0.95rem;
}

.precio-paquete {
  background: #ffffff;
  color: #003f66;
  font-size: 1.6rem;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 12px;
  display: inline-block;
  margin-bottom: 15px;
}

.telefono-header {
  margin-left: 20px;
  display: flex;
  align-items: center;
}

.telefono-header a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #ffffff;
  font-weight: bold;
  font-size: 17px;
  text-decoration: none;
  transition: 0.3s;
}

.telefono-header a:hover {
  color: #ffd700;
}

@media (max-width: 768px) {
  .telefono-header {
    display: none; /* Se oculta en móvil */
  }
}


.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #2b2b2b;
  color: white;
  padding: 15px;
  text-align: center;
  display: none;
  z-index: 9999;
}

.cookie-banner button {
  background: #4CAF50;
  border: none;
  padding: 8px 15px;
  color: white;
  margin-left: 10px;
  border-radius: 5px;
  cursor: pointer;
}


/* Ícono menú sin animación */
.menu-btn {
  display: none;
  cursor: pointer;
  z-index: 1100;
  padding: 10px;
}

.menu-icon {
  width: 30px;
  height: 22px;
  position: relative;
}

.menu-icon span {
  position: absolute;
  width: 100%;
  height: 3px;
  background: white;
  border-radius: 3px;
}

/* Líneas del menú */
.menu-icon span:nth-child(1) { top: 0; }
.menu-icon span:nth-child(2) { top: 9px; }
.menu-icon span:nth-child(3) { top: 18px; }

/* Menú móvil SIN animación del icono */
nav ul {
  display: flex;
  gap: 25px;
  list-style: none;
}

/* Estilos móviles */
@media (max-width: 768px) {
  nav ul {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: -260px;
    height: 100vh;
    width: 160px;
  background: #003f9e;
    padding-top: 80px;
    padding-left: 20px;
    box-shadow: -4px 0px 12px rgba(0,0,0,0.2);
    transition: right 0.3s ease; /* SOLO animación del panel */
    z-index: 1000;
  }

  nav ul.mostrar {
    right: 0;
  }

  .menu-btn {
    display: block;
  }

  .telefono-header {
    display: none;
  }
}

/* Overlay */
#menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(1px);
  z-index: 900;
}

#menu-overlay.mostrar {
  display: block;
}

/* Teléfono debajo del logo */
.telefono-header {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: -5px;
}

.telefono-header a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
}

.telefono-header svg {
  stroke: #ffffff;
}


/* 📱 Versión móvil – se ajusta automáticamente */
@media (max-width: 768px) {
  .telefono-header {
    margin-top: 5px;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .telefono-header a {
    font-size: 14px;
  }

  .telefono-header svg {
    width: 17px;
    height: 17px;
  }
}

.cantidad-selector {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin: 10px 0;
}

.cantidad-selector button {
    width: 30px;
    height: 30px;
    background: #003f66;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1.2rem;
    cursor: pointer;
}

.cantidad-selector input {
    width: 50px;
    text-align: center;
    padding: 4px;
    font-size: 1rem;
    border: 2px solid #ccc;
    border-radius: 6px;
}
