/* Custom styles */
body {
    font-family: 'Inter', sans-serif;
    background-color: #1a202c; /* Equivalent to zinc-900 */
}

.hero-gradient-text {
    background: linear-gradient(to right, #f97316, #84cc16);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.slide {
    transition: opacity 0.7s ease-in-out;
}

@keyframes preloader-bar {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.animate-preloader-bar {
    animation: preloader-bar 1.5s linear infinite;
}

/* Scroll Animation */
.plan-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.plan-card.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.whatsapp-float {
    position: fixed;
    bottom: 1.5rem;  /* 24px */
    right: 1.5rem;   /* 24px */
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    width: 3.75rem;  /* 60px */
    height: 3.75rem; /* 60px */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.875rem; /* 30px */
    box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: background-color 0.3s, transform 0.3s;
    text-decoration: none;
}
.whatsapp-float:hover {
    background-color: #1ebe5d;
    transform: scale(1.1);
    color: white;
}