body {
    font-family: 'Montserrat', sans-serif;
    background-color: #002a55; /* Fondo azul oscuro */
    color: #fcfbf8; /* Texto blanco */
    margin: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    text-align: center;
}

.header {
    width: 100%;
    padding: 10px 20px;
    box-sizing: border-box;
    text-align: right;
}

.webmail-link {
    color: #fcfbf8;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.webmail-link:hover {
    color: #eb7c0d; /* Naranja al pasar el mouse */
}

.main-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.main-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.logo-container {
    max-width: 600px; /* Reducido para acercar al texto */
    margin-bottom: 30px; /* Reducido el espacio debajo del logo */
}

.logo-image {
    width: 100%;
    height: auto;
}

.message {
    margin-bottom: 30px; /* Reducido el margen inferior */
}

.message h2 {
    font-size: 32px;
    color: #eb7c0d;
    margin-bottom: 10px;
    margin-top: 0; /* Eliminar margen superior para acercar al logo */
}

.message p {
    font-size: 18px;
    max-width: 600px;
    line-height: 1.5;
    margin-top: 0; /* Eliminar margen superior */
}

.contact-info p {
    font-size: 16px;
    margin: 5px 0;
}

.contact-info a {
    color: #fcfbf8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #eb7c0d;
}

.whatsapp-btn {
    display: inline-block;
    background-color: #25D366;
    color: #fcfbf8;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    margin: 20px 0;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.whatsapp-btn:hover {
    background-color: #128C7E;
    transform: scale(1.05);
}

.social-icons {
    margin-top: 15px;
}

.social-icon {
    font-size: 24px;
    color: #fcfbf8;
    margin: 0 15px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-icon:hover {
    color: #eb7c0d;
    transform: scale(1.2);
}

.footer {
    width: 100%;
    padding: 15px 20px;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.2);
    font-size: 12px;
}

.copyright {
    text-align: left;
}

.credits {
    text-align: right;
}

.credits a {
    color: #fcfbf8;
    text-decoration: none;
}

.credits a:hover {
    text-decoration: underline;
}

@media (max-width: 600px) {
    .header {
        text-align: center;
    }
    .main-content {
        padding: 10px;
    }
    .logo-container {
        max-width: 400px; /* Ajustado para moviles */
        margin-bottom: 20px; /* Menos espacio en moviles */
    }
    .message h2 {
        font-size: 28px;
    }
    .message p {
        font-size: 16px;
    }
    .footer {
        flex-direction: column;
        text-align: center;
    }
    .copyright, .credits {
        text-align: center;
        margin: 5px 0;
    }
}