/* Estilo general */
body {
    font-family: "Arial", sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: linear-gradient(to bottom right, #ff9a8b, #ff6a88, #ff99ac);
}

/* Contenedor principal */
.contenedor {
    width: 360px;
    background: white;
    border-radius: 15px;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.2);
    text-align: center;
    padding: 25px;
    position: relative;
    overflow: hidden;
}

/* Logo de la empresa */
.logo img {
    max-width: 80px;
    display: block;
    margin: 0 auto 10px;
}

/* Imagen del producto */
.producto img {
    max-width: 80%;
    transition: transform 0.3s ease-in-out;
}

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

/* Título y descripción */
h1 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 8px;
}

p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 20px;
}

/* Botones */
.opciones {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.boton {
    display: block;
    padding: 14px;
    background: #ff6a88;
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 30px;
    text-align: center;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 4px 10px rgba(255, 106, 136, 0.4);
}

.boton:hover {
    background: #ff3b61;
    transform: translateY(-2px);
    box-shadow: 0px 6px 12px rgba(255, 106, 136, 0.5);
}
