/* --- ESTILOS PERSONALIZADOS (LUXO / CLASSE A++) --- */
:root {
    --primary-gold: #c5a059;
    --dark-bg: #0a0a0a;
    --dark-secondary: #161616;
    --text-light: #f4f4f4;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-light);
    overflow-x: hidden;
}

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

/* Navbar */
.navbar {
    background-color: rgba(10, 10, 10, 0.95);
    border-bottom: 1px solid rgba(197, 160, 89, 0.2);
    padding: 15px 0;
}
.navbar-brand img {
    height: 50px; /* Ajuste conforme necessário */
}
.nav-link {
    color: #fff !important;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-left: 20px;
    transition: color 0.3s;
}
.nav-link:hover {
    color: var(--primary-gold) !important;
}

/* Botões */
.btn-gold {
    background-color: var(--primary-gold);
    color: #000;
    border: 1px solid var(--primary-gold);
    text-transform: uppercase;
    font-weight: 600;
    padding: 10px 30px;
    border-radius: 0;
    transition: all 0.3s ease;
}
.btn-gold:hover {
    background-color: transparent;
    color: var(--primary-gold);
}
.btn-whatsapp-float {
        position: fixed;
        bottom: 20px;
        right: 20px;
        background-color: #25d366;
        color: white;
        border-radius: 50%;
        width: 60px;
        height: 60px;
        text-align: center;
        font-size: 30px;
        line-height: 60px;
        z-index: 1000;
        box-shadow: 0px 0px 10px rgba(0,0,0,0.5);
        transition: transform 0.3s;
}
.btn-whatsapp-float:hover {
        transform: scale(1.1);
        color: white;
}

/* Estilo das Bandeiras */
.flag-icon {
    width: 26px; /* Tamanho discreto e elegante */
    height: auto;
    border-radius: 2px; /* Cantos levemente arredondados */
    opacity: 0.5; /* Bandeiras inativas ficam mais apagadas */
    transition: all 0.3s ease;
    border: 2px solid transparent; /* Borda invisível para não pular layout */
}

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

/* Bandeira Ativa (Idioma Atual) */
.active-flag {
    opacity: 1;
    border-color: #c5a059; /* O Dourado da marca */
    box-shadow: 0 0 5px rgba(197, 160, 89, 0.5); /* Leve brilho dourado */
}

/* Hero Section */
.hero-section {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.8)), url('https://eurolimos.com.br/LandingPages/Carnaval2026/assets/img/carnaval_banner.jpg'); /* Imagem de carro luxo à noite */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    text-align: center;
}
.hero-content h1 {
    font-size: 3.5rem;
    color: var(--primary-gold);
    margin-bottom: 20px;
}
.hero-content p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px auto;
}

/* Seções Gerais */
.section-padding {
    padding: 100px 0;
}
.section-title {
    text-align: center;
    margin-bottom: 60px;
}
.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 15px;
}
.section-title p {
    color: #aaa;
}

/* Cards de Frota e Pacotes */
.card-custom {
    background-color: var(--dark-secondary);
    border: 1px solid #333;
    border-radius: 0;
    margin-bottom: 30px;
    transition: transform 0.3s;
}
.card-custom:hover {
    transform: translateY(-5px);
    border-color: var(--primary-gold);
}
.card-img-top {
    height: 250px;
    object-fit: cover;
    border-radius: 0;
}
.card-body h4 {
    color: #fff;
    margin-bottom: 15px;
}
.badge-blindado {
    background-color: #7a1e1e; /* Vermelho escuro sangue */
    color: #fff;
    font-size: 0.7rem;
    padding: 5px 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: absolute;
    top: 10px;
    right: 10px;
}
.text-start {
    color: var(--text-light);
}

/* Section Turismo */
.tourism-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    filter: grayscale(20%);
    transition: filter 0.5s;
}
.tourism-img:hover {
    filter: grayscale(0%);
}

/* Formulário */
.form-control, .form-select {
    background-color: #222;
    border: 1px solid #444;
    color: #fff;
    border-radius: 0;
    padding: 15px;
}
.form-control:focus, .form-select:focus {
    background-color: #222;
    color: #fff;
    border-color: var(--primary-gold);
    box-shadow: none;
}

/* Footer */
footer {
    background-color: #000;
    padding: 50px 0;
    border-top: 1px solid #333;
    font-size: 0.9rem;
    color: #777;
}
footer h5 {
    color: #fff;
    font-family: 'Playfair Display', serif;
    margin-bottom: 20px;
}
footer a {
    color: #777;
    text-decoration: none;
}
footer a:hover {
    color: var(--primary-gold);
}