/* Font Definitions */
/* 
Nota: Como SIXSOUND y MUNDIAL pueden ser fuentes personalizadas o comerciales específicas, 
uso Bebas Neue (impactante, para títulos) e Inter (limpia, moderna) como alternativas profesionales similares.
Si tienes los archivos de fuente .woff2 o .ttf de SIXSOUND y MUNDIAL, reemplaza estas importaciones 
con @font-face declarations apuntando a tus archivos locales.
*/

.font-sixsound {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 0.05em;
}

.font-mundial {
    font-family: 'Inter', sans-serif;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #0891b2;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #0e7490;
}

/* Animation for Hero Elements */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Mobile Menu Animation */
#mobile-menu {
    transition: all 0.3s ease-in-out;
    max-height: 0;
    overflow: hidden;
}

#mobile-menu:not(.hidden) {
    max-height: 300px;
}

/* FAQ Transition */
.faq-content {
    transition: max-height 0.3s ease-in-out;
}

/* Hover Effects for Cards */
.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Button Pulse Animation */
@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(8, 145, 178, 0.4);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(8, 145, 178, 0);
    }
}

.btn-pulse {
    animation: pulse-glow 2s infinite;
}

/* Responsive Typography Adjustments */
@media (max-width: 768px) {
    .font-sixsound {
        letter-spacing: 0.02em;
    }
}

/* Map Pin Animation */
@keyframes ping-slow {
    75%, 100% {
        transform: scale(2);
        opacity: 0;
    }
}

.animate-ping-slow {
    animation: ping-slow 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

/* Gradient Text */
.text-gradient {
    background: linear-gradient(to right, #22d3ee, #0891b2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}