:root {
  --primary-color: #2563eb;
  --primary-light: #3b82f6;
  --primary-dark: #1e40af;
  --text-color: #1f2937;
  --text-light: #6b7280;
  --background-color: #ffffff;
  --card-background: #f8fafc;
  --focus-color: #3b82f6;
  --border-color: #e2e8f0;
  --success-color: #10b981;
}

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

body {
  font-family: system-ui, -apple-system, sans-serif;
  line-height: 1.5;
  color: var(--text-color);
  background-color: var(--background-color);
}

/* Acessibilidade */
:focus {
  outline: 2px solid var(--focus-color);
  outline-offset: 2px;
}

/* Header e Navegação */
.header {
  background-color: rgba(255, 255, 255, 0.98);
  padding: 1rem;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(8px);
}

.nav-menu {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo h1 {
  color: var(--primary-color);
  font-size: 1.5rem;
  font-weight: 600;
}
.site-title {
    text-decoration: none;
    font-size: 24px;
    font-weight: bold;
    color: #000;
}
.logo-link {
    text-decoration: none; /* Remove o sublinhado do link */
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  color: var(--text-color);
  text-decoration: none;
  padding: 0.5rem;
  border-radius: 4px;
  font-weight: 500;
  transition: color 0.2s ease-in-out;
}

.nav-links a:hover,
.nav-links a:focus {
  color: var(--primary-color);
}

/* Menu mobile */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--text-color);
  margin: 5px 0;
  border-radius: 2px;
  transition: transform 0.2s ease-in-out;
}

/* Seções */
section {
  padding: 4rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.hero {
  text-align: center;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: white;
  padding: 6rem 1rem;
  margin-bottom: 2rem;
  border-radius: 0 0 2rem 2rem;
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

/* Content Sections */
.content-section {
  margin-bottom: 4rem;
}

.content-section h2 {
  color: var(--text-color);
  margin-bottom: 2rem;
  font-size: 2rem;
  font-weight: 700;
  position: relative;
  padding-bottom: 0.5rem;
}

.content-section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--primary-color);
  border-radius: 2px;
}

.content-grid {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.content-group h3 {
  color: var(--text-color);
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  font-weight: 600;
}

/* Cards */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.card {
  background-color: var(--card-background);
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease-in-out;
  position: relative;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px -10px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-light);
}

.card h4 {
  color: var(--text-color);
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.card p {
  color: var(--text-light);
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
}

/* Indicador de arquivo */
.has-attachment {
  position: relative;
}

.has-attachment::before {
  content: '📎';
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.25rem;
  opacity: 0.7;
}

/* Links Grid */
.links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.link-card {
  display: flex;
  align-items: center;
  padding: 1rem 1.25rem;
  background-color: var(--card-background);
  color: var(--text-color);
  text-decoration: none;
  border-radius: 0.75rem;
  border: 1px solid var(--border-color);
  transition: all 0.2s ease-in-out;
  font-weight: 500;
}

.link-card:hover,
.link-card:focus {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
  transform: translateX(4px);
}

/* Botões */
.btn {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  background-color: transparent;
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 0.5rem;
  font-weight: 500;
  font-size: 0.875rem;
  transition: all 0.2s ease-in-out;
  border: 1px solid var(--primary-color);
  gap: 0.5rem;
}

.btn:hover,
.btn:focus {
  background-color: var(--primary-color);
  color: white;
  transform: translateY(-2px);
}

.btn::after {
  content: '→';
  transition: transform 0.2s ease-in-out;
}

.btn:hover::after {
  transform: translateX(4px);
}

/* Footer */
footer {
  background-color: var(--card-background);
  color: var(--text-color);
  text-align: center;
  padding: 2rem;
  margin-top: 4rem;
  border-top: 1px solid var(--border-color);
}
.article-header {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 100px 0 40px;
}

.article-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 2rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.article-content {
    padding: 40px 0;
}

.article-image {
    margin-bottom: 2rem;
    border-radius: 8px;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.article-text {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.article-text p {
    margin-bottom: 1.5rem;
}

.article-text h2 {
    margin: 2rem 0 1rem;
    color: var(--primary-color);
}

.article-attachments {
    background-color: var(--background-color);
    padding: 40px 0;
    margin-top: 40px;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.attachment-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    margin-bottom: 1rem;
    transition: background-color 0.3s ease;
}

.attachment-item:last-child {
    margin-bottom: 0;
}

.attachment-item:hover {
    background-color: var(--background-color);
}

.attachment-icon {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    margin-right: 1rem;
}

.attachment-info {
    flex: 1;
}

.attachment-info h4 {
    margin-bottom: 0.25rem;
}
.card-icon {
    width: 64px;
    height: 64px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--secondary-color);
    font-size: 1.5rem;
}
/* Login Styles */
.login-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: 1rem;
}

.login-card {
    background: var(--card-background);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px var(--shadow-color);
    width: 100%;
    max-width: 400px;
    position: relative;
}

.login-header {
    text-align: center;
    margin-bottom: 2rem;
}

.login-header h1 {
    color: var(--text-color);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.login-header p {
    color: var(--text-light);
}

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

.form-group label {
    display: block;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--input-border);
    background: var(--input-bg);
    color: var(--text-color);
    border-radius: 0.5rem;
    transition: all 0.2s ease-in-out;
}

.form-group input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px var(--primary-color);
    outline: none;
}

.password-input {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    padding: 0.25rem;
}

/*.remember-me {*/
/*    display: flex;*/
/*    justify-content: space-between;*/
/*    align-items: center;*/
/*}*/

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-color);
}

.forgot-password {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.875rem;
}

.btn-primary {
    width: 100%;
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.75rem;
    border-radius: 0.5rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.btn-primary:hover {
    background: var(--primary-dark);
}
/* Theme Switch */
.theme-switch {
    position: absolute;
    top: 1rem;
    right: 1rem;
}

#themeToggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.2s ease-in-out;
}

#themeToggle:hover {
    background: var(--card-background);
}

.theme-icon {
    font-size: 1.25rem;
}

[data-theme="light"] .theme-icon.dark,
[data-theme="dark"] .theme-icon.light {
    display: none;
}

/* Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--text-color);
    transition: all 0.3s;
}

.sidebar-toggle {
    display: none;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--card-background);
        padding: 1rem;
        border-top: 1px solid var(--border-color);
    }

    .menu-toggle {
        display: flex;
    }

    .dashboard-layout {
        grid-template-columns: 1fr;
    }

    .sidebar {
        position: fixed;
        left: -280px;
        top: 0;
        bottom: 0;
        z-index: 100;
        transition: left 0.3s ease-in-out;
    }

    .sidebar.active {
        left: 0;
    }

    .sidebar-toggle {
        display: block;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }
}


/* Media Queries */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--background-color);
    flex-direction: column;
    padding: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  }

  .nav-links.active {
    display: flex;
  }

  .cards-grid,
  .links-grid {
    grid-template-columns: 1fr;
  }

  .content-group {
    padding: 0 0.5rem;
  }

  .hero {
    border-radius: 0;
  }
}

/* Alto Contraste para Daltônicos */
@media (prefers-contrast: high) {
  :root {
    --primary-color: #000000;
    --primary-light: #333333;
    --primary-dark: #000000;
    --text-color: #000000;
    --text-light: #333333;
    --background-color: #ffffff;
    --card-background: #655c5c;
    --border-color: #000000;
  }

  .card,
  .link-card {
    border: 2px solid var(--border-color);
  }

  .btn {
    border: 2px solid var(--border-color);
  }

  .content-section h2::after {
    background: var(--border-color);
  }
}
/* Dashboard Styles */
.dashboard-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    min-height: 100vh;
    background: var(--background-color);
}

.sidebar {
    background: var(--sidebar-bg);
    padding: 1.5rem;
    border-right: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
}

.sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sidebar-header h1 {
    font-size: 1.25rem;
    color: var(--text-color);
    font-weight: 600;
}

.sidebar-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.sidebar-nav a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: var(--text-color);
    text-decoration: none;
    border-radius: 0.5rem;
    transition: all 0.2s ease-in-out;
}

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

.sidebar-footer {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.user-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.user-details {
    flex: 1;
}

.user-name {
    color: var(--text-color);
    font-weight: 500;
}

.user-role {
    color: var(--text-light);
    font-size: 0.875rem;
}

.btn-logout {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: transparent;
    color: var(--text-color);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.btn-logout:hover {
    border-color: var(--primary-color);
}

.dashboard-main {
    padding: 2rem;
}

.dashboard-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.header-title h2 {
    color: var(--text-color);
    font-size: 1.5rem;
    font-weight: 600;
}

.header-title p {
    color: var(--text-light);
}

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

.stat-card {
    background: var(--card-background);
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-icon {
    font-size: 1.5rem;
    background: var(--primary-color);
    color: white;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.75rem;
}

.stat-info h3 {
    color: var(--text-light);
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.stat-value {
    color: var(--text-color);
    font-size: 1.5rem;
    font-weight: 600;
}

.recent-activity {
    background: var(--card-background);
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid var(--border-color);
}

.recent-activity h3 {
    color: var(--text-color);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.activity-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--background-color);
    border-radius: 0.75rem;
}

.activity-icon {
    font-size: 1.25rem;
}

.activity-title {
    color: var(--text-color);
    font-weight: 500;
}

.activity-time {
    color: var(--text-light);
    font-size: 0.875rem;
}

/* Theme Switch */
.theme-switch {
    position: absolute;
    top: 1rem;
    right: 1rem;
}

#themeToggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.2s ease-in-out;
}

#themeToggle:hover {
    background: var(--card-background);
}

.theme-icon {
    font-size: 1.25rem;
}

[data-theme="light"] .theme-icon.dark,
[data-theme="dark"] .theme-icon.light {
    display: none;
}

/* Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--text-color);
    transition: all 0.3s;
}

.sidebar-toggle {
    display: none;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--card-background);
        padding: 1rem;
        border-top: 1px solid var(--border-color);
    }

    .menu-toggle {
        display: flex;
    }

    .dashboard-layout {
        grid-template-columns: 1fr;
    }

    .sidebar {
        position: fixed;
        left: -280px;
        top: 0;
        bottom: 0;
        z-index: 100;
        transition: left 0.3s ease-in-out;
    }

    .sidebar.active {
        left: 0;
    }

    .sidebar-toggle {
        display: block;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }
}
/* Tabela moderna */
.table-container {
    overflow-x: auto;
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.styled-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 10px;
    overflow: hidden;
    background: white;
}

.styled-table thead {
    background-color: #f8f9fa;
    font-weight: bold;
    text-transform: uppercase;
}

.styled-table th,
.styled-table td {
    padding: 14px 16px;
    border-bottom: 1px solid #ddd;
}

.styled-table tr:hover {
    background-color: #f3f4f6;
}

/* Links estilizados */
.text-link {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}

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

/* Botão de cópia */
.copy-btn {
    background-color: #e0e0e0;
    border: none;
    padding: 6px 12px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 12px;
    transition: 0.3s ease;
}

.copy-btn:hover {
    background-color: #d6d6d6;
}

/* Status */
.badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 12px;
    display: inline-block;
    text-align: center;
    min-width: 50px;
}

.badge-active {
    background-color: #4caf50;
    color: white;
}

.badge-inactive {
    background-color: #f44336;
    color: white;
}

/* Ícones de Ação */
.actions {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.btn-icon {
    font-size: 18px;
    padding: 8px;
    border: none;
    background: none;
    cursor: pointer;
    transition: 0.3s ease;
}

.btn-icon i {
    transition: 0.3s;
}

.btn-edit i {
    color: #007bff; /* Azul */
}

.btn-edit:hover i {
    color: #0056b3;
    transform: scale(1.1);
}

.btn-delete i {
    color: #dc3545; /* Vermelho */
}

.btn-delete:hover i {
    color: #b52b38;
    transform: scale(1.1);
}
/* Container do formulário */
.form-container {
    overflow-x: auto;
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Grid de organização */
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* Campos do formulário */
.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    border: 1px solid var(--border-color);
    padding: 12px;
    border-radius: 6px;
    font-size: 16px;
    transition: 0.3s ease;
}

.form-group textarea {
    min-height: 150px;
}

/* Botão de envio */
.btn-primary {
    width: 100%;
    padding: 14px;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    background-color: var(--primary-color);
    color: white;
    border-radius: 6px;
    transition: 0.3s;
    border: none;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
}

/* Checkboxes */
.checkbox-group {
    display: flex;
    align-items: center;
    gap: 15px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Expande para largura total */
.full-width {
    grid-column: span 2;
}

/* Responsividade */
@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }

    .full-width {
        grid-column: span 1;
    }
}
/* Modal styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.modal.show {
    display: flex;
    animation: fadeIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-content {
    background: white;
    padding: 2.5rem;
    border-radius: 1rem;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    animation: slideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
}

.modal h2 {
    margin-bottom: 1.5rem;
    color: var(--text-color);
    font-size: 1.5rem;
}

.modal-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: center;
}

.btn-confirm,
.btn-cancel {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.2s ease;
    min-width: 120px;
}

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

.btn-cancel {
    background-color: #e5e7eb;
    color: #374151;
}

.btn-confirm:hover {
    background-color: #1d4ed8;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(37, 99, 235, 0.2);
}

.btn-cancel:hover {
    background-color: #d1d5db;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        transform: translateY(-30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.success {
    color: var(--success-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.error {
    color: var(--danger-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

/* Success checkmark animation */
.success-checkmark {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    border-radius: 50%;
    display: block;
    stroke-width: 2;
    stroke: var(--success-color);
    stroke-miterlimit: 10;
    box-shadow: inset 0px 0px 0px var(--success-color);
    animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
    position: relative;
    margin: 0 auto;
}

.success-checkmark__circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 2;
    stroke-miterlimit: 10;
    stroke: var(--success-color);
    fill: none;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.success-checkmark__check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes scale {
    0%, 100% {
        transform: none;
    }
    50% {
        transform: scale3d(1.1, 1.1, 1);
    }
}

@keyframes fill {
    100% {
        box-shadow: inset 0px 0px 0px 30px var(--success-color);
    }
}

/* Message animations */
.success span,
.error span {
    font-size: 1.125rem;
    font-weight: 500;
    opacity: 0;
    animation: messageSlideIn 0.5s ease forwards 0.8s;
}

@keyframes messageSlideIn {
    from {
        transform: translateY(10px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
.hidden {
    display: none;
}
.page-button {
    background-color: #3B82F6; /* Azul */
    color: white;
    font-weight: bold;
    padding: 12px 24px;
    border-radius: 8px;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease-in-out, transform 0.2s ease;
    width: 100%;
    text-align: center;
    border: none;
    cursor: pointer;
}

.page-button:hover {
    background-color: #2563EB; /* Azul mais escuro */
    transform: scale(1.05);
}
.close-button {
    background-color: #374151; /* Cinza escuro */
    color: white;
    font-weight: bold;
    padding: 12px 24px;
    border-radius: 8px;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease-in-out, transform 0.2s ease;
    width: 100%;
    text-align: center;
    border: none;
    cursor: pointer;
}

.close-button:hover {
    background-color: #1F2937; /* Cinza mais escuro */
    transform: scale(1.05);
}
.modal-content {
    background-color: white;
    padding: 24px;
    border-radius: 10px;
    box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.2);
    width: 400px;
    text-align: center;
}

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

.page-list li {
    margin-bottom: 10px;
}
