/* ------------------ RESET ------------------ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%; /* 1rem = 10px */
}

body {
  font-family: "Poppins", sans-serif;
  background-color: #f8f8f8;
  font-size: 1.6rem;
}

/* ------------------ CABECERA ------------------ */
.cabecera {
  background-color: black;
  padding: 2.5rem 3rem;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.container {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: wrap;
}

/* Logo */
.logo img {
  width: 6rem;
  height: auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
  box-shadow: 0 0.4rem 1.5rem rgba(0, 0, 0, 0.2);
}



/* Buscador */
.buscador {
  display: flex;
  align-items: center;
  background-color: #111;
  border-radius: 3rem;
  overflow: hidden;
  padding: 0.5rem 1.5rem;
  width: 60%;
}

.buscador input {
  border: none;
  outline: none;
  background: transparent;
  color: white;
  padding: 0.8rem;
  font-size: 1.4rem;
  width: 18rem;
}

.buscador input::placeholder {
  color: #aaa;
}

.buscador button {
  background-color: transparent;
  border: none;
  color: #00e6b8;
  cursor: pointer;
  font-size: 1.6rem;
  transition: color 0.3s ease;
}

.buscador button:hover {
  color: white;
}



.search-results {
  background-color: black;
  border: 0px white ;
  margin-top: 10rem;
  max-height: 300px;
  overflow-y: auto;
  position: absolute;
  width: 55%; /* Ajusta según tu diseño */
  z-index: 10;
  border-radius: 5px;
 
}

.search-results a {
  display: block;
  padding: 8px;
  text-decoration: none;
  color: white;
  border-bottom: 1px solid #eee;
}

.search-results a:hover {
  background-color: #f0f0f0;
}










/* Menú principal */
.menu {
  display: flex;
  gap: 5rem;
}

.menu a {
  color: white;
  font-weight: 500;
  font-size: 1.6rem;
  transition: color 0.3s ease;
  text-decoration: none;
}

.menu a:hover {
  color: #00e6b8;
}

/* ------------------ BANNER ------------------ */
.banner {
  position: relative;
  width: 100%;
  height: 80vh;
  overflow: hidden;
  margin-top: 8rem;
  margin-bottom: 1.2rem;
}

.slides img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: fade 12s infinite;
}

.slides img:nth-child(1) { animation-delay: 0s; }
.slides img:nth-child(2) { animation-delay: 4s; }
.slides img:nth-child(3) { animation-delay: 8s; }

@keyframes fade {
  0%, 40%, 100% { opacity: 0; }
  10%, 30% { opacity: 1; }
}

/* Texto del banner */
.banner-text {
  position: absolute;
  bottom: 10rem;
  left: 5rem;
  color: white;
  z-index: 5;
}

.banner-text h2 {
  font-size: 3rem;
  color: #00e6b8;
  text-transform: uppercase;
  -webkit-text-stroke :0.8px black;
}

.banner-btn {
  display: inline-block;
  margin-top: 2rem;
  background: #dd0079;
  color: white;
  padding: 1rem 2rem;
  border-radius: 3rem;
  font-weight: bold;
  font-size: 1.6rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.banner-btn:hover {
  background: #00e6b8;
  color: black;
}
/* ===========================
   RECUADROS EXCLUSIVOS DEL BANNER 3
   =========================== */
.banner3-box {
  position: absolute;
  top: 15rem;
  width: 20rem;
  height: 20rem;
  background: none;
  z-index: 6;
  opacity: 0;
  pointer-events: none;
  border-radius: 3px;
  text-align: center;

  animation: fade 12s infinite;
}

/* Recuadro que aparece en los últimos 4 segundos */
.banner3-box.left-box,
.banner3-box.right-box {
  animation-delay: 8s;  /* aparece solo entre 8s y 12s */
}

/* Posiciones */
.banner3-box.left-box { left: 7rem; }
.banner3-box.right-box { right: 7rem; }

/* MISMA animación que tus imágenes */
@keyframes fade {
  0%   { opacity: 0; }
  10%  { opacity: 1; }   /* fade in */
  35%  { opacity: 1; }   /* visible */
  43%  { opacity: 0; }   /* fade out */
  100% { opacity: 0; }
}







/* ------------------ PRODUCTOS ------------------ */
.caja_productos,
.accesorios,
.sorpresas {
  width: 90%;
  margin: 4rem auto;
}

.fila {
  display: flex;
  justify-content: center;
  gap: 8rem;
  flex-wrap: wrap;
}

.columna {
  flex: 1 1 30rem;
  max-width: 35rem;
  position: relative;
}

.columna img {
  width: 100%;
  border-radius: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.columna img:hover {
  transform: scale(1.05);
  box-shadow: 0 0.4rem 1.5rem rgba(0, 0, 0, 0.2);
}

/* Botón del catálogo */
.botoncatalogo {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0, 230, 184, 0.9);
  color: black;
  text-decoration: none;
  padding: 1rem 2.5rem;
  font-weight: bold;
  border-radius: 2.5rem;
  opacity: 0;
  transition: all 0.4s ease;
}

.columna:hover .botoncatalogo {
  opacity: 1;
  bottom: 3rem;
}

/* ------------------ FOOTER ------------------ */
.footer {
  background-color: #111;
  color: white;
  width: 100%;
  padding: 4rem 0 2rem;
  margin-top: 5rem;
  position: relative;
  z-index: 1000;
}

.contenedor-footer {
  width: 90%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-col {
  flex: 1 1 25rem;
  padding: 2rem;
}

.footer-col h3 {
  color: rgba(0, 230, 184, 0.9);
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
  border-bottom: 0.2rem solid rgba(0, 230, 184, 0.7);
  display: inline-block;
  padding-bottom: 0.5rem;
}

.footer-col p,
.footer-col a {
  color: #ccc;
  font-size: 1.5rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: rgba(0, 230, 184, 1);
}

.redes-sociales a img {
  width: 2.4rem;
  height: 2.4rem;
  margin-right: 1rem;
  filter: invert(100%);
  transition: transform 0.3s ease, filter 0.3s ease;
  margin-top: 1rem;
}

.redes-sociales a img:hover {
  transform: scale(1.2);
  filter: invert(73%) sepia(65%) saturate(588%) hue-rotate(120deg) brightness(95%) contrast(93%);
}

.footer-copy {
  text-align: center;
  font-size: 1.4rem;
  color: black;
  background-color: white;
  padding: 1rem 0;
}

/* ------------------ RESPONSIVE ------------------ */
@media (max-width: 992px) {
  .banner-text h2 { font-size: 2rem; }
  .container { flex-direction: column; gap: 1rem; }
  .menu { flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 768px) {
  .banner { height: 79vh; }
  .banner-text { bottom: 6rem; left: 2rem; }
  .banner-text h2 { font-size: 1.8rem; }
  .buscador input { width: 12rem; }
  .menu {
    flex-direction: column;
    align-items: center;
    background-color: #111;
    width: 100%;
    padding: 1rem 0;
  }
  .menu a { padding: 0.8rem; }
  .fila { gap: 1rem; }
  .columna { flex: 1 1 100%; max-width: 100%; }
  .footer-col { flex: 1 1 100%; text-align: center; }
}

@media (max-width: 480px) {
  .banner-text h2 { font-size: 1.4rem; }
  .banner-btn { padding: 0.8rem 1.5rem; font-size: 1.4rem; }
  .logo img { width: 7rem; }
}

/* ------------------ MENÚ HAMBURGUESA SIN JS ------------------ */
.menu-toggle {
  display: none;
}

.hamburger {
  display: none;
  font-size: 2.8rem;
  color: white;
  cursor: pointer;
  background: none;
  border: none;
  z-index: 1100;
  position: absolute;
  right: 2rem;
}

@media (max-width: 768px) {
  .hamburger { display: block; }
  .container {
    flex-direction: column;
    align-items: center;
  }
  .buscador {
    width: 80%;
    justify-content: center;
    margin: 1rem 0;
  }
  .menu {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: #111;
    text-align: center;
    padding: 1rem 0;
  }
  .menu a {
    display: block;
    padding: 1rem;
    color: white;
  }
  .menu-toggle:checked + .hamburger + .buscador + .menu {
    display: flex;
  }
}

/* ------------------ SECCIONES EXTRA ------------------ */
.video-fondo {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  z-index: 1;
}

.ubi {
  position: relative;
  z-index: 10;
}

.sobre-nosotros {
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
}

.text-n {
  position: relative;
  color: white;
  z-index: 3;
  margin-bottom: 1rem;
}

.nosotros {
  background-color: gray;
  margin-top: 15rem;
}

.map_part {
  border-radius: 1rem;
}


::-webkit-scrollbar
{
  width: 0.5rem;
}
::-webkit-scrollbar-track
{
  background-color: black;
} 
::-webkit-scrollbar-thumb
{
  background-color: #00e6b8;
  outline: 1px solid slategrey;
  border-radius: 5px;
}
/*.contenido {
  background-image: url('../img/fondo1.jpg'); /* Reemplaza con la ruta de tu imagen */
  background-size: cover; /* Para que la imagen cubra todo el fondo */
  background-position: center; /* Para centrar la imagen */
  background-repeat: no-repeat; /* Para evitar que la imagen se repita */
  background-attachment: fixed; /* Para que la imagen se quede fija al hacer scroll */
} *//

.contactos-banner {
  position: relative;
  width: 100%;
  height: 45vh;
  overflow: hidden;
  margin-top: 8.5rem;
  margin-bottom: 0rem;
}

.slides-banner img {
  position: absolute;
  width: 100%;
  height: 50vh;
object-fit: cover;}


#contactos
{
  background-color: #black;
}
#contactos .columna-info-contacto 
{
  font-style: italic;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#contactos .columna-info-contacto h2,
#contactos .columna-info-contacto .telefono,
#contactos .columna-info-contacto .email
{
  color: black;
  font-size: 2.5 rem;
  text-decoration: none;
  margin-bottom: 1rem;
  display: inline-block;
  margin-top: 0;
}
#contactos .container.fila
{
  display: flex;
}










.registro .registro_contenedor h2
{
  color: #00e6b8;
}

.registro
{
  margin-top:8vh ;
  font-style:;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: ;
}
  .registro_contenedor form label 
  {
   font-style: normal;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 1rem;
  margin-bottom: 0.2rem;
  color: #00e6b8;
  }

   .registro_contenedor form  
  {
   background-color: black;
   margin-right: 40%;
   margin-left: 40%;
   border-radius: 1rem;
   padding: 1rem;
   border: 2px solid #00e6b8;
  }
  .fondo-registro
  {
    width: 100%;
    height: 100vh;
    background-color: black;
    opacity: 0.9;
  }








/*nosotros*/
.nosotros {
  min-height: 100vh;
  padding: 0rem 2rem 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2rem;
}

.text-n {
  max-width: 800px;
  background: rgba(0, 0, 0, 0.5);
  padding: 1.5rem 2rem;
  border-radius: 1rem;
}

.map_part {
  width: 120%;
  max-width: 800px;
  height: 400px;
  border: none;
  border-radius: 1rem;
}
.ubi 
{
  width: 50vh;
  display:flex;
  align-items: center;
  text-align: center;
}

h3, h4 {
  color: #00e6b8;
  margin-bottom: 1rem;
}

.video-fondo
{
  width: 100%;
  height: 140%;
}


/* --- Responsive --- */
@media (max-width: 900px) {
  .menu {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 60%;
    height: calc(100vh - 70px);
    background: rgba(0, 0, 0, 0.9);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    transition: right 0.3s;
  }

  .menu-toggle:checked ~ .menu {
    right: 0;
  }

  .hamburger {
    display: block;
    color: #fff;
  }

  

  .nosotros {
    padding-top: 10rem;
  }
}

@media (max-width: 600px) {
  .text-n, .map_part {
    width: 100%;
  }
  .footer-col {
    text-align: center;
  }
}

.body-regis
{
  color: black;
  background-color: black;
}




.productos {
  width: 100%;
  padding: 50px 0;
  display: flex;
  justify-content: center;
  margin-top: 8rem;
}

.grid {
  width: 90%;
  max-width: 1400px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px 40px;
  justify-items: center;
}

/* Tarjeta */
.producto {
  text-align: center;
  max-width: 300px;
}

/* Imagen */
.producto img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
  border-radius: 4px;
}

/* Título */
.producto h3 {
  margin: 12px 0 8px;
  font-size: 16px;
  font-weight: 600;
  color: #222;
}

/* Precios */
.precio {
  font-size: 17px;
  font-weight: bold;
  margin: 0;
}

.descuento {
  font-size: 15px;
  margin: 2px 0;
  color: #684b2b;
  font-weight: 600;
}

.cuotas {
  font-size: 14px;
  color: #5a5a5a;
}

/* Responsivo */
@media (max-width: 1100px) {
  .grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

@media (max-width: 500px) {
  .grid {
    grid-template-columns: repeat(1, 1fr);
  }
}





