@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

body {
    font-family: 'Inter', sans-serif;
}

.gradient-text {
    background: linear-gradient(to right, #30c68d, #33ce8d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bg-gradient {
    background: linear-gradient(to right, #30c68d, #33ce8d);
}

.beta-glow {
    box-shadow: 0 0 30px rgba(239, 68, 68, 0.3);
}

/* Landing Page Specific Styles */
.plan-card {
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.feature-icon {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.1));
}

.mobile-menu {
    display: none;
}

.mobile-menu.active {
    display: block;
}

.screenshot-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.screenshot-container:hover {
    transform: translateY(-5px);
}

.section-line {
    height: 1px;
    background: linear-gradient(to right, 
        rgba(0, 0, 0, 0), 
        rgba(0, 0, 0, 0.1), 
        rgba(0, 0, 0, 0));
}

.step-connector {
    position: absolute;
    top: 50%;
    left: 100%;
    height: 2px;
    width: 100%;
    background: linear-gradient(to right, #666, transparent);
    transform: translateY(-50%);
    z-index: 0;
}

/* FAQ Accordion Styles */
.faq-item {
    cursor: pointer;
    border-radius: 0.75rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 1.5rem;
    background-color: #f9fafb;
    border: none;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background-color: #f3f4f6;
}

.faq-question.active {
    background-color: #e5e7eb;
}

.faq-icon {
    transition: transform 0.3s ease;
    color: #9ca3af;
}

.faq-answer {
    background-color: #ffffff;
    border-top: 1px solid #e5e7eb;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease;
}

.faq-answer.active {
    border-top: 1px solid #e5e7eb;
}

/* Animation for scrolling content */
@keyframes scroll {
    0% { transform: translateY(0); }
    50% { transform: translateY(calc(-100% + 460px)); }
    100% { transform: translateY(0); }
}

.animate-scroll {
    animation: scroll 60s linear infinite;
}

/* Pausa a animação quando o mouse estiver em cima */
#content-scroll-container:hover .animate-scroll {
    animation-play-state: paused;
}

/* Gradient text variant for landing page */
.gradient-text.landing {
    background: linear-gradient(to right, #30c68d, #33ce8d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Landing page gradient variant */
.bg-gradient.landing {
    background: linear-gradient(to right, #30c68d, #33ce8d);
}
