/* Estilos Generales */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4; /* Fondo gris claro */
    color: #333; /* Texto oscuro */
    display: flex;
    justify-content: center; /* Centrar horizontalmente */
    align-items: center; /* Centrar verticalmente */
    min-height: 100vh; /* Altura mínima de la ventana */
    margin: 0;
    text-align: center;
}

/* Contenedor principal */
.container {
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    width: 90%;
}

/* Estilos del Logo */
.logo {
    margin-bottom: 30px;
}

.logo img {
    max-width: 180px; /* Tamaño máximo del logo, puedes ajustarlo */
    height: auto;
    display: block; 
    margin: 0 auto;
}

/* Título */
h1 {
    /* Color Primario: Cambia este código por el color de tu marca (ej: #FF5733 para naranja) */
    color: #4e4f51; /* Azul predeterminado */
    font-size: 2.2em;
    margin-bottom: 15px;
}

/* Párrafos */
p {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 20px;
}

.contacto {
    font-weight: bold;
    color: #555;
    margin-bottom: 5px; /* Reducido para acercar al botón */
}


/* --- Estilos Específicos para el Enlace de WhatsApp --- */

.whatsapp-link a {
    display: inline-block;
    background-color: #25D366; /* Color verde WhatsApp */
    color: white;
    padding: 10px 20px;
    margin-top: 10px;
    text-decoration: none; /* Quitar el subrayado */
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.whatsapp-link a:hover {
    background-color: #1FAF59; /* Un tono más oscuro al pasar el ratón */
}

.whatsapp-link .numero {
    font-size: 0.9em;
    color: #666;
    margin-top: 5px;
    margin-bottom: 0;
}

/* Media Query para dispositivos más pequeños */
@media (max-width: 600px) {
    .container {
        padding: 20px;
    }
    h1 {
        font-size: 1.8em;
    }
    .logo img {
        max-width: 150px;
    }
}