/* Estilos para el bloque Google Maps */
.google-maps-section {
    position: relative;
    overflow: hidden;
}

.google-maps-container {
    transition: all 0.3s ease;
}

.google-maps-container:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15) !important;
}

.google-maps-container iframe {
    transition: all 0.3s ease;
}



/* Responsive */
@media (max-width: 768px) {
    .google-maps-section {
        padding: 40px 15px !important;
    }
    
    .google-maps-section h2 {
        font-size: 2rem !important;
        margin-bottom: 30px !important;
    }
    
    .google-maps-container {
        height: 300px !important;
    }
}

@media (max-width: 480px) {
    .google-maps-section {
        padding: 30px 10px !important;
    }
    
    .google-maps-section h2 {
        font-size: 1.8rem !important;
    }
    
    .google-maps-container {
        height: 250px !important;
    }
}

/* Animaciones */
.google-maps-section {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Loading state */
.google-maps-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    z-index: -1;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}
