body {
    font-family: "Segoe UI", sans-serif;
    margin: 0;
    background: #fff5f7;
    color: #333;
}

header {
    background: #f4a7b9;
    color: white;
    text-align: center;
    padding: 30px;
}

nav {
    background: #fff;
    padding: 12px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

nav a {
    margin: 0 15px;
    color: #f06292;
    text-decoration: none;
    font-weight: bold;
}

.hero {
    text-align: center;
    padding: 40px;
}

.beneficios {
    background: white;
    padding: 30px;
}

.beneficios ul {
    list-style: none;
    max-width: 600px;
    margin: auto;
}

.productos {
    display: flex;
    justify-content: center;
    gap: 25px;
    padding: 30px;
    flex-wrap: wrap;
}

.producto {
    background: white;
    padding: 20px;
    width: 260px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.producto img {
    width: 100%;
    border-radius: 10px;
}

.precio {
    color: #e91e63;
    font-size: 20px;
    font-weight: bold;
}

button {
    background: #e91e63;
    color: white;
    border: none;
    padding: 12px;
    margin-top: 10px;
    border-radius: 25px;
    cursor: pointer;
}

button:hover {
    background: #c2185b;
}

.carrito, .garantia {
    background: white;
    padding: 25px;
    margin: 20px;
    border-radius: 10px;
}

.comprar {
    width: 100%;
    font-size: 16px;
}

footer {
    background: #f4a7b9;
    color: white;
    text-align: center;
    padding: 15px;
}
