
/* Extracted from App.vue */

/* ==========================================================================
   SISTEMA DE DESIGN E VARIÁVEIS GLOBAIS
   ========================================================================== */
:root {
  --navy-dark: #0D1B2A;
  --navy-medium: #1B263B;
  --navy-light: #415A77;
  --cream: #FAF9F6;
  --cream-dark: #F0EDE6;
  --gold: #C9A84C;
  --gold-hover: #E5C365;
  --gold-deep: #B08E35;
  --text-primary: #FAF9F6;
  --text-muted: #CBD5E1;
  --text-dark: #1E293B;
  --font-serif: 'Cormorant Garamond', serif;
  --font-sans: 'Outfit', 'Montserrat', sans-serif;
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --glass-bg: rgba(13, 27, 42, 0.85);
  --glass-border: rgba(201, 168, 76, 0.18);
}

/* Reset e Estilos de Base */
body {
  margin: 0;
  padding: 0;
  font-family: var(--font-sans);
  background-color: var(--navy-dark);
  color: var(--text-primary);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.app-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.main-content {
  flex-grow: 1;
  padding-top: 86px; /* Altura da navbar para não sobrepor */
  min-height: calc(100vh - 86px - 300px);
}

/* ==========================================================================
   NAVBAR PREMIUM WITH GLASSMORPHISM
   ========================================================================== */
.main-navbar {
  background: var(--glass-bg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
  transition: var(--transition-smooth);
  z-index: 1040;
}

.nav-logo {
  max-height: 65px;
  width: auto;
  object-fit: contain;
  transition: var(--transition-smooth);
}

.nav-logo:hover {
  transform: scale(1.02);
}

.nav-link-custom {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  position: relative;
  padding: 0.5rem 0;
  letter-spacing: 0.05em;
  transition: var(--transition-smooth);
}

.nav-link-custom:hover {
  color: var(--gold);
}

.nav-link-custom::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--gold);
  transition: var(--transition-smooth);
}

.nav-link-custom:hover::after {
  width: 100%;
}

.router-link-active.nav-link-custom {
  color: var(--gold);
}

.router-link-active.nav-link-custom::after {
  width: 100%;
}

.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: var(--navy-dark) !important;
  font-weight: 600;
  padding: 0.7rem 1.8rem;
  border-radius: 4px;
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  border: 1px solid transparent;
  box-shadow: 0 4px 15px rgba(201, 168, 76, 0.25);
  transition: var(--transition-smooth);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 168, 76, 0.4);
  background: linear-gradient(135deg, var(--gold-hover), var(--gold));
  color: var(--navy-dark) !important;
}

/* ==========================================================================
   ACESSIBILIDADE E FOCUS VISIBLE
   ========================================================================== */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--gold) !important;
  outline-offset: 3px !important;
}

/* ==========================================================================
   TRANSITIONS DE PÁGINA
   ========================================================================== */
.page-fade-enter-active,
.page-fade-leave-active {
  transition: opacity 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.page-fade-enter-from,
.page-fade-leave-to {
  opacity: 0;
}

/* ==========================================================================
   FOOTER PREMIUM
   ========================================================================== */
.main-footer {
  background-color: #08101A;
  border-top: 1px solid var(--glass-border);
  font-size: 0.95rem;
  color: var(--text-muted);
}

.footer-logo {
  max-height: 80px;
  object-fit: contain;
}

.footer-about {
  line-height: 1.7;
}

.footer-title {
  font-family: var(--font-serif);
  color: var(--gold);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--gold);
}

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

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: 5px;
}

.footer-address {
  font-style: normal;
  line-height: 1.7;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.85rem;
}

.admin-login-link {
  color: var(--gold);
  text-decoration: none;
  padding: 0.3rem 0.8rem;
  border: 1px solid var(--gold);
  border-radius: 4px;
  transition: var(--transition-smooth);
}

.admin-login-link:hover {
  background: var(--gold);
  color: var(--navy-dark);
}

.discreet-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.discreet-link:hover {
  color: var(--gold);
}

/* ==========================================================================
   COMPONENTES E UTILITÁRIOS GLOBAIS
   ========================================================================== */
.gold-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  width: 100%;
}

.section-eyebrow {
  font-family: var(--font-sans);
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  display: inline-block;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--cream);
  margin-bottom: 2rem;
}

/* Scrollbar Customizada */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--navy-dark);
}

::-webkit-scrollbar-thumb {
  background: var(--navy-medium);
  border-radius: 5px;
  border: 2px solid var(--navy-dark);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--navy-light);
}

@media (max-width: 991px) {
  .main-navbar .navbar-collapse {
    background: rgba(13, 27, 42, 0.98);
    margin: 0 -1.5rem;
    padding: 1.5rem;
    border-bottom: 1px solid var(--glass-border);
  }
}

/* Extracted from AreaCliente.vue */

/* ==========================================================================
   ESTILOS PREMIUM DA ÁREA DO CLIENTE
   ========================================================================== */
.area-cliente-view {
  min-height: calc(100vh - 86px);
  background-color: var(--navy-dark);
}

.page-header {
  background: linear-gradient(180deg, var(--navy-medium) 0%, var(--navy-dark) 100%);
  border-bottom: 1px solid var(--glass-border);
}

.page-title {
  font-family: var(--font-serif);
  color: var(--gold);
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.page-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 600px;
}

.premium-card {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.card-title {
  font-family: var(--font-serif);
  color: var(--gold);
}

.form-floating-custom {
  position: relative;
}

.premium-input {
  background-color: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  color: var(--cream) !important;
  padding: 1.2rem 1rem;
  border-radius: 6px;
  transition: var(--transition-smooth);
}

.premium-input:focus {
  background-color: rgba(255, 255, 255, 0.05) !important;
  border-color: var(--gold) !important;
  box-shadow: 0 0 0 0.25rem rgba(201, 168, 76, 0.1) !important;
}

.form-floating-custom label {
  position: absolute;
  top: 50%;
  left: 1rem;
  transform: translateY(-50%);
  color: var(--text-muted);
  transition: var(--transition-smooth);
  pointer-events: none;
}

.premium-input:focus ~ label,
.premium-input:not(:placeholder-shown) ~ label {
  top: 0;
  font-size: 0.8rem;
  background-color: var(--navy-dark);
  padding: 0 0.5rem;
  color: var(--gold);
}

.btn-premium {
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: var(--navy-dark);
  border: none;
  padding: 1rem;
  font-weight: 600;
  border-radius: 6px;
  letter-spacing: 0.05em;
  transition: var(--transition-smooth);
}

.btn-premium:hover:not(:disabled) {
  background: linear-gradient(135deg, var(--gold-hover), var(--gold));
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(201, 168, 76, 0.3);
}

.btn-premium:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.custom-alert {
  background-color: rgba(220, 53, 69, 0.1);
  border: 1px solid rgba(220, 53, 69, 0.3);
  color: #ff6b6b;
  font-size: 0.9rem;
}

.btn-outline-gold {
  color: var(--gold);
  border: 1px solid var(--gold);
  background: transparent;
  transition: var(--transition-smooth);
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--navy-dark);
}

.text-gold {
  color: var(--gold);
}

/* Extracted from ClientePanel.vue */

.cliente-panel-view {
  min-height: calc(100vh - 86px);
  background-color: var(--navy-dark);
}

.page-header {
  background: linear-gradient(180deg, var(--navy-medium) 0%, var(--navy-dark) 100%);
  border-bottom: 1px solid var(--glass-border);
}

.text-gold {
  color: var(--gold);
}

.premium-card {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.process-card {
  transition: var(--transition-smooth);
}

.process-card:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
  box-shadow: 0 10px 25px rgba(201, 168, 76, 0.15);
}

.cursor-pointer {
  cursor: pointer;
}

.custom-alert {
  background-color: rgba(220, 53, 69, 0.1);
  border: 1px solid rgba(220, 53, 69, 0.3);
  color: #ff6b6b;
}

.btn-outline-gold {
  color: var(--gold);
  border: 1px solid var(--gold);
  background: transparent;
  transition: var(--transition-smooth);
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--navy-dark);
}

.relatorio-card {
  background: rgba(0, 0, 0, 0.2);
  border-left: 4px solid var(--gold);
  border-radius: 0 8px 8px 0;
}

.relatorio-content {
  line-height: 1.6;
  font-size: 1.05rem;
}

.info-item {
  background: rgba(255, 255, 255, 0.03);
  padding: 1rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.info-label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.4rem;
}

.info-value {
  display: block;
  font-size: 1.1rem;
  color: var(--cream);
  font-weight: 500;
}

/* Extracted from Home.vue */

/* ==========================================================================
   HERO SECTION DESIGN (VISUAL PREMIUM & PARALLAX EFFECT)
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 80vh;
  background-image: url('../../assets/img/themis.jpeg');
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
  display: flex;
  align-items: center;
  padding: 6rem 0;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(13, 27, 42, 0.95) 0%, rgba(13, 27, 42, 0.7) 100%);
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.15;
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-subtitle {
  font-family: var(--font-sans);
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 90%;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: var(--navy-dark);
  font-weight: 600;
  padding: 0.9rem 2.2rem;
  border-radius: 4px;
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  border: 1px solid transparent;
  box-shadow: 0 4px 15px rgba(201, 168, 76, 0.2);
  transition: var(--transition-smooth);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 168, 76, 0.35);
  background: linear-gradient(135deg, var(--gold-hover), var(--gold));
  color: var(--navy-dark);
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  font-weight: 500;
  padding: 0.9rem 2.2rem;
  border-radius: 4px;
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  border: 1px solid rgba(250, 249, 246, 0.3);
  transition: var(--transition-smooth);
}

.btn-outline:hover {
  background: rgba(250, 249, 246, 0.05);
  border-color: var(--gold);
  color: var(--gold);
}

/* Animations */
.animate-fade-in {
  animation: fadeIn 0.8s ease-out forwards;
}
.animate-slide-up {
  animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.animate-slide-up-delay {
  opacity: 0;
  animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}
.animate-slide-up-delay-more {
  opacity: 0;
  animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}

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

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================================================
   PILARES DE EXCELÊNCIA (VALORES)
   ========================================================================== */
.pillars-section {
  background-color: var(--navy-dark);
}

.pillar-card {
  background: rgba(27, 38, 59, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  padding: 2.5rem 2rem;
  height: 100%;
  transition: var(--transition-smooth);
}

.pillar-card:hover {
  transform: translateY(-5px);
  background: rgba(27, 38, 59, 0.6);
  border-color: var(--glass-border);
}

.pillar-icon {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.pillar-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 1rem;
}

.pillar-text {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
}

/* ==========================================================================
   ÁREAS DE ATUAÇÃO (EXPERTISE)
   ========================================================================== */
.expertise-section {
  background-color: #0A131C;
}

.expertise-card {
  background: rgba(13, 27, 42, 0.5);
  border: 1px solid rgba(201, 168, 76, 0.08);
  border-radius: 6px;
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-smooth);
}

.expertise-card:hover {
  border-color: var(--gold);
  background: rgba(27, 38, 59, 0.4);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transform: scale(1.02);
}

.expertise-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 1rem;
}

.expertise-text {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  flex-grow: 1;
}

.expertise-link {
  color: var(--cream);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 1.5rem;
  display: inline-block;
  transition: var(--transition-smooth);
}

.expertise-link i {
  transition: var(--transition-smooth);
}

.expertise-link:hover {
  color: var(--gold);
}

.expertise-link:hover i {
  transform: translateX(5px);
}

/* ==========================================================================
   NOTÍCIAS RECENTES
   ========================================================================== */
.highlights-section {
  background-color: var(--navy-dark);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  font-weight: 600;
  padding: 0.7rem 1.6rem;
  border-radius: 4px;
  text-decoration: none;
  font-size: 0.9rem;
  border: 1px solid var(--gold);
  transition: var(--transition-smooth);
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--navy-dark);
}

.news-card {
  background: rgba(27, 38, 59, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.02);
  border-radius: 6px;
  overflow: hidden;
  height: 100%;
  transition: var(--transition-smooth);
}

.news-card:hover {
  transform: translateY(-5px);
  background: rgba(27, 38, 59, 0.5);
  border-color: rgba(201, 168, 76, 0.2);
}

.news-card-content {
  padding: 2rem;
}

.news-date {
  font-family: var(--font-sans);
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 0.8rem;
}

.news-card-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--cream);
  line-height: 1.3;
  margin-bottom: 1rem;
}

.news-card-excerpt {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.news-card-link {
  color: var(--gold);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition-smooth);
}

.news-card-link:hover {
  color: var(--gold-hover);
}

/* ==========================================================================
   FORMULÁRIO DE CONTATO (GLASSMOPHISM & PREMIUM)
   ========================================================================== */
.contact-section {
  background-color: #0A131C;
}

.contact-description {
  color: var(--text-muted);
  line-height: 1.7;
}

.contact-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.1);
  color: var(--gold);
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(201, 168, 76, 0.2);
}

.contact-label {
  font-size: 0.8rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  display: block;
}

.contact-value {
  color: var(--text-primary);
  margin-bottom: 0;
  font-size: 0.95rem;
}

.contact-form-container {
  background: rgba(27, 38, 59, 0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(201, 168, 76, 0.1);
  padding: 3rem;
  border-radius: 8px;
}

.form-label-custom {
  font-family: var(--font-sans);
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.form-control-custom {
  background: rgba(13, 27, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  color: var(--cream);
  padding: 0.8rem 1rem;
  font-size: 0.95rem;
  width: 100%;
  transition: var(--transition-smooth);
}

.form-control-custom:focus {
  background: rgba(13, 27, 42, 0.8);
  border-color: var(--gold);
  outline: none;
  box-shadow: 0 0 10px rgba(201, 168, 76, 0.15);
}

.form-select-custom {
  background: rgba(13, 27, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  color: var(--cream);
  padding: 0.8rem 1rem;
  font-size: 0.95rem;
  width: 100%;
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23C9A84C' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 16px 12px;
  transition: var(--transition-smooth);
}

.form-select-custom:focus {
  background-color: rgba(13, 27, 42, 0.8);
  border-color: var(--gold);
  outline: none;
}

.form-select-custom option {
  background-color: var(--navy-dark);
  color: var(--cream);
}

.btn-submit {
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: var(--navy-dark);
  font-weight: 600;
  padding: 0.9rem 2.5rem;
  border-radius: 4px;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  border: none;
  cursor: pointer;
  width: 100%;
  box-shadow: 0 4px 15px rgba(201, 168, 76, 0.2);
  transition: var(--transition-smooth);
}

.btn-submit:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 168, 76, 0.35);
  background: linear-gradient(135deg, var(--gold-hover), var(--gold));
}

.btn-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* Mensagens de Sucesso e Erro */
.success-card {
  color: var(--cream);
}

.success-icon {
  font-size: 4rem;
  color: var(--gold);
}

.alert-error {
  background: rgba(220, 53, 69, 0.1);
  border: 1px solid rgba(220, 53, 69, 0.2);
  border-radius: 4px;
  padding: 1rem 1.5rem;
  color: #f87171;
  font-size: 0.9rem;
}

.alert-error ul {
  margin: 0;
  padding-left: 1.2rem;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  .contact-form-container {
    padding: 2rem 1.5rem;
  }
}

/* Extracted from NoticiasDetail.vue */

.loading-container, .empty-container {
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.empty-icon {
  font-size: 4rem;
  color: var(--gold);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: var(--navy-dark);
  font-weight: 600;
  padding: 0.6rem 2rem;
  border-radius: 4px;
  border: none;
  font-size: 0.9rem;
  text-decoration: none;
  display: inline-block;
  transition: var(--transition-smooth);
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-hover), var(--gold));
  transform: translateY(-1px);
  color: var(--navy-dark);
}

/* ==========================================================================
   HERO DE FUNDO DO ARTIGO
   ========================================================================== */
.news-detail-hero {
  position: relative;
  background-image: url('https://images.unsplash.com/photo-1450101499163-c8848c66ca85?w=1600&q=80');
  background-size: cover;
  background-position: center;
  height: 250px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 2rem;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(13, 27, 42, 0.9) 0%, rgba(13, 27, 42, 0.6) 100%);
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
}

.btn-back {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 0.5rem 1.2rem;
  border-radius: 4px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition-smooth);
}

.btn-back:hover {
  background: var(--gold);
  color: var(--navy-dark);
}

/* ==========================================================================
   ESTRUTURA E ESTILO DO ARTIGO (HIGH-END READABILITY)
   ========================================================================== */
.article-container {
  background-color: var(--navy-dark);
  max-width: 850px;
  margin: 0 auto;
  line-height: 1.8;
  font-family: var(--font-sans);
  color: #E2E8F0; /* Slate 200 */
}

.article-category {
  font-family: var(--font-sans);
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 0.5rem;
}

.article-title {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.article-meta {
  color: var(--text-muted);
  font-size: 0.9rem;
  display: flex;
  gap: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 1.5rem;
}

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

/* Estilização para o v-html do Conteúdo Rico */
.article-content {
  font-size: 1.125rem; /* ~18px para leitura extremamente confortável */
  font-weight: 300;
}

.article-content :deep(p) {
  margin-bottom: 1.8rem;
  text-align: justify;
}

.article-content :deep(h2), .article-content :deep(h3) {
  font-family: var(--font-serif);
  color: var(--gold);
  margin-top: 2.5rem;
  margin-bottom: 1.2rem;
  font-weight: 600;
}

.article-content :deep(h2) {
  font-size: 1.8rem;
}

.article-content :deep(h3) {
  font-size: 1.4rem;
}

.article-content :deep(ul), .article-content :deep(ol) {
  margin-bottom: 1.8rem;
  padding-left: 1.5rem;
}

.article-content :deep(li) {
  margin-bottom: 0.6rem;
}

.article-content :deep(strong) {
  color: var(--cream);
  font-weight: 600;
}

.article-content :deep(blockquote) {
  border-left: 3px solid var(--gold);
  padding-left: 1.5rem;
  font-style: italic;
  color: var(--text-muted);
  margin: 2rem 0;
  background: rgba(255, 255, 255, 0.02);
  padding-top: 1rem;
  padding-bottom: 1rem;
}

/* Rodapé do Artigo */
.share-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
}

.btn-share {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid rgba(255, 255, 255, 0.1);
  width: 36px;
  height: 36px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
  text-decoration: none;
}

.btn-share:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 168, 76, 0.05);
}

.badge-category {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
}

/* ==========================================================================
   LEIA TAMBÉM (RELATED ARTICLES)
   ========================================================================== */
.related-section {
  background-color: #0A131C;
}

.related-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--cream);
  position: relative;
  padding-bottom: 0.5rem;
}

.related-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--gold);
}

.news-card {
  background: rgba(27, 38, 59, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.02);
  border-radius: 6px;
  overflow: hidden;
  height: 100%;
  transition: var(--transition-smooth);
}

.news-card:hover {
  transform: translateY(-4px);
  background: rgba(27, 38, 59, 0.5);
  border-color: rgba(201, 168, 76, 0.2);
}

.news-card-content {
  padding: 1.8rem;
}

.news-date {
  font-family: var(--font-sans);
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 500;
  display: block;
  margin-bottom: 0.5rem;
}

.news-card-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--cream);
  line-height: 1.35;
  margin-bottom: 1.2rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.7rem;
}

.news-card-link {
  color: var(--gold);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition-smooth);
}

.news-card-link:hover {
  color: var(--gold-hover);
}

.animate-fade-in {
  animation: fadeIn 0.5s ease-out forwards;
}

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

@media (max-width: 768px) {
  .article-title {
    font-size: 2.2rem;
  }
  .news-detail-hero {
    height: 180px;
  }
}

/* Extracted from NoticiasList.vue */

/* ==========================================================================
   HERO DE NOTÍCIAS (DESIGN PREMIUM)
   ========================================================================== */
.news-hero {
  position: relative;
  background-image: url('../../assets/img/themis.jpeg');
  background-size: cover;
  background-position: center;
  height: 50vh;
  min-height: 350px;
  display: flex;
  align-items: center;
  text-align: center;
}

.news-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(13, 27, 42, 0.95) 0%, rgba(13, 27, 42, 0.75) 100%);
  z-index: 1;
}

.news-hero-container {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 1rem;
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.6;
}

/* ==========================================================================
   FILTROS E BARRA DE BUSCA
   ========================================================================== */
.search-filter-container {
  background: rgba(27, 38, 59, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.03);
  padding: 1.5rem;
  border-radius: 8px;
}

.btn-filter {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.5rem 1.2rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: var(--transition-smooth);
}

.btn-filter:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-filter.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy-dark);
  font-weight: 600;
}

.search-input-group {
  position: relative;
  display: flex;
  align-items: center;
}

.search-icon {
  position: absolute;
  left: 1rem;
  color: var(--gold);
  font-size: 1rem;
}

.search-field {
  background: rgba(13, 27, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  color: var(--cream);
  padding: 0.6rem 2.5rem 0.6rem 2.8rem;
  font-size: 0.9rem;
  width: 100%;
  transition: var(--transition-smooth);
}

.search-field:focus {
  border-color: var(--gold);
  outline: none;
  background: rgba(13, 27, 42, 0.8);
}

.btn-clear {
  position: absolute;
  right: 1rem;
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.btn-clear:hover {
  color: var(--gold);
}

/* ==========================================================================
   GRID E CARDS DE NOTÍCIAS
   ========================================================================== */
.news-list-section {
  background-color: var(--navy-dark);
}

.news-grid {
  display: flex;
  flex-wrap: wrap;
}

.news-card {
  background: rgba(27, 38, 59, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.02);
  border-radius: 6px;
  overflow: hidden;
  height: 100%;
  transition: var(--transition-smooth);
}

.news-card:hover {
  transform: translateY(-5px);
  background: rgba(27, 38, 59, 0.5);
  border-color: rgba(201, 168, 76, 0.2);
}

.news-card-content {
  padding: 2rem;
}

.news-date {
  font-family: var(--font-sans);
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 0.8rem;
}

.news-card-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--cream);
  line-height: 1.35;
  margin-bottom: 1rem;
  min-height: 2.7rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-card-excerpt {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 4.3rem;
}

.news-card-link {
  color: var(--gold);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: inline-block;
  transition: var(--transition-smooth);
}

.news-card-link i {
  transition: var(--transition-smooth);
}

.news-card-link:hover {
  color: var(--gold-hover);
}

.news-card-link:hover i {
  transform: translateX(4px);
}

/* Empty State */
.empty-state {
  color: var(--text-muted);
}

.empty-icon {
  font-size: 4rem;
  color: var(--gold);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: var(--navy-dark);
  font-weight: 600;
  padding: 0.6rem 2rem;
  border-radius: 4px;
  border: none;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-hover), var(--gold));
  transform: translateY(-1px);
}

/* ==========================================================================
   PAGINAÇÃO PREMIUM
   ========================================================================== */
.pagination-custom {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 0.4rem;
  align-items: center;
}

.page-link-custom {
  background: rgba(27, 38, 59, 0.4);
  color: var(--text-muted);
  border: 1px solid rgba(255, 255, 255, 0.05);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition-smooth);
}

.page-link-custom:hover:not(:disabled) {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(27, 38, 59, 0.7);
}

.page-link-custom:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.page-link-custom.active {
  background: var(--gold);
  color: var(--navy-dark);
  border-color: var(--gold);
  font-weight: 700;
}

.page-link-custom.dots {
  background: transparent;
  border: none;
  cursor: default;
}

.animate-fade-in {
  animation: fadeIn 0.5s ease-out forwards;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.2rem;
  }
}

/* Extracted from PaginaAdministrativo.vue */

/* Estilos Compartilhados para Páginas Estáticas */
.area-hero {
  position: relative;
  background-image: url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?w=1600&q=80');
  background-size: cover;
  background-position: center;
  height: 40vh;
  min-height: 280px;
  display: flex;
  align-items: center;
}

.area-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(13, 27, 42, 0.95) 0%, rgba(13, 27, 42, 0.75) 100%);
  z-index: 1;
}

.area-hero-container {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  color: var(--cream);
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
}

/* Corpo de Conteúdo */
.area-content-section {
  background-color: var(--navy-dark);
}

.rich-text-container {
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 1.05rem;
}

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

.lead {
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--cream);
  line-height: 1.6;
}

.sub-title {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.styled-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 2rem;
}

.styled-list li {
  position: relative;
  padding-left: 1.8rem;
  margin-bottom: 1rem;
}

.styled-list li::before {
  content: '\F2E6';
  font-family: 'bootstrap-icons';
  position: absolute;
  left: 0;
  top: 0.1rem;
  color: var(--gold);
  font-size: 1.1rem;
}

.styled-list.gold-bullet li::before {
  content: '\F2EC';
  color: var(--gold);
}

.styled-list.simple li::before {
  content: '\F2E5';
  font-size: 0.9rem;
  top: 0.2rem;
}

/* CTA Box */
.contact-cta-box {
  background: rgba(27, 38, 59, 0.4);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 6px;
  color: var(--cream);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: var(--navy-dark);
  font-weight: 600;
  padding: 0.7rem 2rem;
  border-radius: 4px;
  text-decoration: none;
  font-size: 0.9rem;
  display: inline-block;
  transition: var(--transition-smooth);
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-hover), var(--gold));
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(201, 168, 76, 0.3);
}

/* Sidebar */
.sidebar-box {
  background: rgba(27, 38, 59, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.02);
  border-radius: 6px;
}

.sidebar-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--cream);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.sidebar-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--gold);
}

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

.sidebar-menu li {
  margin-bottom: 0.8rem;
}

.sidebar-link {
  color: var(--text-muted);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.sidebar-link:hover {
  color: var(--gold);
  padding-left: 5px;
}

.sidebar-link.router-link-active {
  color: var(--gold);
  font-weight: 600;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.2rem;
  }
}

/* Extracted from PaginaCivil.vue */

/* Estilos Compartilhados para Páginas Estáticas */
.area-hero {
  position: relative;
  background-image: url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?w=1600&q=80');
  background-size: cover;
  background-position: center;
  height: 40vh;
  min-height: 280px;
  display: flex;
  align-items: center;
}

.area-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(13, 27, 42, 0.95) 0%, rgba(13, 27, 42, 0.75) 100%);
  z-index: 1;
}

.area-hero-container {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  color: var(--cream);
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
}

/* Corpo de Conteúdo */
.area-content-section {
  background-color: var(--navy-dark);
}

.rich-text-container {
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 1.05rem;
}

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

.lead {
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--cream);
  line-height: 1.6;
}

.sub-title {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.styled-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 2rem;
}

.styled-list li {
  position: relative;
  padding-left: 1.8rem;
  margin-bottom: 1rem;
}

.styled-list li::before {
  content: '\F2E6'; /* Bootstrap check-circle-fill or similar */
  font-family: 'bootstrap-icons';
  position: absolute;
  left: 0;
  top: 0.1rem;
  color: var(--gold);
  font-size: 1.1rem;
}

.styled-list.gold-bullet li::before {
  content: '\F2EC'; /* Diamond or star */
  color: var(--gold);
}

.styled-list.simple li::before {
  content: '\F2E5'; /* Dot/circle */
  font-size: 0.9rem;
  top: 0.2rem;
}

/* CTA Box */
.contact-cta-box {
  background: rgba(27, 38, 59, 0.4);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 6px;
  color: var(--cream);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: var(--navy-dark);
  font-weight: 600;
  padding: 0.7rem 2rem;
  border-radius: 4px;
  text-decoration: none;
  font-size: 0.9rem;
  display: inline-block;
  transition: var(--transition-smooth);
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-hover), var(--gold));
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(201, 168, 76, 0.3);
}

/* Sidebar */
.sidebar-box {
  background: rgba(27, 38, 59, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.02);
  border-radius: 6px;
}

.sidebar-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--cream);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.sidebar-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--gold);
}

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

.sidebar-menu li {
  margin-bottom: 0.8rem;
}

.sidebar-link {
  color: var(--text-muted);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.sidebar-link:hover {
  color: var(--gold);
  padding-left: 5px;
}

.sidebar-link.router-link-active {
  color: var(--gold);
  font-weight: 600;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.2rem;
  }
}

/* Extracted from PaginaColaborativa.vue */

/* Estilos Compartilhados para Páginas Estáticas */
.area-hero {
  position: relative;
  background-image: url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?w=1600&q=80');
  background-size: cover;
  background-position: center;
  height: 40vh;
  min-height: 280px;
  display: flex;
  align-items: center;
}

.area-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(13, 27, 42, 0.95) 0%, rgba(13, 27, 42, 0.75) 100%);
  z-index: 1;
}

.area-hero-container {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  color: var(--cream);
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
}

/* Corpo de Conteúdo */
.area-content-section {
  background-color: var(--navy-dark);
}

.rich-text-container {
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 1.05rem;
}

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

.lead {
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--cream);
  line-height: 1.6;
}

.sub-title {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.styled-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 2rem;
}

.styled-list li {
  position: relative;
  padding-left: 1.8rem;
  margin-bottom: 1rem;
}

.styled-list li::before {
  content: '\F2E6';
  font-family: 'bootstrap-icons';
  position: absolute;
  left: 0;
  top: 0.1rem;
  color: var(--gold);
  font-size: 1.1rem;
}

.styled-list.gold-bullet li::before {
  content: '\F2EC';
  color: var(--gold);
}

.styled-list.simple li::before {
  content: '\F2E5';
  font-size: 0.9rem;
  top: 0.2rem;
}

/* CTA Box */
.contact-cta-box {
  background: rgba(27, 38, 59, 0.4);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 6px;
  color: var(--cream);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: var(--navy-dark);
  font-weight: 600;
  padding: 0.7rem 2rem;
  border-radius: 4px;
  text-decoration: none;
  font-size: 0.9rem;
  display: inline-block;
  transition: var(--transition-smooth);
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-hover), var(--gold));
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(201, 168, 76, 0.3);
}

/* Sidebar */
.sidebar-box {
  background: rgba(27, 38, 59, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.02);
  border-radius: 6px;
}

.sidebar-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--cream);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.sidebar-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--gold);
}

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

.sidebar-menu li {
  margin-bottom: 0.8rem;
}

.sidebar-link {
  color: var(--text-muted);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.sidebar-link:hover {
  color: var(--gold);
  padding-left: 5px;
}

.sidebar-link.router-link-active {
  color: var(--gold);
  font-weight: 600;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.2rem;
  }
}

/* Extracted from PaginaContratos.vue */

/* Estilos Compartilhados para Páginas Estáticas */
.area-hero {
  position: relative;
  background-image: url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?w=1600&q=80');
  background-size: cover;
  background-position: center;
  height: 40vh;
  min-height: 280px;
  display: flex;
  align-items: center;
}

.area-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(13, 27, 42, 0.95) 0%, rgba(13, 27, 42, 0.75) 100%);
  z-index: 1;
}

.area-hero-container {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  color: var(--cream);
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
}

/* Corpo de Conteúdo */
.area-content-section {
  background-color: var(--navy-dark);
}

.rich-text-container {
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 1.05rem;
}

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

.lead {
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--cream);
  line-height: 1.6;
}

.sub-title {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.styled-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 2rem;
}

.styled-list li {
  position: relative;
  padding-left: 1.8rem;
  margin-bottom: 1rem;
}

.styled-list li::before {
  content: '\F2E6';
  font-family: 'bootstrap-icons';
  position: absolute;
  left: 0;
  top: 0.1rem;
  color: var(--gold);
  font-size: 1.1rem;
}

.styled-list.gold-bullet li::before {
  content: '\F2EC';
  color: var(--gold);
}

.styled-list.simple li::before {
  content: '\F2E5';
  font-size: 0.9rem;
  top: 0.2rem;
}

/* CTA Box */
.contact-cta-box {
  background: rgba(27, 38, 59, 0.4);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 6px;
  color: var(--cream);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: var(--navy-dark);
  font-weight: 600;
  padding: 0.7rem 2rem;
  border-radius: 4px;
  text-decoration: none;
  font-size: 0.9rem;
  display: inline-block;
  transition: var(--transition-smooth);
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-hover), var(--gold));
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(201, 168, 76, 0.3);
}

/* Sidebar */
.sidebar-box {
  background: rgba(27, 38, 59, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.02);
  border-radius: 6px;
}

.sidebar-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--cream);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.sidebar-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--gold);
}

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

.sidebar-menu li {
  margin-bottom: 0.8rem;
}

.sidebar-link {
  color: var(--text-muted);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.sidebar-link:hover {
  color: var(--gold);
  padding-left: 5px;
}

.sidebar-link.router-link-active {
  color: var(--gold);
  font-weight: 600;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.2rem;
  }
}
