/* Estilos compartilhados para todas as páginas de tratamento */

.treatment-content-section {
    padding: 80px 0;
    background: white;
}

.treatment-intro {
    max-width: 900px;
    margin: 0 auto 60px;
}

.treatment-intro h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 25px;
}

.treatment-intro p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--gray-color);
    margin-bottom: 15px;
}

.treatment-features {
    max-width: 1200px;
    margin: 0 auto 80px;
}

.treatment-features h3 {
    font-size: 32px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 40px;
    text-align: center;
}

.features-grid-treatment {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-item-treatment {
    background: var(--light-color);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s;
}

.feature-item-treatment:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.feature-item-treatment i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-item-treatment h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 12px;
}

.feature-item-treatment p {
    color: var(--gray-color);
    line-height: 1.6;
    font-size: 15px;
}

.treatment-process {
    max-width: 900px;
    margin: 0 auto 80px;
}

.treatment-process h3 {
    font-size: 32px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 40px;
    text-align: center;
}

.process-timeline {
    position: relative;
}

.timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
}

.timeline-item:not(:last-child):before {
    content: '';
    position: absolute;
    left: 35px;
    top: 70px;
    bottom: -40px;
    width: 2px;
    background: var(--primary-color);
    opacity: 0.3;
}

.timeline-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
}

.timeline-content {
    flex: 1;
    padding-top: 10px;
}

.timeline-content h4 {
    font-size: 24px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.timeline-content p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-color);
}

.treatment-info-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.info-box-treatment {
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.info-box-treatment.warning {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    border-left: 5px solid var(--warning-color);
}

.info-box-treatment.success {
    background: linear-gradient(135deg, #d4edda 0%, #b7e4c7 100%);
    border-left: 5px solid var(--success-color);
}

.info-box-treatment i {
    font-size: 48px;
    margin-bottom: 20px;
}

/* Correção para ícones Lucide nas caixas de informação */
.info-box-treatment [data-lucide],
.info-box-treatment svg[data-lucide] {
    width: 48px !important;
    height: 48px !important;
    margin-bottom: 20px;
}

/* Correção para ícones Lucide nos itens de características */
.feature-item-treatment [data-lucide],
.feature-item-treatment svg[data-lucide] {
    width: 48px !important;
    height: 48px !important;
    margin-bottom: 20px;
}

.info-box-treatment.warning i {
    color: var(--warning-color);
}

.info-box-treatment.success i {
    color: var(--success-color);
}

.info-box-treatment h4 {
    font-size: 24px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.info-box-treatment ul {
    list-style: none;
}

.info-box-treatment ul li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-color);
    font-size: 16px;
}

.info-box-treatment ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    font-size: 24px;
    font-weight: 700;
}

.info-box-treatment.warning ul li:before {
    color: var(--warning-color);
}

.info-box-treatment.success ul li:before {
    color: var(--success-color);
}

@media (max-width: 768px) {
    .treatment-intro h2 {
        font-size: 28px;
    }
    
    .treatment-features h3,
    .treatment-process h3 {
        font-size: 24px;
    }
    
    .features-grid-treatment,
    .treatment-info-boxes {
        grid-template-columns: 1fr;
    }
    
    .timeline-item {
        flex-direction: column;
    }
    
    .timeline-item:not(:last-child):before {
        display: none;
    }
}

