/* ==========================================================================
   IDENTIDADE VISUAL - ELVIS LEMOS (ALTA PERFORMANCE)
   ========================================================================== */
:root {
    --primary-color: #ff5500;  /* Laranja Neon/Cenoura */
    --dark-bg: #1a1a1a;        /* Cinza Grafite Escuro */
    --light-bg: #fdfdfd;       /* Off-White */
    --text-dark: #121212;
    --text-light: #ffffff;
    --card-shadow: 0px 15px 35px rgba(0,0,0,0.08);
}

/* ==========================================================================
   CONFIGURAÇÕES GLOBAIS E RESET
   ========================================================================== */
body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    color: var(--text-dark);
    background-color: var(--light-bg);
    overflow-x: hidden;
}

.container {
    width: 85%;
    max-width: 1200px;
    margin: 0 auto;
}

.text-center { 
    text-align: center; 
}

/* ==========================================================================
   HEADER PREMIUM (Barra Base com Links e Botões em Cards Sobrepostos)
   ========================================================================== */
.main-header {
    background-color: rgba(20, 20, 20, 0.6); /* Barra de fundo sutil e translúcida */
    backdrop-filter: blur(15px);               
    -webkit-backdrop-filter: blur(15px);
    
    position: absolute;
    top: 0; left: 0; width: 100%;
    z-index: 100;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 85, 0, 0.1);
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* CORREÇÃO VISUAL DA LOGO: Texto Branco Puro com Destaque Neon */
.logo {
    font-weight: 900;
    font-size: 24px;
    color: #ffffff !important; /* Força o nome a ficar branco puro visível */
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5); /* Sombra para destacar do vídeo */
}

/* Alinhamento dos Cards sobre a barra */
.navigation {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Links em formato de Cards Sobrepostos */
.navigation a {
    color: #ffffff !important;
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    
    /* Configuração de Card Flutuante */
    background: rgba(30, 30, 30, 0.85);
    padding: 12px 22px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    
    /* Faz o card parecer fisicamente sobreposto à barra */
    transform: translateY(2px); 
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Hover nos Cards do Menu */
.navigation a:hover {
    color: var(--primary-color) !important;
    background: rgba(40, 40, 40, 0.95);
    transform: translateY(-4px); /* O card flutua para cima, descolando da barra */
    border-color: rgba(255, 85, 0, 0.4);
    box-shadow: 0 10px 25px rgba(255, 85, 0, 0.2);
}

/* Card Especial para o Botão Principal "Fale Comigo" no Menu */
.navigation .btn-primary.btn-small {
    background: linear-gradient(135deg, var(--primary-color) 0%, #e04b00 100%) !important;
    color: white !important;
    padding: 12px 26px;
    border-radius: 8px; 
    font-size: 13px;
    font-weight: 800;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 6px 20px rgba(255, 85, 0, 0.4);
    transform: translateY(2px);
}

.navigation .btn-primary.btn-small:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(255, 85, 0, 0.6);
    background: linear-gradient(135deg, #e04b00 0%, #b83e00 100%) !important;
}

/* Responsividade Dinâmica para os Cards do Menu no Mobile */
@media (max-width: 768px) {
    .main-header { padding: 15px 0; }
    .header-flex { flex-direction: column; gap: 15px; }
    .navigation { flex-wrap: wrap; justify-content: center; gap: 8px; width: 100%; }
    .navigation a { padding: 10px 16px; font-size: 11px; flex-grow: 1; text-align: center; }
}

/* ==========================================================================
   BOTÕES E BADGES REESTILIZADOS (GERAL)
   ========================================================================== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    text-transform: uppercase;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 1px;
    font-size: 13px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border-radius: 3px;
    border: none;
}

.btn-primary { background-color: var(--primary-color); color: white; }
.btn-primary:hover { background-color: #e04b00; transform: translateY(-2px); box-shadow: 0 7px 14px rgba(255, 85, 0, 0.2); }
.btn-dark { background-color: var(--dark-bg); color: white; }
.btn-dark:hover { background-color: #000; transform: translateY(-2px); }
.btn-light { background-color: white; color: var(--text-dark); }
.btn-light:hover { background-color: #eee; transform: translateY(-2px); }

.badge {
    background-color: rgba(255, 85, 0, 0.1);
    color: var(--primary-color);
    padding: 6px 16px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-left: 3px solid var(--primary-color);
    display: inline-block;
    margin-bottom: 15px;
}

/* ==========================================================================
   HERO SECTION (Banner Principal com Vídeo)
   ========================================================================== */
.hero {
    height: 90vh; 
    display: flex;
    align-items: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%; left: 50%;
    min-width: 100%; min-height: 100%;
    width: auto; height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 40%, rgba(26, 26, 26, 0.4) 100%);
    z-index: 2;
}

.hero::after {
    content: '';
    position: absolute;
    right: -5%; bottom: -30%; width: 35%; height: 140%;
    background: linear-gradient(135deg, rgba(255, 85, 0, 0.22) 0%, transparent 75%);
    transform: skewX(-25deg);
    z-index: 3;
    pointer-events: none;
}

.hero-content { position: relative; z-index: 4; }
.hero h1 { font-size: 58px; font-weight: 900; line-height: 1.1; margin: 20px 0; letter-spacing: -1.5px; text-transform: uppercase; }
.hero-actions { display: flex; gap: 20px; margin-top: 30px; }
.btn-link { color: var(--text-light); text-decoration: none; font-weight: 700; align-self: center; transition: 0.3s; }
.btn-link:hover { color: var(--primary-color); transform: translateX(5px); }

.hero-stats {
    display: flex; gap: 40px; margin-top: 50px;
    border-top: 1px solid rgba(255,255,255,0.1); padding-top: 30px;
}
.stat-item strong { display: block; font-size: 28px; color: var(--primary-color); font-weight: 900; }
.stat-item span { font-size: 13px; color: #aaa; font-weight: 500; }

/* ==========================================================================
   FEATURES CARDS
   ========================================================================== */
.features-cards { margin-top: -70px; position: relative; z-index: 10; }
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.card {
    background: white; padding: 45px 35px; text-align: center; box-shadow: var(--card-shadow);
    border-radius: 8px; border-top: 4px solid transparent;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease, border-top-color 0.3s ease;
}
.card-icon { font-size: 32px; margin-bottom: 15px; }
.card h3 { margin-top: 0; font-size: 20px; font-weight: 700; letter-spacing: 0.5px; }
.card.active { border-top-color: var(--primary-color); }
.card:hover { transform: translateY(-15px); box-shadow: 0px 25px 50px rgba(255, 85, 0, 0.12); border-top-color: var(--primary-color); }

/* ==========================================================================
   ABOUT SECTION MODERNA (Foto e Grid Alinhadas)
   ========================================================================== */
.about-modern { padding: 120px 0; background: var(--light-bg); position: relative; }
.about-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 60px; align-items: center; }
.about-text h2 { font-size: 36px; font-weight: 900; margin: 15px 0; text-transform: uppercase; }
.about-text .lead { font-size: 16px; line-height: 1.6; color: #555; font-weight: 500; }

.premium-list { list-style: none; padding: 0; margin-top: 30px; }
.premium-list li { font-weight: 700; font-size: 15px; margin-bottom: 15px; display: flex; align-items: center; }
.premium-list li span { color: var(--primary-color); margin-right: 12px; font-size: 18px; }

.about-image-wrapper { position: relative; width: 100%; height: 440px; }
.image-frame { width: 100%; height: 100%; border-radius: 16px; overflow: hidden; position: relative; z-index: 2; box-shadow: var(--card-shadow); }
.image-frame img { width: 100%; height: 100%; object-fit: cover; mix-blend-mode: luminosity; transition: 0.5s ease; }
.about-image-wrapper:hover .image-frame img { mix-blend-mode: normal; transform: scale(1.03); }
.image-accent-box { position: absolute; width: 100%; height: 100%; background: var(--dark-bg); border-radius: 16px; bottom: -15px; right: -15px; z-index: 1; border-bottom: 5px solid var(--primary-color); }

/* ==========================================================================
   PROGRAMS SECTION (Mosaico Bento Grid Cinza)
   ========================================================================== */
.classes-section { padding: 100px 0; background: #f4f4f4; }
.classes-section h2 { font-size: 36px; font-weight: 900; margin-bottom: 40px; text-transform: uppercase; }
.modern-diagonal {
    position: relative;
    clip-path: polygon(0 3%, 100% 0, 100% 97%, 0 100%);
    padding: 140px 0 !important;
}

.classes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 50px; }
.class-item {
    height: 260px; background-size: cover; background-position: center; border-radius: 8px;
    display: flex; align-items: flex-end; padding: 25px; box-shadow: var(--card-shadow);
    position: relative; overflow: hidden; transition: all 0.4s ease;
}
.class-item:hover { transform: translateY(-5px) scale(1.02); box-shadow: 0 20px 35px rgba(0,0,0,0.15); }
.class-info { position: relative; z-index: 2; text-align: left; }
.class-info h4 { margin: 0 0 6px 0; font-size: 22px; color: var(--text-light); font-weight: 700; }
.class-info p { margin: 0; font-size: 14px; color: var(--primary-color); font-weight: 600; }

/* ==========================================================================
   CAPTURE & FORM SECTION (Grid e Flex de Alta Conversão)
   ========================================================================== */
.capture-section { 
    background-color: #111111; 
    color: white; 
    padding: 100px 0; 
    border-top: 3px solid var(--primary-color);
}

.capture-grid { 
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px; 
    align-items: center; 
}

.capture-text { 
    text-align: left;
}

.capture-text h2 { 
    font-size: 42px; 
    font-weight: 900; 
    text-transform: uppercase; 
    margin: 15px 0; 
    color: white;
}

.capture-text p { 
    color: #aaaaaa; 
    font-size: 16px; 
    line-height: 1.6; 
}

.why-list-clean { 
    margin-top: 30px; 
}

.why-item-clean { 
    font-weight: 600; 
    font-size: 14px; 
    margin-bottom: 12px; 
    color: #cccccc; 
}

.capture-card { 
    background: #1a1a1a; 
    padding: 40px; 
    border-radius: 16px; 
    border: 1px solid #2a2a2a; 
    box-shadow: 0 20px 40px rgba(0,0,0,0.5); 
}

.form-group { 
    margin-bottom: 22px; 
    display: flex; 
    flex-direction: column; 
    text-align: left;
}

.form-group label { 
    font-size: 12px; 
    font-weight: 700; 
    text-transform: uppercase; 
    margin-bottom: 8px; 
    color: #aaaaaa; 
    letter-spacing: 0.5px; 
}

.form-group input, .form-group select { 
    background: #252525; 
    border: 1px solid #333333; 
    padding: 14px; 
    border-radius: 6px; 
    color: white; 
    font-family: 'Montserrat', sans-serif; 
    font-size: 14px; 
    transition: 0.3s; 
    box-sizing: border-box;
    width: 100%;
}

.form-group input:focus, .form-group select:focus { 
    border-color: var(--primary-color); 
    outline: none; 
    background: #2a2a2a; 
}

.btn-full { 
    width: 100%; 
    text-align: center; 
    margin-top: 10px; 
    cursor: pointer; 
}