/* Custom styles for Leva Pra Mim */

:root {
    --hero-overlay: 0 0% 0%;
}

.text-gradient-orange {
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    background-image: linear-gradient(135deg, hsl(25 95% 53%), hsl(35 100% 60%));
}

.bg-gradient-orange {
    background: linear-gradient(135deg, hsl(25 95% 53%), hsl(20 90% 42%));
}

.bg-section-warm {
    background-color: hsl(35 50% 97%);
}

.hero-overlay {
    background: linear-gradient(to right, hsla(0, 0%, 0%, 0.7) 0%, hsla(0, 0%, 0%, 0.3) 60%, transparent 100%);
}

.shadow-orange {
    box-shadow: 0 8px 30px -8px hsla(25, 95%, 53%, 0.35);
}

/* Base Headings */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Animations (Simple versions of Framer Motion) */
.fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
}

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