body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #1a1a1a, #3b0076);
    color: white;
    text-align: center;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.contenedor-foto {
    width: 180px;
    height: 180px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0px 0px 40px rgba(138, 43, 226, 0.9);
    margin: 20px auto;
    border: 3px solid #ffccff;
    transition: transform 0.3s ease-in-out;
}

.contenedor-foto:hover {
    transform: scale(1.1);
}

.contenedor-foto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

h1 {
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: bold;
    color: #ffccff;
    text-shadow: 0px 0px 15px rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
}

h2 {
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: bold;
    color: #ffccff;
    margin-bottom: 20px;
}

.lista-precios {
    max-width: 500px;
    width: 90%;
    padding: 20px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}

.lista-precios ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.lista-precios li {
    font-size: 1.2rem;
    padding: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    font-weight: 500;
    text-shadow: 0px 0px 8px rgba(255, 255, 255, 0.5);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.lista-precios li:last-child {
    border-bottom: none;
}
.cita {
    margin-top: 20px;
    text-align: center;
}

.cita p {
    font-size: 1.3rem;
    font-weight: bold;
    color: #ffccff;
}

.boton-whatsapp {
    display: inline-block;
    background-color: #25d366;
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.3s ease-in-out;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.4);
}

.boton-whatsapp:hover {
    background-color: #1ebc5d;
    transform: scale(1.05);
}

