/* ===================== RESET E CONFIGURAÇÕES GLOBAIS ===================== */
:root {
    --primary-color: #f09e75;
    --primary-dark: #d4a373;
    --background-light: #f8f6f6;
    --background-dark: #211611;
    --text-dark: #333;
    --text-light: #f4f4f4;
    --card-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

html {
    scroll-behavior: smooth;
    height: 100%;
}

body {
    font-family: "Montserrat", sans-serif;
    color: var(--text-dark);
    background-color: var(--background-light);
    overflow-x: hidden;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

h1, h2, h3, h4 {
    font-family: "Newsreader", serif;
    font-weight: 600;
}

/* ===================== ADMIN NAVIGATION ===================== */
.breadcrumb {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    font-size: 0.9rem;
}

.breadcrumb-item {
    color: var(--primary-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.breadcrumb-item:hover {
    color: var(--primary-dark);
}

.breadcrumb-item.current {
    color: #666;
    font-weight: 600;
}

.breadcrumb-separator {
    margin: 0 0.5rem;
    color: #999;
}

/* Botões secundários */
.btn-secondary {
    background: #6c757d;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: background-color 0.3s;
}

.btn-secondary:hover {
    background: #5a6268;
    color: white;
}

/* Header do admin melhorado */
.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #eee;
}

.admin-header h2 {
    margin: 0;
    color: #333;
}

/* Sidebar admin ativa */
.sidebar-nav ul a.active {
    color: var(--primary-color);
    font-weight: 600;
}

.sidebar-nav ul a.active::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
    border-radius: 50%;
}

/* Ações rápidas no dashboard */
.quick-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.quick-action-card {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: var(--card-shadow);
    text-align: center;
    text-decoration: none;
    color: #333;
    transition: transform 0.3s ease;
}

.quick-action-card:hover {
    transform: translateY(-3px);
    color: #333;
}

.quick-action-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.quick-action-card h3 {
    margin: 0;
    font-size: 1.1rem;
}

/* ===================== LAYOUT PRINCIPAL ===================== */
.sidebar-nav {
    position: fixed;
    left: 0;
    top: 0;
    width: 240px;
    height: 100vh;
    background-color: #ffffff;
    border-right: 1px solid #e0e0e0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    z-index: 1000;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.05);
}

.main-content {
    margin-left: 240px;
    width: calc(100% - 240px);
    transition: margin 0.3s ease;
    flex: 1 0 auto;
}

.main-footer {
    text-align: center;
    padding: 2.5rem;
    background-color: #333;
    color: #aaa;
    flex-shrink: 0;
}

/* ===================== SIDEBAR ===================== */
.sidebar-logo {
    margin-bottom: 3rem;
}

.sidebar-logo img {
    max-width: 100px;
}

.sidebar-nav ul {
    list-style: none;
    text-align: center;
}

.sidebar-nav ul li {
    margin-bottom: 1.5rem;
}

.sidebar-nav ul a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    font-size: 1.1rem;
    position: relative;
    transition: color 0.3s ease;
}

.sidebar-nav ul a:hover,
.sidebar-nav ul a.active {
    color: var(--primary-color);
}

.sidebar-nav ul a.active::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
    border-radius: 50%;
}

/* ===================== SEÇÕES ===================== */
.page-section {
    padding: 6rem 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.full-screen-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 4rem;
    position: relative;
}

.section-container {
    max-width: 1200px;
    width: 100%;
    text-align: center;
}

/* Para a seção inicial, mantenha o texto centralizado */
#inicio .section-container {
    text-align: center;
}

/* Para a seção de recursos, mantenha o texto centralizado */
#recursos .section-container {
    text-align: center;
}

/* Garantir que os elementos dentro das seções centralizadas fiquem centralizados */
#inicio h1,
#inicio p,
#recursos h2,
#recursos .section-subtitle {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

/* Seção inicial com imagem de fundo */
#inicio {
    background-color: #333;
    background-image: url("../images/background.jpg");
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
}

#inicio::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.65);
    z-index: 1;
}

#inicio > * { z-index: 2; }

#inicio h1 { 
    font-size: 3.5rem; 
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

#inicio p { 
    font-size: 1.3rem; 
    margin-bottom: 2.5rem;
    max-width: 600px;
}

/* Demais seções: cores sólidas suaves */
#sobre { background-color: #fff; }
#mentoria { background-color: var(--background-light); }
#depoimentos { background-color: #fff; }
#recursos { background-color: var(--background-light); }

/* ===================== BOTÕES ===================== */
.cta-button {
    background-color: var(--primary-color);
    color: #fff;
    padding: 0.9rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(240, 158, 117, 0.3);
}

.cta-button:hover { 
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(240, 158, 117, 0.4);
}

.btn-edit, .btn-delete, .btn-cancel {
    padding: 0.5rem 1rem;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.9rem;
}

.btn-edit {
    background: var(--primary-color);
    color: white;
}

.btn-delete {
    background: #dc3545;
    color: white;
}

.btn-cancel {
    padding: 0.75rem 1.5rem;
    background: #6c757d;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    margin-left: 1rem;
}


/* ===================== SOBRE ===================== */
.sobre-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.sobre-imagem {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

.sobre-imagem img {
    width: 100%;
    height: auto;
    display: block;
}

.sobre-imagem::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.1) 100%);
}

.sobre-texto {
    padding: 1rem 0;
}

.sobre-texto h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.sobre-texto p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.7;
}

.sobre-highlights {
    margin-top: 2rem;
}

.highlight-item {
    margin-bottom: 1.5rem;
}

.highlight-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.highlight-item p {
    font-size: 1rem;
    color: #666;
}

/* ===================== MENTORIA ===================== */
#mentoria h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.mentoria-passos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    width: 100%;
}

.passo {
    background-color: #fff;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    text-align: center;
    transition: transform 0.3s ease;
}

.passo:hover {
    transform: translateY(-5px);
}

.passo h3 { 
    margin-bottom: 1rem; 
    color: var(--primary-color);
    font-size: 1.5rem;
}

.passo p { 
    color: #666;
    line-height: 1.6;
}

/* ===================== DEPOIMENTOS ===================== */
#depoimentos h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.depoimento-card-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    width: 100%;
}

.depoimento-card {
    background-color: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    position: relative;
}

.depoimento-card::before {
    content: "";
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.2;
    font-family: Georgia, serif;
}

.depoimento-card blockquote { 
    font-style: italic; 
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    line-height: 1.7;
}

.depoimento-card cite { 
    color: var(--primary-color);
    font-weight: 600;
    font-style: normal;
}

/* ===================== DEPOIMENTOS ADMIN ===================== */
.depoimento-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: var(--card-shadow);
    border-left: 4px solid var(--primary-color);
    margin-bottom: 1rem;
}

.depoimento-item.inactive {
    opacity: 0.6;
    border-left-color: #ccc;
}

.depoimento-info {
    flex: 1;
}

.depoimento-info blockquote {
    font-style: italic;
    margin: 0 0 0.5rem 0;
    color: #555;
    line-height: 1.5;
}

.depoimento-author {
    font-weight: 600;
    color: var(--primary-color);
    margin: 0 0 0.5rem 0;
}

.depoimento-meta {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.depoimento-actions {
    display: flex;
    gap: 0.5rem;
    margin-left: 1rem;
}

/* ===================== PÁGINAS DE CONTEÚDO ===================== */
.content-section {
    margin-bottom: 3rem;
}

.content-section h2 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

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

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    border-left: 4px solid var(--primary-color);
}

.benefit-card h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    margin: 3rem 0;
}

.cta-section h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-section .cta-button {
    background: white;
    color: var(--primary-color);
    margin-top: 1.5rem;
}

.cta-section .cta-button:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

.blog-preview {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin-top: 3rem;
}

.posts-grid {
    display: grid;
    gap: 1rem;
    margin-top: 1.5rem;
}

.post-link {
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s;
    border-left: 4px solid var(--primary-color);
}

.post-link:hover {
    transform: translateX(5px);
    box-shadow: var(--card-shadow);
}

/* ===================== RECURSOS ===================== */
#recursos h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #666;
    max-width: 600px;
}

.social-icons-container {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
}

.social-icons-container a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #fff;
    color: #333;
    font-size: 1.5rem;
    border-radius: 50%;
    transition: all 0.3s;
    box-shadow: var(--card-shadow);
}

.social-icons-container a:hover { 
    background-color: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
}

/* ===================== USUÁRIOS STYLES ===================== */
.usuarios-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.usuario-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: var(--card-shadow);
    border-left: 4px solid var(--primary-color);
}

.usuario-item.inactive {
    opacity: 0.6;
    border-left-color: #ccc;
}

.usuario-info {
    flex: 1;
}

.usuario-info h3 {
    margin: 0 0 0.5rem 0;
    color: #333;
}

.usuario-meta {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.usuario-meta i {
    color: var(--primary-color);
    margin-right: 0.25rem;
}

.usuario-actions {
    display: flex;
    gap: 0.5rem;
    margin-left: 1rem;
}

.current-user {
    color: #666;
    font-style: italic;
}

.btn-success {
    background: #28a745;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.9rem;
}

.btn-warning {
    background: #ffc107;
    color: #212529;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.9rem;
}

.password-reset {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    border-left: 4px solid var(--primary-color);
}

.password-reset h3 {
    margin-top: 0;
    color: #333;
}

/* ===================== BLOG ===================== */
#blog-list .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.blog-header {
    text-align: center;
    margin-bottom: 3rem;
}

.blog-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}

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

.post-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.post-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #333;
    line-height: 1.3;
}

.post-card .post-meta {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.post-card p {
    color: #666;
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

.post-card .cta-button {
    align-self: flex-start;
    margin-top: auto;
}

/* ===================== BLOG POST ===================== */
#post-detail {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
}

#post-detail .container {
    max-width: 800px;
    margin: 4rem auto;
    padding: 0 2rem;
    width: 100%;
}

#post-detail h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: #333;
}

.post-header {
    margin-bottom: 2rem;
}

.post-header .post-meta {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.post-header .post-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #888;
}

.post-header .post-meta i {
    color: var(--primary-color);
}

#post-detail .post-divider {
    border: none;
    border-top: 2px solid var(--primary-color);
    margin: 2rem 0;
    opacity: 0.3;
}

.post-body {
    line-height: 1.8;
    font-size: 1.1rem;
    color: #444;
}

.post-body p {
    margin-bottom: 1.5rem;
}

.post-body h2, .post-body h3 {
    margin: 2rem 0 1rem 0;
    color: #333;
}

.post-body h2 {
    font-size: 1.8rem;
}

.post-body h3 {
    font-size: 1.4rem;
}

.post-body ul, .post-body ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.post-body li {
    margin-bottom: 0.5rem;
}

.post-body blockquote {
    border-left: 4px solid var(--primary-color);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: #666;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 3rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.back-link:hover {
    color: var(--primary-dark);
}

/* ===================== EVENTOS ===================== */
.eventos-public-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.evento-public-card {
    display: flex;
    background: white;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    overflow: hidden;
}

.evento-date {
    background: var(--primary-color);
    color: white;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 100px;
}

.evento-day {
    font-size: 2rem;
    font-weight: bold;
    line-height: 1;
}

.evento-month {
    font-size: 0.9rem;
    text-transform: uppercase;
}

.evento-content {
    padding: 2rem;
    flex: 1;
}

.evento-content h3 {
    margin: 0 0 1rem 0;
    color: #333;
    font-size: 1.4rem;
}

.evento-content .evento-meta {
    color: #666;
    margin-bottom: 1rem;
}

.evento-content .evento-description {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* ===================== ADMIN STYLES ===================== */
.admin-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.stat-card {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: var(--card-shadow);
    text-align: center;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-2px);
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
    margin: 0.5rem 0 0 0;
}

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

.admin-actions .cta-button {
    text-align: center;
    padding: 1rem;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.posts-list, .eventos-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.post-item, .evento-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: var(--card-shadow);
}

.post-item.unpublished {
    opacity: 0.7;
    border-left: 4px solid #ffa500;
}

.evento-item {
    align-items: flex-start;
    border-left: 4px solid var(--primary-color);
}

.evento-item.inactive {
    opacity: 0.6;
    border-left-color: #ccc;
}

.evento-info {
    flex: 1;
}

.evento-info h3 {
    margin: 0 0 0.5rem 0;
    color: #333;
}

.evento-meta {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.evento-meta i {
    color: var(--primary-color);
    margin-right: 0.25rem;
}

.evento-description {
    color: #555;
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

.evento-link a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
}

.evento-link a:hover {
    text-decoration: underline;
}

.post-info h3 {
    margin: 0 0 0.5rem 0;
    color: #333;
}

.post-actions, .evento-actions {
    display: flex;
    gap: 0.5rem;
    margin-left: 1rem;
}

/* ===================== FORMULÁRIOS ===================== */
.post-form {
    max-width: 800px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-group input[type="text"],
.form-group input[type="password"],
.form-group input[type="datetime-local"],
.form-group input[type="url"],
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(240, 158, 117, 0.2);
}

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

.form-group input[type="checkbox"] {
    margin-right: 0.5rem;
    transform: scale(1.2);
}

.form-group label:has(input[type="checkbox"]) {
    display: flex;
    align-items: center;
    font-weight: normal;
    cursor: pointer;
}

.form-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-top: 2rem;
}

/* ===================== MENSAGENS ===================== */
.alert {
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 1.5rem;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.no-posts, .no-eventos, .no-items {
    text-align: center;
    padding: 4rem 2rem;
    color: #888;
}

.no-posts h3, .no-eventos h3 {
    margin-bottom: 1rem;
    color: #666;
}

/* ===================== MOBILE ===================== */
.mobile-header,
.mobile-nav-panel {
    display: none;
}

@media (max-width: 992px) {
    .sidebar-nav { display: none; }
    .main-content { margin-left: 0; width: 100%; }
    .full-screen-section { padding: 6rem 2rem; }

    .sobre-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .sobre-imagem {
        order: -1;
    }

    .mobile-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1rem;
        background-color: #fff;
        border-bottom: 1px solid #eee;
        position: fixed;
        top: 0; width: 100%; z-index: 1000;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
    
    .logo { max-height: 40px; }

    .hamburger-menu {
        display: flex;
        flex-direction: column;
        gap: 4px;
        cursor: pointer;
        z-index: 1001;
    }
    
    .hamburger-menu .bar {
        width: 25px;
        height: 3px;
        background-color: #333;
        border-radius: 2px;
        transition: all 0.3s ease-in-out;
    }
    
    .hamburger-menu.active .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    
    .hamburger-menu.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger-menu.active .bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .mobile-nav-panel {
        display: flex;
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(5px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: right 0.4s ease-in-out;
        z-index: 999;
    }
    
    .mobile-nav-panel.active { 
        right: 0; 
        box-shadow: -5px 0 15px rgba(0,0,0,0.1); 
    }
    
    .mobile-nav-panel ul { 
        list-style: none; 
        text-align: center; 
    }
    
    .mobile-nav-panel li { 
        margin-bottom: 2rem; 
    }
    
    .mobile-nav-panel a { 
        text-decoration: none; 
        color: #333; 
        font-size: 1.5rem; 
        font-weight: 600; 
    }

    #post-detail .container {
        margin: 2rem auto;
    }
    
    #post-detail h1 {
        font-size: 2rem;
    }
    
    .posts-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .admin-actions {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    #inicio h1 {
        font-size: 2.5rem;
    }
    
    .sobre-texto h2 {
        font-size: 2rem;
    }
    
    .mentoria-passos {
        grid-template-columns: 1fr;
    }
    
    .depoimento-card-container {
        grid-template-columns: 1fr;
    }

    #post-detail h1 {
        font-size: 1.8rem;
    }
    
    .post-body {
        font-size: 1rem;
    }
    
    #post-detail .container {
        padding: 0 1rem;
    }
    
    .post-card {
        padding: 1.5rem;
    }

    .post-item, .evento-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .post-actions, .evento-actions {
        margin-left: 0;
        align-self: flex-end;
    }

    .evento-public-card {
        flex-direction: column;
    }

    .evento-date {
        min-width: auto;
        flex-direction: row;
        justify-content: center;
        gap: 1rem;
        padding: 1rem;
    }

    .admin-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
}

/* Adicionar foco visível */
a:focus, button:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}