@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    --brand-blue: #4285F4;
    --brand-red: #DB4437;
    --brand-yellow: #F4B400;
    --brand-green: #0F9D58;
    --brand-dark: #202124;
    --brand-gray: #5f6368;
    --bg-soft: #f8f9fa;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--brand-dark);
    background-color: var(--bg-soft);
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--brand-blue);
}

.custom-scrollbar::-webkit-scrollbar {
    width: 6px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.4s ease-out forwards;
}

@keyframes pulse-soft {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(66, 133, 244, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(66, 133, 244, 0);
    }
}

.pattern-dots {
    background-image: radial-gradient(#e5e7eb 1px, transparent 1px);
    background-size: 20px 20px;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-5px);
    }
    100% {
        transform: translateY(0px);
    }
}

.whatsapp-float {
    animation: float 3s ease-in-out infinite;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-float:hover {
    animation: none;
    transform: scale(1.05);
}

.shadow-card {
    box-shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
}

.shadow-card-hover {
    transition: all 0.3s ease;
}

.shadow-card-hover:hover {
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.category-filter-btn {
    transition: all 0.3s ease;
}

.category-filter-btn.active {
    background-color: var(--brand-dark) !important;
    color: white !important;
    border: none !important;
}

.service-card {
    transition: all 0.3s ease;
}