/* C:\xampp\htdocs\RedaStatico\public_html\assets\css\header_section.css */
.header-section {
    text-align: left;
    width: 100%;
    box-sizing: border-box;
    padding: 18px 0 0 0;
    background-color: transparent;
    transition: background-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out, position 0.3s ease-in-out;
    margin: 0 auto;
    position: relative;
    z-index: 999; /* Abaixo da navbar (1001) e welcome-banner (1002) */
}

.header-section.fixed-header {
    position: fixed;
    top: 0; /* Ajustado dinamicamente pelo JS */
    left: 0;
    width: 100%; /* Garante que o fundo branco cubra toda a largura */
    max-width: 100%; /* Remove limite de largura */
    background-color: #fff;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 999;
}

.header-section-content {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 2vw;
}

.header-section-breadcrumb-container {
    font-size: 13px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 5px;
    flex-wrap: nowrap;
}

.header-section-breadcrumb-link {
    text-decoration: none;
    color: #333;
    font-size: 13px;
    white-space: nowrap;
}

.header-section-breadcrumb-link:hover {
    text-decoration: underline;
    color: #555;
}

.header-section-breadcrumb-separator {
    color: #333;
    font-size: 13px;
}

.header-section-breadcrumb-current {
    font-size: 13px;
    color: #cc0000;
    white-space: nowrap;
}

.header-section-title {
    font-size: 18px;
    font-weight: bold;
    color: #cc0000;
    margin: 5px 0;
}

.header-section-separator-container {
    position: relative;
    width: 100%;
    height: 0;
    margin: 0;
    padding: 0;
}

.header-section-separator {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    border: none;
    border-bottom: 1px solid #BB0606;
    margin: 0;
}

@media (max-width: 768px) {
    .header-section-content {
        max-width: 100%;
        padding: 0 10px;
    }

    .header-section-breadcrumb-container {
        font-size: 12px;
    }

    .header-section-title {
        font-size: 16px;
    }

    .truncate {
        max-width: 100px;
    }
}