/* Paleta de Cores */
:root {
    --gold: #D4AF37;
    --gold-light: #F1D77E;
    --black: #0a0a0a;
    --dark-grey: #1a1a1a;
    --white: #ffffff;
}

body {
    background-color: var(--black);
    color: var(--white);
    font-family: 'Lato', sans-serif;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.text-gold { color: var(--gold) !important; }
.bg-darker { background-color: var(--dark-grey); }
.bg-black { background-color: var(--black); }
.bg-gold { background-color: var(--gold); }

/* Navbar */
#mainNav {
    background: rgba(10, 10, 10, 0.95);
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.nav-link {
    color: var(--white) !important;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    padding: 0 15px;
}

.lang-switch a {
    color: #888;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: bold;
}
.lang-switch a.active { color: var(--gold); }

/* Botões */
.btn-gold {
    background: linear-gradient(45deg, var(--gold), var(--gold-light));
    color: var(--black);
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: bold;
    padding: 10px 30px;
    border-radius: 0; /* Luxo prefere cantos retos ou muito sutis */
    transition: transform 0.2s;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
    color: var(--black);
}

/* Hero Section */
.hero {
    height: 100vh; /* Ocupa 100% da altura da janela */
    min-height: 700px;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.7)), url('https://eurolimos.com.br/LandingPages/WorldCup2026/assets/imgs/WorldCup2026.jpg');
    background-size: cover; /* Cobre todo o espaço */
    background-position: center center;
    background-attachment: fixed; /* Efeito Parallax de luxo */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Cards de Cidade */
.card {
    transition: transform 0.3s;
}
.card:hover {
    transform: scale(1.02);
    border-color: var(--gold) !important;
}
.border-gold { border: 1px solid rgba(212, 175, 55, 0.3); }

/* Frota Grid */
.fleet-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    filter: grayscale(80%);
    transition: filter 0.5s;
}
.fleet-item:hover .fleet-img {
    filter: grayscale(0%);
}
/* --- Complemento para Logistics, Fleet e Footer --- */

/* Utilitários */
.letter-spacing-3 { letter-spacing: 3px; }
.divider-gold {
    height: 2px;
    width: 60px;
    background-color: var(--gold);
}

/* Hero Overlay */
.hero {
    /* Garante que o texto fique acima do overlay */
    position: relative;
}
.hero .overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.5); /* Escurece a foto de fundo */
    z-index: 1;
}
.hero .container {
    z-index: 2;
}

/* Logistics Icons */
.icon-box {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    background: rgba(255,255,255,0.02);
}

/* Fleet Cards */
.fleet-item {
    cursor: pointer;
}
.fleet-item .fleet-img {
    transition: transform 0.6s ease, filter 0.6s ease;
    filter: grayscale(100%) brightness(0.6);
}
.fleet-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    opacity: 0.8;
    transition: opacity 0.3s;
}

/* Efeito Hover na Frota */
.fleet-item:hover .fleet-img {
    transform: scale(1.1);
    filter: grayscale(0%) brightness(1);
}
.fleet-item:hover .fleet-overlay {
    opacity: 1;
}

/* Formulário Dark Luxury */
.form-control-dark {
    background-color: #1a1a1a;
    border: 1px solid #333;
    color: var(--gold);
    border-radius: 0;
    padding: 12px;
}
.form-control-dark:focus {
    background-color: #000;
    border-color: var(--gold);
    color: #fff;
    box-shadow: none;
}

/* Animações Simples de Entrada */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.animate-up {
    animation-name: fadeInUp;
    animation-duration: 0.8s;
    animation-fill-mode: both;
}
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

/* Estilo das Bandeiras */
.flag-icon {
    width: 28px;
    height: 28px;
    object-fit: cover;
    border-radius: 50%; /* Bandeiras circulares */
    border: 2px solid transparent;
    transition: all 0.3s ease;
    opacity: 0.6;
}

.lang-flags a:hover .flag-icon {
    transform: scale(1.1);
    opacity: 1;
}

.lang-flags a.active .flag-icon {
    border-color: var(--gold); /* Borda dourada na ativa */
    opacity: 1;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
}

/* --- Botão WhatsApp Formulário (Igual à Imagem) --- */
.btn-whatsapp-gold {
    background-color: #c49a6c; /* Tom dourado exato da imagem */
    background: linear-gradient(90deg, #c49a6c 0%, #d4af37 100%);
    color: #000000 !important; /* Texto preto */
    border: none;
    font-family: 'Lato', sans-serif;
    font-weight: 700; /* Negrito */
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px; /* Espaço entre ícone e texto */
    width: 100%;
    border-radius: 0; /* Canto reto conforme design luxo */
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-whatsapp-gold:hover {
    background: linear-gradient(90deg, #d4af37 0%, #f1d77e 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.btn-whatsapp-gold i {
    font-size: 1.3rem; /* Tamanho do ícone */
}

/* --- Botão Flutuante WhatsApp --- */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.5); /* Sombra para profundidade */
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 2px solid var(--gold); /* Borda dourada para integrar ao tema */
}

.whatsapp-float:hover {
    background-color: var(--gold);
    color: #000;
    transform: scale(1.1);
}

.whatsapp-float i {
    margin-top: 2px; /* Ajuste fino ótico */
}