/* ============================================
   Planos Page Styles
   ============================================ */

/* Plans Section */
.plans-section {
    padding: 6rem 0;
}

.produto-section {
    margin-bottom: 6rem;
}

.produto-section:last-child {
    margin-bottom: 0;
}

.produto-header {
    text-align: center;
    margin-bottom: 1rem;
}

.produto-header h2 {
    margin-bottom: 0.5rem;
}

.produto-header p {
    color: var(--gray-600);
    font-size: 1.05rem;
}

.produto-coverage-note {
    color: var(--gray-500);
    font-size: 0.88rem !important;
    margin-top: 0.5rem;
}

.produto-coverage-note i {
    color: var(--primary-color);
    margin-right: 0.25rem;
}

.produto-coverage-note a {
    color: var(--primary-color);
    text-decoration: underline;
}

.produto-national-note {
    color: var(--primary-color);
    font-size: 0.88rem !important;
    font-weight: 500;
    margin-top: 0.5rem;
}

.produto-national-note i {
    margin-right: 0.25rem;
}

/* Comparison Section */
.comparison-section {
    padding: 6rem 0;
}

.comparison-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.comparison-table {
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--white);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.comparison-table thead {
    background-color: var(--secondary-color);
    color: var(--white);
}

.comparison-table th,
.comparison-table td {
    padding: 1.5rem;
    text-align: left;
    border-bottom: 1px solid var(--gray-200);
}

.comparison-table th {
    font-weight: 600;
}

.comparison-table tbody tr:hover {
    background-color: var(--gray-100);
}

.comparison-table i {
    margin-right: 0.5rem;
}

/* FAQ Section */
.faq-section {
    padding: 1rem 0;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-items {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid var(--gray-300);
    border-radius: 0.5rem;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background-color: var(--gray-100);
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary-color);
    transition: var(--transition);
}

.faq-question:hover {
    background-color: var(--gray-200);
}

.faq-question i {
    transition: var(--transition);
}

.faq-question.active i {
    transform: rotate(180deg);
}

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

.faq-answer.active {
    max-height: 500px;
}

.faq-answer p {
    padding: 1.5rem;
    color: var(--gray-700);
    line-height: 1.8;
}

/* Responsividade */
@media (max-width: 768px) {  
    .plan-card.popular {
        transform: scale(1);
    }
    
    .planos-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
     .comparison-table th,
    .comparison-table td {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
}
