/* --------------------------------------------------------------
   ESTILOS PREMIUM (Inspirado em Franqueado)
-------------------------------------------------------------- */

/* GERAL */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* CARDS E ANIMAÇÕES */
.hover-lift {
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1) !important;
}

/* SEÇÃO MARCAS */
.brand-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px; /* Mais arredondado */
    padding: 40px 32px;
    height: 100%;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.brand-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background-color: #f8fafc;
    border: 1px solid #eff6ff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 8px; /* Padding interno para a logo respirar */
}

.tag {
    background-color: #f1f5f9;
    color: #475569;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* SEÇÃO FROTAS */
.fleet-section {
    background: #ffffff;
}

.fleet-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.metric-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
}

.fleet-highlight {
    background: #f8fafc; /* Mais neutro que o verde */
    border: 1px solid #e2e8f0;
    color: #334155;
    border-radius: 16px;
    padding: 20px;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

/* SEÇÃO DIFERENCIAIS */
.differentials-section {
    background: #fdfdfd; /* Sutilmente diferente do branco puro */
}

.diff-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 32px;
    height: 100%;
    display: flex;
    align-items: flex-start;
    text-align: left;
    gap: 20px;
}

.diff-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* CTA ROAD */
.cta-road {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    border-top: 1px solid #f1f5f9;
}

/* HERO & BANNERS (Mantidos) */
.logo-img { height: 40px; width: auto; }

#hero-gch {
    width: 100%;
    background: url('/assets/img/tire_company.jpg') no-repeat center center;
    background-size: cover;
    position: relative;
    padding: 180px 0 100px 0;
    color: white;
    min-height: 75vh;
}
#hero-gch::before {
    content: "";
    position: absolute;
    top: 0; left: 0; height: 100%; width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.2));
    z-index: 1;
}
#hero-gch .container-fluid { position: relative; z-index: 2; }

.hero-left-card {
    background-color: rgba(4, 17, 153, 0.7); /* Azul mais escuro e translúcido */
    backdrop-filter: blur(10px);
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
    border: 1px solid rgba(255,255,255,0.1);
}

.full-width-banner {
    width: 100%;
    padding: 0;
    margin: 0;
    overflow: hidden;
}

.full-width-banner img, .full-width-banner video {
    display: block;
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: cover;
}

/* --------------------------------------------------------------
   HEADER SIMPLES & LIMPO
-------------------------------------------------------------- */

/* Fixar o topo com fundo branco e efeito de vidro sutil */
.header.sticky-top .navbar {
    background-color: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(5px);
}

/* Remover a borda padrão do botão hamburger quando clica */
.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

/* Ajustes Específicos para Mobile (Telas menores que 992px) */
@media (max-width: 991.98px) {
    /* Centraliza e dá espaçamento nos itens ao abrir */
    .navbar-collapse {
        background-color: #fff;
        padding-bottom: 20px;
        border-top: 1px solid #f1f5f9; /* Linha sutil separando logo do menu */
    }

    /* Ajuste do Dropdown no Mobile para ficar "plano" e não flutuando */
    .dropdown-menu {
        border: 1px solid #f1f5f9 !important;
        box-shadow: none !important;
        background-color: #f8fafc;
        margin-top: 10px !important;
        width: 100%;
        text-align: center;
    }
    
    /* Botão Acessar ocupa largura total no mobile para facilitar o toque */
    .btn.dropdown-toggle {
        width: 100%; 
        display: flex;
        justify-content: center;
        align-items: center;
    }
}