/* Reset básico */
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Helvetica Neue', Arial, sans-serif; }
body { line-height: 1.6; color: #ffffff; background-color: #0a0a0a; }
.container { width: 90%; max-width: 1200px; margin: 0 auto; }

/* Header & Navegação */
.header { display: flex; justify-content: space-between; align-items: center; padding: 15px 5%; background-color: #000000; border-bottom: 1px solid #222; position: sticky; top: 0; z-index: 1000; }
.logo-container { display: flex; align-items: center; }
.logo-img { height: 50px; max-width: 250px; object-fit: contain; }
.nav a { text-decoration: none; color: #ffffff; margin: 0 15px; font-weight: 500; transition: color 0.3s ease; }
.nav a:hover { color: #ffcc00; }
.menu-toggle { display: none; font-size: 1.8rem; cursor: pointer; color: #ffffff; }

/* Seção Hero */
.hero { color: #ffffff; padding: 120px 20px; text-align: center; }
.hero-content h1 { font-size: 2.8rem; margin-bottom: 20px; }
.hero-content p { font-size: 1.2rem; max-width: 800px; margin: 0 auto 20px; color: #cccccc; }
.hero-content blockquote { font-style: italic; font-size: 1.4rem; margin-bottom: 30px; color: #ffcc00; }

/* Botões */
.btn { display: inline-block; padding: 12px 30px; text-decoration: none; border-radius: 4px; font-weight: bold; transition: all 0.3s; margin: 10px 5px; text-transform: uppercase; letter-spacing: 0.5px; }
.btn-primary { background-color: #ffcc00; color: #000000; border: 2px solid #ffcc00; }
.btn-primary:hover { background-color: #e6b800; border-color: #e6b800; transform: translateY(-2px); }
.btn-secondary { background-color: transparent; color: #ffcc00; border: 2px solid #ffcc00; }
.btn-secondary:hover { background-color: #ffcc00; color: #000000; transform: translateY(-2px); }

/* Formações */
.temas { padding: 80px 0; background-color: #0a0a0a; }
.temas h2 { text-align: center; font-size: 2.2rem; margin-bottom: 10px; color: #ffffff; }
.temas > .container > p { text-align: center; margin-bottom: 50px; color: #cccccc; font-size: 1.1rem; }
.temas-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.tema-card { background: #1a1a1a; padding: 40px 30px; border-radius: 8px; box-shadow: 0 4px 15px rgba(0,0,0,0.5); border-top: 4px solid #ffcc00; transition: transform 0.3s; }
.tema-card:hover { transform: translateY(-10px); }
.tema-card h3 { margin-bottom: 15px; color: #ffcc00; font-size: 1.3rem; }
.tema-card p { color: #dddddd; }

/* NOVA SEÇÃO: O Especialista */
.especialista { padding: 80px 0; background-color: #111111; border-top: 1px solid #222; border-bottom: 1px solid #222; }
.flex-especialista { display: flex; align-items: center; gap: 50px; }
.especialista-img { flex: 1; text-align: center; }
.especialista-img img { width: 100%; max-width: 400px; border-radius: 8px; box-shadow: 0 10px 30px rgba(0,0,0,0.8); border-bottom: 5px solid #ffcc00; object-fit: cover; }
.especialista-texto { flex: 1.2; }
.especialista-texto h2 { font-size: 1.5rem; color: #cccccc; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 5px; }
.nome-especialista { font-size: 2.8rem; color: #ffcc00; margin-bottom: 15px; line-height: 1.1; }
.especialista-texto p { margin-bottom: 15px; color: #dddddd; font-size: 1.1rem; }

/* NOVA SEÇÃO: Clientes / Prova Social */
.clientes { padding: 60px 0; background-color: #000000; text-align: center; }
.clientes h2 { font-size: 2rem; color: #ffffff; margin-bottom: 10px; }
.clientes p { color: #cccccc; margin-bottom: 40px; }
.logos-grid { display: flex; justify-content: center; align-items: center; gap: 30px; flex-wrap: wrap; }
/* Estilo provisório para as caixas de logo. Quando puser as imagens (<img>), você pode remover o background */
.logo-placeholder { background-color: #1a1a1a; padding: 20px 40px; border-radius: 4px; color: #555; font-weight: bold; border: 1px solid #333; text-transform: uppercase; }

/* Indicadores */
.indicadores { background-color: #0a0a0a; color: #ffffff; padding: 60px 0; text-align: center; border-top: 1px solid #222; border-bottom: 1px solid #222; }
.indicadores-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }
.indicador h3 { font-size: 2.2rem; color: #ffcc00; margin-bottom: 5px; }
.indicador p { color: #cccccc; font-weight: bold; text-transform: uppercase; font-size: 0.9rem; letter-spacing: 1px; }

/* CTA */
.cta { padding: 80px 0; text-align: center; background-color: #111111; }
.cta h2 { font-size: 2rem; margin-bottom: 20px; color: #ffffff; }
.cta p { margin-bottom: 30px; color: #cccccc; font-size: 1.1rem; max-width: 600px; margin-left: auto; margin-right: auto; }

/* Footer */
.footer { background-color: #000000; color: #aaaaaa; padding: 60px 0 20px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; margin-bottom: 40px; }
.footer h4 { color: #ffcc00; margin-bottom: 20px; font-size: 1.2rem; }
.footer p { margin-bottom: 10px; }
.footer-bottom { text-align: center; padding-top: 20px; border-top: 1px solid #222; font-size: 0.9rem; }

/* Responsivo */
@media (max-width: 768px) {
    .nav { display: none; flex-direction: column; position: absolute; top: 80px; left: 0; width: 100%; background-color: #000000; padding: 20px 0; box-shadow: 0 5px 10px rgba(0,0,0,0.5); text-align: center; border-bottom: 1px solid #333; }
    .nav.active { display: flex; }
    .nav a { margin: 15px 0; font-size: 1.2rem; }
    .menu-toggle { display: block; }
    .hero-content h1 { font-size: 2rem; }
    
    /* Ajuste da seção especialista no celular */
    .flex-especialista { flex-direction: column; text-align: center; gap: 30px; }
    .nome-especialista { font-size: 2.2rem; }
}