.elementor-219 .elementor-element.elementor-element-5dc7d4c{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS *//* Colores inspirados en las imágenes:
   Azul (header): #005a8c (aprox)
   Verde (footer/button): #9fc152 (aprox)
*/

body, html {
    height: 100%;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #f4f7f6;
    color: #333;
    display: flex;
    flex-direction: column;
}

.container {
    flex: 1; /* Ocupa el espacio disponible */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.logo {
    max-width: 280px;
    margin-bottom: 30px;
}

h1 {
    font-size: 2.8em;
    color: #005a8c; /* Azul del header */
    margin: 0.2em 0;
    font-weight: 700;
}

p {
    font-size: 1.1em;
    color: #555;
    line-height: 1.6;
    max-width: 500px;
}

.contact-info {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid #eee;
}

.contact-info p {
    margin: 8px 0;
    font-size: 1.1em;
    font-weight: 600;
}

.contact-info .phone,
.contact-info .email {
    color: #005a8c; /* Azul */
    font-weight: 400;
}

footer {
    width: 100%;
    background-color: #9fc152; /* Verde del footer */
    color: white;
    padding: 20px 0;
    text-align: center;
    font-size: 0.9em;
}

footer p {
    margin: 5px 0;
    color: white;
}

footer .developer {
    font-weight: 600;
}

/* Responsive para móviles */
@media (max-width: 600px) {
    h1 {
        font-size: 2.2em;
    }
    .logo {
        max-width: 220px;
    }
    p, .contact-info p {
        font-size: 1em;
    }
}/* End custom CSS */