/*
 * CSS customizado para o novo header externo inspirado no Ticket360
 * Inclui ajustes de cores, espaçamentos e responsividade para as três barras do header
 */

.header-acessibilidade {
    background: #f7f7f7;
    color: #333;
    font-size: 0.95rem;
    padding: 0.25rem 0;
    border-bottom: 1px solid #e5e5e5;
}

.header-acessibilidade a {
    color: #333;
    margin-right: 1.5rem;
    text-decoration: none;
}

.header-acessibilidade a:hover {
    text-decoration: underline;
}

.header-main {
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
    padding: 0.5rem 0;
}

.header-main .logo {
    height: 85px;
}

.header-main .search-bar {
    max-width: 400px;
    width: 100%;
}

.header-main .user-menu {
    min-width: 120px;
}

.header-main .cart {
    position: relative;
    margin-left: 1rem;
}

.header-main .cart .badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #dc3545;
    color: #fff;
    font-size: 0.75rem;
    border-radius: 50%;
    padding: 2px 6px;
}

.header-menu {
    background: #111;
    color: #fff;
    padding: 0.25rem 0;
}

.header-menu .nav {
    flex-wrap: wrap;
}

.header-menu .nav-link {
    color: #fff;
    font-weight: 500;
    margin-right: 1.5rem;
    transition: color 0.2s;
}

.header-menu .nav-link:hover {
    color: #ffc107;
}

@media (max-width: 768px) {
    .header-main .search-bar {
        max-width: 200px;
    }

    .header-menu .nav-link {
        margin-right: 0.75rem;
        font-size: 0.95rem;
    }
}