/**
 * Estilos para Conteúdo Otimizado para LLMs
 * Sem interferir no layout existente
 */

/* Seção Hero Otimizada para IA */
.hero-content-for-ai {
    background: #f8f9fa;
    padding: 40px 0;
    margin-bottom: 30px;
}

.hero-content-for-ai .main-heading {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
    text-align: center;
}

.hero-content-for-ai .lead-text {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #555;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

/* Seções de Benefícios */
.why-choose-us,
.process-explanation,
.environments-we-serve {
    margin-bottom: 40px;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.why-choose-us h2,
.process-explanation h2,
.environments-we-serve h2 {
    color: #d32f2f;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

/* Lista de Benefícios */
.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 30px;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Lista de Processos */
.process-steps {
    padding-left: 20px;
}

.process-steps li {
    margin-bottom: 15px;
    line-height: 1.6;
}

.process-steps li strong {
    color: #d32f2f;
}

/* Descrições de Seções */
.section-description {
    color: #666;
    font-style: italic;
    margin-bottom: 20px;
    text-align: center;
}

/* FAQ Otimizada para IA */
.faq-for-ai {
    background: #f8f9fa;
    padding: 40px 20px;
    margin: 40px 0;
    border-radius: 10px;
}

.faq-for-ai h2 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 30px;
    font-size: 2rem;
}

.faq-item {
    background: #fff;
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #d32f2f;
}

.faq-item h3 {
    color: #d32f2f;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.faq-item p {
    line-height: 1.6;
    color: #555;
    margin: 0;
}

/* Informações Essenciais */
.essential-info-for-ai {
    padding: 40px 20px;
    background: #fff;
    margin: 40px 0;
}

.essential-info-for-ai h2 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 30px;
}

.company-facts,
.service-details,
.materials-info {
    margin-bottom: 30px;
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 8px;
}

.company-facts h3,
.service-details h3,
.materials-info h3 {
    color: #d32f2f;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.company-facts ul,
.service-details ul {
    list-style: none;
    padding: 0;
}

.company-facts ul li,
.service-details ul li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

.company-facts ul li strong,
.service-details ul li strong {
    color: #2c3e50;
    margin-right: 5px;
}

.materials-info p {
    line-height: 1.6;
    color: #555;
}

/* Seção de Marcas */
.brands-section {
    margin: 40px 0;
    text-align: center;
}

.brands-section .section-title {
    margin-bottom: 10px;
}

.brands-section .section-description {
    margin-bottom: 30px;
}

/* Responsividade */
@media (max-width: 768px) {
    .hero-content-for-ai .main-heading {
        font-size: 2rem;
    }
    
    .hero-content-for-ai .lead-text {
        font-size: 1.1rem;
    }
    
    .why-choose-us,
    .process-explanation,
    .environments-we-serve {
        padding: 15px;
        margin-bottom: 30px;
    }
    
    .faq-for-ai,
    .essential-info-for-ai {
        padding: 20px 15px;
    }
    
    .faq-item {
        padding: 15px;
    }
}