/* Variables CSS para colores */
:root {
    --primary-color: #2237ad;
    --secondary-color: #ffff00;
    --background-light: #d7f5d8;
    --background-dark: #f0f0f0;
    --text-dark: #333;
    --text-light: #fff;
    --shadow-color: rgba(0, 0, 0, 0.1);
}

body {
    background-color: var(--background-light);
    font-family: 'Poppins', Arial, sans-serif; /* Usamos la fuente Poppins */
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: var(--text-dark);
}

/* Estilos del encabezado */
header {
    text-align: center;
    padding: 30px 20px;
    background-color: var(--background-dark);
    box-shadow: 0 2px 10px var(--shadow-color);
}

header img {
    border-radius: 15px;
    max-width: 300px; /* Tamaño más moderado para el logo */
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}

header h1 {
    color: var(--primary-color);
    font-size: 2.5em;
    margin-top: 10px;
    margin-bottom: 30px;
    font-weight: 600; /* Peso de fuente más fuerte */
}

/* Estilos de la navegación */
nav button {
    padding: 12px 35px;
    font-size: 17px;
    cursor: pointer;
    background-color: var(--primary-color);
    color: var(--text-light);
    border: none;
    border-radius: 25px; /* Bordes más redondeados */
    margin: 0 10px;
    transition: all 0.3s ease; /* Transición suave para efectos hover */
    font-weight: 400;
    letter-spacing: 0.5px; /* Pequeño espaciado entre letras */
}

nav button:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-3px); /* Efecto de elevación */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Estilos del contenido principal */
main {
    padding: 30px;
    max-width: 960px; /* Ancho máximo un poco mayor */
    margin: 30px auto;
    background-color: var(--text-light);
    border-radius: 15px;
    box-shadow: 0 0 20px var(--shadow-color);
    line-height: 1.7; /* Mayor espacio entre líneas */
}

main p {
    font-size: 1.1em;
    margin-bottom: 25px;
    text-align: justify; /* Texto justificado para mejor lectura */
}

main h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: 2em;
    margin-top: 40px;
    margin-bottom: 30px;
    font-weight: 600;
}

/* Estilos para cada producto */
.product-item {
    margin-bottom: 40px; /* Espacio entre productos */
    text-align: center; /* Centra el título y la imagen */
}

.product-item h3 {
    color: var(--primary-color);
    font-size: 1.6em;
    margin-bottom: 15px;
    font-weight: 500;
}

.product-item img {
    border-radius: 15px;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto; /* Centra las imágenes */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); /* Sombra para las imágenes */
    transition: transform 0.3s ease; /* Transición para efecto hover */
}

.product-item img:hover {
    transform: scale(1.02); /* Ligeramente más grande al pasar el ratón */
}

/* Estilos del pie de página */
footer {
    text-align: center;
    padding: 30px 20px;
    background-color: var(--background-dark);
    color: var(--text-dark);
    margin-top: 40px;
    font-size: 0.95em;
}

footer p {
    margin: 5px 0;
}

.social-links {
    list-style: none;
    padding: 0;
    margin: 15px 0 20px 0;
}

.social-links li {
    display: inline-block;
    margin: 0 12px;
}

.social-links li a {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 600;
    transition: color 0.3s ease;
}

.social-links li a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.contact-email {
    display: flex; /* Para alinear la imagen y el texto */
    justify-content: center;
    align-items: center;
    margin-top: 15px;
}

.contact-email img {
    width: 30px; /* Tamaño del logo de correo */
    height: auto;
    margin-right: 10px;
    vertical-align: middle;
}

.contact-email span {
    color: var(--primary-color);
    font-weight: 600;
}

/* Estilos del botón flotante de WhatsApp */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 32px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1); /* Efecto de zoom al pasar el ratón */
}

.whatsapp-float i {
    margin-top: 0;
}

/* Media queries para responsividad */
@media (max-width: 768px) {
    header h1 {
        font-size: 2em;
    }

    nav button {
        display: block;
        width: 90%;
        margin: 10px auto;
        padding: 10px 20px;
    }

    main {
        padding: 20px;
        margin: 20px auto;
    }

    main p {
        font-size: 1em;
    }

    main h2 {
        font-size: 1.8em;
    }

    .product-item h3 {
        font-size: 1.4em;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    header h1 {
        font-size: 1.8em;
    }

    nav button {
        font-size: 15px;
        padding: 8px 15px;
    }

    main {
        padding: 15px;
    }

    main h2 {
        font-size: 1.6em;
    }

    .product-item h3 {
        font-size: 1.2em;
    }

    .social-links li {
        margin: 0 8px;
    }
}