/*------------------------------------------------------------------------------HEADER*/
:root {
    --nav-bg: rgba(255, 255, 255, 0.85);
    --primary-blue: #0084ff;
    --dark-text: #1a1a1a;
    --muted-text: #636e72;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --card-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    --cb-blue: #0084ff;
    /* Azul CarrosBrasil */
    --cb-muted: #636e72;
    --cb-purple: #8bb7f7;
    /* Destaque IA */
    --cb-bg: #f8f9fa;
    --cb-dark: #1a1a1a;


}

body {
    font-family: 'Outfit', sans-serif;
    padding-top: 0;
    /* Mude de 100px para 0 */
    background: #f8f9fa;
    margin: 0;
    /* Garante que não haja margens externas */
}


/* Navbar Container */
.custom-nav {
    
    position: fixed;
    /* Ou absolute */
    top: 0;
    width: 100%;
    z-index: 1050;
    /* Garante que fique acima de tudo */
    background: var(--nav-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 15px 0;
    transition: var(--transition);
}

.brand-text {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-text);
    letter-spacing: -0.5px;
    text-decoration: none;
}

.brand-text span {
    font-weight: 300;
}

.navbar-nav .nav-link {
    color: var(--muted-text);
    font-weight: 500;
    font-size: 15px;
    padding: 10px 20px !important;
    position: relative;
    transition: var(--transition);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-blue);
}

/* Dropdown Modernizado */
.dropdown-menu {
    border-radius: 15px;
    padding: 10px;
    margin-top: 10px;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

/* Área do Usuário */
.user-area {
    background: #f1f3f5;
    padding: 6px 6px 6px 15px;
    border-radius: 50px;
}

.login-btn {
    text-decoration: none;
    color: var(--dark-text);
    font-weight: 600;
    font-size: 14px;
    background: white;
    padding: 6px 16px 6px 6px;
    border-radius: 50px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border: none;
}

.login-btn:hover {
    transform: translateY(-2px);
    color: var(--primary-blue);
}

/* Remove a seta padrão do dropdown no botão de login */
.login-btn.dropdown-toggle::after {
    display: none;
}

.user-avatar-circle {
    width: 32px;
    height: 32px;
    background: #e9ecef;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted-text);
}

.dropdown-item {
    border-radius: 8px;
    padding: 8px 15px;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
}

.dropdown-item:hover {
    background-color: #f1f3f5;
    color: var(--primary-blue);
}

/* Indicador Animado abaixo do Link */
.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-blue);
    transition: var(--transition);
    transform: translateX(-50%);
    border-radius: 2px;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 20px;
}


/*------------------------------------------------------------------------------FIM HEADER*/


/*------------------------------------------------------------------------------INICIO SLIDER TOPO*/
.slide-pesquisa-container {
    width: 100%;
    height: 50vh;
    background-color: #000;
    margin-top: 80px;
    /* Ajuste este valor conforme a altura da sua navbar */

}



.slide-pesquisa-item {
    position: relative;
    overflow: hidden;
    border-radius: 0 0 50px 50px;
}

.slide-pesquisa-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #000 10%, transparent 60%);
    z-index: 1;
}

.slide-pesquisa-imagem {
    width: 100%;
    height: 100%;
    object-fit: cover;
}



/* --- MEDIA QUERY SLIDER TOPO*/
/* No mobile, a navbar costuma ser menor, então ajuste também */
@media (max-width: 768px) {
    .slide-pesquisa-container {
        height: 30vh;
        margin-top: 70px;
        /* Espaço menor no mobile */

        .slide-pesquisa-item {
            border-radius: 0 0 30px 30px;
        }

    }
}

/*------------------------------------------------------------------------------FIM SLIDER TOPO*/





/*------------------------------------------------------------------------------INICIO BUSCA PRINCIPAL*/
:root {
    --cb-blue: #0084ff;
    --cb-dark: #0a1128;
    --transition-premium: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}


.search-container {
    position: relative;
    background: #ffffff;
    max-width: 1050px;
    margin: 50px auto;
    padding: 40px 50px;
    border-radius: 32px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.badge-tag {
    color: var(--cb-blue);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 11px;
}

.search-headline-wrapper {
    min-height: 80px;
    display: flex;
    align-items: center;
}

#text-rotate,
#text-rotate-mob {
    color: var(--cb-blue);
    border-right: 3px solid var(--cb-blue);
    padding-right: 8px;
    animation: blink 0.7s infinite;
    min-width: 10px;
}

@keyframes blink {

    0%,
    100% {
        border-color: transparent;
    }

    50% {
        border-color: var(--cb-blue);
    }
}

.vehicle-tabs {
    display: flex;
    gap: 8px;
    background: #f1f3f5;
    padding: 6px;
    width: fit-content;
    border-radius: 100px;
}

.tab-item {
    border: none;
    padding: 10px 24px;
    border-radius: 100px;
    font-weight: 600;
    color: #666;
    background: transparent;
    transition: var(--transition-premium);
}

.tab-item.active {
    background: var(--cb-blue);
    color: #fff;
    box-shadow: 0 8px 20px rgba(0, 132, 255, 0.2);
}

.search-group-master-desk {
    display: flex;
    align-items: center;
    background: #fff;
    border: 2px solid #eee;
    border-radius: 100px;
    padding: 8px;
    transition: var(--transition-premium);
    position: relative;
    z-index: 1001;
}

.search-group-master-desk.is-open {
    border-radius: 30px 30px 0 0;
    border-color: var(--cb-blue);
    border-bottom-color: transparent;
}

.ai-input-clean {
    border: none;
    outline: none;
    width: 100%;
    padding: 0 20px;
    font-size: 1.1rem;
}

.autocomplete-box {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 2px solid var(--cb-blue);
    border-top: none;
    border-radius: 0 0 32px 32px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    z-index: 999;
    display: none;
    margin-top: -25px;
    padding-top: 35px;
    overflow: hidden;
}

.suggestion-item {
    padding: 15px 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: var(--transition-premium);
    color: var(--cb-dark);
    text-decoration: none;
}

.suggestion-item:hover {
    background-color: #f8fbff;
    color: var(--cb-blue);
    padding-left: 40px;
}

.btn-main {
    background: var(--cb-blue);
    color: white;
    border: none;
    height: 58px;
    border-radius: 100px;
    font-weight: 700;
    padding: 0 40px;
    transition: var(--transition-premium);
    box-shadow: 0 10px 25px rgba(0, 132, 255, 0.3);
    white-space: nowrap;
}

.btn-main:hover {
    background-color: #0074e0;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 132, 255, 0.45);
}

@media (max-width: 991px) {
    .search-container {
        padding: 30px 20px;
    }

    .search-headline-wrapper {
        min-height: 120px;
    }

    .autocomplete-box {
        margin-top: 0;
        border-radius: 15px;
        padding-top: 0;
        border-top: 1px solid #eee;
    }


}


/*------------------------------------------------------------------------------FIM BUSCA PRINCIPAL/



/*------------------------------------------------------------------------------ INICIO CATEGORIAS*/
:root {
    --cb-blue: #0084ff;
    --cb-dark-blue: #0a1128;
    --transition-premium: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}


.categories-section {
    position: relative;
    padding: 100px 0px;
    background-color: #f8f9fa;
    overflow: hidden;
    /* Mantém as laterais limpas no Desktop */
}

.section-tag {
    color: var(--cb-blue);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 13px;
    margin-bottom: 12px;
    display: block;
}

.section-title {
    color: #0b1129;
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.categories-slider-wrapper {
    position: relative;
    margin-top: -30px;
}

.categoriesSwiper {
    /* MUDANÇA AQUI: Voltamos ao hidden para limpar as laterais */
    overflow: hidden !important;
    /* Adicionamos padding para o hover não cortar no topo e o paginator respirar embaixo */
    padding: 40px 0 60px 0 !important;
}

.category-card {
    position: relative;
    background: #000;
    border-radius: 28px;
    height: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 30px 20px;
    text-decoration: none;
    overflow: hidden;
    transition: var(--transition-premium);
    border: none;
}

.category-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 2;
    transition: var(--transition-premium);
}

.category-img-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    filter: grayscale(20%);
    transition: var(--transition-premium);
}

.category-card:hover {
    /* O card sobe e agora tem espaço dentro do padding do swiper */
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.category-card:hover .category-img-bg {
    transform: scale(1.1);
    filter: grayscale(0%);
}

.category-card:hover::before {
    background: linear-gradient(to top, rgba(0, 132, 255, 0.7) 0%, rgba(0, 0, 0, 0.1) 100%);
}

.category-name {
    position: relative;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 4px;
    z-index: 3;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.category-info {
    position: relative;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 400;
    z-index: 3;
}

/* AJUSTE: Paginação agora fixada no fundo do padding */
.swiper-pagination-categories {
    bottom: 10px !important;
    z-index: 10;
}

.swiper-pagination-bullet {
    background: #cbd5e1 !important;
    opacity: 1 !important;
}

.swiper-pagination-bullet-active {
    background: var(--cb-blue) !important;
    width: 45px !important;
    border-radius: 5px !important;
}

.btn-nav-custom {
    width: 50px;
    height: 50px;
    border-radius: 15px;
    background-color: #0b1129;
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-premium);
}

.btn-nav-custom:hover {
    background-color: #0084ff;

}


@media (max-width: 768px) {
    .category-card {
        height: 220px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .categoriesSwiper {
        padding: 30px 0 50px 0 !important;
    }

    .categories-section {
        padding: 10px 0px;
    }
}

/*------------------------------------------------------------------------------ FIM CATEGORIAS*/


/*------------------------------------------------------------------------------INICIO ORÇAMENTO POR PREÇO*/
:root {
    --cb-blue: #0084ff;
    --cb-dark: #0a1128;
    --cb-light-blue: #f0f7ff;
    --transition-premium: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}



.price-section {
    padding: 100px 0;
    background-color: #ffffff;
    /* Fundo limpo para contrastar com as seções azuis */
}

.section-tag {
    color: var(--cb-blue);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 13px;
    margin-bottom: 12px;
    display: block;

}

.section-title-preco {
    color: var(--cb-dark);
    font-weight: 700;
    font-size: 2.2rem;
    margin-bottom: 40px;
    text-align: center;
}

/* Container de Preços */
.price-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    max-width: 900px;
    margin: 0 auto;
}

/* Estilo dos Botões de Preço (Pills) */
.price-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background-color: var(--cb-light-blue);
    color: var(--cb-dark);
    text-decoration: none;
    border-radius: 100px;
    /* Totalmente arredondado para quebrar os quadrados */
    font-weight: 600;
    font-size: 1.1rem;
    border: 2px solid transparent;
    transition: var(--transition-premium);
}

.price-badge i {
    color: var(--cb-blue);
    font-size: 1.2rem;
    transition: var(--transition-premium);
}

/* Hover Elegante */
.price-badge:hover {
    background-color: var(--cb-blue);
    color: #ffffff;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 132, 255, 0.2);
}

.price-badge:hover i {
    color: #ffffff;
    transform: scale(1.2);
}

/* Filtro de "Ou escolha um intervalo personalizado" */
.custom-range-link {
    display: block;
    text-align: center;
    margin-top: 30px;
    color: #64748b;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.custom-range-link:hover {
    color: var(--cb-blue);
}

@media (max-width: 768px) {
    .price-badge {
        width: 100%;
        justify-content: center;
    }
}


/*MENU FIXED BOTTOM*/

:root {
    --cb-blue: #0084ff;
    --cb-dark-blue: #0a1128;
    --cb-gray-muted: #0a1128;
    --bg-glass: rgba(255, 255, 255, 0.98);
    --transition-premium: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}



/* MOBILE NAV BAR ATUALIZADA */
.mobile-navbar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 75px;
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: space-around;

    /* Bordas de cima arredondadas para design moderno */
    border-radius: 24px 24px 0 0;

    /* Borda sutil apenas no topo para definir o shape */
    border-top: 1px solid rgba(0, 0, 0, 0.04);

    /* Sombra suave projetada para cima */
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.06);

    z-index: 9999;
    padding-bottom: env(safe-area-inset-bottom);
}

/* NAV ITEM */
.mobile-nav-item {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    height: 100%;
    position: relative;
    transition: var(--transition-premium);
}

/* ÍCONES */
.mobile-nav-item i {
    font-size: 24px;
    color: var(--cb-gray-muted);
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition-premium);
    margin-bottom: 3px;
    font-weight: 500;

}

/* TEXTO */
.mobile-nav-item span {
    font-size: 10px;
    font-weight: 500;
    color: var(--cb-gray-muted);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    transition: var(--transition-premium);
    font-weight: 700;
}

/* LINHA INDICADORA (1/2 Pixel Blue) */
.mobile-nav-item::after {
    content: '';
    position: absolute;
    bottom: 10px;
    width: 0;
    height: 2px;
    background-color: var(--cb-blue);
    border-radius: 2px;
    transition: var(--transition-premium);
    opacity: 0;
}

/* ESTADO ATIVO & HOVER */
.mobile-nav-item.active i,
.mobile-nav-item:hover i {
    filter: grayscale(0%);
    opacity: 1;
    color: var(--cb-blue);
    transform: translateY(-4px) scale(1.1);
}

.mobile-nav-item.active span,
.mobile-nav-item:hover span {
    color: var(--cb-dark-blue);
    font-weight: 700;
}

.mobile-nav-item.active::after,
.mobile-nav-item:hover::after {
    width: 18px;
    opacity: 1;
}

/* Esconder em Desktop */
@media (min-width: 769px) {
    .mobile-navbar {
        display: none;
    }
}

/*------------------------------------------------------------------------------FIM ORÇAMENTO POR PREÇO*/



/*------------------------------------------------------------------------------INICIO MARCAS*/
:root {
    --cb-blue: #0084ff;
    --cb-dark-blue: #0a1128;
    --cb-bg: #f8f9fa;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}


.pesquisa {
    margin-top: -250px;
}

/* Seção Marcas */
.brands-section {
    padding: 100px 100px;
    background-color: var(--cb-dark-blue);
    /* Fundo escuro conforme referência */
    overflow: hidden;
    position: relative;

}

.section-tag {
    color: var(--cb-blue);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 13px;
    display: block;
    margin-bottom: 15px;
}

.section-title {
    color: #0b1129;
    font-weight: 700;
    font-size: 2.5rem;
    max-width: 500px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.section-desc {
    color: rgba(255, 255, 255, 0.6);
    max-width: 450px;
    font-size: 1.1rem;
}


.brandsSwiper {
    padding: 30px 10px !important;
    /* Espaço para a animação de subir e para a sombra */
    margin: -30px -10px !important;
    /* Compensa o padding para não empurrar outras seções */
    overflow: visible !important;
    /* Crucial: permite que o card "saia" da área ao animar */
}

/* Card da Marca */
.brand-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 30px 20px;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    text-decoration: none;
    will-change: transform;
    /* Melhora a performance da animação */
}

.brand-card:hover {
    transform: translateY(-12px);
    /* O card sobe 12px */
    box-shadow: 0 15px 35px rgba(0, 132, 255, 0.2);
    z-index: 10;
    /* Garante que o card em hover fique acima dos vizinhos */



}

.brand-logo-wrapper {
    height: 80px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.brand-logo-wrapper img {
    max-height: 100%;
    max-width: 80%;
    object-fit: contain;
    filter: grayscale(100%);
    /* Elegância: logos em cinza por padrão */
    opacity: 0.7;
    transition: var(--transition);
}

.brand-card:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

.brand-name {
    color: var(--cb-dark-blue);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.brand-count {
    color: var(--cb-muted);
    font-size: 13px;
    font-weight: 500;
    background: #f1f3f5;
    padding: 2px 12px;
    border-radius: 50px;
}

/* Navegação Customizada */
.nav-wrapper {
    display: flex;
    gap: 15px;
    margin-top: 40px;
}

.swiper-nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    cursor: pointer;
}

.swiper-nav-btn:hover {
    background: var(--cb-blue);
    border-color: var(--cb-blue);
    transform: scale(1.1);
}

/* Dots Pagination */
.swiper-pagination-brands {
    position: relative !important;
    margin-top: 40px;
    text-align: left !important;
}

.swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.2) !important;
    opacity: 1 !important;
    width: 10px;
    height: 10px;
}

.swiper-pagination-bullet-active {
    background: var(--cb-blue) !important;
    width: 30px !important;
    border-radius: 5px !important;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .brands-section {
        padding: 60px 0;
    }
}



/* --- BOTÃO DE ATIVAÇÃO --- */
.btn-luxury-trigger {
    border: 2px solid var(--cb-blue);
    color: var(--cb-blue);
    transition: var(--transition-premium);
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.btn-luxury-trigger:hover {
    color: #fff !important;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 20px rgba(0, 132, 255, 0.2);
}



/* --- ESTILIZAÇÃO DO MODAL MARCAS */
/* Backdrop com desfoque profundo */
.modal-backdrop.show {
    opacity: 0.85;
    backdrop-filter: blur(15px) saturate(160%);
    background-color: var(--cb-dark);
}

.modal-content {
    border-radius: 40px !important;
    border: none !important;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.modal-header .btn-close {
    background-color: #f8fafc;
    border-radius: 50%;
    padding: 1rem;
    opacity: 1;
    transition: var(--transition-premium);
}

.modal-header .btn-close:hover {
    transform: rotate(90deg);
    background-color: #000;
    filter: invert(1);
}

/* Input de Busca */
.search-group-premium {
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    transition: var(--transition-premium);
}

.search-group-premium:focus-within {
    border-color: var(--cb-blue);
    background-color: #fff;
    box-shadow: 0 0 0 4px rgba(0, 132, 255, 0.05);
}

/* Grid de Marcas */
.luxury-brand-card {
    background: #fff;
    border: 1px solid #f1f5f9;
    transition: var(--transition-premium);
    cursor: pointer;
}

.logo-wrapper {
    height: 60px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-logo {
    max-height: 50px;
    max-width: 80px;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.5);
    /* Cinza por padrão */
    transition: var(--transition-premium);
}

/* Efeito de Cores no Hover */
.luxury-brand-card:hover {
    border-color: var(--cb-blue) !important;
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 132, 255, 0.1);
}

.luxury-brand-card:hover .brand-logo {
    filter: grayscale(0%) opacity(1);
    /* Ganha cor */
    transform: scale(1.15);
}

.luxury-brand-card:hover span {
    color: var(--cb-blue) !important;
}

/* Scrollbar Fina */
.modal-body::-webkit-scrollbar {
    width: 6px;
}

.modal-body::-webkit-scrollbar-thumb {
    background: #e2e8f0;
    border-radius: 10px;
}

/*------------------------------------------------------------------------------FIM MARCAS*/



/*------------------------------------------------------------------------------INICIO FOOTER*/
:root {
    --primary-blue: #0084ff;
    --dark-bg: #161c27;
    --footer-bg: #1a212f;
    /* Tom vibrante da imagem */
    --text-light: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.8);
    --input-bg: rgba(255, 255, 255, 0.15);
}


.main-footer {
    background-color: var(--footer-bg);
    color: var(--text-light);
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

/* Brand Style */
.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.brand-text-footer {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #fff;
}

.brand-text span {
    font-weight: 300;
}

.footer-logo {
    border-radius: 8px;
}

.footer-description {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-muted);
    max-width: 320px;
}

/* Links */
.footer-title {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
    color: #fff;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 15px;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-links a:hover {
    color: #fff;
    padding-left: 5px;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin-top: 50px;
}

/* Newsletter Form */
.newsletter-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.newsletter-text {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
}

.newsletter-form .form-control {
    background: var(--input-bg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    border-radius: 12px;
    padding: 12px 20px;
}

.newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.btn-submit {
    background-color: #161c27;
    /* Azul escuro da imagem */
    color: #fff;
    font-weight: 600;
    padding: 10px 30px;
    border-radius: 12px;
    border: none;
    transition: 0.3s;
}

.btn-submit:hover {
    background-color: #000;
    color: #fff;
    transform: translateY(-2px);
}

/* Copyright */
.copyright-bar {
    background-color: var(--dark-bg);
    padding: 20px 0;
    font-size: 13px;
    color: #888;
}

.social-icons a {
    color: #888;
    margin-left: 20px;
    text-decoration: none;
    transition: 0.3s;
}

.social-icons a:hover {
    color: var(--footer-bg);
}

@media (max-width: 768px) {
    .main-footer {
        padding-top: 50px;
    }

    .footer-brand {
        justify-content: flex-start;
    }

    .newsletter-form {
        flex-direction: column;
    }
}


/*------------------------------------------------------------------------------FIM FOOTER*/