/* Fix para navbar transparente */
.navbar {
    background: transparent !important;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: none;
}

.navbar.scrolled {
    background: rgba(26, 26, 26, 0.98) !important;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

/* Asegurar que el navbar sea transparente en todas las resoluciones */
@media (min-width: 992px) {
    .navbar {
        background: transparent !important;
    }

    .navbar.scrolled {
        background: rgba(26, 26, 26, 0.98) !important;
    }
}

/* Override para cualquier otro estilo que pueda estar interfiriendo */
#mainNav.navbar {
    background: transparent !important;
}

#mainNav.navbar.scrolled {
    background: rgba(26, 26, 26, 0.98) !important;
}

/* Estilos mejorados para los elementos de contacto - SIN HOVER */
.contact-item {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.contact-item .icon-container {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-item .fas {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Estilos para el botón del mapa */
.map-placeholder .btn {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative;
    overflow: hidden;
}

/* Efectos para el contenedor del ícono del mapa */
.map-icon-container {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Animaciones suaves para los headers */
.contact-header h3 {
    transition: all 0.3s ease;
}

/* Estilos mejorados para el footer */
.footer {
    position: relative;
    z-index: 10;
}

.footer-heading {
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: #5FB134;
    border-radius: 1px;
}

.footer-link:hover {
    color: #5FB134 !important;
    transform: translateX(5px);
}

.important-link:hover {
    color: white !important;
    transform: translateX(5px);
}

.social-link:hover {
    background: #5FB134 !important;
    border-color: #5FB134 !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(95, 177, 52, 0.3);
}

.bottom-link:hover {
    color: #5FB134 !important;
}

/* Responsive para el footer y contacto */
@media (max-width: 768px) {
    .footer-bottom-links {
        justify-content: center !important;
        margin-top: 1rem;
    }

    .copyright-text {
        text-align: center;
    }

    .contact-item {
        margin-bottom: 1rem;
    }

    .map-section {
        margin-top: 2rem;
    }
}