/* FOOTER CON MAPA */
.footer {
    background: var(--primary);
    padding: 0;
    border-top: 1px solid rgba(0, 212, 255, 0.2);
}

.footer-map-section {
    background: var(--secondary);
    padding: 4rem 2rem;
}

.map-container {
    max-width: 1400px;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid rgba(0, 212, 255, 0.2);
}

.map-container iframe {
    display: block;
    width: 100%;
    filter: grayscale(20%) brightness(0.9) contrast(1.1);
}

.footer-content-wrapper {
    padding: 4rem 2rem 2rem;
    background: rgba(10, 14, 39, 0.95);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-col h3 {
    color: var(--accent);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), transparent);
    border-radius: 2px;
}

.footer-col p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col li {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 2;
    transition: all 0.3s ease;
    padding-left: 0;
}

.footer-col li:hover {
    color: var(--accent);
    transform: translateX(5px);
}

.footer-bottom {
    background: rgba(10, 14, 39, 1);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2rem;
}

.footer-bottom-content {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    color: var(--text-gray);
}

.footer-bottom-content p {
    margin: 0;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-map-section {
        padding: 3rem 1.5rem;
    }

    .map-container iframe {
        height: 300px;
    }

    .footer-content-wrapper {
        padding: 3rem 1.5rem 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-col h3 {
        font-size: 1.1rem;
    }

    .footer-bottom {
        padding: 1.5rem 1rem;
    }

    .footer-bottom-content p {
        font-size: 0.85rem;
    }
}

/* Hover effects for links */
.footer-col a {
    display: inline-block;
    transition: all 0.3s ease;
}

.footer-col a:hover {
    transform: translateX(3px);
    color: #00b8e6 !important;
}