/* ========== FOOTER ========== */

.custom-footer {
    background-color: #3D4753;  /* Mismo color que tu formulario */
    color: #ffffff;
    padding: 40px 20px 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    max-width: none;
    margin: 0 auto;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.custom-footer h4 {
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 18px;
    color: #ffffff;
}

.custom-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.custom-footer ul li {
    margin-bottom: 10px;
}

.custom-footer ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.custom-footer ul li a:hover {
    color: #cccccc;
}

.footer-bottom {
    text-align: center;
    display: block; /* asegura que ocupe 100% del ancho */
    padding-top: 15px;
    padding-bottom: 15px;
    font-size: 0.95rem;
    color: #ffffff;
    border-top: 1px solid rgba(255, 255, 255, 0.2); /* línea sutil arriba */
}

footer .social-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

footer .social-icons a {
    text-decoration: none;
    font-size: 1.5rem;
    color: #ffffff;
}

footer .social-icons span.separator {
    color: #ccc;
    margin: 0 10px;
}

