/* Reset de estilos */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Estilos globales */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #0f0f0d;
    background-color: #f9f9f9; /* Beige claro */
}

/* Estilos del encabezado y navegación */
header {
    background: url(assets/img/PORTADA1.png);
    color: #fff;
    padding: 1rem 0;
    text-align: center;
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 0 1rem;
}

nav ul li a {
    color: #000000;
    text-decoration: none;
    font-weight: bold;
}

nav ul li a:hover {
    text-decoration: underline;
}

button {
    background-color: #f8f00b;
    color: rgb(0, 0, 0);
    border: 2px solid #e2e2e2; /* Borde del botón */
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1); /* Sombra del botón */
    transition: background-color 0.3s, box-shadow 0.3s;
    margin-top: -15px;
}
button:hover {
    background-color: #e7e7e7;
    box-shadow: 0 6px 8px rgba(0,0,0,0.2); /* Sombra más pronunciada al pasar el cursor */
}
button:active {
    background-color: #010101;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2); /* Sombra más sutil al hacer clic */
}

/* Estilos del área hero */
.hero {
    background: url('images/hero-bg.jpg') no-repeat center center/cover;
    color: #000000;
    padding: 4rem 0;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.hero p {
    font-size: 1.5rem;
}

/* Secciones */
.section {
    padding: 2rem;
    text-align: center;
}

/* Sección de inicio */
.home {
    background: #fefefe; /* Beige claro */

    }

/* Sección de productos */
.products {
  background: url(assets/img/FONDO\ PRODUCTOS.jpg) 
}

.product-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.product {
    width: 300px;
    margin: 1rem;
    text-align: center;
    border: 1px solid #ffffff;
    border-radius: 8px;
    overflow: hidden;
    background: #fff; /* Blanco */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product img {
    width: 100%;
    height: auto;
    display: block;
}

.product h3 {
    font-size: 1.25rem;
    margin: 0.5rem 0;
}

.product p {
    font-size: 1rem;
    margin: 0 0.5rem 1rem;
}

.product:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Sección de galería */
.gallery {
    background: url(assets/img/galeria.png)
}

.gallery h2 {
    margin-bottom: 1rem;
    color: #000000; /* Amarillo */
}

.gallery-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.gallery-item {
    width: 300px;
    height: 200px;
    overflow: hidden;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* styles.css */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.testimonials {
    background-image: url(assets/img/s5.png);
    padding: 40px;
    text-align: center;
}

.testimonials h2 {
    margin-bottom: 20px;
    font-size: 24px;
    color: #ededed;
}

.testimonial-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.testimonial {
    background-color: rgb(251, 255, 216);
    border: 1px solid #000000;
    border-radius: 8px;
    padding: 20px;
    max-width: 300px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.testimonial-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 2px solid #fbff00; /* Opcional: borde alrededor de la foto */
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 10px;
    color: #555;
}

.testimonial-author {
    font-weight: bold;
    color: #000000;
}

/* Sección de testimonios */
.testimonials {
   
}

.testimonials h2 {
    margin-bottom: 1rem;
    color: #000000; /* Amarillo */
}

.testimonial-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.testimonial {
    width: 300px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 1rem;
    background: #fff; /* Blanco */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.testimonial img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 0.5rem;
}

.testimonial p {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.testimonial h4 {
    font-size: 1.125rem;
    font-weight: bold;
    color: #000; /* Negro */
}

/* Estilos del formulario */
.contact {
    background: url(assets/img/s5.png)
   
}


form {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
}

form label {
    margin: 0.5rem 0;
    font-weight: bold;
}

form input, form textarea {
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
}

form button {
    background: #f1c40f; /* Amarillo */
    color: #fff;
    border: none;
    padding: 0.75rem 1.5rem;
    cursor: pointer;
    border-radius: 4px;
    font-size: 1rem;
}

form button:hover {
    background: #e0b80f; /* Amarillo más oscuro */
}



/* Estilos del pie de página */
footer {
    background: #ffffff; /* Negro */
    color: #000000;
    text-align: center;
    padding: 1rem 0;
   /* styles.css */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.footer {
    background-color: #333;
    color: white;
    padding: 10px 0;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center; /* Centra el contenido horizontalmente */
    box-sizing: border-box; /* Incluye el padding en el ancho total */
}

.info-bar {
    display: flex;
    justify-content: space-between; /* Distribuye el espacio entre los elementos */
    width: 100%; /* Ocupar todo el ancho del footer */
    max-width: 1200px; /* Limita el ancho máximo del contenido */
    padding: 0 20px; /* Espacio horizontal dentro del contenedor */
    box-sizing: border-box; /* Incluye el padding en el ancho total */
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px; /* Espacio entre el ícono y el texto */
    flex: 1; /* Hace que los elementos se distribuyan uniformemente */
}

.info-icon {
    width: 24px; /* Tamaño del ícono */
    height: 24px;
}

.info-text {
    font-size: 16px;
    white-space: nowrap; /* Evita que el texto se rompa en varias líneas */
}
 

}


body {
    font-family: Arial, sans-serif;
    background-color: #ffffff; /* Crema */
    color: #333; /* Negro */
    margin: 0;
    padding: 20px;
}

.navbar {
    background-color: #ffeb3b; /* Amarillo */
    padding: 10px 0;
}

.navbar ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

.navbar li {
    margin: 0 15px;
}

.navbar a {
    text-decoration: none;
    color: #333; /* Negro */
    font-weight: bold;
}

.container {
    display: flex;
    margin-bottom: 20px;
}

.product-image {
    flex: 1;
    text-align: center;
}

.product-description {
    flex: 2;
    padding-left: 20px;
}

.additional-image {
    margin-top: 20px;
    text-align: center;
}

.additional-image img {
    max-width: 100%; 
    height: auto;
}


.buy-button {
    background-color: #f4f402; /* Color de fondo */
    color: rgb(0, 0, 0); /* Color del texto */
    padding: 10px 20px; /* Espaciado */
    border: none; /* Sin borde */
    border-radius: 5px; /* Bordes redondeados */
    font-size: 18px; /* Tamaño de fuente */
    cursor: pointer; /* Cambia el cursor al pasar por encima */
    animation: pulse 1.5s infinite; /* Animación */
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }