 /* ===== RESET & VARIÁVEIS ===== */
 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 /* ===== PERFORMANCE ===== */
 .sidebar,
 .header,
 .main-content,
 .card,
 .card-home,
 .card-video {
     will-change: transform;
 }

 /* Evita layout shift em imagens */
 img {
     max-width: 100%;
     height: auto;
 }

 /* Otimiza repaints */
 .sidebar-nav ul li a,
 .card-right .report-btn,
 .header .search-bar {
     will-change: background, transform;
 }

 /* Smooth scroll */
 html {
     scroll-behavior: smooth;
 }

 /* GPU acceleration para animações */
 @keyframes spin {
     0% {
         transform: rotate(0deg);
     }

     100% {
         transform: rotate(360deg);
     }
 }

 @keyframes pulse {

     0%,
     100% {
         opacity: 1;
     }

     50% {
         opacity: 0.5;
     }
 }

 @keyframes progressSlide {
     0% {
         transform: translateX(-100%);
     }

     100% {
         transform: translateX(350%);
     }
 }

 /* Previne flash of unstyled content */
 body {
     opacity: 1;
     transition: opacity 0.15s ease-in-out;
 }

 /* ===== LOADING OVERLAY ===== */
 #loadingOverlay {
     transition: opacity 0.3s ease;
 }

 #loadingOverlay p:first-of-type {
     animation: pulse 2s ease-in-out infinite;
 }

 :root {
     --primary-green: #0b8b4d;
     --dark-green: #00695c;
     --menu-green: #007a43;
     --dark-blue: #003366;
     --light-gray: #f5f5f5;
     --medium-gray: #cccccc;
     --white: #ffffff;
     --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
     --sidebar-width: 250px;
     --sidebar-collapsed: 60px;
     --header-height: 70px;
     --nav-height: 45px;
     --transition-speed: 0.3s;
 }

 body {
     font-family: 'Segoe UI', Arial, sans-serif;
     background: var(--light-gray);
     color: #333;
     display: flex;
     min-height: 100vh;
     margin: 0;
 }

 a {
     text-decoration: none;
     color: inherit;
 }

 ul {
     list-style: none;
     padding: 0;
     margin: 0;
 }

 button {
     cursor: pointer;
     border: none;
     background: none;
     font-family: inherit;
     font-size: inherit;
 }

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

 /* ===== SIDEBAR ===== */
 .sidebar {
     position: fixed;
     top: 0;
     left: 0;
     width: var(--sidebar-width);
     height: 100vh;
     background: var(--dark-green);
     color: var(--white);
     display: flex;
     flex-direction: column;
     transition: width var(--transition-speed) ease;
     z-index: 1000;
     overflow: hidden;
     box-shadow: 2px 0 8px rgba(0, 0, 0, 0.15);
 }

 .sidebar.collapsed {
     width: var(--sidebar-collapsed);
 }

 .sidebar .toggle-btn {
     background: rgba(255, 255, 255, 0.1);
     border: none;
     color: var(--white);
     font-size: 1.4rem;
     padding: 14px 0;
     display: flex;
     align-items: center;
     justify-content: center;
     cursor: pointer;
     transition: background 0.2s;
     width: 100%;
     border-bottom: 1px solid rgba(255, 255, 255, 0.1);
     height: var(--header-height);
 }

 .sidebar .toggle-btn:hover {
     background: rgba(255, 255, 255, 0.2);
 }

 .sidebar .toggle-btn svg {
     fill: currentColor;
     width: 28px;
     height: 28px;
     transition: transform 0.3s;
 }

 .sidebar.collapsed .toggle-btn svg {
     transform: rotate(180deg);
 }

 .sidebar-nav {
     flex: 1;
     overflow-y: auto;
     padding: 12px 0;
 }


 ul li a {
     display: flex;
     align-items: flex-start;
     padding: 12px 18px;
     /* Alinha o ícone com o topo da primeira linha */
     gap: 10px;
     /* Distância entre o ícone e o texto */
     text-decoration: none;
     line-height: 1.3;
     /* Ajusta o espaçamento entre as duas linhas do texto */
 }

 /* Garante um ajuste fino na altura do ícone para bater com a primeira letra */
 ul li a .material-symbols-outlined {
     margin-top: 2px;
 }

 .sidebar-nav ul li a:hover,
 .sidebar-footer ul li a:hover {
     background: rgba(255, 255, 255, 0.15);
     border-left-color: var(--white);
 }

 .sidebar-nav ul li a.active,
 .sidebar-footer ul li a.active {
     background: rgba(255, 255, 255, 0.2);
     border-left-color: var(--white);
 }

 .sidebar-nav ul li a svg,
 .sidebar-footer ul li a svg {
     flex-shrink: 0;
     width: 22px;
     height: 22px;
     fill: currentColor;
     margin-right: 14px;
 }

 .sidebar.collapsed .sidebar-nav ul li a span,
 .sidebar.collapsed .sidebar-footer ul li a span {
     display: none;
 }

 .sidebar.collapsed .sidebar-nav ul li a,
 .sidebar.collapsed .sidebar-footer ul li a {
     justify-content: center;
     padding: 12px 0;
 }

 .sidebar.collapsed .sidebar-nav ul li a svg,
 .sidebar.collapsed .sidebar-footer ul li a svg {
     margin-right: 0;
 }

 .sidebar-footer {
     border-top: 1px solid rgba(255, 255, 255, 0.1);
     padding: 12px 0;
     font-size: 0.8rem;
 }

 .sidebar-footer ul li a {
     padding: 8px 18px;
     font-size: 0.85rem;
 }

 .sidebar-footer ul li a svg {
     width: 18px;
     height: 18px;
 }

 /* ===== MAIN CONTENT ===== */
 .main-content {
     margin-left: var(--sidebar-width);
     flex: 1;
     display: flex;
     flex-direction: column;
     min-height: 100vh;
     transition: margin-left var(--transition-speed) ease;
 }

 .sidebar.collapsed~.main-content {
     margin-left: var(--sidebar-collapsed);
 }

 /* ===== HEADER ===== */
 .header {
     background: var(--primary-green);
     height: var(--header-height);
     display: flex;
     align-items: center;
     padding: 0 24px;
     color: var(--white);
     gap: 16px;
     flex-shrink: 0;
     box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
     position: sticky;
     top: 0;
     z-index: 900;
 }

 .header .logo {
     display: flex;
     align-items: center;
     gap: 8px;
     font-size: 1.6rem;
     font-weight: 700;
     letter-spacing: 0.5px;
     flex-shrink: 0;
 }

 .header .logo svg {
     fill: currentColor;
     width: 36px;
     height: 36px;
 }

 .header .search-bar {
     flex: 1;
     display: flex;
     align-items: center;
     background: rgba(255, 255, 255, 0.2);
     border-radius: 30px;
     padding: 0 16px;
     max-width: 500px;
     transition: background 0.3s;
 }

 .header .search-bar:focus-within {
     background: rgba(255, 255, 255, 0.35);
 }

 .header .search-bar input {
     flex: 1;
     background: transparent;
     border: none;
     padding: 8px 0;
     color: var(--white);
     font-size: 0.95rem;
     outline: none;
 }

 .header .search-bar input::placeholder {
     color: rgba(255, 255, 255, 0.7);
 }

 .header .search-bar button {
     background: transparent;
     border: none;
     color: var(--white);
     padding: 6px 4px;
     display: flex;
     align-items: center;
     justify-content: center;
     opacity: 0.8;
     transition: opacity 0.2s;
 }

 .header .search-bar button:hover {
     opacity: 1;
 }

 .header .search-bar button svg {
     fill: currentColor;
     width: 20px;
     height: 20px;
 }

 .header .header-actions {
     display: flex;
     align-items: center;
     gap: 12px;
     flex-shrink: 0;
 }

 .header .header-actions .font-btn {
     background: rgba(255, 255, 255, 0.15);
     color: var(--white);
     border-radius: 4px;
     padding: 4px 8px;
     font-weight: 600;
     font-size: 0.85rem;
     transition: background 0.2s;
 }

 .header .header-actions .font-btn:hover {
     background: rgba(255, 255, 255, 0.3);
 }

 .header .header-actions .action-btn {
     background: rgba(255, 255, 255, 0.15);
     border-radius: 50%;
     width: 36px;
     height: 36px;
     display: flex;
     align-items: center;
     justify-content: center;
     color: var(--white);
     transition: background 0.2s;
 }

 .header .header-actions .action-btn:hover {
     background: rgba(255, 255, 255, 0.3);
 }

 .header .header-actions .action-btn svg {
     fill: currentColor;
     width: 20px;
     height: 20px;
 }

 .header .header-actions .login-btn {
     background: var(--white);
     color: var(--primary-green);
     font-weight: 600;
     padding: 6px 18px;
     border-radius: 30px;
     font-size: 0.9rem;
     transition: background 0.2s, transform 0.2s;
 }

 .header .header-actions .login-btn:hover {
     background: #e6f0ea;
     transform: scale(1.02);
 }

 .header .hamburger-btn {
     display: none;
     background: transparent;
     color: var(--white);
     padding: 4px;
     border-radius: 4px;
     transition: background 0.2s;
 }

 .header .hamburger-btn:hover {
     background: rgba(255, 255, 255, 0.2);
 }

 .header .hamburger-btn svg {
     fill: currentColor;
     width: 28px;
     height: 28px;
 }

 /* ===== MAIN NAV ===== */
 .main-nav {
     background: var(--menu-green);
     height: var(--nav-height);
     display: flex;
     align-items: center;
     padding: 0 20px;
     box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
     flex-shrink: 0;
     overflow-x: auto;
     -webkit-overflow-scrolling: touch;
 }

 .main-nav ul {
     display: flex;
     gap: 2px;
     width: 100%;
     justify-content: center;
 }

 .main-nav ul li {
     display: flex;
 }

 .main-nav ul li a {
     color: rgba(255, 255, 255, 0.9);
     padding: 6px 20px;
     font-size: 0.95rem;
     font-weight: 500;
     position: relative;
     transition: color 0.2s;
     white-space: nowrap;
     border-bottom: 3px solid transparent;
     padding-bottom: calc(6px - 3px);
 }

 .main-nav ul li a::after {
     content: '';
     position: absolute;
     bottom: -3px;
     left: 50%;
     transform: translateX(-50%);
     width: 0;
     height: 3px;
     background: var(--white);
     transition: width 0.3s ease;
     border-radius: 2px 2px 0 0;
 }

 .main-nav ul li a:hover::after,
 .main-nav ul li a.active::after {
     width: 70%;
 }

 .main-nav ul li a:hover {
     color: var(--white);
 }

 /* ===== BREADCRUMB ===== */
 .breadcrumb {
     padding: 12px 24px;
     background: var(--white);
     font-size: 0.8rem;
     color: #666;
     border-bottom: 1px solid #e0e0e0;
     display: flex;
     align-items: center;
     gap: 6px;
     flex-wrap: wrap;
     flex-shrink: 0;
 }

 .breadcrumb span {
     color: #555;
 }

 .breadcrumb span:last-child {
     color: var(--dark-blue);
     font-weight: 600;
 }

 .breadcrumb .separator {
     color: #aaa;
 }

 /* ===== PAGE TITLE ===== */

 .page-title {
     text-align: left;
     padding: 28px 20px 12px;
     font-size: 1.9rem;
     font-weight: 700;
     color: var(--dark-blue);
     letter-spacing: -0.3px;
     flex-shrink: 0;
 }

 .page-subtitle {
     margin-top: 5px;
     margin-bottom: 25px;
     margin-left: 0;
     /* Garante que o bloco comece na borda esquerda */
     margin-right: auto;
     /* Empurra o espaço restante para a direita */
     padding-left: 1.5%;
     width: 80%;
     text-align: left !important;
     /* Alinha o texto dentro do bloco */
     letter-spacing: normal;
     vertical-align: baseline;
 }


 .card-video-text {
     display: flex;
     flex-direction: column;
     position: absolute;
     top: auto;
     bottom: 47px;
     left: 51px;
     z-index: 3;
     background: rgba(15, 23, 42, 0.75);
     backdrop-filter: blur(10px);
     -webkit-backdrop-filter: blur(10px);
     border-radius: 8px;
     padding: 16px 20px;
     width: auto;
     max-width: 550px;
     border: 1px solid rgba(255, 255, 255, 0.1);
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
     transition: all 0.3s ease;
 }

 .card-video-title {
     font-size: 1.35rem;
     font-weight: 700;
     color: #ffffff;
     letter-spacing: -0.3px;
     margin-bottom: 6px;
     line-height: 1.2;
 }

 .card-video-subtitle {
     font-size: 0.8rem;
     font-weight: 400;
     color: rgba(255, 255, 255, 0.85);
     letter-spacing: normal;
     line-height: 1.4;
 }

 .card-home {
     position: relative;
     width: 100%;
     height: 100vh;
     /* Ocupa 100% da altura da janela do navegador */
     overflow: hidden;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 /* Container do vídeo fixado ao fundo */
 .card-video {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     z-index: 1;
 }

 /* O segredo para o vídeo cobrir tudo sem distorcer */
 .card-video video {
     width: 100%;
     height: 100%;
     object-fit: cover;
     /* Corta proporcionalmente como um background-size: cover */
 }

 /* Efeito escurecido para o texto não sumir no vídeo claro */
 .card-video::after {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(0, 0, 0, 0.4);
     /* Camada preta com 40% de opacidade */
     z-index: 2;
 }

 /* Textos sobrepostos ao vídeo */
 .card-video-content {
     position: relative;
     z-index: 3;
     /* Fica acima do vídeo e da camada escura */
     text-align: center;
     color: #ffffff;
     max-width: 800px;
     padding: 0 20px;
 }

 /* Layout com múltiplos vídeos na página inicial */
 .home-videos-container {
     display: flex;
     flex-direction: column;
     gap: 32px;
     width: 100%;
 }

 .home-video-wrapper {
     position: relative;
     width: 100%;
     aspect-ratio: 16 / 9;
     border-radius: 12px;
     overflow: hidden;
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
     border: 1px solid rgba(0, 0, 0, 0.1);
 }

 .home-video-wrapper video {
     width: 100%;
     height: 100%;
     object-fit: cover;
     display: block;
 }

 .home-video-wrapper::after {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(0, 0, 0, 0.35);
     z-index: 2;
     pointer-events: none;
 }

 /* Posicionamento do texto dentro de cada wrapper de vídeo */
 .home-video-wrapper .card-video-text {
     position: absolute;
     bottom: 92px;
     left: 24px;
     z-index: 3;
     background: rgba(15, 23, 42, 0.75);
     backdrop-filter: blur(10px);
     -webkit-backdrop-filter: blur(10px);
     border-radius: 8px;
     padding: 16px 20px;
     width: auto;
     max-width: calc(100% - 48px);
     border: 1px solid rgba(255, 255, 255, 0.1);
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
     transition: all 0.3s ease;
 }




 /* ===== CARD ===== */
 .card-wrapper {
     display: flex;
     justify-content: center;
     padding: 16px 20px 40px;
     flex: 1;
 }

 .card {
     max-width: 1100px;
     width: 100%;
     background: var(--white);
     border-radius: 12px;
     box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
     padding: 32px 36px;
     transition: all 0.2s;
     min-height: 300px;
     display: flex;
     flex-direction: column;
 }

 /* Conteúdo da página inicial (grid) */
 .card-home {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 36px;
     height: 100%;
 }

 .card-left {
     /* display: flex;
     flex-direction: column; */
     width: 100%;
 }

 .image-placeholder {
     width: 100%;
     aspect-ratio: 4 / 3;
     /* background: linear-gradient(145deg, #e8f0fe, #d4e0f0); */
     background-image: url('../img/elis.png');
     background-size: cover;
     background-position: center;
     border-radius: 10px;
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     color: #5a6b7a;
     font-size: 1rem;
     font-weight: 500;
     border: 1px solid #dde6ef;
     box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.02);
     transition: transform 0.2s;
     padding: 16px;
     text-align: center;
 }

 .image-placeholder:hover {
     transform: scale(1.003);
 }

 .image-placeholder svg {
     width: 64px;
     height: 64px;
     fill: #7a8b9f;
     margin-bottom: 12px;
     opacity: 0.6;
 }

 .image-placeholder span {
     background: rgba(255, 255, 255, 0.5);
     padding: 6px 18px;
     border-radius: 20px;
     backdrop-filter: blur(2px);
     font-size: 0.95rem;
     color: #3a4a5a;
 }

 .card-right {
     display: flex;
     flex-direction: column;
     gap: 10px;
     justify-content: flex-start;
 }

 .card-right .report-btn {
     background: var(--primary-green);
     color: var(--white);
     padding: 12px 16px;
     border-radius: 6px;
     font-size: 0.95rem;
     font-weight: 500;
     text-align: center;
     transition: background 0.25s, transform 0.15s, box-shadow 0.2s;
     border: none;
     box-shadow: 0 2px 4px rgba(11, 139, 77, 0.15);
     width: 100%;
     cursor: pointer;
     letter-spacing: 0.2px;
 }

 .card-right .report-btn:hover {
     background: #057a42;
     transform: translateY(-1px);
     box-shadow: 0 4px 10px rgba(11, 139, 77, 0.25);
 }

 .card-right .report-btn:active {
     transform: translateY(1px);
     box-shadow: 0 1px 3px rgba(11, 139, 77, 0.2);
 }

 /* Placeholder para outras páginas */
 .page-placeholder {
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     flex: 1;
     text-align: center;
     color: #555;
     padding: 20px 0;
 }

 .page-placeholder svg {
     width: 72px;
     height: 72px;
     fill: #7a8b9f;
     margin-bottom: 16px;
     opacity: 0.5;
 }

 .page-placeholder h2 {
     color: var(--dark-blue);
     font-size: 1.8rem;
     font-weight: 600;
     margin-bottom: 8px;
 }

 .page-placeholder p {
     color: #777;
     font-size: 1rem;
 }

 /* ===== ACCESSIBILITY FLOAT ===== */
 .accessibility-float {
     position: fixed;
     right: 24px;
     bottom: 24px;
     background: #1a73e8;
     color: var(--white);
     width: 56px;
     height: 56px;
     border-radius: 50%;
     box-shadow: 0 4px 16px rgba(26, 115, 232, 0.35);
     display: flex;
     align-items: center;
     justify-content: center;
     transition: transform 0.25s ease, box-shadow 0.25s ease;
     z-index: 800;
     border: none;
 }

 .accessibility-float:hover {
     transform: scale(1.08);
     box-shadow: 0 6px 24px rgba(26, 115, 232, 0.45);
 }

 .accessibility-float svg {
     fill: currentColor;
     width: 28px;
     height: 28px;
 }

 /* ===== OVERLAY PARA MOBILE ===== */
 .sidebar-overlay {
     display: none;
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(0, 0, 0, 0.4);
     z-index: 999;
     opacity: 0;
     transition: opacity 0.3s ease;
 }

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

 /* ===== RESPONSIVIDADE ===== */
 @media (max-width: 1024px) {
     .card-home {
         grid-template-columns: 1fr;
         gap: 24px;
     }

     .image-placeholder {
         aspect-ratio: 16 / 9;
     }

     .card-right .report-btn {
         padding: 10px 14px;
         font-size: 0.9rem;
     }

     .header .search-bar {
         max-width: 300px;
     }

     .card-video-text {
         top: auto;
         bottom: 47px;
         left: 51px;
         max-width: calc(100% - 102px);
     }
 }

 @media (max-width: 768px) {
     :root {
         --sidebar-width: 280px;
         --sidebar-collapsed: 0px;
     }

     .sidebar {
         transform: translateX(-100%);
         transition: transform 0.3s ease, width 0s;
         width: var(--sidebar-width);
         box-shadow: 4px 0 20px rgba(0, 0, 0, 0.2);
     }

     .sidebar.open {
         transform: translateX(0);
     }

     .sidebar.collapsed {
         width: var(--sidebar-width);
         /* em mobile, collapsed não reduz, apenas esconde */
     }

     .sidebar.collapsed .sidebar-nav ul li a span,
     .sidebar.collapsed .sidebar-footer ul li a span {
         display: inline;
     }

     .sidebar.collapsed .sidebar-nav ul li a,
     .sidebar.collapsed .sidebar-footer ul li a {
         justify-content: flex-start;
         padding: 12px 18px;
     }

     .sidebar.collapsed .sidebar-nav ul li a svg,
     .sidebar.collapsed .sidebar-footer ul li a svg {
         margin-right: 14px;
     }

     .sidebar-overlay {
         display: block;
         pointer-events: none;
     }

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

     .main-content {
         margin-left: 0 !important;
     }

     .header .hamburger-btn {
         display: flex;
         align-items: center;
         justify-content: center;
     }

     .header .logo {
         font-size: 1.3rem;
     }

     .header .search-bar {
         max-width: 180px;
         padding: 0 10px;
     }

     .header .header-actions .action-btn {
         width: 32px;
         height: 32px;
     }

     .header .header-actions .login-btn {
         padding: 4px 12px;
         font-size: 0.8rem;
     }

     .main-nav ul {
         justify-content: flex-start;
         gap: 0;
     }

     .main-nav ul li a {
         padding: 6px 14px;
         font-size: 0.85rem;
     }

     .page-title {
         font-size: 1.4rem;
         padding: 20px 12px 8px;
     }

     .card {
         padding: 16px;
     }

     .card-home {
         gap: 20px;
     }

     .image-placeholder {
         aspect-ratio: 4 / 3;
     }

     .card-right .report-btn {
         font-size: 0.85rem;
         padding: 10px 12px;
     }

     .breadcrumb {
         padding: 10px 16px;
         font-size: 0.7rem;
     }

     .accessibility-float {
         width: 48px;
         height: 48px;
         right: 16px;
         bottom: 16px;
     }

     .accessibility-float svg {
         width: 24px;
         height: 24px;
     }

     .page-placeholder h2 {
         font-size: 1.4rem;
     }

     .card-video-text {
         top: auto;
         bottom: 28px;
         left: 28px;
         max-width: calc(100% - 56px);
         padding: 12px 16px;
     }

     .card-video-title {
         font-size: 1.2rem;
     }

     .card-video-subtitle {
         font-size: 0.75rem;
     }
 }

 @media (max-width: 480px) {
     .header {
         padding: 0 12px;
         gap: 8px;
         flex-wrap: nowrap;
     }

     .header .logo {
         font-size: 1.1rem;
     }

     .header .logo svg {
         width: 28px;
         height: 28px;
     }

     .header .search-bar {
         max-width: 120px;
         padding: 0 8px;
     }

     .header .search-bar input {
         font-size: 0.8rem;
         padding: 6px 0;
     }

     .header .header-actions .font-btn {
         font-size: 0.7rem;
         padding: 2px 6px;
     }

     .header .header-actions .action-btn {
         width: 28px;
         height: 28px;
     }

     .header .header-actions .login-btn {
         font-size: 0.7rem;
         padding: 3px 10px;
     }

     .main-nav ul li a {
         padding: 6px 10px;
         font-size: 0.75rem;
     }

     .page-title {
         font-size: 1.2rem;
     }

     .card {
         padding: 12px;
     }

     .card-right .report-btn {
         font-size: 0.8rem;
         padding: 8px 10px;
     }

     .card-video-text {
         top: auto;
         bottom: 20px;
         left: 20px;
         max-width: calc(100% - 40px);
         padding: 8px 12px;
     }

     .card-video-title {
         font-size: 1rem;
     }

     .card-video-subtitle {
         font-size: 0.7rem;
     }
 }

 /* ===== SCROLLBAR SIDEBAR ===== */
 .sidebar-nav::-webkit-scrollbar {
     width: 4px;
 }

 .sidebar-nav::-webkit-scrollbar-thumb {
     background: rgba(255, 255, 255, 0.3);
     border-radius: 4px;
 }

 .sidebar-nav::-webkit-scrollbar-track {
     background: transparent;
 }

 /* ===== SEARCH: BOTÃO LIMPAR ===== */
 .header .search-bar .clear-search-btn {
     display: none;
     padding: 4px;
 }

 .header .search-bar .clear-search-btn.visible {
     display: flex;
 }

 .header .search-bar .clear-search-btn svg {
     width: 16px;
     height: 16px;
 }

 /* ===== SEARCH: STATUS / HIGHLIGHT / NO-RESULTS ===== */
 .search-status {
     font-size: 0.9rem;
     color: #555;
     padding: 10px 4px 14px;
     border-bottom: 1px solid rgba(0, 0, 0, 0.08);
     margin-bottom: 12px;
 }

 .search-status .highlight {
     font-weight: 700;
     color: var(--primary-color, #1a4789);
 }

 .search-highlight {
     background: #ffeb3b;
     padding: 0 2px;
     border-radius: 2px;
 }

 .no-results {
     text-align: center;
     color: #888;
     padding: 24px 8px;
     font-size: 0.9rem;
 }