body {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: #f9f9f9;
    padding: 50px;
}

/* Título principal */
.titulo {
    color: red;
    font-size: 50px;
    margin-bottom: 40px;
}

/* Sección del producto */
.producto {
    margin: 20px 0;
}

/* Título del producto */
.producto-titulo {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 10px;
}

/* Subtítulo */
.producto-subtitulo {
    font-size: 20px;
    color: #555;
    margin-bottom: 20px;
}

/* Imagen */
.producto-img {
    width: 300px;
    border-radius: 10px;
    margin-bottom: 20px;
}

/* Botón WhatsApp */
.boton-whatsapp {
    display: inline-block;
    background-color: #25D366;
    color: white;
    font-size: 24px;
    padding: 20px 40px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.2s;
}

.boton-whatsapp:hover {
    transform: scale(1.1);
}