/* ========================================
   PORTAL DO TRANSPORTE - CSS MASTER
   ======================================== */

:root {
    --azul-portal: #1B4B5A;
    --laranja-portal: #FF3B00;
    --laranja-light: #FF6600;
    --cinza-claro: #F5F5F5;
    --cinza-medio: #E0E0E0;
    --texto-escuro: #2C3E50;
    --texto-claro: #6C757D;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--texto-escuro);
    background-color: #FAFAFA;
    line-height: 1.6;
}

/* ========================================
   TOP BAR
   ======================================== */
.top-bar {
    background: var(--azul-portal);
    padding: 8px 0;
    font-size: 0.85rem;
}

/* ========================================
   HEADER PRINCIPAL
   ======================================== */
.main-header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    z-index: 1000;
}

.logo-img {
    max-height: 50px;
    width: auto;
}

.btn-menu,
.btn-menu-desktop,
.btn-search,
.btn-login,
.btn-user {
    background: transparent;
    border: none;
    color: var(--azul-portal);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
    padding: 8px 12px;
}

.btn-menu:hover,
.btn-search:hover,
.btn-login:hover {
    color: var(--laranja-portal);
}

.btn-user {
    background: var(--cinza-claro);
    border-radius: 20px;
}

/* ========================================
   MEGA MENU DROPDOWN
   ======================================== */
.mega-menu {
    min-width: 250px;
    padding: 0;
    border: none;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.mega-menu-item {
    border-bottom: 1px solid var(--cinza-medio);
}

.mega-menu-item:last-child {
    border-bottom: none;
}

.mega-menu-item > .dropdown-item {
    padding: 12px 20px;
    color: var(--azul-portal);
    font-weight: 600;
}

.submenu {
    list-style: none;
    padding-left: 20px;
    background: var(--cinza-claro);
}

.submenu li a {
    display: block;
    padding: 8px 20px;
    color: var(--texto-claro);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s;
}

.submenu li a:hover {
    background: white;
    color: var(--laranja-portal);
    padding-left: 25px;
}

/* ========================================
   BARRA DE CATEGORIAS
   ======================================== */
.categories-bar {
    background: var(--cinza-claro);
    border-top: 1px solid var(--cinza-medio);
}

.nav-categories {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
}

.cat-link {
    color: var(--texto-escuro);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 8px 16px;
    transition: all 0.3s;
    border-radius: 4px;
}

.cat-link:hover {
    background: white;
    color: var(--laranja-portal);
}

.cat-destaque {
    background: var(--laranja-portal);
    color: white !important;
}

.cat-destaque:hover {
    background: var(--azul-portal);
}

/* ========================================
   MENU MOBILE SIDEBAR
   ======================================== */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100vh;
    background: white;
    box-shadow: 5px 0 20px rgba(0,0,0,0.2);
    transition: left 0.3s;
    z-index: 9999;
    overflow-y: auto;
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu-header {
    background: var(--azul-portal);
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn-close-menu {
    background: transparent;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-menu-body {
    padding: 20px;
}

.mobile-cat-item {
    margin-bottom: 20px;
}

.mobile-cat-title {
    display: block;
    font-weight: 700;
    color: var(--azul-portal);
    padding: 10px 0;
    text-decoration: none;
    font-size: 1.1rem;
    border-bottom: 2px solid var(--cinza-medio);
}

.mobile-subcat-list {
    list-style: none;
    padding-left: 15px;
    margin-top: 10px;
}

.mobile-subcat-list li a {
    display: block;
    padding: 8px 0;
    color: var(--texto-claro);
    text-decoration: none;
    font-size: 0.9rem;
}

.mobile-subcat-list li a:hover {
    color: var(--laranja-portal);
}

.text-orange {
    color: var(--laranja-portal) !important;
}

/* ========================================
   CARDS DE NOTÍCIA
   ======================================== */
.news-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: all 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.news-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.news-card-body {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.news-category {
    display: inline-block;
    background: var(--laranja-portal);
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.news-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--texto-escuro);
    margin-bottom: 10px;
    line-height: 1.4;
    text-decoration: none;
    display: block;
}

.news-title:hover {
    color: var(--laranja-portal);
}

.news-resume {
    color: var(--texto-claro);
    font-size: 0.9rem;
    margin-bottom: 15px;
    flex-grow: 1;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--texto-claro);
    border-top: 1px solid var(--cinza-medio);
    padding-top: 10px;
}

/* ========================================
   CARD DESTAQUE (Hero)
   ======================================== */
.news-hero {
    position: relative;
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 30px;
}

.news-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    padding: 40px;
    color: white;
}

.news-hero-overlay .news-category {
    margin-bottom: 15px;
}

.news-hero-overlay .news-title {
    color: white;
    font-size: 2rem;
    margin-bottom: 15px;
}

.news-hero-overlay .news-resume {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
}

/* ========================================
   BANNERS PUBLICITÁRIOS
   ======================================== */
.ad-banner {
    background: var(--cinza-claro);
    border: 1px dashed var(--cinza-medio);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--texto-claro);
    font-size: 0.9rem;
    margin: 30px 0;
    min-height: 90px;
    border-radius: 8px;
}

.ad-banner-sidebar {
    min-height: 250px;
    margin-bottom: 20px;
}

/* ========================================
   SIDEBAR
   ======================================== */
.sidebar-widget {
    background: white;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.widget-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--azul-portal);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--laranja-portal);
}

.trending-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--cinza-medio);
}

.trending-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.trending-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--laranja-portal);
    min-width: 40px;
}

.trending-content h6 {
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 5px;
}

.trending-content h6 a {
    color: var(--texto-escuro);
    text-decoration: none;
}

.trending-content h6 a:hover {
    color: var(--laranja-portal);
}

.trending-meta {
    font-size: 0.75rem;
    color: var(--texto-claro);
}

/* ========================================
   FOOTER
   ======================================== */
footer {
    background: var(--azul-portal);
    color: white;
    padding: 40px 0 20px;
    margin-top: 60px;
}

.footer-logo {
    max-height: 60px;
    margin-bottom: 20px;
}

.footer-section h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--laranja-light);
}

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

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

.footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s;
}

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

.footer-social a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    color: white;
    margin-right: 10px;
    transition: all 0.3s;
}

.footer-social a:hover {
    background: var(--laranja-portal);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 30px;
    padding-top: 20px;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
}

/* ========================================
   RESPONSIVO
   ======================================== */
@media (max-width: 991px) {
    .news-hero {
        height: 350px;
    }
    
    .news-hero-overlay .news-title {
        font-size: 1.5rem;
    }
    
    .categories-bar {
        display: none;
    }
}

@media (max-width: 576px) {
    .news-hero {
        height: 300px;
    }
    
    .news-hero-overlay {
        padding: 20px;
    }
    
    .news-hero-overlay .news-title {
        font-size: 1.2rem;
    }
    
    .news-card-img {
        height: 150px;
    }
}

/* ========================================
   ANIMAÇÕES
   ======================================== */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* ========================================
   UTILITÁRIOS
   ======================================== */
.bg-azul { background-color: var(--azul-portal) !important; }
.bg-laranja { background-color: var(--laranja-portal) !important; }
.text-azul { color: var(--azul-portal) !important; }
.text-laranja { color: var(--laranja-portal) !important; }

.btn-primary {
    background-color: var(--laranja-portal);
    border-color: var(--laranja-portal);
}

.btn-primary:hover {
    background-color: var(--azul-portal);
    border-color: var(--azul-portal);
}

.btn-outline-primary {
    color: var(--laranja-portal);
    border-color: var(--laranja-portal);
}

.btn-outline-primary:hover {
    background-color: var(--laranja-portal);
    border-color: var(--laranja-portal);
}

/* ========================================
   NOVO HEADER ESTILO G1
   ======================================== */

.g1-header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-logo-top {
    border-bottom: 1px solid #f0f0f0;
}

.header-logo-top img {
    max-height: 40px;
    width: auto;
}

.header-main-bar {
    background: white;
    padding: 15px 0;
}

/* Menu Principal */
.main-nav {
    display: flex;
    gap: 5px;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--texto-escuro);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 10px 15px;
    display: block;
    transition: all 0.3s;
    border-radius: 4px;
}

.nav-link:hover {
    background: var(--cinza-claro);
    color: var(--laranja-portal);
}

.nav-item:hover .dropdown-menu {
    display: block;
}

.nav-item .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: white;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border: none;
    border-radius: 8px;
    padding: 10px 0;
    margin-top: 5px;
    z-index: 1000;
}

.nav-item .dropdown-item {
    padding: 10px 20px;
    color: var(--texto-escuro);
    font-size: 0.9rem;
}

.nav-item .dropdown-item:hover {
    background: var(--cinza-claro);
    color: var(--laranja-portal);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: flex-end;
}

.btn-header-action {
    background: transparent;
    border: 1px solid var(--cinza-medio);
    color: var(--azul-portal);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.btn-header-action:hover {
    background: var(--cinza-claro);
    border-color: var(--azul-portal);
}

.btn-assine {
    background: var(--laranja-portal);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    white-space: nowrap;
}

.btn-assine:hover {
    background: var(--azul-portal);
    color: white;
    transform: translateY(-2px);
}

.btn-menu-mobile {
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: var(--azul-portal);
    cursor: pointer;
}

/* ========================================
   PÁGINA DE NOTÍCIA
   ======================================== */

.article-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--texto-escuro);
}

.article-lead {
    font-size: 1.2rem;
    color: var(--texto-claro);
    line-height: 1.6;
}

.article-meta {
    font-size: 0.9rem;
    color: var(--texto-claro);
}

.article-image {
    margin: 0;
}

.article-image img {
    width: 100%;
    border-radius: 12px;
}

.article-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--texto-escuro);
}

.article-content p {
    margin-bottom: 1.5rem;
}

.article-content h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.article-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.article-tags .badge {
    font-size: 0.85rem;
    padding: 6px 12px;
    font-weight: 500;
}

.article-share .btn {
    font-size: 0.85rem;
}

/* ========================================
   PAINEL DO CLIENTE - PROFISSIONAL
   ======================================== */

.dashboard-header {
    background: linear-gradient(135deg, var(--azul-portal) 0%, #2c5f6f 100%);
    color: white;
    padding: 40px 0;
    margin-bottom: 30px;
    border-radius: 15px;
}

.stat-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
    height: 100%;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--azul-portal);
    margin: 10px 0;
}

.stat-label {
    color: var(--texto-claro);
    font-size: 0.95rem;
}

.quick-action-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    border: 2px dashed var(--cinza-medio);
    transition: all 0.3s;
    cursor: pointer;
    height: 100%;
}

.quick-action-card:hover {
    border-color: var(--laranja-portal);
    background: #fff8f0;
}

.quick-action-card i {
    font-size: 2.5rem;
    color: var(--laranja-portal);
    margin-bottom: 15px;
}

/* ========================================
   PERFIL PÚBLICO DA EMPRESA
   ======================================== */

.company-hero {
    position: relative;
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 30px;
}

.company-hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    padding: 40px;
    color: white;
}

.company-logo-badge {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 5px solid white;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    object-fit: cover;
    background: white;
}

.company-info-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    margin-bottom: 20px;
}

.company-info-item {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid var(--cinza-medio);
}

.company-info-item:last-child {
    border-bottom: none;
}

.company-info-item i {
    font-size: 1.3rem;
    color: var(--laranja-portal);
    min-width: 40px;
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    width: 100%;
    margin-bottom: 15px;
    transition: all 0.3s;
}

.btn-whatsapp:hover {
    background: #20ba5a;
    transform: scale(1.05);
    color: white;
}

.btn-calcular-frete {
    background: var(--azul-portal);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    width: 100%;
    transition: all 0.3s;
}

.btn-calcular-frete:hover {
    background: var(--laranja-portal);
    transform: scale(1.05);
    color: white;
}

.service-badge {
    background: var(--cinza-claro);
    color: var(--texto-escuro);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    display: inline-block;
    margin: 5px;
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    height: 200px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* ========================================
   RESPONSIVO ADICIONAL
   ======================================== */

@media (max-width: 991px) {
    .article-title {
        font-size: 1.8rem;
    }
    
    .article-lead {
        font-size: 1rem;
    }
    
    .article-content {
        font-size: 1rem;
    }
    
    .company-hero {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .header-logo-top img {
        max-height: 30px;
    }
    
    .btn-header-action span {
        display: none;
    }
    
    .btn-assine {
        font-size: 0.8rem;
        padding: 8px 12px;
    }
    
    .article-title {
        font-size: 1.5rem;
    }
    
    .stat-value {
        font-size: 2rem;
    }
}

/* ========================================
   HEADER SIMPLIFICADO - ESTILO G1
   ======================================== */

.main-header-simple {
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo-header {
    max-height: 45px;
    width: auto;
}

.btn-hamburger {
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: var(--azul-portal);
    cursor: pointer;
    padding: 8px 12px;
    transition: all 0.3s;
}

.btn-hamburger:hover {
    color: var(--laranja-portal);
}

.header-right-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: flex-end;
}

.btn-icon {
    background: transparent;
    border: 1px solid var(--cinza-medio);
    color: var(--azul-portal);
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.btn-icon:hover {
    background: var(--cinza-claro);
    border-color: var(--azul-portal);
}

.btn-assine-header {
    background: var(--laranja-portal);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    white-space: nowrap;
}

.btn-assine-header:hover {
    background: var(--azul-portal);
    color: white;
}

/* ========================================
   MENU LATERAL (Estilo G1)
   ======================================== */

.sidebar-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    pointer-events: none;
    transition: all 0.3s;
}

.sidebar-menu.active {
    pointer-events: all;
}

.sidebar-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    transition: opacity 0.3s;
}

.sidebar-menu.active .sidebar-overlay {
    opacity: 1;
}

.sidebar-content {
    position: absolute;
    top: 0;
    left: -320px;
    width: 320px;
    height: 100%;
    background: white;
    box-shadow: 2px 0 20px rgba(0,0,0,0.2);
    overflow-y: auto;
    transition: left 0.3s ease-out;
}

.sidebar-menu.active .sidebar-content {
    left: 0;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--cinza-medio);
    background: var(--azul-portal);
}

.sidebar-logo {
    max-height: 35px;
    width: auto;
    filter: brightness(0) invert(1);
}

.btn-close-sidebar {
    background: transparent;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
}

.sidebar-body {
    padding: 20px 0;
}

.sidebar-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-menu-item {
    border-bottom: 1px solid var(--cinza-medio);
}

.sidebar-menu-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 25px;
    color: var(--texto-escuro);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.sidebar-menu-link:hover {
    background: var(--cinza-claro);
    color: var(--laranja-portal);
    padding-left: 30px;
}

.sidebar-submenu {
    background: var(--cinza-claro);
    padding: 10px 0;
    display: none;
}

.sidebar-menu-item:hover .sidebar-submenu {
    display: block;
}

.sidebar-submenu-link {
    display: block;
    padding: 10px 25px 10px 45px;
    color: var(--texto-claro);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.sidebar-submenu-link:hover {
    background: white;
    color: var(--laranja-portal);
    padding-left: 50px;
}

/* ========================================
   DASHBOARD HEADER - MARGEM CORRIGIDA
   ======================================== */

.dashboard-header {
    background: linear-gradient(135deg, var(--azul-portal) 0%, #2c5f6f 100%);
    color: white;
    padding: 40px 30px; /* MARGEM ADICIONADA */
    margin-bottom: 30px;
    border-radius: 15px;
}

/* ========================================
   RESPONSIVIDADE
   ======================================== */

@media (max-width: 768px) {
    .logo-header {
        max-height: 35px;
    }
    
    .btn-icon span,
    .btn-assine-header {
        display: none !important;
    }
    
    .header-right-actions {
        gap: 5px;
    }
    
    .btn-icon {
        padding: 8px 10px;
        border-radius: 50%;
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .sidebar-content {
        width: 280px;
        left: -280px;
    }
    
    .dashboard-header {
        padding: 30px 20px;
        margin-left: -15px;
        margin-right: -15px;
        border-radius: 0;
    }
    
    .dashboard-header h1 {
        font-size: 1.5rem;
    }
    
    .stat-card {
        padding: 20px;
    }
    
    .stat-value {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .top-bar {
        font-size: 0.75rem;
    }
    
    .sidebar-logo {
        max-height: 28px;
    }
}

/* Prevenir scroll quando menu aberto */
body.menu-open {
    overflow: hidden;
}