/* style.css - Tema Compacto Black & Gold */

/* --- Configurações Gerais --- */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #121212;
    color: #f1f1f1;
    overflow-x: hidden;
    margin: 0; padding: 0;
}

/* --- Navbar (Menu) --- */
.navbar {
    background-color: #000 !important;
    border-bottom: 1px solid #FFD700;
    padding: 0;
    min-height: 65px; /* Altura para acomodar 2 linhas de texto */
}

.navbar-brand {
    display: flex;
    align-items: center;
    max-width: 85%;
    padding: 5px 0;
}

/* Logo */
.logo-img {
    max-height: 50px;
    margin-right: 10px;
    width: auto;
}

.brand-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1;
}

/* Título */
.brand-title {
    color: #FFD700; 
    font-size: 1.1rem; 
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 2px;
}

/* Subtítulo (2 linhas) */
.brand-subtitle {
    color: #bbb;
    font-size: 0.60rem;
    font-weight: 400;
    line-height: 1.2;
    display: block;
}

/* Links do Menu */
.nav-link {
    color: #fff !important;
    font-size: 0.95rem;
    margin-left: 10px;
    transition: color 0.3s;
}

.nav-link:hover { color: #FFD700 !important; }

/* Botão Menu Mobile */
.navbar-toggler {
    padding: 2px 5px;
    font-size: 0.9rem;
    border: 1px solid #FFD700 !important;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 215, 0, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* --- Hero Section (Capa) --- */
.hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.8)), url('img/capa_insta.jpg') no-repeat center center/cover;
    height: 80vh;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 2px solid #FFD700;
    padding-top: 65px;
    text-align: center;
}

.hero h1 {
    color: #FFD700;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px #000;
    font-weight: 800;
    font-size: 2rem;
}

.hero p.lead { font-size: 1rem; }

/* --- Cards --- */
.card {
    background-color: #1e1e1e;
    border: 1px solid #333;
    margin-bottom: 15px;
}
.card-title { color: #FFD700; font-size: 1.1rem; }
.card-text { color: #ccc; font-size: 0.9rem; }

/* --- Botões --- */
.btn-vip {
    background-color: #FFD700;
    color: #000;
    font-weight: bold;
    border: none;
    text-transform: uppercase;
    padding: 8px 16px;
    font-size: 0.9rem;
    transition: all 0.3s;
}
.btn-vip:hover { 
    background-color: #e6c200; 
    transform: scale(1.05);
}

/* Ajuste fino para o botão Outline (borda) ficar dourado igual ao tema */
.btn-outline-warning {
    color: #FFD700 !important;
    border-color: #FFD700 !important;
}
.btn-outline-warning:hover {
    background-color: #FFD700 !important;
    color: #000 !important;
}

/* --- Whatsapp Flutuante --- */
.whatsapp-float {
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    font-size: 26px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #1ebd53;
}

/* --- Rodapé e Utilitários --- */
/* Efeito Dourado ao passar o mouse nos ícones do rodapé */
.hover-gold {
    transition: color 0.3s;
}
.hover-gold:hover {
    color: #FFD700 !important;
}

/* --- MOBILE (CELULAR) --- */
@media (max-width: 576px) {
    .logo-img {
        max-height: 40px !important; 
        margin-right: 8px;
    }
    
    .brand-title {
        font-size: 0.85rem !important;
        letter-spacing: 0px;
    }
    
    .brand-subtitle {
        font-size: 0.55rem !important; 
        line-height: 1.1;
    }

    .navbar-brand { margin-right: 0; }

    .hero {
        min-height: 350px;
        padding: 90px 15px 40px 15px;
    }
    .hero h1 { font-size: 1.5rem; }
    
    .whatsapp-float {
        width: 45px;
        height: 45px;
        font-size: 22px;
        bottom: 10px;
        right: 10px;
    }
}