body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fff6f8;
    color: #333;
}

header {
    background-color: #f78da7;
    color: white;
    text-align: center;
    padding: 15px 0;
}

header h1 {
    margin: 0;
}

nav a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-weight: bold;
}

nav a:hover {
    text-decoration: underline;
}

.hero {
    background-color: #ffe6ec;
    text-align: center;
    padding: 40px 20px;
}

h2 {
    text-align: center;
    color: #e75480;
}

.galeria {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
}

.producto {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    width: 250px;
    text-align: center;
    padding: 15px;
}

.producto img {
    width: 100%;
    border-radius: 10px;
}

.producto span {
    display: block;
    color: #e75480;
    font-weight: bold;
    margin-top: 5px;
}

#nosotros, #contacto {
    padding: 20px;
    text-align: center;
}

footer {
    background-color: #f78da7;
    color: white;
    text-align: center;
    padding: 10px 0;
    margin-top: 20px;
}