/* Configurações Globais */
html { 
    scroll-behavior: smooth; 
}

/* Custom Styles & Overrides */
body {
    /* Base colors handled by Tailwind classes in HTML */
}

/* Hero Background */
.hero-bg {
    /* NOVA IMAGEM: Passaporte e Malas (Foco explícito em viagem e documentação) */
    background-image: linear-gradient(rgba(15, 42, 68, 0.85), rgba(15, 42, 68, 0.75)), url('../img/background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* Glassmorphism Header */
.glass-nav {
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid rgba(15, 42, 68, 0.05);
    transition: all 0.4s ease;
}

/* Dark Mode Overrides for Glass Nav */
.dark .glass-nav {
    background: rgba(15, 42, 68, 0.95); /* Azul Escuro Transparente */
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Animations */
.fade-in-up {
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
    transform: translateY(30px);
}

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Service Card Hover Effect */
.service-card {
    transition: all 0.4s ease;
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -10px rgba(15, 42, 68, 0.1);
    border-color: rgba(212, 175, 55, 0.3); /* Borda sutil dourada */
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: #F8F9FA;
}
.dark ::-webkit-scrollbar-track {
    background: #111827; /* Darker track */
}

::-webkit-scrollbar-thumb {
    background: #0F2A44;
    border-radius: 3px;
}
.dark ::-webkit-scrollbar-thumb {
    background: #D4AF37; /* Dourado no modo escuro */
}