/* Corrección para eliminar la línea azul en la parte inferior */
.footer-bottom {
    border-top: none !important;
}

/* Eliminar todos los bordes azules que pudieran aparecer en la parte inferior */
body::after,
.main::after,
.container::after,
footer::after,
.newsletter::after,
.section-padding::after,
.section-padding-60::after {
    content: none !important;
    border: none !important;
    display: none !important;
}

/* Para el newsletter que tiene borde azul */
section.newsletter,
section.newsletter.p-30,
.newsletter.p-30.text-white {
    border: none !important;
    border-bottom: none !important;
    border-top: none !important;
}

/* Cualquier línea azul que pudiera aparecer en cualquier elemento */
*[style*="border-bottom-color: blue"],
*[style*="border-bottom: 1px solid blue"],
*[style*="border-color: blue"],
*[style*="border-bottom-color: #0000ff"],
*[style*="border-bottom: 1px solid #0000ff"],
*[style*="border-color: #0000ff"],
*[style*="border-bottom-color: rgb(0, 0, 255)"],
*[style*="border-bottom: 1px solid rgb(0, 0, 255)"],
*[style*="border-color: rgb(0, 0, 255)"] {
    border-bottom-color: transparent !important;
    border-bottom: none !important;
    border-color: transparent !important;
}

/* Para aplicar un fondo blanco al final de la página y esconder cualquier línea */
body {
    position: relative;
}

body::after {
    content: "";
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background-color: white;
    z-index: 9999;
}

/* Solución para eliminar la línea azul en la parte inferior de la página */

/* Eliminar borde del footer */
.footer-bottom {
    border-top: none !important;
}

/* Eliminación de bordes en contenedores principales */
.section-padding-60,
.page-header.breadcrumb-wrap,
.main,
.card,
.card-header,
.card-body,
.tab-pane,
.newsletter,
section.newsletter,
section.newsletter.p-30,
.newsletter.p-30.text-white {
    border: none !important;
    border-top: none !important;
    border-bottom: none !important;
}

/* Solución para el footer completo */
footer.main,
footer.main section,
footer.main .footer-bottom {
    border: none !important;
    border-top: none !important;
    border-bottom: none !important;
}

/* Corrección para divisores */
.divider,
.divider.center_icon {
    border-bottom: none !important;
    border-top: 1px solid #e2e9e1 !important;
}

/* Cubrir la línea azul con una capa blanca */
body::after {
    content: "" !important;
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 3px !important;
    background-color: white !important;
    z-index: 9999 !important;
    display: block !important;
} 