/* ===== PIE DE PÁGINA ===== */

footer {
    background: #00213f;
    color: #e0e0e0;
    padding: 25px 10px 15px;
    width: 100%;
    margin-top: 40px;
}

/* Contenedor interno */
.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
    padding: 0 15px;
}

/* Cada columna (Israel – ChatGPT) */
.footer-col {
    flex: 1 1 260px;
}

.footer-col h3 {
    font-size: 16px;
    margin-bottom: 6px;
    color: #ffffff;
    font-weight: bold;
}

/* Texto */
.footer-col p,
.footer-col strong {
    font-size: 14px;
    line-height: 1.5;
}

/* Línea inferior */
.footer-bottom {
    text-align: center;
    margin-top: 15px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 12px;
    opacity: 0.85;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 768px) {
    .footer-inner {
        text-align: center;
        justify-content: center;
    }

    .footer-col {
        flex: 1 1 100%;
    }
}
