/* --- Reset Básico y Configuración Global --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
}

/* --- Estilo del Contenedor Principal y Fondo --- */
body {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #333;
    /* Se aplica la imagen de fondo y un gradiente oscuro semitransparente para legibilidad */
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('mancora-2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 20px;
}

/* --- Caja de Contenido Principal --- */
.content-box {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 2rem 3rem;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    max-width: 600px;
    width: 100%;
    text-align: center;
}

/* --- Tipografía --- */
h1 {
    font-size: 2.5rem;
    color: #003366; /* Azul oscuro corporativo */
    margin-bottom: 0.5rem;
}

.subtitle {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2rem;
}

h2 {
    font-size: 1.5rem;
    color: #003366;
    margin-bottom: 1rem;
    border-top: 1px solid #e0e0e0;
    padding-top: 1.5rem;
}

/* --- Sección de Contacto --- */
.contact-info p {
    margin-bottom: 1rem;
}

.contact-info ul {
    list-style: none;
    padding: 0;
    display: inline-block; /* Centra la lista */
    text-align: left; /* Alinea el texto de la lista a la izquierda */
}

.contact-info li {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.contact-info a {
    color: #0056b3;
    text-decoration: none;
    font-weight: 500;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* --- Botón de Llamada a la Acción (WhatsApp) --- */
.cta-section {
    margin-top: 2rem;
}

#whatsapp-button {
    background-color: #25D366; /* Color oficial de WhatsApp */
    color: #ffffff;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 50px; /* Bordes redondeados */
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    display: inline-block;
}

#whatsapp-button:hover {
    background-color: #1EBE57;
    transform: translateY(-2px); /* Efecto sutil al pasar el mouse */
}