.elementor-167 .elementor-element.elementor-element-c385aec{margin-top:0px;margin-bottom:0px;padding:0px 0px 0px 0px;}.elementor-167 .elementor-element.elementor-element-6b0ff51 > .elementor-element-populated{margin:0px 0px 0px 0px;--e-column-margin-right:0px;--e-column-margin-left:0px;padding:0px 0px 0px 0px;}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}/* Start custom CSS for text-editor, class: .elementor-element-7234a30 */.dovilabel-footer {
    background-color: #0d0d0d;
    color: #ffffff;
    padding: 80px 0 0 0;
    font-family: 'Inter', sans-serif;
    /* CAMBIO: Borde superior azul */
    border-top: 4px solid #4cb8df; 
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
    gap: 60px;
    padding: 0 40px 60px 40px;
}

/* ESTILOS DE COLUMNA */
.footer-logo {
    height: 45px;
    margin-bottom: 25px;
}

.footer-desc {
    font-size: 14px;
    color: #888;
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    color: #ffffff;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 30px;
    height: 2px;
    /* CAMBIO: Línea decorativa azul */
    background-color: #4cb8df;
}

/* ENLACES */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #888;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.footer-links a:hover {
    /* CAMBIO: Hover de enlaces en azul */
    color: #4cb8df;
    padding-left: 5px;
}

/* CONTACTO */
.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #888;
    align-items: flex-start;
}

.contact-item i {
    /* CAMBIO: Iconos de contacto en azul */
    color: #4cb8df;
    margin-top: 4px;
}

/* REDES SOCIALES */
.footer-socials {
    display: flex;
    gap: 15px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    background: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0; 
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.footer-socials a:hover {
    /* CAMBIO: Fondo de redes sociales en azul al pasar el mouse */
    background: #4cb8df;
    transform: translateY(-3px);
}

/* BARRA INFERIOR */
.footer-bottom {
    background-color: #000000;
    padding: 30px 40px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.bottom-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #555;
    font-size: 12px;
}

.legal-links {
    display: flex;
    gap: 25px;
}

.legal-links a {
    color: #555;
    text-decoration: none;
    transition: 0.3s;
}

.legal-links a:hover {
    color: #fff;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
    }
    .bottom-container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}/* End custom CSS */