/* CONFIGURAÇÃO DE CORES E FONTES */
:root {
    --black: #000000;
    --white: #FFFFFF;
    --purple: #6200EE;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { background: var(--black); color: var(--white); font-family: 'Inter', sans-serif; overflow-x: hidden; }

/* TEXTOS */
h1, h2, h3 { font-family: 'Montserrat', sans-serif; font-weight: 900; text-transform: uppercase; }
.purple-text { color: var(--purple); }

/* CABEÇALHO (MENU) */
header { padding: 20px; position: fixed; width: 100%; top: 0; z-index: 100; background: rgba(0,0,0,0.9); border-bottom: 1px solid #111; }
nav { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
.logo { font-family: 'Montserrat'; font-weight: 900; font-size: 1.5rem; letter-spacing: 2px; }
.menu { display: flex; list-style: none; gap: 30px; align-items: center; }
.menu a { color: #fff; text-decoration: none; font-size: 0.8rem; font-weight: 600; transition: 0.3s; }
.menu a:hover { color: var(--purple); }
.btn-nav { border: 1px solid var(--purple); padding: 8px 15px; border-radius: 2px; }

/* PRIMEIRA PARTE (HERO) */
.hero { height: 100vh; display: flex; flex-direction: column; justify-content: center; padding: 0 10%; }
.hero h1 { font-size: 4rem; line-height: 1; margin-bottom: 20px; }
.hero p { font-size: 1.1rem; max-width: 600px; color: #888; margin-bottom: 40px; }

/* BOTÕES PRINCIPAIS */
.btn-main { 
    background: var(--purple); 
    color: #fff; 
    padding: 20px 40px; 
    text-decoration: none; 
    font-weight: 900; 
    display: inline-block; 
    border: none; 
    cursor: pointer; 
    font-family: 'Montserrat';
    transition: 0.3s;
    text-align: center;
}
.btn-main:hover { transform: scale(1.05); filter: brightness(1.2); }

/* SEÇÃO DO MAESTRO (BRUNO) */
.maestro-section { padding: 100px 10%; }
.maestro-container { display: grid; grid-template-columns: 1.2fr 1fr; gap: 50px; align-items: center; max-width: 1200px; margin: 0 auto; }
.tag { color: var(--purple); font-weight: 600; font-size: 0.7rem; letter-spacing: 3px; margin-bottom: 20px; display: block; }
.maestro-content h2 { font-size: 2.2rem; margin-bottom: 20px; }
.bio { color: #888; margin-bottom: 20px; }
.certificacoes { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 30px; }
.quote { border-left: 2px solid var(--purple); padding-left: 20px; font-style: italic; color: #888; }
.bw-photo { width: 100%; filter: grayscale(100%) brightness(1.1); border-radius: 4px; border: 1px solid #222; }

/* SEÇÃO TRÍADE (CARDS) */
.triade-section { padding: 100px 10%; text-align: center; }
.section-title { font-size: 3rem; margin-bottom: 50px; opacity: 0.3; }
.triade-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
.triade-card { background: #050505; padding: 60px 30px; text-align: left; border: 1px solid #111; }
.number { color: var(--purple); font-weight: 900; margin-bottom: 15px; display: block; }

/* --- SEÇÃO FAQ (ESTILIZADA PARA ÓPERA) --- */
.faq-section { padding: 100px 10%; background: #000; border-top: 1px solid #111; }
.faq-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 40px; }
.faq-item { background: #050505; padding: 30px; border: 1px solid #111; border-left: 3px solid var(--purple); transition: 0.3s; }
.faq-item:hover { background: #0a0a0a; transform: translateY(-5px); }
.faq-item h3 { color: var(--purple); font-size: 1rem; margin-bottom: 15px; letter-spacing: 1px; }
.faq-item p { color: #888; line-height: 1.6; font-size: 0.9rem; }

/* FORMULÁRIO */
.form-section { padding: 100px 10%; background: #050505; }
.form-container { max-width: 500px; margin: 0 auto; }
.opera-form { display: flex; flex-direction: column; gap: 15px; margin-top: 30px; }
.opera-form input, .opera-form select, .opera-form textarea { 
    background: #000; 
    border: 1px solid #222; 
    padding: 15px; 
    color: #fff; 
    width: 100%;
    font-family: 'Inter';
}
.opera-form input:focus { border-color: var(--purple); outline: none; }

/* RODAPÉ */
footer { padding: 60px 10%; border-top: 1px solid #111; background: #000; }
.footer-container { display: flex; justify-content: space-between; align-items: center; max-width: 1200px; margin: 0 auto; width: 100%; }
.footer-right a { color: #fff; text-decoration: none; margin-left: 20px; font-size: 0.8rem; font-weight: 600; transition: 0.3s; }
.footer-right a:hover { color: var(--purple); }

/* BOTÃO DO WHATSAPP FLUTUANTE */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
    transition: 0.3s;
}
.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-float img { width: 35px; }

/* AJUSTES PARA CELULAR */
@media (max-width: 768px) {
    .maestro-container { grid-template-columns: 1fr; }
    .hero h1 { font-size: 2.5rem; }
    .hero { height: auto; padding-top: 120px; padding-bottom: 60px; }
    .whatsapp-float { width: 50px; height: 50px; bottom: 20px; right: 20px; }
    .footer-container { flex-direction: column; gap: 30px; text-align: center; }
    .footer-right a { margin: 0 10px; }
    .section-title { font-size: 2rem; }
}
/* ============================================================
   ESTILOS PARA O DIRECIONAMENTO DO FAQ (HOME + PÁGINA)
   ============================================================ */

/* Estilo da Seção FAQ na Home (index.html) */
.faq-section {
    padding: 100px 10%;
    text-align: center;
    background: #000;
    border-top: 1px solid #111;
}

.faq-section p {
    color: #888;
    max-width: 600px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
}

/* Efeito no botão de FAQ */
.faq-section .btn-main {
    display: inline-block;
    padding: 18px 40px;
    border: 1px solid var(--purple);
    background: transparent;
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    transition: all 0.4s ease;
    text-decoration: none;
}

.faq-section .btn-main:hover {
    background: var(--purple);
    box-shadow: 0 0 20px rgba(98, 0, 238, 0.4);
    transform: translateY(-3px);
}

/* Grid de FAQ (Página faq.html) */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.faq-item {
    background: #050505;
    padding: 30px;
    border: 1px solid #111;
    border-left: 3px solid var(--purple);
    transition: 0.3s ease;
}

.faq-item:hover {
    background: #0a0a0a;
    border-color: #222;
    transform: scale(1.02);
}

.faq-item h3 {
    color: var(--purple);
    font-size: 0.9rem;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.faq-item p {
    color: #888;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Ajuste Mobile */
@media (max-width: 768px) {
    .faq-section h1 {
        font-size: 2.2rem;
    }
    .faq-grid {
        grid-template-columns: 1fr;
    }
}