/* Argoca Web Agency - Styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

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

/* Gradient utilities */
.gradient-bg {
    background: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%);
}

.gradient-text {
    background: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Mobile fixes */
@media (max-width: 768px) {
    .hero-text {
        position: relative;
        z-index: 20;
    }
    
    .hero-visual {
        position: relative;
        z-index: 15;
    }
    
    section {
        position: relative;
        z-index: 10;
    }
    
    #mobile-menu {
        z-index: 60 !important;
        position: fixed !important;
        top: 73px !important;
        left: 0 !important;
        right: 0 !important;
        background: rgba(255, 255, 255, 0.98) !important;
        backdrop-filter: blur(10px) !important;
        border-bottom: 1px solid rgba(148, 163, 184, 0.2) !important;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1) !important;
    }
    
    #mobile-menu a {
        display: block !important;
        padding: 12px 16px !important;
        color: #334155 !important;
        font-weight: 500 !important;
        border-radius: 8px !important;
        margin: 4px 0 !important;
        transition: all 0.3s ease !important;
    }
    
    #mobile-menu a:hover {
        background-color: #f1f5f9 !important;
        color: #3b82f6 !important;
    }
}

/* Tailwind overrides */
.font-inter {
    font-family: 'Inter', sans-serif;
}

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

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

::-webkit-scrollbar-thumb {
    background: #3b82f6;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #2563eb;
}

/* Line clamp utility */
.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Phase badge animation */
.phase-badge {
    animation: pulse-slow 3s ease-in-out infinite;
}

@keyframes pulse-slow {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

/* Card hover effects */
.card-hover {
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Feature icon animation */
.feature-icon {
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Popup animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

/* SaaS section specific */
.saas-hero-bg {
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.05) 0%, rgba(20, 184, 166, 0.05) 100%);
}
