﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿/*
Theme Name: Sevo Theme
Description: Tema personalizado para o sistema Sevo - Sistema de Eventos e OrganizaÃ§Ãµes
Version: 1.0.0
Author: Sevo Team
Text Domain: sevo-theme
Domain Path: /languages
*/

/* Reset bÃ¡sico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

/* Container principal */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, #87ceeb 100%);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 1rem 0;
}

.site-title {
    font-size: 2rem;
    font-weight: 700;
    color: #2563eb;
    text-decoration: none;
}

/* Main content */
main {
    padding: 2rem 0;
    min-height: 60vh;
}

/* Footer */
footer {
    background: #1f2937;
    color: #fff;
    text-align: center;
    padding: 2rem 0;
    margin-top: auto;
}

/* === LAYOUT PRINCIPAL === */
.site {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.site-content {
    flex: 1;
}

/* === HEADER === */
.site-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, #87ceeb 100%);
}

.site-header .container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 0.5rem 20px;
    min-height: auto;
    gap: 1rem;
}

.site-branding {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-right: auto;
}

.site-logo {
    flex-shrink: 0;
}

.site-logo img {
    max-height: 2rem; /* Altura baseada no tamanho do título */
    width: auto;
    display: block;
}

.site-title {
    font-size: 2rem;
    font-weight: 700;
    color: #2563eb;
    text-decoration: none;
    margin: 0;
    line-height: 1.2;
}

.site-description {
    color: #6b7280;
    font-size: 0.875rem;
    margin: 0;
}

/* === NAVEGAÃ‡ÃƒO === */
.main-navigation {
    position: relative;
    margin-right: 5px; /* Margem de 5px da área do usuário */
}

.menu-toggle {
    display: none;
    background: none;
    border: 2px solid #e5e7eb;
    border-radius: 6px;
    padding: 0.5rem;
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    transition: all 0.3s ease;
}

.menu-toggle:hover {
    border-color: #2563eb;
    background: #f8fafc;
}

.menu-toggle-icon {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.menu-toggle-icon span {
    width: 20px;
    height: 2px;
    background: #374151;
    transition: all 0.3s ease;
}

.menu-toggle-text {
    font-size: 0.75rem;
    color: #6b7280;
    margin-top: 0.25rem;
}

.primary-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
}

.primary-menu a {
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
    position: relative;
}

.primary-menu a:hover,
.primary-menu a:focus {
    color: #2563eb;
}

.primary-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #2563eb;
    transition: width 0.3s ease;
}

.primary-menu a:hover::after,
.primary-menu a:focus::after {
    width: 100%;
}

.primary-menu .current-menu-item > a,
.primary-menu .current-menu-ancestor > a {
    color: #2563eb;
    font-weight: 600;
}

.primary-menu .current-menu-item > a::after,
.primary-menu .current-menu-ancestor > a::after {
    width: 100%;
}

/* === USER PROFILE SECTION === */
.user-profile-section {
    display: flex;
    align-items: center;
    margin-left: 1rem;
}

.user-profile-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    transition: background-color 0.3s ease;
    position: relative;
    font-size: 0.8rem;
}

.user-profile-info:hover {
    background-color: #f8fafc;
}

.user-avatar {
    flex-shrink: 0;
}

.user-avatar .avatar-img {
    border-radius: 50%;
    border: 1px solid #e5e7eb;
    transition: border-color 0.3s ease;
    width: 24px;
    height: 24px;
}

.user-profile-info:hover .user-avatar .avatar-img {
    border-color: #2563eb;
}

.user-details {
    display: flex;
    flex-direction: column;
}

.user-name {
    font-weight: 500;
    color: #374151;
    font-size: 0.8rem;
    line-height: 1.1;
}

.user-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 0.25rem 0;
    min-width: 100px;
    z-index: 1000;
    margin-top: 0.25rem;
}

.user-profile-info:hover .user-menu {
    display: block;
}

.user-menu-link {
    display: block;
    padding: 0.375rem 0.75rem;
    color: #374151;
    text-decoration: none;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.user-menu-link:hover {
    background-color: #f3f4f6;
    color: #2563eb;
}

.user-menu-link.logout:hover {
    background-color: #fef2f2;
    color: #dc2626;
}

.login-section {
    display: flex;
    align-items: center;
}

.login-link {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 0.75rem;
    background: #6b7280;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 400;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.login-link:hover {
    background: #374151;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(107, 114, 128, 0.3);
}

.login-icon {
    display: flex;
    align-items: center;
}

.login-icon svg {
    width: 16px;
    height: 16px;
}

/* === CONTEÃšDO === */
.posts-container {
    display: grid;
    gap: 2rem;
}

.post-item {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.post-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.entry-header {
    margin-bottom: 1.5rem;
}

.entry-title {
    margin: 0 0 1rem 0;
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.3;
}

.entry-title a {
    color: #1f2937;
    text-decoration: none;
    transition: color 0.3s ease;
}

.entry-title a:hover {
    color: #2563eb;
}

.entry-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.875rem;
    color: #6b7280;
}

.entry-content {
    line-height: 1.7;
    color: #374151;
}

.entry-content p {
    margin-bottom: 1rem;
}

.entry-footer {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #f3f4f6;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: #1d4ed8;
    transform: translateX(4px);
}

.read-more::after {
    content: 'â†’';
    transition: transform 0.3s ease;
}

.read-more:hover::after {
    transform: translateX(4px);
}

/* === PAGINAÃ‡ÃƒO === */
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin: 3rem 0;
}

.page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 1rem;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.page-numbers:hover,
.page-numbers.current {
    background: #2563eb;
    border-color: #2563eb;
    color: white;
}

/* === SIDEBAR === */
.sidebar {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.widget {
    margin-bottom: 2rem;
}

.widget:last-child {
    margin-bottom: 0;
}

.widget-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e5e7eb;
}

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

.widget li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f3f4f6;
}

.widget li:last-child {
    border-bottom: none;
}

.widget a {
    color: #374151;
    text-decoration: none;
    transition: color 0.3s ease;
}

.widget a:hover {
    color: #2563eb;
}

/* === FOOTER === */
.site-footer {
    background: #1f2937;
    color: #d1d5db;
    margin-top: 4rem;
}

.footer-widgets {
    padding: 3rem 0;
    border-bottom: 1px solid #374151;
}

.footer-widgets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-widget-area .widget-title {
    color: white;
    border-bottom-color: #374151;
}

.footer-widget-area .widget a {
    color: #d1d5db;
}

.footer-widget-area .widget a:hover {
    color: #60a5fa;
}

.site-info {
    padding: 2rem 0;
}

.site-info-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.site-info a {
    color: #60a5fa;
    text-decoration: none;
}

.site-info a:hover {
    color: #93c5fd;
}

.footer-navigation .footer-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 1.5rem;
}

.footer-navigation a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 0.875rem;
}

.footer-navigation a:hover {
    color: #60a5fa;
}

/* === FORMULÃRIOS === */
input[type="text"],
input[type="email"],
input[type="search"],
textarea,
select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

button,
input[type="submit"] {
    background: #2563eb;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

button:hover,
input[type="submit"]:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
}

/* === COMENTÃRIOS === */
.comments-area {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    margin-top: 3rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
}

.comments-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e5e7eb;
}

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

.comment {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f9fafb;
    border-radius: 8px;
    border-left: 4px solid #2563eb;
}

.comment .children {
    margin-top: 1.5rem;
    margin-left: 2rem;
    padding-left: 1.5rem;
    border-left: 2px solid #e5e7eb;
}

.comment-body {
    position: relative;
}

.comment-author {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.comment-author .avatar {
    border-radius: 50%;
    flex-shrink: 0;
}

.comment-metadata {
    flex: 1;
}

.comment-metadata .fn {
    font-weight: 600;
    color: #1f2937;
    font-style: normal;
    display: block;
    margin-bottom: 0.25rem;
}

.comment-metadata a {
    color: #6b7280;
    text-decoration: none;
    font-size: 0.875rem;
}

.comment-metadata a:hover {
    color: #2563eb;
}

.comment-content {
    line-height: 1.6;
    color: #374151;
    margin-bottom: 1rem;
}

.comment-content p {
    margin-bottom: 1rem;
}

.comment-content p:last-child {
    margin-bottom: 0;
}

.comment-awaiting-moderation {
    color: #d97706;
    font-style: italic;
    background: #fef3c7;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    display: inline-block;
    margin-bottom: 1rem;
}

.reply {
    text-align: right;
}

.comment-reply-link {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
    border: 1px solid #2563eb;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.comment-reply-link:hover {
    background: #2563eb;
    color: white;
}

.comment-navigation {
    margin: 2rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.comment-navigation a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.comment-navigation a:hover {
    border-color: #2563eb;
    background: #f8fafc;
}

.no-comments {
    text-align: center;
    color: #6b7280;
    font-style: italic;
    padding: 2rem;
    background: #f9fafb;
    border-radius: 8px;
    margin: 2rem 0;
}

/* === FORMULÃRIO DE COMENTÃRIOS === */
.comment-respond {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #e5e7eb;
}

.comment-reply-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.comment-form {
    display: grid;
    gap: 1rem;
}

.comment-form p {
    margin: 0;
}

.comment-form label {
    display: block;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.5rem;
}

.comment-form .required {
    color: #dc2626;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.comment-form input:focus,
.comment-form textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.comment-form textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    margin-top: 1rem;
}

.form-submit input[type="submit"] {
    background: #2563eb;
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit input[type="submit"]:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
}

/* === NAVEGAÃ‡ÃƒO DE POSTS === */
.post-navigation {
    margin: 3rem 0;
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
}

.nav-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.nav-previous,
.nav-next {
    padding: 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-previous:hover,
.nav-next:hover {
    border-color: #2563eb;
    background: #f8fafc;
}

.nav-previous a,
.nav-next a {
    color: #374151;
    text-decoration: none;
    display: block;
}

.nav-subtitle {
    display: block;
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 0.5rem;
}

.nav-title {
    font-weight: 600;
    color: #1f2937;
}

.nav-next {
    text-align: right;
}

/* === INFORMAÃ‡Ã•ES DO AUTOR === */
.author-info {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    margin: 3rem 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.author-avatar img {
    border-radius: 50%;
}

.author-description {
    flex: 1;
}

.author-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.author-bio {
    color: #374151;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.author-link {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
}

.author-link:hover {
    color: #1d4ed8;
}

/* === UTILITÃRIOS === */
.screen-reader-text {
    position: absolute !important;
    clip: rect(1px, 1px, 1px, 1px);
    width: 1px !important;
    height: 1px !important;
    overflow: hidden;
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    z-index: 999999;
    background: #2563eb;
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 4px;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 6px;
}

.no-posts {
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.no-posts h2 {
    color: #1f2937;
    margin-bottom: 1rem;
}

.no-posts p {
    color: #6b7280;
    margin-bottom: 2rem;
}

/* === PÃGINA INICIAL === */
.front-page-content {
    min-height: 60vh;
}

.sevo-container {
    width: 100%;
    margin: 0;
    padding: 0;
}

.no-sevo-plugin {
    background: white;
    border-radius: 12px;
    padding: 3rem;
    margin: 2rem 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    text-align: center;
}

.no-sevo-plugin h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.no-sevo-plugin > p {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.recent-posts-section {
    margin-top: 4rem;
    text-align: left;
}

.recent-posts-section h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 2rem;
    text-align: center;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.post-card {
    background: #f9fafb;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.post-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.post-card .post-thumbnail {
    overflow: hidden;
}

.post-card .post-thumbnail img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.post-card:hover .post-thumbnail img {
    transform: scale(1.05);
}

.post-card .post-content {
    padding: 1.5rem;
}

.post-card .post-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.post-card .post-title a {
    color: #1f2937;
    text-decoration: none;
    transition: color 0.3s ease;
}

.post-card .post-title a:hover {
    color: #2563eb;
}

.post-card .post-meta {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 1rem;
}

.post-card .post-excerpt {
    color: #374151;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.post-card .read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.post-card .read-more:hover {
    color: #1d4ed8;
    transform: translateX(4px);
}

.post-card .read-more::after {
    content: 'â†’';
    transition: transform 0.3s ease;
}

.post-card .read-more:hover::after {
    transform: translateX(4px);
}

.cta-section {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    margin-top: 3rem;
}

.cta-section h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    color: #2563eb;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    color: #1d4ed8;
}

/* === RESPONSIVIDADE === */
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }
    
    .site-header .container {
        padding: 1rem 20px;
    }
    
    .posts-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .site-title {
        font-size: 1.5rem;
    }
    
    .site-logo img {
        max-height: 1.5rem; /* Ajustando para mobile baseado no título menor */
    }
    
    .site-header .container {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        flex-wrap: wrap;
        position: relative;
        padding: 0.5rem 15px;
        gap: 0.5rem;
    }
    
    .site-branding {
        flex: 1;
        margin-right: auto;
    }
    
    .main-navigation {
        order: 3;
        width: 100%;
        margin-top: 1rem;
    }
    
    .user-profile-section {
        order: 2;
        margin-left: 0.25rem;
        margin-right: 0.25rem;
    }
    
    .user-profile-info {
        gap: 0.25rem;
        padding: 0.125rem 0.25rem;
    }
    
    .user-avatar .avatar-img {
        width: 20px;
        height: 20px;
    }
    
    .user-name {
        display: none; /* Hide name on very small screens */
    }
    
    .login-link {
        padding: 0.375rem 0.5rem;
        font-size: 0.75rem;
        gap: 0.25rem;
    }
    
    .login-icon svg {
        width: 14px;
        height: 14px;
    }
    
    .login-text {
        display: none; /* Show only icon on mobile */
    }
    
    .user-menu {
        right: -5px; /* Adjust position for mobile */
        min-width: 80px;
    }
    
    .menu-toggle {
        display: flex !important;
        position: relative;
        background: #2563eb;
        color: white;
        border: none;
        border-radius: 6px;
        padding: 0.75rem;
        cursor: pointer;
        z-index: 1000;
        margin-right: 0.5rem;
    }
    
    .menu-toggle:hover {
        background: #1d4ed8;
    }
    
    .menu-toggle-icon span {
        background: white;
    }
    
    .menu-toggle-text {
        color: white;
    }
    
    .primary-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        background: white;
        border: 2px solid #e5e7eb;
        border-radius: 8px;
        padding: 1rem 0;
        margin-top: 0.5rem;
        gap: 0;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        position: relative;
        z-index: 999;
    }
    
    .main-navigation.menu-open .primary-menu {
        display: flex !important;
        animation: slideDown 0.3s ease-out;
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .primary-menu li {
        margin: 0;
        border-bottom: 1px solid #f3f4f6;
        opacity: 0;
        animation: fadeInUp 0.3s ease-out forwards;
    }
    
    .primary-menu li:nth-child(1) { animation-delay: 0.1s; }
    .primary-menu li:nth-child(2) { animation-delay: 0.2s; }
    .primary-menu li:nth-child(3) { animation-delay: 0.3s; }
    .primary-menu li:nth-child(4) { animation-delay: 0.4s; }
    .primary-menu li:nth-child(5) { animation-delay: 0.5s; }
    
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .primary-menu li:last-child {
        border-bottom: none;
    }
    
    .primary-menu a {
        display: block;
        padding: 0.875rem 1.5rem;
        color: #374151;
        font-weight: 500;
        transition: all 0.3s ease;
    }
    
    .primary-menu a:hover {
        background: #f8f9fa;
        color: #2563eb;
        transform: translateX(4px);
    }
    
    .primary-menu .current-menu-item > a {
        background: #eff6ff;
        color: #2563eb;
        font-weight: 600;
    }
    
    .entry-title {
        font-size: 1.5rem;
    }
    
    .entry-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .site-info-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-navigation .footer-menu {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }
    
    .footer-widgets-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .post-item {
        padding: 1.5rem;
    }
    
    .sidebar {
        padding: 1.5rem;
    }
    
    .entry-title {
        font-size: 1.25rem;
    }
    
    .pagination {
        gap: 0.25rem;
    }
    
    .page-numbers {
        min-width: 40px;
        height: 40px;
        padding: 0 0.75rem;
        font-size: 0.875rem;
    }
    
    /* Hide user name on very small screens */
    .user-name {
        display: none;
    }
    
    .login-text {
        display: none;
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    /* Show user name on larger mobile screens */
    .user-name {
        display: block !important;
    }
    
    .login-text {
        display: inline !important;
    }
}

/* === ANIMAÇÕES DO MENU MOBILE === */
.menu-toggle.active .menu-toggle-icon span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active .menu-toggle-icon span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .menu-toggle-icon span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

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

/* Melhorar acessibilidade do menu mobile */
.primary-menu a:focus {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
    background: #eff6ff;
    color: #2563eb;
}
