.elementor-838 .elementor-element.elementor-element-412a161{--display:flex;}.elementor-widget-image .widget-image-caption{color:var( --e-global-color-text );font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-size:var( --e-global-typography-text-font-size );font-weight:var( --e-global-typography-text-font-weight );line-height:var( --e-global-typography-text-line-height );letter-spacing:var( --e-global-typography-text-letter-spacing );}.elementor-838 .elementor-element.elementor-element-f538e5d img{max-width:31%;}@media(max-width:1024px){.elementor-widget-image .widget-image-caption{font-size:var( --e-global-typography-text-font-size );line-height:var( --e-global-typography-text-line-height );letter-spacing:var( --e-global-typography-text-letter-spacing );}}@media(max-width:767px){.elementor-widget-image .widget-image-caption{font-size:var( --e-global-typography-text-font-size );line-height:var( --e-global-typography-text-line-height );letter-spacing:var( --e-global-typography-text-letter-spacing );}}/* Start custom CSS for html, class: .elementor-element-2977ee0 */body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.construction-page {
    text-align: center;
    background: #ffffff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.logo {
    max-width: 150px;
    margin-bottom: 20px;
}

.construction-image {
    max-width: 100%;
    height: auto;
    margin-top: 20px;
    border-radius: 10px;
}

h1 {
    color: #0066cc;
    margin-bottom: 10px;
    font-size: 15px;
}

p {
    color: #333;
    font-size: 16px;
    margin: 10px 0;
}

.contact-info a {
    color: #0066cc;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}/* End custom CSS */
/* Start custom CSS for image, class: .elementor-element-f538e5d */.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px; /* Reducimos padding */
    background: none !important; /* Eliminamos el fondo */
    border-radius: 0 !important; /* Eliminamos bordes redondeados */
    box-shadow: none !important; /* Eliminamos cualquier sombra */
}

.logo-container img {
    max-width: 250px;
    height: auto;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.2));
    animation: fadeIn 1s ease-out;
}

.logo-container img:hover {
    transform: scale(1.1);
    filter: drop-shadow(4px 6px 10px rgba(0, 0, 0, 0.3));
}

/* Animación de entrada */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}/* End custom CSS */