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

.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.03); }
}

.card-feature {
    background-color: #1f2937; /* bg-gray-800 */
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    border: 1px solid #374151; /* bg-gray-700 */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-feature:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.2);
}

.card-feature i {
    font-size: 2.5rem;
    color: #f97316; /* text-orange-500 */
    margin-bottom: 1rem;
}

.card-feature h4 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.card-feature p {
    color: #d1d5db; /* text-gray-300 */
}

.step-number {
    width: 4rem;
    height: 4rem;
    background-color: #f97316; /* bg-orange-500 */
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    margin: 0 auto 1.5rem auto;
}

.bonus-item {
    background: #374151; /* bg-gray-700 */
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.125rem;
}

.valor-cortado {
    text-decoration: line-through;
    color: #9ca3af; /* text-gray-400 */
    margin: 0 0.5rem;
}

/* FAQ Accordion Styles */
.faq-item {
    background: #374151; /* bg-gray-700 */
    border-radius: 0.5rem;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.25rem;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 600;
    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: '\f078'; /* Ícone de seta para baixo do Font Awesome */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    transition: transform 0.3s ease;
}

.faq-item.open .faq-question::after {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.faq-answer p {
    padding: 0 1.25rem 1.25rem;
    color: #d1d5db; /* text-gray-300 */
    line-height: 1.6;
}