/* ======= Navegación general (si aplica fuera del header) ======= */
ul {
    list-style-type: none;
    display: flex;
    flex-direction: row;
    gap: 80px;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: black;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1px;
    padding: 10px 15px;
    transition: all 0.3s ease;
    border-radius: 5px;
    font-style: oblique;
}

nav ul li a:hover {
    background-color: #555;
    color: white;
}

/* ======= Galería de productos ======= */
section.galeria-productos {
    padding: 100px 100px;
    text-align: center;
    background-color: whitesmoke;
}

section.galeria-productos div {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.img-redondaprod {
    width: 13em;
    height: 13em;
    border-radius: 50%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.img-redondaprod:hover {
    transform: scale(1.05);
}

/* ======= Sección de envío ======= */
section.envio {
    background-color: black;
    padding: 80px 60px;
}

.envio-contenido {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 300px;
    max-width: 1200px;
    margin: 0 auto;
    color: white;
}

.envio-img {
    width: 16em;
    height: auto;
    border-radius: 10px;
}

.envio-texto {
    text-align: left;
    max-width: 600px;
}

.envio-texto h1 {
    font-size: 2.2em;
    color: #9a8820;
    margin-bottom: 10px;
}

.envio-texto p {
    font-size: 1.4em;
    color: white;
}

/* ======= Footer ======= */
footer {
    background-color: #161616;
    color: white;
    padding: 20px 50px;
    text-align: center;
    font-size: 14px;
}

footer a {
    color: #9a8820;
    text-decoration: none;
}
/* ======= Responsive general ======= */
@media (max-width: 768px) {
    section.galeria-productos {
        padding: 40px 20px;
    }

    section.galeria-productos div {
        flex-direction: column;
        align-items: center;
    }

    .img-redondaprod {
        width: 10em;
        height: 10em;
    }

    .envio-contenido {
        flex-direction: column;
        text-align: center;
    }

    .envio-texto {
        text-align: center;
    }

    .envio-img {
        width: 80%;
    }

    footer {
        font-size: 12px;
        padding: 15px 20px;
    }

    footer div {
        flex-direction: column;
        gap: 10px;
    }
}
