body {
    font-family: sans-serif;
    margin: 0;
    /* Eliminamos el color de fondo plano */
    /* background-color: #f4f4f4; */
    /* Agregamos la imagen de fondo */
    background-image: url('fondo.png'); /* Reemplaza 'tu-imagen-de-fondo.jpg' con la ruta de tu imagen */
    background-size: cover; /* Cubre todo el fondo */
    background-position: center; /* Centra la imagen */
    background-repeat: no-repeat; /* Evita que la imagen se repita */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    background-color: rgba(255, 255, 255, 0.9); /* Fondo blanco semi-transparente para mejor legibilidad */ 
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
}

h1 {
    color: #333;
    margin-bottom: 15px;
}

p {
    color: #666;
    margin-bottom: 25px;
}

.whatsapp-button a {
    display: inline-flex;
    align-items: center;
    background-color: #25d366;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.whatsapp-button a:hover {
    background-color: #128c7e;
}

.whatsapp-button i {
    font-size: 1.5em;
    margin-right: 10px;
}