/* Solución para eliminar la línea negra en el footer */
body {
    margin: 0;
    padding: 0;
    background-color: #fff;
}

main {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
    border-bottom: none !important;
    box-shadow: none !important;
}

.modern-footer {
    color: white;
    margin-top: -1px !important;
    position: relative;
    overflow: hidden;
    box-shadow: none !important;
    border: none !important;
    border-top: none !important;
    outline: none !important;
}

.footer-top {
    background: linear-gradient(135deg, #0c2d5c 0%, #1a4b8c 100%);
    padding: 60px 0 40px;
    position: relative;
    border: none !important;
    border-bottom: none !important;
    box-shadow: none !important;
    margin-bottom: 0;
}

.footer-bottom {
    background: linear-gradient(135deg, #0c2d5c 0%, #1a4b8c 100%);
    text-align: center;
    padding: 20px 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    border: none !important;
    border-top: none !important;
    box-shadow: none !important;
    margin-top: -1px;
    position: relative;
    z-index: 10;
}

/* Eliminar cualquier línea o separación entre las secciones del footer */
.footer-top::after,
.footer-bottom::before {
    display: none !important;
    content: none !important;
    border: none !important;
    box-shadow: none !important;
    height: 0 !important;
}

/* Asegurar que no haya separación entre los elementos */
.footer-content {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none !important;
}
