/* ==== ESTILO GENERAL ==== */
body {
    font-family: "Poppins", sans-serif;
    margin: 0;
    padding: 0;
    background: #f7f4fb;
    color: #444;
}

/* ==== SECCIÓN PRINCIPAL ==== */
.hero {
    background: linear-gradient(
        rgba(255, 255, 255, 0.8),
        rgba(255, 255, 255, 0.8)
    ),
    url('fondo.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
    padding: 80px 20px;
}

.hero h1 {
    font-size: 42px;
    color: #8a59d4;
    margin-bottom: 15px;
}

.hero p {
    font-size: 18px;
    color: #555;
}

/* ==== BOTÓN ANGELICAL ==== */
.boton {
    display: inline-block;
    padding: 15px 30px;
    font-size: 18px;
    text-decoration: none;
    background: #9d6df0;
    color: white;
    border-radius: 30px;
    margin-top: 20px;
    box-shadow: 0px 5px 15px rgba(157, 109, 240, 0.4);
    transition: 0.3s;
}

.boton:hover {
    background: #b088ff;
    transform: scale(1.05);
}
