/* Estilos personalizados para MiCanchita */

:root {
    --primary-color: #10b981;
    --secondary-color: #3b82f6;
}

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

/* Custom animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* Lucide icons styling */
[data-lucide] {
    display: inline-block;
    vertical-align: middle;
}
