/* Pestolab Styles Custom - Brand Color #0d2580 (Bleu Roi Pestolab) */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary: #0d2580;
    --primary-dark: #071344;
    --accent: #2563eb;
    --dark: #071033;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #1e293b;
    scroll-behavior: smooth;
}

.gradient-hero {
    background: linear-gradient(135deg, #071344 0%, #0d2580 60%, #1e3a8a 100%);
}

.card-hover {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-hover:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(13, 37, 128, 0.08), 0 10px 10px -5px rgba(13, 37, 128, 0.04);
}

/* WhatsApp floating pulse */
.wa-pulse {
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #0d2580;
}
