html, body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  overflow-x: hidden;
  
}

body {
  font-family: Arial, sans-serif;
  padding: 20px;
  overflow-x: hidden;
    width: 100%;
}

.producto {
  border: 1px solid #ccc;
  padding: 15px;
  margin: 10px;
  border-radius: 5px;
  text-align: center;
  width: 200px;
  display: inline-block;
}

.producto img {
  width: 100%;
  max-height: 150px;
  object-fit: cover;
  border-radius: 5px;
}

#menu-toggle {
  background-color: transparent;
  padding: 0; 
}


button {
  background-color: yellow;
  padding: 10px;
  border: none;
  cursor: pointer;
  margin-top: 10px;
}

button img {
  vertical-align: middle;
  width: 18px;
  height: auto;
}

body {
  font-family: 'Lato', sans-serif;
  margin: 0;
  padding: 0;
}

/* */
nav {
  font-family: 'Lato', sans-serif;
}

/* Estilo predeterminado del botón */
.nav-boton {
    background-color:transparent; 
    transition: background-color 0.3s ease, opacity 0.3s ease;
}

/* Efecto hover personalizado */
.nav-boton:hover {
    background-color: rgba(255, 255, 0, 0.4); /* gris con 30% de opacidad */
    color: black;
}

/*Estilo Boton flotante WSP*/
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-float img {
  width: 60px;
  height: 60px;
}

.tooltip {
  position: absolute;
  bottom: 70px; /* encima del ícono */
  right: 0;
  background: #25D366;
  color: white;
  padding: 8px 12px;
  border-radius: 20px;
  font-size: 14px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  right: 20px;
  border-width: 6px;
  border-style: solid;
  border-color: #25D366 transparent transparent transparent;
}

.whatsapp-float:hover .tooltip {
  opacity: 1;
}

.whatsapp-float img:hover {
  filter: brightness(0.8);
}

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-up {
  animation: fade-in-up 1.2s ease-out forwards;
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.animate-fade-in {
  animation: fade-in 1.2s ease-out forwards;
}



.pl-contact {
    padding-right: 82px; 
  }
  

.pl-cel {
    padding-right: 92px; 
  }
  
  .mn_footer{
    background-color: transparent;
  }

  .mn_footer:hover{
    color:#ffff00;
  }

  .slide-imagen {
    height: 500px; 
    width: 600px; 
    object-fit: cover;
  }
  
  /* Slider animation con radio buttons */
input#slide1:checked ~ div > .slide-item:nth-child(1) {
    margin-left: 0;
  }
  input#slide2:checked ~ div > .slide-item:nth-child(1) {
    margin-left: -100%;
  }
  input#slide3:checked ~ div > .slide-item:nth-child(1) {
    margin-left: -200%;
  }

  .producto-container {
    position: relative;
  }
  
  .producto-hover {
    background-color: rgba(255, 255, 0, 0); /* invisible al inicio */
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 10;
  }
  
  .producto-container:hover .producto-hover {
    background-color: rgba(255, 255, 0, 0.6);
    opacity: 1;
  }
  

  .fade-in-section {
    opacity: 0;
    transform: translateY(-50px); /* DE ARRIBA HACIA ABAJO */
    transition: opacity 1.4s ease-out, transform 1.4s ease-out; /* MÁS LENTA */
  }
  
  .fade-in-section.visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  .circle-icon {
    background-color:rgb(255, 255, 0, 0.6); /* Amarillo puro */
    width: 9rem;  /* Igual a w-36 */
    height: 9rem; /* Igual a h-36 */
    border-radius: 9999px; /* redondo */
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }



/* Contenedor que hace el desplazamiento */
@keyframes scroll-marquee {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

.marquee-track {
  display: inline-block;
  white-space: nowrap;
  animation: scroll-marquee 15s linear infinite;
}

.animate-marquee {
  animation: scroll-marquee 20s linear infinite;
}

h1{
 font-family: 'Montserrat', sans-serif; 
}

/* Importante: Asegúrate de tener Montserrat cargada en tu HTML */
.texto-mayorista {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900; 
    letter-spacing: 0.15em;   
    color: #facc15; /* Amarillo puro */
         text-shadow: 3px 3px 0px #000000;
}


