body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}


nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  /* background: #a40839; */
  margin: 0;
}

nav ul li {
  margin: 0 15px;
}



section {
  padding: 40px 20px;
}

.producto {
  border: 1px solid #ccc;
  padding: 15px;
  margin: 15px;
  max-width: 300px;
  display: inline-block;
  vertical-align: top;
}

.producto img {
  width: 100%;
  height: auto;
}

.whatsapp-float {
  position: fixed;
  bottom: 40px;
  right: 20px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  font-size: 28px;
  padding: 12px 15px;
  text-decoration: none;
  box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
  z-index: 100;
}

@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    align-items: center;
  }

  .producto {
    display: block;
    width: 90%;
    margin: 20px auto;
  }

  section {
    padding: 20px;
  }
}


.logo img {
  height: 50px;
  width: auto;
  }
/* .contenedor-header img {
  max-height: 50px;
} */

header {
  background-color: rgb(236, 104, 104);
  color: rgb(226, 79, 79);
  padding: 40px 20;
   position: fixed; 
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
   box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); 
}

.contenedor-header {
  /* max-width: 1200px; */
  margin: 0  auto;
  justify-content: space-between;
  background-color: rgb(255, 255, 255);
  color: rgb(197, 86, 86);
  padding: 10px 20;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(206, 8, 8, 0.918);
   /* padding: 0 20px; */
  display: flex;
  align-items: center;
}



.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  margin-bottom: 10px;
}
.logo img {
  height: 60px;
  width: auto;
}

nav ul {
  /* list-style: none; */
  padding: 0;
  /* display: flex; */
  gap: 20px;
  margin: 0;
}

nav li a {
  color: rgb(10, 10, 10);
  text-decoration: none;
  font-weight: bold;
  
  border-radius: 5px;
  transition: background-color 0.3s ease;
}



/* 
.fondo-secciones {
  background-image: url('imagenes/logo.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: rgb(10, 10, 10);
  padding: 20px;
} */

.fondo-secciones section {
  /* background-color: rgba(241, 196, 243, 0.5); Mejora la legibilidad del texto */
  border-radius: 10px;
  padding: 20px;
  margin: 20px 0;
  margin-top:  10px;
  margin-left: 0;
  margin-right: 0;
  width: 100%;
}


 #nosotros p {
  font-size: 1.2rem;
  font-weight: bold;
  max-width: 700px;
  margin: 0 auto;
}
#nosotros {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 100vh; /* Toma todo el alto de la pantalla */
  padding: 20px;
}
#nosotros h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

#contacto {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 100vh; /* Toma todo el alto de la pantalla */
  padding: 20px;
}
section img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 10px auto;
}

 /* .seccion-ancha {
  margin: 0 auto;     /* Centra la sección */
  padding: 40px 20px;
} */
 #galeria img {
  width: 500px;
  height: auto;
  margin: 0px;
  margin-left: 100px;
  margin-right: 100px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

#galeria {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 80px 40px;
  text-align: center;
} */
#catalogo {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 40px 20px;
}
#catalogo .producto img {
  width: 250px;
  height: auto;
  border-radius: 5px;
}
#valores {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
  text-align: left; /* Esto mantiene el texto alineado a la izquierda */
}
.bloque {
  max-width: 800px;
  margin: 0 auto;     /* Centra el bloque en la página */
  padding: 20px;
  text-align: left;   /* Mantiene el texto alineado a la izquierda */
}





.slider-container {
  width: 100%;
  overflow: hidden;
  max-width: 800px;
  margin: auto;
  border-radius: 10px;
}



.slider img {
  width: 100%;
  flex: 0 0 100%;
}





.slider {
  display: flex;
  width: 300%;
  animation: deslizar 12s infinite steps(1, end);
}

@keyframes deslizar {
  0% { transform: translateX(0%); }
  33.33% { transform: translateX(-100%); }
  66.66% { transform: translateX(-200%); }
  100% { transform: translateX(0%); }
}
/* Animación decorativa si usas íconos personalizados */
.animate-bounce {
  animation: bounce 1s infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

/* body {
  background: linear-gradient(90deg, #eacbf3, #ebd5f1);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}  */
section  h1 {
  text-align: center;
  font-size: 6.5em;
  font-weight: bold;
  background: linear-gradient(100deg,  #f1c40f, #cb72e9);
  display: flex;
  margin: 0;
  line-height: 1.1; padding: 0; 
  margin-bottom: 0.3em; /* puedes ajustar este valor */
  background-clip: text;
  font-weight: bold;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent; /* Safari fix */
  align-items: center;
}

section  h2 {
  text-align: center;
  display: flex;
  font-size: 4.5em;
  font-weight: bold;
  margin: 0;
  line-height: 1.1;
  padding: 0;
  margin-top: 0.1em; /* esto acerca más el h2 al h1 */
  background: linear-gradient(800deg,  #b13939, #a22cc9,#d6bb4c);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent; /* Safari fix */
  align-items: center;
}

section  h3 {
  text-align: center;
    display: flex; 
  font-size: 2em;
  font-weight: bold;
  margin: 0;
  margin-left: 30px;
  margin-right: 30px;
  line-height: 1.5;
  padding: 20;
  background: linear-gradient(800deg,  #1a182c, #1a182c,#1a182c);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent; /* Safari fix */
}

section  h4 {
   display: flex; 
  font-size: 1.5em;
  font-weight: bold;
  margin: 0;
  margin-left: 40px;
  margin-right: 40px;
  line-height: 1.5;
  padding: 20;
  background: linear-gradient(800deg,  #f5288f, #f5288f, #f5288f );
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent; /* Safari fix */
}

#inicio {
  /* min-height: 100vh;  */

  display: flex;
  flex-direction: column;
  justify-content: center; /* centra el contenido verticalmente */
  align-items: center;     /* centra el contenido horizontalmente */
  text-align: center;
 padding: 40px 20px;
  min-height: 600px;


background: linear-gradient(90deg, #eacbf3, #ebd5f1);
  /* background-color: #ffeef2; Cambia el color a tu gusto */
  /* padding: 60px 20px; */
  /* text-align: center; */
  ;

}

#inicio2 {
  background: linear-gradient(to right, #fcfbfa, #fcfbfa);
  padding: 60px 20px;
}
#inicio2 h2 {
  text-align: center;
   display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 3em;
  font-weight: bold;
  color:#f5288f;
   max-width: 800px;
   margin: 0 auto 20px auto;
  margin-bottom: 20px;
}
#inicio2 h3 {
  text-align: center;
  align-items: center; 
  font-size: 1.5em;     
  color: #504f4f;
  max-width: 800px;
  margin: 0 auto 20px auto;
  margin-bottom: 20px;
  line-height: 1.5;
}
#inicio h3 {
  text-align: center;
  align-items: center; 
  font-size: 1.5em;     
  color: #4e4e4e;
  max-width: 800px;
  margin: 0 auto 20px auto;
  margin-bottom: 0px;
  line-height: 1.5;
}
#paneles {
  
  display: flex;
  justify-content: center;
  gap: 25px;
  padding: 40;
  flex-wrap: wrap ;
  background: linear-gradient(to right, #fcfbfa, #fcfbfa);
}

.panel {
  /* align-items: center;  
  justify-items: center;
  font-family: sans-serif;
  font-weight: bold; */
margin-top: 0;
  padding-top: 0;
  flex: 1 1 300px; /* Crece, reduce, base 300px */
  max-width: 400px;
  height: 250px;
  padding: 30px;
  border-radius: 15px;
  color: rgb(235, 221, 221);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  justify-items: center;
  align-items: center
}


section {
  margin-bottom: 20px; /* o padding-bottom */
}

  


/* Panel 1 */
.panel-uno {
  background: linear-gradient(135deg, #f5288f, #fd9aaf);
}


/* Panel 2 */
.panel-dos {
  background: linear-gradient(135deg, #8e44ad, #b98de1);
}

/* Panel 3 */
.panel-tres {
  background: linear-gradient(135deg, #0a78df, #9faef1);
}




h1 {
  font-size: 2em;
}

@media (min-width: 768px) {
  h1 {
    font-size: 3em;
  }
}

@media (min-width: 1024px) {
  h1 {
    font-size: 4em;
  }
}

h2 {
  font-size: 1.5em;
}

@media (min-width: 768px) {
  h2 {
    font-size: 2em;
  }
}
@media (min-width: 1024px) {
  h2 {
    font-size: 2.5em;
  }
} 
h3 {
  font-size: 1.2em;
}
@media (min-width: 768px) {
  h3 {
    font-size: 1.5em;
  }
}
@media (min-width: 1024px) {
  h3 {
    font-size: 1.8em;
  }
} 
h4 {
  font-size: 1em;
}
@media (min-width: 768px) {
  h4 {
    font-size: 1.2em;
  }
}
@media (min-width: 1024px) {
  h4 {
    font-size: 1.5em;
  }
}
body {
  background: linear-gradient(90deg, #eacbf3, #ebd5f1);
  margin: 0;
  padding: 0;
}
nav ul li a:hover {
  background-color: rgba(255, 255, 255, 0.2);
}
nav ul li a:focus {
  background-color: rgba(255, 255, 255, 0.3);
  outline: none;
}
nav ul li a.active {
  background-color: rgba(255, 255, 255, 0.4);
  color: #fff;
  font-weight: bold;    
  text-decoration: underline;
}
nav ul li a.active:hover {
  background-color: rgba(255, 255, 255, 0.5);
}
nav ul li a.active:focus {
  background-color: rgba(255, 255, 255, 0.6);
  outline: none;
}
nav ul li a.active {
  background-color: rgba(255, 255, 255, 0.4);
  color: #fff;        
  font-weight: bold;
  text-decoration: underline;
}





#paneles {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 20px;
}

.panel {
  flex: 1 1 300px;
  max-width: 400px;
  height: 250px;
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Ajustes específicos para pantallas pequeñas */
@media (max-width: 768px) {
  .panel {
    flex: 1 1 100%;
    max-width: 90%;
    height: auto;
  }
}
