/* Estilos generales */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #f4f4f4;
    color: #333;
}

/* Encabezado */
header {
    background-color: #333;
    color: #fff;
    padding: 1rem;
    text-align: center;
}

header .logo h1 {
    font-size: 2rem;
}

nav {
    background-color: #333;
    text-align: center;
    padding: 0.5rem 0;
    position: sticky;
    top: 0px;
    z-index: 1000;
}

nav a {
    color: #fff;
    text-decoration: none;
    margin: 0 1rem;
    font-weight: bold;
}

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

/* Galería de Productos */
.galeria {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.galeria h2 {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

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

.producto {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    text-align: center;
    width: 300px;
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.producto:hover {
    transform: scale(1.05);
    cursor: pointer;
}

.producto img {
    max-width: 100%;
    border-radius: 5px;
}

.producto h3 {
    font-size: 1.2rem;
    margin: 0.5rem 0;
}

.producto p {
    color: #555;
    margin: 0.3rem 0;
}

/* Responsividad */
@media (max-width: 768px) {
    .productos {
        flex-direction: column;
        align-items: center;
    }

    .producto {
        width: 90%;
    }
}
