/* Estilos Globais e Utilitários */
body {
    background-color: #050A14;
    color: #e2e8f0;
    overflow-x: hidden;
}

/* Scrollbar Personalizada */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #050A14;
}

::-webkit-scrollbar-thumb {
    background: #334155;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #D4AF37;
}

/* Loader Overlay */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.loader-line {
    width: 0;
    height: 2px;
    background-color: #D4AF37;
    margin-top: 20px;
}

/* Mobile Menu Overlay */
#mobile-menu {
    transform: translateX(100%);
    will-change: transform;
}

/* Efeito Glassmorphism para Navbar */
.glass-nav {
    background: rgba(5, 10, 20, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

/* Efeitos de Imagem */
.image-container {
    overflow: hidden;
}

.image-zoom {
    transition: transform 1.5s ease;
}

.image-container:hover .image-zoom {
    transform: scale(1.05);
}

/* Botão Dourado Elegante */
.btn-gold {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 1;
}

.btn-gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: #F3E5AB;
    z-index: -1;
    transition: width 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.btn-gold:hover::before {
    width: 100%;
}

.btn-gold:hover {
    color: #050A14;
}

/* Cursor Customizado (Apenas Desktop) */
.custom-cursor {
    width: 20px;
    height: 20px;
    border: 1px solid #D4AF37;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s;
    display: none; 
}

@media (min-width: 1024px) {
    .custom-cursor { 
        display: block; 
    }
}

