/* ============================================
   ESTILOS DO JORNAL WAZZIMAGIYGG
   ============================================ */

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

body {
    background-color: #e8e5df;
    font-family: 'Lato', sans-serif;
    color: #1a1a1a;
    line-height: 1.5;
}

/* ============================================
   COOKIE CONSENT BANNER
   ============================================ */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    color: white;
    padding: 20px;
    z-index: 99999;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.5);
    border-top: 2px solid #4a9eff;
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cookie-text h3 {
    margin-bottom: 8px;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
}

.cookie-text p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 14px;
}

.cookie-text p a {
    color: #4a9eff;
    text-decoration: underline;
    transition: color 0.3s;
}

.cookie-text p a:hover {
    color: #6db3ff;
}

.cookie-options {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 10px 0;
}

.cookie-options label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #ddd;
    cursor: pointer;
    padding: 6px 12px;
    border-radius: 8px;
    transition: background 0.3s;
}

.cookie-options label:hover {
    background: rgba(255, 255, 255, 0.05);
}

.cookie-options input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #4a9eff;
    flex-shrink: 0;
}

.cookie-options input[type="checkbox"]:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.cookie-options input[type="checkbox"]:disabled + span {
    opacity: 0.6;
}

.cookie-options span {
    font-size: 13px;
}

.cookie-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 5px;
}

.cookie-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

.cookie-btn.accept {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
    box-shadow: 0 2px 10px rgba(39, 174, 96, 0.3);
}

.cookie-btn.accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(39, 174, 96, 0.4);
}

.cookie-btn.reject {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    box-shadow: 0 2px 10px rgba(231, 76, 60, 0.3);
}

.cookie-btn.reject:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(231, 76, 60, 0.4);
}

.cookie-btn.customize {
    background: transparent;
    color: #ddd;
    border: 1px solid #555;
}

.cookie-btn.customize:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #888;
}

/* ============================================
   HEADER PADRONIZADO
   ============================================ */
.header {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    color: white;
    padding: 12px 24px;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.logo-area-header {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.logo-area-header img {
    height: 36px;
    border-radius: 8px;
}

.logo-area-header h1 {
    font-size: 1.1em;
    font-weight: 600;
}

.logo-area-header small {
    font-size: 0.65em;
    opacity: 0.7;
    display: block;
    font-weight: 300;
}

.user-info-header {
    display: flex;
    align-items: center;
    gap: 16px;
}

.user-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e94560, #ff6b6b);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1em;
    color: white;
    cursor: pointer;
    transition: transform 0.2s;
    overflow: hidden;
    flex-shrink: 0;
}

.user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-avatar:hover { transform: scale(1.05); }

.user-name {
    font-weight: 500;
    font-size: 0.85em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 120px;
}

.user-email {
    font-size: 0.7em;
    opacity: 0.7;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 150px;
}

.btn-logout {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.75em;
    transition: all 0.2s;
    flex-shrink: 0;
}

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

.btn-login {
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.25);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.75em;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

.btn-login:hover { background: rgba(255,255,255,0.25); }

.badge-admin {
    background: #e94560;
    color: white;
    font-size: 0.55em;
    padding: 2px 10px;
    border-radius: 12px;
    font-weight: 600;
    text-transform: uppercase;
    flex-shrink: 0;
}

.badge-banned {
    background: #dc3545;
    color: white;
    font-size: 0.55em;
    padding: 2px 10px;
    border-radius: 12px;
    font-weight: 600;
    text-transform: uppercase;
    flex-shrink: 0;
}

/* ============================================
   NOTIFICATION BELL
   ============================================ */
.notification-bell {
    position: relative;
    cursor: pointer;
    color: white;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    border-radius: 30px;
    transition: background 0.2s;
    flex-shrink: 0;
}

.notification-bell:hover {
    background: rgba(255,255,255,0.1);
}

.notification-bell .material-icons {
    font-size: 24px;
}

.notification-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: #e94560;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #1a1a2e;
}

.notification-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 340px;
    max-height: 350px;
    overflow-y: auto;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    display: none;
    z-index: 200;
}

.notification-dropdown.show {
    display: block;
}

.notification-dropdown-header {
    padding: 12px 16px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.notification-dropdown-header h3 {
    font-size: 13px;
    font-weight: 600;
    color: #1a1a2e;
}

.notification-dropdown-header button {
    background: none;
    border: none;
    color: #4a6cf7;
    cursor: pointer;
    font-size: 11px;
    font-weight: 500;
}

.notification-item {
    padding: 10px 16px;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.2s;
    cursor: pointer;
}

.notification-item:hover {
    background: #f8f9fa;
}

.notification-item.unread {
    background: #eef2ff;
    border-left: 3px solid #4a6cf7;
}

.notification-item .notif-title {
    font-weight: 600;
    font-size: 12px;
    color: #1a1a2e;
}

.notification-item .notif-message {
    font-size: 11px;
    color: #666;
    margin-top: 3px;
}

.notification-item .notif-time {
    font-size: 10px;
    color: #999;
    margin-top: 3px;
}

.notification-empty {
    padding: 20px;
    text-align: center;
    color: #999;
    font-size: 13px;
}

.notification-empty .material-icons {
    font-size: 36px;
    opacity: 0.4;
}

/* ============================================
   NEWSPAPER CONTAINER
   ============================================ */
.newspaper-container {
    max-width: 1400px;
    margin: 0 auto;
    background: #fffcf8;
    box-shadow: 0 0 30px rgba(0,0,0,0.15);
}

/* CABEÇALHO DO JORNAL */
.newspaper-header {
    border-bottom: 4px solid #c0392b;
    background: white;
    text-align: center;
    padding: 20px 20px 10px;
}

.newspaper-name {
    font-family: 'Playfair Display', serif;
    font-size: 68px;
    font-weight: 900;
    letter-spacing: -1px;
    color: #1a3c5e;
    text-transform: uppercase;
    margin-bottom: 5px;
    cursor: pointer;
}

.newspaper-name span {
    color: #c0392b;
}

.newspaper-motto {
    font-family: 'Merriweather', serif;
    font-size: 13px;
    color: #666;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    display: inline-block;
    padding: 6px 20px;
    margin-top: 8px;
}

.issue-info {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-top: 12px;
    padding-top: 8px;
    border-top: 1px solid #eee;
    font-size: 12px;
    color: #555;
    text-transform: uppercase;
    flex-wrap: wrap;
    gap: 10px;
}

.issue-date {
    font-weight: 600;
}

/* ============================================
   NAV MENU - CATEGORIAS ESTILIZADAS
   ============================================ */
.nav-menu {
    background: #1a3c5e;
    padding: 0;
    margin-top: 0;
    position: sticky;
    top: 0;
    z-index: 100;
    overflow-x: auto;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.nav-menu ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 4px;
    margin: 0;
    padding: 6px 12px;
    min-width: max-content;
}

.nav-menu li {
    border: none;
    border-radius: 8px;
    transition: all 0.2s ease;
    margin: 2px 0;
}

.nav-menu li:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-1px);
}

.nav-menu li:last-child {
    border-right: none;
}

.nav-menu a {
    display: block;
    padding: 8px 16px;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.25s ease;
    cursor: pointer;
    white-space: nowrap;
    border-radius: 6px;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #e94560, #c0392b);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-menu a:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-1px);
}

.nav-menu a:hover::after {
    width: 60%;
}

.nav-menu a.active {
    color: #ffffff;
    background: linear-gradient(135deg, #c0392b, #e74c3c);
    box-shadow: 0 2px 12px rgba(192, 57, 43, 0.35);
    transform: translateY(-1px);
}

.nav-menu a.active::after {
    width: 70%;
    background: rgba(255, 255, 255, 0.6);
}

.nav-menu a .cat-icon {
    margin-right: 4px;
    font-size: 13px;
}

/* Botão especial "NOVA MATÉRIA" */
.nav-menu a.admin-btn {
    background: linear-gradient(135deg, #c0392b, #e74c3c);
    color: white;
    font-weight: 700;
    box-shadow: 0 2px 10px rgba(192, 57, 43, 0.3);
    padding: 8px 20px;
}

.nav-menu a.admin-btn:hover {
    background: linear-gradient(135deg, #e74c3c, #ff6b6b);
    box-shadow: 0 4px 20px rgba(192, 57, 43, 0.5);
    transform: translateY(-2px);
}

.nav-menu a.admin-btn::after {
    display: none;
}

/* Botão ativo da categoria "TODOS" */
.nav-menu a[data-cat="todos"].active {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    box-shadow: 0 2px 12px rgba(44, 62, 80, 0.35);
}

/* ============================================
   NEWSPAPER GRID
   ============================================ */
.newspaper-grid {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 30px;
    padding: 30px;
}

.sidebar-left, .sidebar-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* ============================================
   ARTICLES
   ============================================ */
.article-card {
    background: white;
    border-bottom: 2px solid #e0dcd5;
    padding-bottom: 20px;
    margin-bottom: 20px;
    position: relative;
}

.article-card:last-child {
    border-bottom: none;
}

.article-tag {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: #c0392b;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.article-title {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 10px;
    color: #1a3c5e;
}

.article-title a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s;
    cursor: pointer;
}

.article-title a:hover {
    color: #c0392b;
}

.article-meta {
    font-size: 11px;
    color: #888;
    margin-bottom: 12px;
    text-transform: uppercase;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.article-meta i {
    margin-right: 4px;
}

.article-excerpt {
    font-family: 'Merriweather', serif;
    font-size: 14px;
    line-height: 1.55;
    color: #3a3a3a;
    margin-bottom: 12px;
}

.article-image {
    width: 100%;
    margin: 15px 0;
}

.article-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 4px;
}

.image-caption {
    font-size: 11px;
    color: #777;
    margin-top: 5px;
    font-style: italic;
}

/* Main article */
.main-article {
    background: white;
}

.main-article .article-tag {
    font-size: 14px;
}

.main-article .article-title {
    font-size: 36px;
}

.main-article .article-excerpt {
    font-size: 17px;
    line-height: 1.6;
}

/* Read More */
.read-more {
    display: inline-block;
    margin-top: 10px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: #c0392b;
    text-decoration: none;
    letter-spacing: 0.5px;
    cursor: pointer;
}

.read-more:hover {
    text-decoration: underline;
}

/* Admin actions */
.admin-actions {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    gap: 5px;
}

.admin-btn {
    background: #1a3c5e;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 4px 8px;
    font-size: 10px;
    cursor: pointer;
    transition: all 0.2s;
}

.admin-btn:hover {
    background: #c0392b;
}

.admin-btn.delete {
    background: #c0392b;
}

.admin-btn.delete:hover {
    background: #a93226;
}

/* ============================================
   MODALS
   ============================================ */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.modal.show {
    display: flex;
}

.modal-content {
    background: white;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    padding: 30px;
    text-align: center;
}

.modal-content h2 {
    color: #1a3c5e;
    margin-bottom: 20px;
}

.modal-content p {
    margin-bottom: 20px;
    color: #666;
}

.form-group {
    margin-bottom: 15px;
    text-align: left;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 13px;
    color: #333;
    margin-bottom: 5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    font-family: 'Lato', sans-serif;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #1a3c5e;
    outline: none;
}

.form-group textarea {
    min-height: 80px;
    resize: vertical;
}

.share-url-container {
    background: #f0f0f0;
    padding: 12px;
    border-radius: 8px;
    margin: 15px 0;
    word-break: break-all;
    font-family: monospace;
    font-size: 12px;
}

.btn-close {
    background: #666;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 15px;
    width: 100%;
}

.btn-primary {
    background: #1a3c5e;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-primary:hover {
    background: #2c5f7a;
}

.btn-warning {
    background: #f39c12;
    color: white;
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    transition: background 0.2s;
}

.btn-warning:hover {
    background: #e67e22;
}

.btn-danger {
    background: #c0392b;
    color: white;
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    transition: background 0.2s;
}

.btn-danger:hover {
    background: #a93226;
}

.btn-share {
    background: #1a3c5e;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    transition: background 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-share:hover {
    background: #2c5f7a;
}

.btn-outline {
    background: transparent;
    border: 2px solid #1a3c5e;
    color: #1a3c5e;
    padding: 8px 20px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s;
}

.btn-outline:hover {
    background: #1a3c5e;
    color: white;
}

/* ============================================
   LOADING
   ============================================ */
.loading {
    text-align: center;
    padding: 40px;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #eee;
    border-top-color: #c0392b;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 15px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ============================================
   WEATHER WIDGET
   ============================================ */
.weather-widget {
    background: linear-gradient(135deg, #1a3c5e 0%, #2c5f7a 100%);
    border-radius: 12px;
    padding: 20px;
    color: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    margin-bottom: 20px;
}

.weather-widget .weather-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding-bottom: 10px;
}

.weather-widget .weather-header h3 {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.weather-widget .weather-header i {
    font-size: 20px;
    color: #f1c40f;
}

.weather-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
}

.weather-main .weather-icon {
    font-size: 50px;
    margin-right: 15px;
}

.weather-main .weather-temp {
    font-size: 36px;
    font-weight: 900;
}

.weather-main .weather-temp sup {
    font-size: 18px;
    font-weight: 400;
}

.weather-main .weather-desc {
    font-size: 14px;
    opacity: 0.9;
    text-transform: capitalize;
}

.weather-details {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.weather-details .detail-item {
    text-align: center;
    font-size: 12px;
}

.weather-details .detail-item i {
    font-size: 18px;
    display: block;
    margin-bottom: 4px;
    opacity: 0.8;
}

.weather-details .detail-item .value {
    font-weight: 700;
    font-size: 14px;
}

.weather-details .detail-item .label {
    font-size: 10px;
    opacity: 0.7;
    text-transform: uppercase;
}

.weather-update {
    text-align: right;
    font-size: 10px;
    opacity: 0.6;
    margin-top: 12px;
    padding-top: 8px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.weather-loading {
    text-align: center;
    padding: 20px 0;
}

.weather-loading .spinner-small {
    width: 24px;
    height: 24px;
    border: 3px solid rgba(255,255,255,0.2);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 10px;
}

.weather-error {
    text-align: center;
    padding: 15px;
    color: #e74c3c;
    font-size: 13px;
}

.weather-error i {
    font-size: 24px;
    display: block;
    margin-bottom: 8px;
}

/* ============================================
   TOAST
   ============================================ */
.toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: #333;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    z-index: 2000;
    display: none;
    animation: fadeInOut 3s ease;
}

@keyframes fadeInOut {
    0% { opacity: 0; transform: translateX(-50%) translateY(20px); }
    15% { opacity: 1; transform: translateX(-50%) translateY(0); }
    85% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(-20px); }
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: #1a1a1a;
    color: #aaa;
    text-align: center;
    padding: 25px 20px;
    font-size: 12px;
    border-top: 3px solid #c0392b;
    margin-top: 30px;
}

.site-footer a {
    color: #ddd;
    text-decoration: none;
}

.site-footer a:hover {
    color: #c0392b;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 15px;
}

.footer-link {
    color: #ddd !important;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-link:hover {
    color: #c0392b !important;
}

.footer-link.highlight {
    color: #ffb347 !important;
}

.footer-link.highlight:hover {
    color: #ff9500 !important;
}

.footer-divider {
    color: #444;
    margin: 0 4px;
}

.footer-copyright {
    color: #666;
    font-size: 10px;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #222;
}

/* ============================================
   BANNED OVERLAY
   ============================================ */
.banned-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    flex-direction: column;
    padding: 20px;
}

.banned-overlay.show {
    display: flex;
}

.banned-box {
    background: #1a1a1a;
    border: 2px solid #c0392b;
    border-radius: 16px;
    padding: 50px;
    max-width: 500px;
    width: 100%;
    text-align: center;
    color: white;
}

.banned-box .icon {
    font-size: 80px;
    margin-bottom: 20px;
}

.banned-box h2 {
    color: #e74c3c;
    margin-bottom: 15px;
}

.banned-box p {
    color: #aaa;
    margin-bottom: 20px;
    line-height: 1.6;
}

.banned-box .btn-logout-banned {
    background: #c0392b;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: background 0.3s;
}

.banned-box .btn-logout-banned:hover {
    background: #e74c3c;
}

.banned-box .ban-details {
    background: #2a2a2a;
    padding: 15px;
    border-radius: 8px;
    margin: 15px 0;
    font-size: 13px;
    color: #888;
}

/* ============================================
   RESPONSIVIDADE
   ============================================ */
@media (max-width: 992px) {
    .newspaper-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px;
    }
    .newspaper-name {
        font-size: 48px;
    }
    .main-article .article-title {
        font-size: 28px;
    }
    .weather-details {
        grid-template-columns: 1fr 1fr 1fr;
    }
    .header-content {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }
    .user-info-header {
        justify-content: space-between;
    }
    .notification-dropdown {
        width: 300px;
        right: -20px;
    }
}

@media (max-width: 768px) {
    .issue-info {
        flex-direction: column;
        align-items: center;
    }
    .newspaper-name {
        font-size: 36px;
    }
    .nav-menu ul {
        padding: 4px 8px;
        gap: 3px;
    }
    .nav-menu a {
        padding: 6px 12px;
        font-size: 10px;
        letter-spacing: 0.3px;
    }
    .nav-menu a::after {
        bottom: 2px;
        height: 1.5px;
    }
    .nav-menu a .cat-icon {
        font-size: 11px;
    }
    .nav-menu a.admin-btn {
        padding: 6px 14px;
        font-size: 10px;
    }
    .weather-main {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    .weather-main .weather-temp {
        font-size: 28px;
    }
    .footer-links {
        gap: 12px;
    }
    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }
    .cookie-btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    .cookie-content {
        gap: 12px;
    }
    .cookie-text h3 {
        font-size: 16px;
    }
    .cookie-text p {
        font-size: 13px;
    }
    .cookie-options {
        flex-direction: column;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .user-name, .user-email { display: none; }
    .notification-dropdown {
        width: calc(100vw - 40px);
        right: -10px;
    }
    .footer-links {
        flex-direction: column;
        gap: 8px;
    }
    .footer-divider {
        display: none;
    }
    .nav-menu ul {
        padding: 3px 4px;
        gap: 2px;
    }
    .nav-menu a {
        padding: 5px 9px;
        font-size: 9px;
        letter-spacing: 0.2px;
        border-radius: 4px;
    }
    .nav-menu a .cat-icon {
        font-size: 10px;
        margin-right: 2px;
    }
    .nav-menu a.admin-btn {
        padding: 5px 10px;
        font-size: 9px;
    }
    .banned-box {
        padding: 30px 20px;
    }
}
