/* Estilos Globais */
:root {
    --primary-color: #800000; /* Vermelho Escuro - Cor Principal */
    --secondary-color: #FFD700; /* Amarelo Della Via */
    --dark-red: #6B0000; /* Vermelho Mais Escuro */
    --light-red: #A52A2A; /* Vermelho Claro */
    --text-color: #2c3e50;
    --text-light: #7f8c8d;
    --bg-color: #f8f9fa;
    --white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 2px 8px rgba(139, 0, 0, 0.1);
    --shadow-lg: 0 8px 16px rgba(139, 0, 0, 0.15);
}

.sidebar.active ~ .sidebar-toggle,
.sidebar.active + .sidebar-toggle,
.sidebar.active .sidebar-toggle {
    display: none !important;
}


body:has(.sidebar.active) .sidebar-toggle {
    display: none !important;
}

.jornal-wrapper * {
    box-sizing: border-box;
}

.jornal-wrapper {
    font-family: 'Segoe UI', Roboto, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    width: 100%
}

.sidebar {
    width: var(--sidebar-width);
    background: linear-gradient(135deg, #800000 0%, #6e0303 50%, #000000 100%);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    box-shadow: 4px 0 20px rgba(128, 0, 0, 0.2);
    position: fixed;
    height: 100vh;
    left: calc(-1 * var(--sidebar-width)); /* Começa escondida */
    top: 0;
    z-index: 1000;
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}

.sidebar.active {
    left: 0;
}

.sidebar-header {
    padding: 2rem 1.5rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.sidebar-logo img {
    width: 100%;
    max-width: 200px;
    height: auto;
    filter: brightness(1.1);
}

.sidebar-nav {
    flex: 1;
    padding: 1rem 0;
}

.sidebar-nav ul {
    list-style: none;
}

.sidebar-nav a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    font-weight: 500;
}

.sidebar-nav a:hover, .sidebar-nav a.active {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-left-color: var(--secondary-color);
}

.sidebar-nav a.active {
    color: var(--secondary-color);
}

.sidebar-nav-icon {
    font-size: 1.3rem;
}

/* BOTÃO DE SETA (TOGGLE) */
.sidebar-toggle {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-color);
    color: white;
    border: none;
    width: 30px;
    height: 60px;
    border-radius: 0 30px 30px 0;
    cursor: pointer;
    z-index: 1001;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 2px 0 10px rgba(0,0,0,0.2);
}

.newspaper-container {
    max-width: 100%;
    margin: 0 auto;
    background-color: var(--white);
    box-shadow: var(--shadow-lg);
    transition: margin-left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Cabeçalho Moderno */
.newspaper-header {
    width: 100%;
    padding: 60px 40px;
    background: linear-gradient(135deg, #800000 0%, #6e0303 50%, #000000 100%);
    color: var(--white);
    padding: 50px 40px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow-x: hidden; 
}

.newspaper-header::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: rgba(255, 204, 0, 0.15);
    border-radius: 50%;
    transform: translate(50%, -50%);
}

.newspaper-header::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 204, 0, 0.08);
    border-radius: 50%;
}

.header-content {
     flex-grow: 1;
}

.newspaper-header h1 {
    font-size: 3.5em;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.tagline {
    font-size: 1.1em;
    font-weight: 300;
    letter-spacing: 1px;
    opacity: 0.95;
}

.header-accent {
    height: 4px;
    background: linear-gradient(to right, var(--secondary-color), var(--primary-color));
    margin-top: 20px;
}

/* Seções e Layout */
.newspaper-grid {
    padding: 40px;
}

.section-header {
    margin-bottom: 25px;
}

.section-header.full-width {
    text-align: center;
}

.section-title {
    font-size: 1.5em;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.title-underline {
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    width: 60px;
    border-radius: 2px;
}

.section-header.full-width .title-underline {
    margin: 0 auto;
}

/* Grid em Linhas e Colunas */
.row {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.column {
    flex: 1;
    min-width: 300px;
}

/* Novidades */
.news-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background: #faf5f5;
    border-radius: 8px;
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

.news-item:hover {
    background: #f5f0f0;
    transform: translateX(5px);
    box-shadow: var(--shadow);
}

.news-icon {
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-color), var(--light-red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3em;
}

.news-content h3 {
    margin: 0 0 5px 0;
    font-size: 1.05em;
    color: var(--primary-color);
}

.news-content p {
    margin: 0;
    font-size: 0.9em;
    color: var(--text-light);
    line-height: 1.5;
}

/* Avaliações Google */
.review-card {
    background: #fafbfc;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.review-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.stars {
    color: #f39c12;
    font-size: 0.95em;
}

.location {
    font-size: 0.75em;
    background: var(--primary-color);
    color: var(--white);
    padding: 3px 8px;
    border-radius: 12px;
    font-weight: 600;
}

.review-card p {
    margin: 8px 0;
    font-size: 0.9em;
    color: var(--text-color);
    font-style: italic;
}

.reviewer {
    display: block;
    font-size: 0.8em;
    color: var(--text-light);
    text-align: right;
    margin-top: 8px;
}

/* Funcionário Destaque */
.highlight-section {
    background: linear-gradient(135deg, #faf5f5 0%, #f5f0f0 100%);
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 40px;
    border: 2px solid var(--primary-color);
}

.highlight-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.highlight-image {
    position: relative;
    flex-shrink: 0;
}

.highlight-image img {
    width: 220px;
    height: 220px;
    object-fit: cover;
    border-radius: 50%;
    border: 6px solid var(--secondary-color);
    box-shadow: var(--shadow-lg);
}

.image-badge {
    position: absolute;
    top: -15px;
    right: -15px;
    background: var(--primary-color);
    color: var(--white);
    padding: 10px 15px;
    border-radius: 25px;
    font-size: 0.75em;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: var(--shadow-lg);
}

.highlight-info h3 {
    font-size: 2.2em;
    color: var(--primary-color);
    margin-bottom: 5px;
    font-weight: 700;
}

.position {
    color: var(--light-red);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.05em;
}

.info-badges {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.badge {
    background: var(--white);
    padding: 15px 18px;
    border-radius: 8px;
    text-align: center;
    border: 2px solid var(--primary-color);
    min-width: 90px;
    transition: all 0.3s ease;
}

.badge:hover {
    background: var(--primary-color);
    color: var(--white);
}

.badge:hover .badge-number {
    color: var(--secondary-color);
}

.badge-number {
    display: block;
    font-size: 1.8em;
    font-weight: 700;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.badge-label {
    display: block;
    font-size: 0.7em;
    color: var(--text-light);
    margin-top: 5px;
    font-weight: 600;
}

.motivation-box {
    background: var(--white);
    padding: 18px;
    border-radius: 8px;
    border-left: 5px solid var(--primary-color);
    box-shadow: var(--shadow);
}

.motivation-label {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1em;
}

.motivation-text {
    font-style: italic;
    color: var(--text-color);
    line-height: 1.8;
}

/* Novos Funcionários */
.intro-text {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 0.95em;
}

.hires-list {
    list-style: none;
}

.hire-card {
    background: var(--white);
    border: 2px solid var(--border-color);
    padding: 18px;
    margin-bottom: 12px;
    border-radius: 8px;
    position: relative;
    transition: all 0.3s ease;
}

.hire-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow);
    transform: translateX(8px);
}

.hire-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--primary-color);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 12px;
    font-size: 0.65em;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.hire-card strong {
    display: block;
    color: var(--primary-color);
    margin-bottom: 5px;
    font-size: 1.05em;
}

.hire-card span {
    display: block;
    font-size: 0.85em;
    color: var(--text-light);
}

.location-info {
    margin-top: 8px;
    color: var(--primary-color);
    font-weight: 600;
}

/* Crônica */
.chronicle {
    background: var(--white);
    padding: 22px;
    border-radius: 8px;
    border: 2px solid var(--border-color);
    border-top: 5px solid var(--primary-color);
    transition: all 0.3s ease;
}

.chronicle:hover {
    box-shadow: var(--shadow);
}

.chronicle h3 {
    margin-top: 0;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-size: 1.3em;
}

.chronicle p {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 12px;
}

.author {
    text-align: right;
    font-weight: 600;
    color: var(--primary-color);
}

/* INSTAGRAM SECTION */
.instagram-section {
    margin-bottom: 4rem;
}

.instagram-content {
    margin-top: 1.5rem;
}

.instagram-link {
    display: block;
    text-decoration: none;
}

.instagram-placeholder {
    background: linear-gradient(135deg, rgba(128, 0, 0, 0.1) 0%, rgba(110, 3, 3, 0.05) 100%);
    border: 2px dashed #800000;
    border-radius: 0.75rem;
    padding: 3rem;
    text-align: center;
    transition: all 0.3s ease;
}

.card-hover:hover .instagram-placeholder {
    background: linear-gradient(135deg, rgba(128, 0, 0, 0.2) 0%, rgba(110, 3, 3, 0.1) 100%);
    border-style: solid;
}

.instagram-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.instagram-placeholder p {
    color: #800000;
    font-weight: 600;
}

/* FOOTER */
.footer {
    background: linear-gradient(135deg, #800000 0%, #6e0303 50%, #000000 100%);
    color: #ffffff;
    padding: 2rem;
    text-align: center;
    margin-top: 4rem;
    border-top: 3px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
}

.footer p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.footer p:last-child {
    margin-bottom: 0;
}

/*Tabela */
        .table-container {
            overflow-x: auto;
            margin-top: 20px;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.05);
        }

        .google-reviews-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.9rem;
        }

        .google-reviews-table th {
            background-color: var(--primary-red);
            color: white;
            padding: 6px 10px;
            text-align: left;
            text-transform: uppercase;
        }
        
        .google-reviews-table th:nth-child(1) { background-color: #990000;}
        .google-reviews-table th:nth-child(2) { background-color: #ffbb00; color: #333;}
        .google-reviews-table th:nth-child(3) { background-color: #990000;}
        .google-reviews-table th:nth-child(4) { background-color: #ffbb00; color: #333;}
        .google-reviews-table th:nth-child(5) { background-color: #990000;}
        
        .google-reviews-table td {
            padding: 4px 10px;
            border-bottom: 1px solid #333;
        }

        .google-reviews-table tr:nth-child(even) {
            background-color: #f0f0f0;
        }

        .google-reviews-table tr:hover {
            background-color: #f9f9f9;
        }

        .text-center { text-align: center !important; }
        .font-bold { font-weight: bold; }

        /* Layout Grid */
        .newspaper-grid {
            display: grid;
            gap: 30px;
        }

        .row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
        }

        @media (max-width: 992px) {
            .row { grid-template-columns: 1fr; }
        }

/* Responsividade */
@media (max-width: 768px) {
    .newspaper-container {
        box-shadow: none;
    }

    .newspaper-grid {
        padding: 20px;
    }

    .newspaper-header {
        padding: 30px 20px;
    }

    .newspaper-header h1 {
        font-size: 2.2em;
    }

    .row {
        flex-direction: column;
        gap: 30px;
    }

    .highlight-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .highlight-image img {
        width: 180px;
        height: 180px;
    }

    .info-badges {
        justify-content: center;
    }

    .section-title {
        font-size: 1.3em;
    }

    .newspaper-header h1 {
        letter-spacing: 0;
    }
}

/* Estilos base para as novidades com imagens */
        .news-item {
            display: flex;
            gap: 15px;
            margin-bottom: 25px;
            padding: 15px;
            background: #fff;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s ease;
            align-items: flex-start;
        }

        .news-item:hover {
            transform: translateY(-5px);
        }

        .news-image-container {
            flex-shrink: 0;
            width: 360px;
            height: 300px;
            border-radius: 10px;
            overflow: hidden;
            position: relative;
            background: #f0f0f0;
        }

        .news-image-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .news-icon-overlay {
            position: absolute;
            top: 8px;
            left: 8px;
            background: rgba(255, 255, 255, 0.9);
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #e30613; /* Cor Della Via */
            font-size: 14px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

        .news-content {
            flex-grow: 1;
        }

        .news-content h3 {
            margin: 0 0 8px 0;
            color: #333;
            font-size: 1.1rem;
        }

        .news-content p {
            margin: 0;
            color: #666;
            font-size: 0.95rem;
            line-height: 1.5;
        }

        /* Responsividade para telas menores */
        @media (max-width: 480px) {
            .news-item {
                flex-direction: column;
            }
            .news-image-container {
                width: 100%;
                height: 180px;
            }
        }

        .news-subtitle {
        font-size: 1.2em;
        color: var(--light-red); /* Usando a variável de vermelho claro do seu CSS */
        margin-top: 15px;
        margin-bottom: 20px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .news-subtitle::after {
        content: '';
        flex: 1;
        height: 1px;
        background: rgba(165, 42, 42, 0.2); /* Linha sutil para separar */
    }


.google-reviews-table td:first-child {
    white-space: nowrap;  
}

.google-reviews-table td {
    vertical-align: middle;
}

.table-container {
    overflow-x: auto;
    width: 100%;
    -webkit-overflow-scrolling: touch;
}

.page-template-jornal .container,
.page-template-jornal .site,
.page-template-jornal .site-content,
.page-template-jornal .content-area,
.page-template-jornal #page {
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

html, body {
    margin: 0 !important;
    padding: 0 !important;
}

/* ==========================================
   ESTILOS DA SIDEBAR RETRÁTIL
   ========================================== */

/* Variáveis de Cores */
:root {
  --sidebar-bg: #8B0000;
  --sidebar-text: #ffffff;
  --sidebar-hover: #a00000;
  --sidebar-border: #6b0000;
  --overlay-bg: rgba(0, 0, 0, 0.5);
  --transition-speed: 0.3s;
}

/* ==========================================
   SIDEBAR PRINCIPAL
   ========================================== */

.sidebar {
  position: fixed;
  left: 0;
  top: 0;
  width: 280px;
  height: 100vh;
  background: linear-gradient(135deg, #8B0000 0%, #a00000 100%);
  color: var(--sidebar-text);
  z-index: 999;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform var(--transition-speed) ease-in-out;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3);
}

/* Sidebar Aberta */
.sidebar.active {
  transform: translateX(0);
}

/* ==========================================
   CABEÇALHO DA SIDEBAR
   ========================================== */

.sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 2px solid var(--sidebar-border);
  background: rgba(0, 0, 0, 0.2);
}

.sidebar-header h2 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.sidebar-close {
  background: none;
  border: none;
  color: var(--sidebar-text);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-speed);
}

.sidebar-close:hover {
  transform: scale(1.2);
}

/* ==========================================
   NAVEGAÇÃO
   ========================================== */

.sidebar-nav {
  padding: 0;
  margin: 0;
}

.nav-list {
  list-style: none;
  padding: 10px 0;
  margin: 0;
}

.nav-item {
  margin: 0;
  padding: 0;
}

.nav-link {
  display: flex;
  align-items: center;
  padding: 15px 20px;
  color: var(--sidebar-text);
  text-decoration: none;
  transition: all var(--transition-speed) ease;
  border-left: 4px solid transparent;
  font-weight: 500;
  font-size: 1rem;
}

.nav-link:hover {
  background: var(--sidebar-hover);
  border-left-color: #ffeb3b;
  padding-left: 25px;
}

.nav-link:active {
  background: rgba(0, 0, 0, 0.3);
  border-left-color: #fff;
}

/* Ícones da Navegação */
.nav-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  margin-right: 15px;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.nav-text {
  flex-grow: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ==========================================
   RODAPÉ DA SIDEBAR
   ========================================== */

.sidebar-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 15px 20px;
  border-top: 2px solid var(--sidebar-border);
  background: rgba(0, 0, 0, 0.2);
  text-align: center;
}

.sidebar-footer-text {
  margin: 0;
  font-size: 0.85rem;
  opacity: 0.9;
}

/* ==========================================
   BOTÃO DE TOGGLE (SETA)
   ========================================== */

.sidebar-toggle {
    position: absolute; /* Posicionamento livre dentro do header */
    left: 25px;         /* Distância da esquerda */
    top: 50%;           /* Alinhamento vertical ao centro */
    transform: translateY(-50%);
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;      /* Garante que fique acima de outros elementos */
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 44px;
    height: 44px;
    box-sizing: border-box;
}

.sidebar-toggle:hover {
  background: #a00000;
  width: 45px; /* Aumenta levemente ao passar o mouse */
  box-shadow: 4px 0 12px rgba(0, 0, 0, 0.4);
}

.sidebar-toggle:active {
  background: #700000;
}

.sidebar.active ~ .sidebar-toggle {
  transform: rotate(180deg);
}

/* ==========================================
   OVERLAY (Fundo Escuro)
   ========================================== */

.sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--overlay-bg);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-speed), visibility var(--transition-speed);
}

.sidebar.active ~ .sidebar-overlay {
  opacity: 1;
  visibility: visible;
}

/* ==========================================
   RESPONSIVIDADE
   ========================================== */

/* Tablets e Telas Pequenas */
@media (max-width: 768px) {
  .sidebar {
    width: 250px;
  }

  .sidebar-toggle {
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
  }

  .nav-link {
    padding: 12px 15px;
  }

  .nav-icon {
    width: 28px;
    height: 28px;
    margin-right: 12px;
  }
}

/* Celulares */
@media (max-width: 480px) {
  .sidebar {
    width: 100%;
    max-width: 280px;
  }

  .sidebar-header h2 {
    font-size: 1.3rem;
  }

  .nav-link {
    padding: 10px 15px;
    font-size: 0.95rem;
  }

  .nav-icon {
    width: 25px;
    height: 25px;
    margin-right: 10px;
    font-size: 1.1rem;
  }
}

/* ==========================================
   SCROLL NA SIDEBAR
   ========================================== */

.sidebar::-webkit-scrollbar {
  width: 8px;
}

.sidebar::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
}

.sidebar::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 4px;
}

.sidebar::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.5);
}

/* ==========================================
   ANIMAÇÕES
   ========================================== */

@keyframes slideIn {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}

@keyframes slideOut {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

/* Animação de entrada suave */
.sidebar.active {
  animation: slideIn var(--transition-speed) ease-in-out;
}

.hamburger-icon span {
    display: block;
    width: 28px;
    height: 3px;
    background-color: var(--white); /* Cor branca para as listras */
    border-radius: 3px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hamburger-icon span:nth-child(2) {
    margin: 5px 0;
}

/* Animação para transformar em "X" quando o menu está ativo */
.sidebar.active ~ .jornal-wrapper .sidebar-toggle .hamburger-icon span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.sidebar.active ~ .jornal-wrapper .sidebar-toggle .hamburger-icon span:nth-child(2) {
    opacity: 0;
}

.sidebar.active ~ .jornal-wrapper .sidebar-toggle .hamburger-icon span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}
