/* Autor: Eric Ferraz | @ericferraz1 */

/* --- DESIGN SYSTEM "VIBRANT DARK" --- */
:root {
    --accent-rust: #c24d2c;  /* Laranja Queimado Vibrante */
    --accent-gold: #d4af37;
    --accent-gold-metallic: linear-gradient(45deg, #9d7c42, #e8d099, #9d7c42);
    --glass-dark: rgba(15, 15, 15, 0.85); /* Vidro um pouco mais denso para leitura */
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-display: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
}

body {
    font-family: var(--font-body);
    color: #e0e0e0;
    overflow-x: hidden;
    padding-bottom: 80px;
    background-color: #1a1a1a;
}

/* --- BACKGROUND GLOBAL --- */
.global-texture-bg {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: url('https://images.unsplash.com/photo-1533106497176-45ae19e68ba2?q=80&w=2070&auto=format&fit=crop') no-repeat center center fixed;
    background-size: cover; z-index: -5;
}

.global-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.85), rgba(20, 10, 5, 0.8));
    z-index: -4; backdrop-filter: blur(1px);
}

/* --- NAV MENU (CABEÇALHO) --- */
.top-nav {
    position: absolute; top: 0; left: 0; width: 100%; z-index: 100;
    padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,0.05);
    background: linear-gradient(to bottom, rgba(0,0,0,0.8), transparent);
}

.nav-link-custom {
    color: #fff; text-decoration: none; font-family: var(--font-display);
    font-weight: 700; text-transform: uppercase; font-size: 0.9rem;
    transition: color 0.3s; margin-left: 20px;
}

.nav-link-custom:hover, .nav-link-custom.active { color: var(--accent-gold); }

/* --- SCROLLBAR --- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #000; }
::-webkit-scrollbar-thumb { background: #333; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent-rust); }

/* --- TIPOGRAFIA --- */
h1, h2, h3, .btn-cta { font-family: var(--font-display); text-transform: uppercase; letter-spacing: -0.5px; }

h2 {
    font-size: 2.8rem; color: #fff;
    text-shadow: 0 5px 15px rgba(0,0,0,0.9); margin-bottom: 1.5rem;
}

.text-gold-metallic {
    background: var(--accent-gold-metallic);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

/* --- HERO PARALLAX --- */
.hero-section {
    min-height: 100vh; display: flex; align-items: center;
    position: relative; overflow: hidden; border-bottom: 1px solid var(--glass-border);
    padding-top: 80px; /* Espaço para o menu */
}

.hero-parallax-img {
    position: absolute; top: 0; left: 0; width: 100%; height: 130%;
    background: url('https://images.unsplash.com/photo-1558981403-c5f9899a28bc?q=80&w=2070&auto=format&fit=crop') center top no-repeat;
    background-size: cover; z-index: -2; will-change: transform;
}

.hero-gradient-overlay {
    position: absolute; bottom: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.8) 100%); z-index: -1;
}

/* --- GLASS CONTAINERS --- */
.section-glass { background: transparent; padding: 100px 0; position: relative; }

.glass-panel {
    background: var(--glass-dark); backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border); padding: 2.5rem;
    box-shadow: 0 15px 40px rgba(0,0,0,0.6); transition: transform 0.3s, border-color 0.3s;
}

.glass-panel:hover {
    border-color: var(--accent-gold); transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.7), inset 0 0 20px rgba(255,255,255,0.05);
}

/* --- UI ELEMENTS --- */
.btn-rust {
    background: linear-gradient(180deg, #d64933 0%, #b33b28 100%);
    color: #fff; border: none; padding: 18px 45px; font-weight: 900; font-size: 1.1rem;
    clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 15px);
    box-shadow: 0 0 25px rgba(194, 77, 44, 0.4); transition: all 0.3s;
}

.btn-rust:hover {
    transform: scale(1.05); box-shadow: 0 0 40px rgba(194, 77, 44, 0.7); color: #fff;
}

.btn-outline-custom {
    border: 1px solid rgba(255,255,255,0.4); color: #fff; padding: 16px 35px;
    font-weight: 700; background: rgba(0,0,0,0.4); backdrop-filter: blur(4px); transition: all 0.3s;
}

.btn-outline-custom:hover {
    border-color: var(--accent-gold); color: var(--accent-gold); background: rgba(0,0,0,0.8);
}

.icon-gold {
    font-size: 3rem; color: var(--accent-gold); margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
}

.video-frame {
    padding: 10px; background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1); transition: all 0.3s;
}

.video-frame:hover { border-color: var(--accent-rust); background: rgba(255,255,255,0.1); }

/* --- FORMULÁRIOS --- */
.form-vip {
    background: rgba(15, 15, 15, 0.95); border: 1px solid #333;
    border-top: 4px solid var(--accent-rust); padding: 3rem; position: relative;
}

.form-control, .form-select {
    background: rgba(255,255,255,0.05); border: 1px solid #444; color: #fff;
    padding: 15px; border-radius: 0;
}

.form-control:focus {
    background: rgba(0,0,0,0.8); border-color: var(--accent-gold); color: #fff; box-shadow: none;
}

/* Fix para opções do select ficarem legíveis */
.form-select option {
    background-color: #121212;
    color: #fff;
}
/* --- CORREÇÃO DE LEGIBILIDADE (Texto de Segurança) --- */
/* Força o 'text-muted' a ser claro quando estiver dentro do formulário escuro */
.form-vip .text-muted {
    color: rgba(255, 255, 255, 0.7) !important; /* Branco com leve transparência (para parecer cinza claro) */
}

/* --- LOGO ESTILO PATCH --- */
.hero-logo {
    width: 120px; height: 120px; object-fit: contain; border-radius: 50%;
    border: 3px solid rgba(255,255,255,0.8); box-shadow: 0 0 20px rgba(0,0,0,0.8); background-color: #fff;
}

/* --- CARROSSEL --- */
.carousel-frame {
    position: relative; border: 1px solid rgba(255,255,255,0.2); padding: 10px;
    background: rgba(255,255,255,0.02); transition: border-color 0.3s;
}

.carousel-frame:hover { border-color: var(--accent-gold); }

.carousel-img-fit {
    height: 500px; width: 100%; object-fit: cover;
    filter: grayscale(20%) contrast(110%);
}

.carousel-control-prev, .carousel-control-next {
    width: 50px; opacity: 0; transition: opacity 0.3s;
}

.carousel-frame:hover .carousel-control-prev, 
.carousel-frame:hover .carousel-control-next {
    opacity: 1;
}

.carousel-control-prev-icon, .carousel-control-next-icon {
    background-color: var(--accent-rust); padding: 20px; border-radius: 2px;
    background-size: 50%; box-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.carousel-badge {
    position: absolute; bottom: 10px; end: 10px; z-index: 10; pointer-events: none;
}

/* --- MAPAS E EXTRAS --- */
.map-container iframe { 
    width: 100%; height: 350px; filter: grayscale(100%) invert(92%) contrast(83%); border: 1px solid #444; 
}

/* --- ANIMAÇÕES --- */
.reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s ease; }
.reveal.active { opacity: 1; transform: translateY(0); }

/* --- MOBILE STICKY CTA --- */
.sticky-cta {
    position: fixed; bottom: 0; left: 0; width: 100%; background: rgba(0,0,0,0.9);
    border-top: 2px solid var(--accent-rust); padding: 15px; z-index: 1050; backdrop-filter: blur(10px);
}

/* --- RESPONSIVIDADE --- */
@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    .hero-logo { width: 100px; height: 100px; }
    .carousel-img-fit { height: 350px; }
    .carousel-control-prev, .carousel-control-next { opacity: 1; }
}
