/* Footer ocupa todo el ancho */
.footer-full {
    width: 100%;
    background-color: #607d8b;
    /* azul gris institucional */
    color: #fff;
    margin-top: 40px;
    font-family: Arial, sans-serif;
}

/* Contenido superior: dos columnas */
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px 40px;
}

.footer-left h5 {
    margin: 0;
    font-size: 20px;
    font-weight: bold;
}

.footer-left p {
    margin: 5px 0 0 0;
    font-size: 14px;
    color: #cfd8dc;
}

/* Enlaces a la derecha */
.footer-right a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    margin-left: 20px;
    transition: color 0.3s, text-decoration 0.3s;
}

.footer-right a:hover {
    text-decoration: underline;
    color: #cfd8dc;
}

/* Franja inferior */
.footer-bottom {
    background-color: #546e7a;
    text-align: center;
    padding: 10px;
    font-size: 13px;
}

/* Responsive: en móvil todo centrado */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-right {
        margin-top: 15px;
    }

    .footer-right a {
        margin: 0 10px;
        display: inline-block;
    }
}