/* Material Symbols default fill state */
.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

/* Card elevation styles (see DESIGN.md — Elevation & Depth) */
.shadow-soft {
    box-shadow: 0px 4px 12px rgba(0, 82, 204, 0.05);
}
.shadow-hover {
    box-shadow: 0px 8px 24px rgba(0, 82, 204, 0.10);
}

/* Floating WhatsApp button pulse */
@keyframes pulse-whatsapp {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
.animate-whatsapp {
    animation: pulse-whatsapp 2s infinite;
}

html {
    scroll-behavior: smooth;
}
