/* ============================ FOOTER ============================ */
.rtb-footer {
    background-color: var(--rtb-nav);
    color: var(--rtb-white);
    padding: 3rem 1rem 2rem;
    font-size: 1rem;
    line-height: 1.5;
}

/* ===== Contenedor general ===== */
.footer-container {
    max-width: 1900px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
    align-items: flex-start;
    text-align: center;
}

/* ===== Columnas ===== */
.footer-column {
    flex: 1 1 300px;
    min-width: 250px;
}

.footer-column.map iframe {
    height: 200px;
}

/* Nueva clase para alinear logo + slogan */
.footer-column.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* ===== Logo ===== */
.footer-logo {
    height: 180px;
    max-width: 180px;
    width: auto;
    background-color: var(--rtb-white);
    padding: 0.5rem;
    border-radius: 50%;
    margin-bottom: 1rem;
    object-fit: contain;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* ===== Títulos ===== */
.footer-title {
    color: var(--rtb-gold);
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

/* ===== Enlaces ===== */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin: 0.5rem 0;
}

.footer-links a {
    color: var(--rtb-white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover,
.rtb-footer a:hover {
    color: var(--rtb-light);
}

/* ===== Mapa ===== */
.footer-map iframe {
    width: 100%;
    height: 100%;
    min-height: 250px;
    max-width: 600px;
    border-radius: 8px;
    border: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* ===== Footer Inferior ===== */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 2rem;
    padding-top: 1rem;
    text-align: center;
    color: #ccc;
    font-size: 0.9rem;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .footer-container {
        text-align: center;
        flex-direction: column;
        align-items: center;
    }

    .footer-column {
        margin-bottom: 2rem;
    }

    .footer-map iframe {
        height: 250px;
    }
}
