body {
    font-family: 'Arial', sans-serif;
    background-color: #f5f7fa;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 20px;
}

.pricing-container {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 900px;
}

.pricing-box {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    overflow: hidden;
}

.pricing-header {
    color: white;
    padding: 30px;
    text-align: center;
}

.pricing-header.basic {
    background-color: #dadae5;
}

.pricing-header.professional {
    background-color: #0A5FCC;
}

.pricing-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.pricing-price {
    font-size: 48px;
    font-weight: 700;
    margin: 20px 0;
}

.pricing-period {
    font-size: 16px;
    opacity: 0.8;
}

.pricing-features {
    padding: 30px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-item {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-icon {
    color: #4a6cf7;
    margin-right: 10px;
    font-weight: bold;
}

.pricing-button {
    display: block;
    color: white;
    text-align: center;
    padding: 15px;
    margin: 0 30px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    transition: background-color 0.3s;
}

.pricing-button.basic {
    background-color: #f6f1ef;
}

.pricing-button.professional {
    background-color: #0A5FCC;
}

.pricing-button:hover {
    opacity: 0.9;
}

.highlight {
    background-color: #f8f9ff;
    font-weight: 600;
}

@media (max-width: 768px) {
    .pricing-container {
        flex-direction: column;
        align-items: center;
    }
}

/* Estilos anteriores permanecem iguais... */

/* Estilos para os Bônus */
.bonus-box {
    background-color: #fff9e6;
    border-left: 4px solid #FFD700;
    padding: 15px;
    margin: 20px 0;
    border-radius: 0 8px 8px 0;
}

.bonus-header {
    font-weight: 700;
    color: #f4f1ea;
    margin-bottom: 10px;
    font-size: 16px;
}

.bonus-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bonus-item {
    padding: 8px 0;
    display: flex;
    align-items: center;
}

.bonus-icon {
    margin-right: 10px;
    font-size: 18px;
}

/* Estilos para a Garantia */
.guarantee-box {
    background-color: #f0f9ff;
    border: 1px solid #cce6ff;
    padding: 15px;
    margin: 20px 0;
    border-radius: 8px;
    text-align: center;
}

.guarantee-header {
    font-weight: 700;
    color: #0A5FCC;
    margin-bottom: 8px;
    font-size: 16px;
}

.guarantee-text {
    font-size: 14px;
    color: #555;
}

/* Estilos para os boxes especiais */
.special-offer-box {
    max-width: 600px;
    margin: 0 auto 30px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.bonus-box {
    background: linear-gradient(135deg, #fff8e1 0%, #ffecb3 100%);
    border: 1px solid #ffd54f;
}

.guarantee-box {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border: 1px solid #64b5f6;
}

.offer-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px dashed rgba(0,0,0,0.1);
}

.offer-icon {
    font-size: 28px;
    margin-right: 15px;
}

.bonus-box .offer-icon {
    color: #f6f4f1;
}

.guarantee-box .offer-icon {
    color: #1976d2;
}

.offer-title {
    margin: 0;
    font-size: 1.5rem;
    color: #333;
}

.offer-content {
    font-size: 1rem;
    line-height: 1.6;
}

.offer-list {
    padding-left: 20px;
}

.offer-list li {
    margin-bottom: 10px;
    position: relative;
}

.offer-list li:before {
    content: "•";
    color: #efede9;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

/* Ajuste para mobile */
@media (max-width: 768px) {
    .special-offer-box {
        padding: 15px;
    }
    
    .offer-title {
        font-size: 1.3rem;
    }
    
    .offer-icon {
        font-size: 24px;
        margin-right: 10px;
    }
}

/* FAQ Section Styles */
.faq-section {
    background-color: #f8f9fa;
}

.accordion {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.accordion-item {
    border-bottom: 1px solid #e0e0e0;
    background-color: white;
}

.accordion-item:last-child {
    border-bottom: none;
}

.accordion-question {
    padding: 18px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.accordion-question:hover {
    background-color: #f5f5f5;
}

.accordion-icon {
    font-weight: bold;
    transition: transform 0.3s ease;
    font-size: 18px;
}

.accordion-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 25px;
    background-color: #fafafa;
}

.accordion-answer p {
    padding: 15px 0;
    margin: 0;
    color: #555;
    line-height: 1.6;
}

/* Active state */
.accordion-item.active .accordion-question {
    background-color: #f0f7ff;
}

.accordion-item.active .accordion-icon {
    transform: rotate(90deg);
}

.accordion-item.active .accordion-answer {
    max-height: 300px;
}