/* Importação da fonte (opcional, mas recomendado) */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
<<<<<<< HEAD
    padding-top: 80px;
=======
    padding-top: 80px; /* ajusta à altura do menu */
>>>>>>> 5044f03 (Guardando alterações locais do cPanel)
}

#main-navbar {
    z-index: 1050;
<<<<<<< HEAD
}

/* ================= WHATSAPP FLOAT ================= */
=======
    background-color: #fff; /* ou dark se preferires */
}
#main-navbar {
    z-index: 1050;
    background-color: #fff; /* ou a tua cor */
}

.navbar-toggler {
    z-index: 2000 !important;
}


>>>>>>> 5044f03 (Guardando alterações locais do cPanel)
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    z-index: 1000;
    box-shadow: 2px 2px 3px #999;
    transition: all 0.3s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: whatsapp-bounce 2s infinite ease-in-out;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.05);
    animation: none;
}

@keyframes whatsapp-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ================= NAVBAR ================= */
.navbar {
    background-color: #fff !important;
    transition: background-color 0.3s;
}

.navbar-brand .logo {
    height: 50px;
}

.navbar-nav .nav-link {
    color: #170404 !important;
    font-weight: 600;
    margin: 0 15px;
    transition: color 0.3s ease-in-out;
}

.navbar-nav .nav-link:hover {
    color: #e54c7d !important;
}

/* BOTÕES */
.btn-danger {
    background-color: #e5346e;
    border-color: #e5346e;
}

.btn-danger:hover {
    background-color: #c93e6a;
    border-color: #c93e6a;
}

.btn-secondary-custom {
    background-color: #29A6C2;
    border-color: #29A6C2;
    color: white;
    font-weight: bold;
}

/* ================= HERO CAROUSEL ================= */
#heroCarousel {
    position: relative;
    height: 90vh;
    overflow: visible;
}

#heroCarousel .carousel-item {
<<<<<<< HEAD
    height: 75vh;
=======
    height: 100vh;
>>>>>>> 5044f03 (Guardando alterações locais do cPanel)
    background-size: cover;
    background-position: center;
}

<<<<<<< HEAD
.carousel-caption h1,
.carousel-caption h2 {
=======
#heroCarousel .carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: rgba(249, 248, 248, 0.905);  */
}

.carousel-caption {
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    padding-bottom: 50px; 
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.carousel-caption h1, .carousel-caption h2 {
>>>>>>> 5044f03 (Guardando alterações locais do cPanel)
    font-weight: 700;
    color: #fff;
}

/* Formulário de pesquisa (Posicionamento para Fora) */
#flight-form {
    position: absolute;
    bottom: -200px; /* Valor negativo para empurrar o formulário para fora */
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 1200px; /* Largura maior para as 4 abas */
    z-index: 10;
}

#flight-form .card {
    border: none;
    border-radius: 5px;
    background-color: #ffffff; /* Fundo branco garantido */
}

/* --- Estilos do Formulário de Abas --- */
.form-tabs {
    border-bottom: 1px solid #dee2e6;
    margin-bottom: 0 !important;
}

.form-tabs .nav-link {
    color: #333; 
    font-weight: 600;
    border: none;
    padding: 20px 70px;
    font-size: 1.0rem; /* Fonte menor para caber as 4 abas */
    display: flex;
    align-items: center;
}

.form-tabs .nav-link.active {
    color: #e5346e; 
    background-color: #fff;
    border-bottom: 3px solid #e5346e; 
}

.form-tabs .nav-link:hover {
    color: #e5346e;
}

.form-tabs .nav-link i {
    margin-right: 8px;
}

/* Estilo do botão de busca */
.btn-search {
    background-color: #e5346e;; /*  botão 'Search' */
    border-color: #e5346e;
    color: white;
    font-weight: bold;
    padding: 10px 30px;
    border-radius: 5px;
    transition: background-color 0.2s;
}

.btn-search:hover {
    background-color:#e5346e;;
    border-color: #e5346e;
    color: white;
}

/* Ajuste para inputs */
.form-control, .form-select {
    height: 50px;
}

.form-check-input:checked {
    background-color: #e5346e;
    border-color: #e5346e;
}

/* ================= SERVICES ================= */
.services-section {
<<<<<<< HEAD
    margin-top: 90px;
=======
    margin-top: 90px; /* Adiciona margem para dar espaço ao formulário flutuante */
>>>>>>> 5044f03 (Guardando alterações locais do cPanel)
    background-color: #f9f9f9;
}

/* ================= CARDS ================= */
.service-card {
    border: none;
    border-radius: 10px;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
}

/* ================= CORREÇÃO IMPORTANTE ================= */
/* Estilo geral para todos os cards de destaque */
.destaque-card-giant,
.destaque-card-small {
    overflow: hidden;
    min-height: 550px;
}

/* ================= ROOT (mantido sem remover nada) ================= */


/* ================= OUTROS ESTILOS MANTIDOS ================= */
.text-danger-nav { color: var(--danger-nav-color) !important; }
.bg-danger-nav { background-color: var(--danger-nav-color) !important; }
.text-turquesa { color: var(--turquesa-color) !important; }
.bg-turquesa { background-color: var(--turquesa-color) !important; }

/* ================= HERO VISTOS ================= */
.hero-vistos {
    background-color: #f7f9fd;
    padding-top: 150px !important;
    padding-bottom: 50px;
}

/* ================= VISA CARDS ================= */
.visa-request-card {
    background-color: #ffffff;
    border-left: 5px solid;
    border-radius: 0.75rem;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
}

/* ================= SAFARI / AQUATIC ================= */
.safari-card-horizontal,
.aquatic-card {
    border-radius: 12px;
    overflow: hidden;
    min-height: 320px;
}

/* ================= HERO CINEMATIC ================= */
.cinema-hero {
    height: 95vh;
    background: url('../imagens/publicidade/hero-mundial.jpg') center/cover no-repeat;
}

/* ================= DROPDOWN FIX ================= */
.dropdown-menu {
    display: none;
}

/* ================= MOBILE MENU ================= */
#mobile-menu-overlay.active {
    display: flex !important;
}

.footer-section {
    background-color: #1a1a3b !important; /* Cor de fundo escura do tema */
    color: #fff !important; /* FORÇA o texto base para branco */
}

.footer-section h5 {
    color: #e54c7d; /* Cor de destaque para títulos do footer (rosa) */
    margin-bottom: 20px;
}

/* Força links, textos em listas e parágrafos a serem visíveis */
.footer-section a, 
.footer-section p,
.footer-section ul li {
    transition: color 0.3s;
    color: #ccc !important; /* Cinza claro para visibilidade */
}

.footer-section a:hover {
    color: #fff !important; /* Branco puro no hover */
}

.footer-section .social-icons a {
    font-size: 1.5rem;
    margin-right: 15px;
    color: #fff !important; /* Garante que os ícones sociais sejam brancos */
}

.footer-section .map-placeholder {
    width: 100%;
    background-color: #495057 !important; 
}


.price-label {
    font-size: 0.7rem; /* Tamanho menor para o rótulo */
    font-weight: 400;
    display: block; /* Faz o texto ficar por cima ou numa linha separada */
    margin-bottom: -5px;
    text-transform: none;
}
/* Título da Seção */
.section-title {
    font-weight: 850;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: -1px;
    margin-bottom: 30px;
}

/* Card de Voo - Tamanho Ajustado */
.flight-card-mini {
    height: 280px; /* Altura reduzida para não ficar gigante */
    border-radius: 18px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    transition: all 0.3s ease;
}

/* Gradiente de visibilidade */
.flight-card-mini::before {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.85) 100%);
    z-index: 1;
}

.card-top, .card-bottom {
    position: relative;
    z-index: 2;
}

.dest-city { 
    font-weight: 800; 
    font-size: 1.3rem; 
    margin: 0;
}

.dest-route { 
    font-size: 0.75rem; 
    font-weight: 600; 
    margin-bottom: 2px;
}

.dest-price { 
    font-weight: 800; 
    font-size: 1.2rem; 
    color: #fff;
}

/* Botão de Reserva no Hover */
.btn-hover-wa {
    background-color: #e54c7d;
    color: white !important;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.8rem;
    padding: 10px;
    border-radius: 10px;
    text-align: center;
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 3;
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.3s ease-in-out;
}

.flight-card-mini:hover .btn-hover-wa {
    opacity: 1;
    transform: translateY(0);
}

/* Esconder preço no hover para dar lugar ao botão */
.flight-card-mini:hover .card-bottom {
    opacity: 0;
}


        /* --- 4. ESTILOS DO MODAL DE REJEIÇÃO --- */
        .modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.6);
            display: none; 
            justify-content: center;
            align-items: center;
            z-index: 1000; 
        }

        .modal.active {
            display: flex;
        }

        .modal-content {
            background-color: #ffffff;
            padding: 25px;
            border-radius: 8px;
            width: 90%;
            max-width: 500px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            animation: fadeIn 0.3s;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(-20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .modal-content h3 {
            margin-top: 0;
            color: #e91e63;
            border-bottom: 2px solid #e91e63;
            padding-bottom: 10px;
            margin-bottom: 15px;
        }

        .modal-content textarea {
            width: 100%;
            padding: 10px;
            margin-bottom: 15px;
            border: 1px solid #ccc;
            border-radius: 4px;
            resize: vertical;
            min-height: 120px;
            font-size: 1em;
        }

        .modal-actions {
            display: flex;
            justify-content: flex-end;
            gap: 10px;
        }
        
        .modal-actions button {
            padding: 10px 20px;
            border-radius: 4px;
            border: none;
            cursor: pointer;
            font-weight: bold;
            transition: background-color 0.2s;
        }

        .modal-actions .btn-cancel {
            background-color: #ccc;
            color: #333;
        }

<<<<<<< HEAD
        .modal-actions .btn-confirm-reject {
            background-color: #e91e63;
            color: white;
        }

        /* --- 5. PAGINAÇÃO --- */
        .pagination-container {
            margin-top: 30px;
            margin-bottom: 30px;
            display: flex;
            justify-content: center;
        }
        
        /* --- 6. RESPONSIVIDADE --- */
        @media (max-width: 600px) {
            .card-top-row {
                flex-direction: column; 
                align-items: flex-start;
            }
            .buttons-group {
                width: 100%;
                margin-top: 10px;
                justify-content: flex-start;
            }
            .buttons-group button, .buttons-group a {
                /* Sobrescreve a largura fixa para expandir 100% no mobile */
                min-width: auto; 
                width: 100%;
                max-width: none; 
                flex-grow: 1; 
                text-align: center;
                justify-content: center;
            }
            .search-form-container {
                flex-direction: column;
            }
            .search-form-container button[type="submit"] {
                width: 100%;
                margin-top: 10px;
            }
        }
    .admin-sidebar { min-height: 100vh; background: #2c3e50; color: white; }
    .nav-link { color: rgba(255,255,255,0.8); }
    .nav-link:hover, .nav-link.active { color: white; background: rgba(255,255,255,0.1); }
    .card-header { background-color: #f8f9fa; border-bottom: 2px solid #0d6efd; }
=======
    .card-footer-text { font-size: 0.85rem; margin-top: 25px; opacity: 0.8; }

    .fw-black { font-weight: 900; }
    .text-cyan { color: #00D1FF; }

    /* Lado da Imagem Invertido */
    .image-stack-durban { position: relative; padding: 20px; }
    .img-durban {
        width: 100%;
        height: 500px;
        object-fit: cover;
        border-radius: 80px 20px 80px 20px; /* Bordas assimétricas para fugir do comum */
        border: 8px solid rgba(255,255,255,0.05);
    }
    
    .safari-badge {
        position: absolute;
        top: -10px;
        left: -10px;
        background: #FFB800;
        color: #000;
        width: 100px;
        height: 100px;
        border-radius: 50%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        font-weight: 900;
        font-size: 0.7rem;
        box-shadow: 0 10px 20px rgba(0,0,0,0.3);
        transform: rotate(-15deg);
    }

    /* Cards Estilo Glassmorphism */
    .durban-grid { display: grid; gap: 15px; }
    .durban-card {
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        padding: 15px;
        border-radius: 15px;
        display: flex;
        align-items: center;
        gap: 15px;
        transition: 0.3s;
    }
    .durban-card:hover { background: rgba(255, 255, 255, 0.1); transform: scale(1.02); }
    .card-icon { color: #00D1FF; font-size: 1.5rem; }
    .card-text strong { display: block; font-size: 1rem; }
    .card-text span { font-size: 0.85rem; opacity: 0.7; }

    /* Preço e Botão */
    .price-box-durban {
        background: rgba(0, 209, 255, 0.1);
        padding: 20px;
        border-radius: 20px;
        border: 1px dashed rgba(0, 209, 255, 0.3);
    }
    .btn-durban-cta {
        background: #00D1FF;
        color: #001F3F;
        padding: 18px 35px;
        border-radius: 12px;
        font-weight: 900;
        text-decoration: none;
        transition: 0.3s;
    }
    .btn-durban-cta:hover { background: #fff; transform: translateY(-3px); color: #001F3F; }
    .nota-small { font-size: 0.75rem; opacity: 0.5; line-height: 1.2; }

     /* Tipografia e Cores Base */
    .fw-black { font-weight: 900; }
    .text-gold { color: #D4AF37; }
    .text-gray { color: #a0a0a0; }
    .tracking-widest { letter-spacing: 5px; text-transform: uppercase; font-size: 0.9rem; }
    .text-gold-gradient {
        background: linear-gradient(90deg, #D4AF37, #FBE106, #D4AF37);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    /* Estilo da Imagem e Overlays */
    .stadium-visual-container { position: relative; border-radius: 30px; overflow: hidden; }
    .img-grand-final {
        width: 100%;
        height: 650px;
        object-fit: cover;
        filter: brightness(0.7);
        transition: 0.5s;
    }
    .img-grand-final:hover { filter: brightness(0.9); transform: scale(1.02); }
    
    .match-info-overlay {
        position: absolute;
        bottom: 40px;
        left: 40px;
        background: rgba(0, 0, 0, 0.8);
        padding: 25px;
        border-left: 5px solid #D4AF37;
        backdrop-filter: blur(10px);
        border-radius: 0 15px 15px 0;
    }
    .match-badge {
        background: #D4AF37;
        color: black;
        display: inline-block;
        padding: 3px 12px;
        font-weight: 900;
        font-size: 0.7rem;
        border-radius: 4px;
        margin-bottom: 10px;
    }

    .nyc-tag {
        position: absolute;
        top: 30px;
        right: 30px;
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(5px);
        padding: 10px 20px;
        border-radius: 50px;
        font-weight: 700;
        font-size: 0.8rem;
    }

    /* Detalhes de Luxo */
    .luxury-list li {
        display: flex;
        gap: 20px;
        margin-bottom: 25px;
        align-items: flex-start;
    }
    .gold-icon { color: #D4AF37; font-size: 1.5rem; margin-top: 5px; }
    .luxury-list strong { display: block; font-size: 1.1rem; color: #fff; }
    .luxury-list span { font-size: 0.9rem; color: #a0a0a0; }

    /* Bloco de Preço */
    .investment-box {
        background: linear-gradient(135deg, #111 0%, #222 100%);
        padding: 30px;
        border-radius: 20px;
        border: 1px solid #333;
        text-align: center;
    }
    .price-header { font-size: 0.75rem; font-weight: 700; letter-spacing: 2px; color: #D4AF37; }
    .grand-price { font-size: 2.8rem; font-weight: 900; color: #fff; margin: 5px 0; }
    .price-sub { font-size: 1rem; color: #a0a0a0; }

    /* Botão Final */
    .btn-grand-finale {
        display: block;
        background: #D4AF37;
        color: black;
        text-align: center;
        padding: 22px;
        border-radius: 15px;
        font-weight: 900;
        text-decoration: none;
        font-size: 1.1rem;
        box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
        transition: 0.3s;
    }
    .btn-grand-finale:hover {
        background: #fff;
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
    }

    .shadow-gold { box-shadow: 0 30px 60px rgba(0,0,0,0.5), 0 0 20px rgba(212, 175, 55, 0.1); }
    
     :root { --primary: #003580; --secondary: #00b1ff; --accent: #febb02; --danger: #d4111e; --success: #008009; --light: #f5f7fa; --dark: #1a1a1a; }
    
    body { 
        font-family: 'Inter', -apple-system, sans-serif; 
        margin: 0; 
        background-color: var(--light); 
        color: var(--dark); 
        line-height: 1.5; 
        padding-top: 80px !important; 
    }

    /* Header & Nav */
    .navbar-nav .nav-link {
        color: var(--dark) !important;
        font-weight: 600 !important;
        font-size: 0.95rem;
    }
    
    .logo { font-size: 1.6rem; font-weight: 800; letter-spacing: -1px; cursor: pointer; }
    .nav-btns { display: flex; gap: 15px; }

    /* Hero Section - Ajuste de Altura para tirar o aspecto de "grande demais" */
    .hero { 
    background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), 
                url('https://images.unsplash.com/photo-1455587734955-081b22074882?auto=format&fit=crop&w=1400&q=80'); 
    height: 320px; 
    background-size: cover; 
    background-position: center; 
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
    align-items: center; 
    color: white; 
    text-align: center; 
}

.hero h1 { 
    font-size: 2.2rem; 
    margin-bottom: 10px; 
    font-weight: 800; /* Deixa a letra mais espessa */
    color: #ffffff !important; 
    text-shadow: 0px 4px 8px rgba(0,0,0,0.6); /* Sombra que ajuda a ler em fundos claros */
}

    /* Barra de Pesquisa - CORRIGINDO O ZOOM */
    .search-bar { background: white; padding: 12px 20px; border-radius: 10px; display: flex; gap: 10px; margin: -35px auto 0; 
                  box-shadow: 0 10px 25px rgba(0,0,0,0.15); max-width: 950px; width: 92%; flex-wrap: nowrap; align-items: center; }
    .search-bar input { flex: 1; padding: 10px; border: 1px solid #ddd; border-radius: 5px; min-width: 120px; font-size: 0.9rem; }
    .btn-search { background: var(--primary); color: white; border: none; padding: 10px 25px; border-radius: 5px; cursor: pointer; font-weight: bold; }

    /* Lista de Hotéis - VOLTANDO PARA 4 CARDS */
    .container { padding: 40px 8%; }
    .section-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 25px; }
    .grid-hoteis { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 15px; }
    
    /* CARD ATUALIZADO */
    .hotel-card { background: white; border-radius: 8px; overflow: hidden; box-shadow: 0 2px 10px rgba(0,0,0,0.08); transition: 0.3s; cursor: pointer; position: relative; }
    .hotel-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.15); }
    .urgency-tag { position: absolute; top: 10px; left: 10px; background: var(--danger); color: white; font-size: 0.65rem; padding: 4px 8px; border-radius: 4px; font-weight: bold; z-index: 10; }
    .discount-tag { position: absolute; top: 10px; right: 10px; background: var(--success); color: white; font-size: 0.7rem; padding: 4px 8px; border-radius: 4px; font-weight: bold; z-index: 10; }
    
    .hotel-img { width: 100%; height: 160px; object-fit: cover; }
  
    .rating-stars { color: var(--accent); font-size: 0.75rem; margin-bottom: 5px; }
    .location-text { font-size: 0.75rem; color: #666; margin-bottom: 8px; display: block; }
    
    /* Substitua este bloco inteiro no seu CSS */
.hotel-info { padding: 12px; }

.hotel-info h3 { 
    font-size: 1rem; /* Diminui o nome do hotel */
    margin: 5px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; /* Corta o nome se for longo demais */
}

.price-container { 
    display: flex; 
    flex-direction: column; 
    align-items: flex-end; 
    justify-content: flex-end;
    min-height: 45px; /* Trava a altura para o preço não subir quando não tem promoção */
    margin-top: 5px;
}

.old-price { 
    font-size: 0.8rem; 
    color: #999; 
    text-decoration: line-through; 
    height: 1.2rem; /* Garante espaço mesmo se estiver vazio */
}

.price-tag { font-size: 1.1rem; font-weight: bold; color: var(--primary); }
    /* .price-container { display: flex; flex-direction: column; align-items: flex-end; } */
    /* .old-price { font-size: 0.8rem; color: #999; text-decoration: line-through; }
    .price-tag { font-size: 1.1rem; font-weight: bold; color: var(--primary); } */

    /* Página de Detalhes Premium - PRESERVADO */
    #pagina-detalhes, #pagina-pagamento, #pagina-sucesso { display: none; padding: 30px 8%; max-width: 1100px; margin: auto; }
    .gallery-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 10px; margin: 20px 0; }
    .main-img { width: 100%; height: 400px; object-fit: cover; border-radius: 8px; }
    .side-imgs { display: grid; grid-template-rows: 1fr 1fr; gap: 10px; }
    .side-imgs img { width: 100%; height: 195px; object-fit: cover; border-radius: 8px; }
    
    .amenities-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; background: white; padding: 20px; border-radius: 8px; margin: 20px 0; }
    .amenity-item { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; }
    .amenity-item i { color: var(--success); }

    /* Métodos de Pagamento - PRESERVADO */
    .payment-methods { display: flex; gap: 15px; margin: 25px 0; }
    .method { flex: 1; border: 2px solid #ddd; border-radius: 8px; padding: 15px; text-align: center; cursor: pointer; transition: 0.3s; }
    .method img { height: 30px; display: block; margin: 0 auto 10px; }
    .method.active { border-color: var(--primary); background: #eef4ff; }

    .btn-confirm { background: var(--success); color: white; width: 100%; padding: 18px; border: none; border-radius: 8px; font-size: 1.1rem; font-weight: bold; cursor: pointer; margin-top: 20px; }

    /* Destaques Slider - PRESERVADO */
    .destaques-section { padding: 60px 0; background: #fff; }
    .text-danger-nav { color: #d4111e; }
    .bg-danger-nav { background: #d4111e; color: white; padding: 5px 10px; border-radius: 4px; }
    .hero-main-slider, .mini-slider { position: relative; overflow: hidden; border-radius: 12px; min-height: 450px; background: #000; }
    .mini-slider { min-height: 215px; margin-bottom: 20px; }
    .slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; opacity: 0; transition: opacity 1.2s ease-in-out; }
    .slide.active { opacity: 1; }
    .card-content { z-index: 10; position: absolute; bottom: 0; padding: 30px; width: 100%; background: linear-gradient(transparent, rgba(0,0,0,0.85)); color: white; }
    
    .btn-danger-nav { background: var(--danger) !important; color: white !important; border: none; padding: 8px 20px; border-radius: 50px; text-decoration: none; font-weight: bold; display: inline-block; font-size: 0.85rem; }
    .btn-secondary-custom { background: #febb02; color: #1a1a1a; padding: 8px 20px; border-radius: 50px; text-decoration: none; font-weight: bold; display: inline-block; font-size: 0.85rem; }

    /* Filtros Dropdown - PRESERVADO */
    .destaques-row { display: flex; gap: 20px; flex-wrap: wrap; }
    .destaques-col-8 { flex: 2; min-width: 300px; }
    .destaques-col-4 { flex: 1; min-width: 300px; }
    .filtros-dropdown { 
    display: flex !important; 
    flex-direction: row !important; /* Força ficar um ao lado do outro */
    gap: 10px; 
    margin-top: 10px;
    flex-wrap: nowrap; /* Impede que o segundo filtro desça */
    justify-content: flex-start;
}
    .dropdown { position: relative; }
    .dropdown-btn { 

    background-color: #ffffff !important; 
    color: #1a1a1a !important; /* Texto preto para ser visível */
    border: 1px solid #ccc !important; 
    padding: 8px 20px; 
    border-radius: 25px; 
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
    .dropdown-btn:hover { border-color: var(--primary); }
    .dropdown-menu { position: absolute; top: 110%; left: 0; background: white; border-radius: 10px; box-shadow: 0 10px 25px rgba(0,0,0,0.15); padding: 10px; min-width: 200px; display: none; z-index: 100; animation: fadeIn 0.2s ease; }
    .dropdown-menu label { display: block; padding: 8px; cursor: pointer; border-radius: 6px; }
    .dropdown-menu label:hover { background: #f5f7fa; }
    
    .clear-btn { 
    margin-top: 10px; 
    width: 100%; 
    border: none; 
    background-color: #f0f0f0 !important; /* Cinza claro para o fundo */
    color: #333333 !important; /* Texto quase preto para leitura */
    padding: 8px; 
    border-radius: 6px; 
    cursor: pointer; 
    font-weight: bold;
    transition: 0.2s;
}
    
    @keyframes fadeIn { from { opacity: 0; transform: translateY(-5px); } to { opacity: 1; transform: translateY(0); } }

    /* Menu Mobile Overlay - PRESERVADO */
    #mobile-menu-overlay {
        position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
        background-color: rgba(26, 26, 59, 0.98); display: none; flex-direction: column;
        align-items: center; justify-content: center; z-index: 9999;
    }
    #mobile-menu-overlay.active { display: flex !important; }
    .mobile-nav-link { font-size: 1.8rem; font-weight: 700; color: white !important; text-decoration: none; text-transform: uppercase; }
    .mobile-nav-link:hover { color: #e54c7d !important; }
    #main-navbar { background-color: white !important; z-index: 1050; }
    
    .price-label {
    font-size: 0.7rem; /* Tamanho menor para o rótulo */
    font-weight: 400;
    display: block; /* Faz o texto ficar por cima ou numa linha separada */
    margin-bottom: -5px;
    text-transform: none;
}
/* Título da Seção */
.section-title {
    font-weight: 850;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: -1px;
    margin-bottom: 30px;
}

/* Card de Voo - Tamanho Ajustado */
.flight-card-mini {
    height: 280px; /* Altura reduzida para não ficar gigante */
    border-radius: 18px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    transition: all 0.3s ease;
}

/* Gradiente de visibilidade */
.flight-card-mini::before {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.85) 100%);
    z-index: 1;
}

.card-top, .card-bottom {
    position: relative;
    z-index: 2;
}

.dest-city { 
    font-weight: 800; 
    font-size: 1.3rem; 
    margin: 0;
}

.dest-route { 
    font-size: 0.75rem; 
    font-weight: 600; 
    margin-bottom: 2px;
}

.dest-price { 
    font-weight: 800; 
    font-size: 1.2rem; 
    color: #fff;
}

/* Botão de Reserva no Hover */
.btn-hover-wa {
    background-color: #e54c7d;
    color: white !important;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.8rem;
    padding: 10px;
    border-radius: 10px;
    text-align: center;
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 3;
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.3s ease-in-out;
}

.flight-card-mini:hover .btn-hover-wa {
    opacity: 1;
    transform: translateY(0);
}

/* Esconder preço no hover para dar lugar ao botão */
.flight-card-mini:hover .card-bottom {
    opacity: 0;
    
}

 .passenger-dropdown .btn-outline-secondary {
            width: 32px; height: 32px; padding: 0;
            display: flex; align-items: center; justify-content: center;
            background-color: #a6a6a6; color: white; border: none; font-weight: bold;
        }
        .passenger-dropdown .btn-outline-secondary:hover { background-color: #8c8c8c; }
>>>>>>> 5044f03 (Guardando alterações locais do cPanel)
