.footer {
    background: #000000;
    color: #ccc;
    padding: 40px 20px 20px 20px;
    font-family: Arial, sans-serif;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: auto;
}

/* Columnas */
.footer-column {
    flex: 1;
    min-width: 250px;
}

.footer-column h3 {
    color: white;
    font-size: 16px;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.footer-column p {
    font-size: 14px;
    color: #ccc;
    line-height: 1.5;
}

.footer-column a {
    color: #ccc;
    text-decoration: none;
}

.footer-column a:hover {
    color: white;
}

/* Imagen */
.footer-img {
    width: 120px;
    margin-bottom: 15px;
    border-radius: 4px;
}

/* Línea inferior */
.footer-line {
    border: none;
    border-top: 1px solid #444;
    margin: 25px auto;
    width: 100%;
    max-width: 1200px;
}

/* Texto inferior */
.footer-bottom {
    text-align: center;
    color: #888;
    font-size: 13px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        gap: 30px;
        align-items: center;
        text-align: center;
    }

    .footer-column {
        min-width: 100%;
    }

    .footer-img {
        margin-left: auto;
        margin-right: auto;
        display: block;
    }
}
