@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700;900&family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Open+Sans:wght@300;400;600&display=swap');

:root {
  --primary-color: #019A25;
  --primary-hover: #00771c;
  --dark-bg: #1a1a1a;
  --darker-bg: #111111;
  --light-bg: #f9f9f9;
  --text-dark: #333333;
  --text-light: #ffffff;
  --text-muted: #777777;

  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  --font-serif: 'Playfair Display', serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--light-bg);
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Header & Nav */
header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: var(--dark-bg);
  opacity: 0.98;
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 3px solid var(--primary-color);
  transition: all 0.3s ease;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
}

.logo a {
  color: var(--text-light);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 1px;
  display: flex !important;
  align-items: center;
  gap: 12px;
}

.site-logo-img {
  max-height: 42px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.logo a:hover .site-logo-img {
  transform: scale(1.05);
}

.logo span {
  color: var(--primary-color);
}

.nav-links {
  display: flex;
  gap: 20px;
}

.nav-links li a {
  color: var(--text-light);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
}

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

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Button */
.btn {
  display: inline-block;
  padding: 12px 30px;
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--text-light);
}

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

.btn-outline {
  background-color: transparent;
  color: var(--text-light);
  border-color: var(--text-light);
}

.btn-outline:hover {
  background-color: var(--text-light);
  color: var(--text-dark);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  text-align: center;
  color: var(--text-light);
  padding-top: 80px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero h6 {
  font-size: 1.2rem;
  color: var(--primary-color);
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 20px;
  line-height: 1.1;
}

.hero p {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 40px;
  font-style: italic;
  color: #ddd;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

/* About Section */
.about {
  padding: 100px 0;
  background-color: #fff;
}

.about .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text h5 {
  color: var(--primary-color);
  font-size: 1rem;
}

.about-text h2 {
  font-size: 2.5rem;
  color: var(--text-dark);
  margin-bottom: 30px;
}

.about-text p {
  margin-bottom: 20px;
  font-size: 1.1rem;
  color: var(--text-muted);
}

.about-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Services */
.services {
  padding: 100px 0;
  background-color: var(--light-bg);
  text-align: center;
}

.services>.container>h5 {
  color: var(--primary-color);
}

.services>.container>h2 {
  font-size: 2.5rem;
  margin-bottom: 60px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  border-bottom: 4px solid transparent;
}

.service-card:hover {
  transform: translateY(-10px);
  border-bottom-color: var(--primary-color);
}

.service-card i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.service-card h4 {
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Partners Section - Restaurado com visual original */
.partners-section {
  padding: 120px 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  text-align: center;
  color: var(--text-light);
}

.partners-section h2 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.partners-section p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 40px;
}

/* News Section */
.news-section {
  padding: 100px 0;
  background-color: #fff;
  text-align: center;
}

.news-section h5 {
  color: var(--primary-color);
}

.news-section h2 {
  font-size: 2.5rem;
  margin-bottom: 50px;
  text-transform: none;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.news-card {
  text-align: left;
  background: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.news-card .news-date {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.news-card h4 {
  margin: 10px 0;
  text-transform: none;
  font-size: 1.25rem;
}

.news-card p {
  color: var(--text-muted);
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.news-card .news-link {
  color: var(--primary-color);
  font-weight: bold;
  font-family: var(--font-heading);
}

.news-card .news-link i {
  margin-left: 5px;
  transition: transform 0.3s ease;
}

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

/* Footer */
footer {
  background-color: var(--darker-bg);
  color: var(--text-light);
  padding: 60px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: var(--text-light);
  position: relative;
  padding-bottom: 10px;
}

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

.footer-col p {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 10px;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
}

.footer-links a:hover {
  color: var(--primary-color);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: -150px;
  left: 0;
  width: 100%;
  background: var(--dark-bg);
  opacity: 0.98;
  backdrop-filter: blur(10px);
  color: #fff;
  padding: 20px 0;
  z-index: 9999;
  transition: bottom 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-banner.show {
  bottom: 0;
}

.cookie-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.cookie-content p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}

.cookie-content a {
  color: var(--primary-color);
  text-decoration: underline;
  font-weight: 600;
}

.cookie-buttons {
  flex-shrink: 0;
}

.cookie-buttons .btn {
  padding: 8px 25px;
  font-size: 0.8rem;
}

@media (max-width: 768px) {
  .cookie-banner {
    padding: 25px 0;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
}

/* Responsive */
@media (max-width: 768px) {
  header .container {
    justify-content: flex-start;
    gap: 20px;
  }

  .logo a {
    font-size: 1.8rem;
    gap: 8px;
    white-space: nowrap;
  }

  .site-logo-img {
    max-height: 30px;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--dark-bg);
    flex-direction: column;
    padding: 20px;
    text-align: center;
  }

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

  .mobile-menu-btn {
    display: block;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .about .container {
    grid-template-columns: 1fr;
  }

  .hero-buttons {
    flex-direction: column;
  }
}

/* =====================
   Página Quem Somos 
   ===================== */

.quem-somos-hero {
  min-height: 500px;
  padding-top: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.quem-somos-hero h6 {
  color: #fff;
  letter-spacing: 2px;
  font-size: 1.5rem;
  font-family: var(--font-heading);
}

.quem-somos-hero h1 {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  margin-bottom: 20px;
  text-transform: none;
  color: #fff;
}

.quem-somos-hero p {
  font-family: var(--font-body);
  max-width: 800px;
  margin: 0 auto 30px;
  color: #eee;
  font-size: 1.1rem;
  font-style: italic;
}

.quem-somos-historia {
  padding: 100px 0;
  background-color: #fff;
  border-bottom: 1px solid #eee;
}

.quem-somos-historia .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.quem-somos-historia h6 {
  color: #999;
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.quem-somos-historia h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: var(--text-dark);
  max-width: 800px;
  text-transform: none;
  line-height: 1.3;
}

.quem-somos-historia p {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 900px;
  text-align: left;
}

.mvv-section {
  padding: 80px 0;
  background-color: var(--dark-bg);
}

.mvv-grid {
  background-color: var(--primary-color);
  border-radius: 8px;
  padding: 60px 40px;
  color: var(--text-light);
  text-align: center;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 50px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.mvv-block h5 {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.mvv-block h2 {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-transform: none;
  color: #fff;
}

.mvv-block p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
}

.acoes-solidarias {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  text-align: center;
  color: var(--text-light);
}

.acao-card {
  padding: 80px 20px;
}

.acao-card.dark {
  background-color: var(--dark-bg);
}

.acao-card.primary {
  background-color: var(--primary-color);
}

.acao-card.darker {
  background-color: var(--darker-bg);
}

.acao-card i {
  font-size: 3rem;
  margin-bottom: 20px;
}

.acao-card.dark i,
.acao-card.darker i {
  color: var(--primary-color);
}

.acao-card h3 {
  margin-bottom: 30px;
  color: #fff;
}

.acao-card.primary .btn-outline {
  border-color: #fff;
  color: #fff;
}

.ajude-section {
  padding: 100px 0;
  background-color: #fff;
}

.ajude-header {
  text-align: center;
}

.ajude-header h5 {
  color: var(--primary-color);
  margin-bottom: 10px;
}

.ajude-header h2 {
  margin-bottom: 60px;
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--light-bg);
  border-radius: 4px;
  cursor: pointer;
  padding: 20px;
}

.faq-item summary {
  font-family: var(--font-heading);
  font-weight: bold;
  font-size: 1.1rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-dark);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  color: var(--text-muted);
  margin-top: 15px;
  border-top: 1px solid #ddd;
  padding-top: 15px;
  transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
  opacity: 1;
  transform: translateY(0);
}

.faq-item summary i {
  color: var(--primary-color);
  transition: transform 0.4s ease;
}

.faq-item[open] summary i {
  transform: rotate(45deg);
}

.team-section {
  padding: 100px 0;
  background-color: var(--light-bg);
  text-align: center;
}

.team-section h5 {
  color: var(--primary-color);
}

.team-section h2 {
  margin-bottom: 60px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.team-member {
  margin-bottom: 20px;
}

.team-member h4 {
  color: var(--primary-color);
  font-size: 1.1rem;
  font-weight: 900;
  margin-bottom: 5px;
}

.team-member span {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--text-muted);
  font-style: italic;
}

/* =====================
   Página Admin (Login) 
   ===================== */
.admin-login-body {
  background-color: #f4f6f9;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  margin: 0;
}

.login-card {
  border: none;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  background: #fff;
}

.login-card-header {
  background-color: var(--primary-color);
  color: #ffffff;
  text-align: center;
  padding: 35px 20px;
}

.login-card-header h3 {
  margin: 0;
  font-weight: 700;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  letter-spacing: 1px;
}

.admin-login-body .btn-brand {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
  font-weight: bold;
  font-family: var(--font-heading);
  text-transform: uppercase;
  padding: 12px;
  border-radius: 6px;
  transition: all 0.3s;
}

.admin-login-body .btn-brand:hover,
.admin-login-body .btn-brand:active,
.admin-login-body .btn-brand:focus {
  background-color: var(--primary-hover);
  border-color: var(--primary-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(1, 154, 37, 0.3);
}

.admin-login-body .input-group-text {
  border-right: none;
  background-color: #f8f9fa;
  color: #adb5bd;
}

.admin-login-body .form-control {
  border-left: none;
  background-color: #f8f9fa;
}

.admin-login-body .form-control:focus {
  box-shadow: none;
  border-color: #ced4da;
  background-color: #fff;
}

/* ============================================================ */
/* NOVAS FUNÇÕES: MODO ESCURO E BOTÃO DE TEMA (LOGIN)           */
/* ============================================================ */

/* Dark Mode para Tela de Login */
.dark-mode.admin-login-body {
  background-color: #1a1d21 !important;
}

.dark-mode .login-card {
  background-color: #212529 !important;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4) !important;
}

.dark-mode .login-card-header {
  background-color: #198754 !important;
}

.dark-mode .login-card .form-label,
.dark-mode .login-card .text-muted {
  color: #adb5bd !important;
}

.dark-mode .admin-back-link a {
  color: #adb5bd !important;
}

.dark-mode .admin-back-link a:hover {
  color: #fff !important;
}

.dark-mode .input-group-text {
  background-color: #2b3035 !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
  color: #fff !important;
}

.dark-mode .form-control {
  background-color: #2b3035 !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
  color: #fff !important;
}

.dark-mode .form-control::placeholder {
  color: rgba(255, 255, 255, 0.5) !important;
}


/* Botão de Tema Flutuante (Login) */
.theme-toggle-login {
  position: fixed;
  top: 30px;
  right: 30px;
  z-index: 1000;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: white;
  border: 1px solid #dee2e6;
  display: flex !important;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  color: #6c757d;
  font-size: 1.2rem;
}

.theme-toggle-login:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.dark-mode .theme-toggle-login {
  background: #2b3035 !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
  color: #ffc107 !important;
}


.admin-login-body .form-control:focus+.input-group-text {
  background-color: #fff;
}

.admin-back-link {
  text-align: center;
  margin-top: 20px;
}

.admin-back-link a {
  color: #6c757d;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

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

/* =====================
   Loading Overlay (Global)
   ===================== */
.loader-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(5px);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.loader-overlay.active {
  opacity: 1;
  visibility: visible;
}

.spinner {
  width: 60px;
  height: 60px;
  border: 6px solid rgba(1, 154, 37, 0.15);
  border-top-color: var(--primary-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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

.loader-text {
  margin-top: 20px;
  font-family: var(--font-heading);
  color: var(--primary-color);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

/* =====================
   Transparencia Page Elements
   ===================== */
.transparencia-hero {
  min-height: 480px;
  padding-top: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-bottom: 5px solid var(--primary-color);
}

.transparencia-hero h6 {
  font-size: 1.5rem;
  color: #fff;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 15px;
  font-family: var(--font-heading);
}

.transparencia-hero h1 {
  font-size: 3.5rem;
  font-weight: 900;
  color: #ffffff;
  font-family: var(--font-heading);
  margin-bottom: 20px;
  text-transform: none;
}

.transparencia-hero h1 span {
  color: var(--primary-color);
}

.transparencia-hero p {
  color: #eee;
  max-width: 800px;
  margin: 0 auto 30px auto;
  font-size: 1.15rem;
  line-height: 1.6;
  font-style: italic;
}

.arquivos-section {
  padding: 80px 0;
  background: #dee2e6;
  min-height: 50vh;
}

.transparencia-empty {
  text-align: center;
  padding: 50px 0;
}

.transparencia-empty i {
  color: var(--text-muted);
  opacity: 0.3;
  margin-bottom: 25px;
}

.transparencia-empty h3 {
  font-weight: 700;
  color: #444;
}

.transparencia-empty p {
  color: var(--text-muted);
}

/* =====================
   Transparencia Accordion (Pure CSS/JS)
   ===================== */
.faq-accordion {
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  /* Sombra mais destacada no cinza */
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
  border: 1px solid #e0e0e0;
}

.faq-item {
  border-bottom: 1px solid #eaeaea;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-header {
  width: 100%;
  text-align: left;
  background-color: #fff;
  border: none;
  padding: 25px 30px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  color: #222;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-header:hover,
.faq-header.active {
  background-color: #f0f2f5;
  color: var(--primary-color);
}

.faq-header i {
  color: #ffc107;
  margin-right: 15px;
  transition: transform 0.3s ease;
}

.faq-header.active i {
  transform: rotate(90deg);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-in-out;
  background-color: #fcfcfc;
}

.faq-content {
  padding: 0 30px 30px 30px;
}

.faq-document-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 20px 0;
  border-bottom: 1px solid #eaeaea;
  gap: 15px;
}

.faq-document-row:last-child {
  border-bottom: none;
}

.document-info {
  display: flex;
  align-items: center;
}

.document-icon {
  width: 55px;
  height: 55px;
  background-color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.06);
  margin-right: 18px;
}

.document-icon i.fa-file-pdf {
  color: #dc3545;
  font-size: 1.8rem;
}

.document-icon i.fa-file-image {
  color: #0d6efd;
  font-size: 1.8rem;
}

.document-title {
  font-family: var(--font-heading);
  color: #333;
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 5px;
}

.document-meta {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.document-btn {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  background: transparent;
  padding: 10px 28px;
  border-radius: 30px;
  font-weight: 700;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
}

.document-btn:hover {
  background: var(--primary-color);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(1, 154, 37, 0.2);
}

/* =====================
   Noticia/Blog Page Styles
   ===================== */
.noticia-hero-v2 {
  position: relative;
  min-height: 450px;
  background-color: var(--dark-bg);
  display: flex;
  align-items: flex-end;
  padding-top: 130px;
  padding-bottom: 60px;
  color: #fff;
  overflow: hidden;
}

.noticia-hero-v2 .hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  z-index: 1;
}

.noticia-hero-v2 .hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
  z-index: 2;
}

.noticia-hero-v2 .container {
  position: relative;
  z-index: 3;
}

.noticia-hero-v2 .category-tag {
  background: var(--primary-color);
  color: #fff;
  padding: 5px 15px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  display: inline-block;
}

.noticia-hero-v2 h1 {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.1;
  text-transform: none;
  margin-bottom: 20px;
  color: #fff;
  font-family: var(--font-heading);
}

.noticia-meta-v2 {
  display: flex;
  gap: 25px;
  font-size: 0.95rem;
  color: #ccc;
  font-family: var(--font-body);
}

.noticia-meta-v2 span i {
  color: var(--primary-color);
  margin-right: 8px;
}

.noticia-wrapper {
  padding: 80px 0;
  background: #fff;
}

.noticia-main-content {
  font-size: 1.25rem;
  line-height: 1.9;
  color: #333;
  font-family: var(--font-body);
}

.noticia-main-content p {
  margin-bottom: 25px;
}

.noticia-main-content blockquote {
  border-left: 5px solid var(--primary-color);
  padding: 20px 30px;
  font-style: italic;
  background: #f8f9fa;
  margin: 40px 0;
  color: #555;
  font-size: 1.4rem;
}

.noticia-share-sidebar {
  padding-top: 10px;
  position: sticky;
  top: 120px;
}

.share-title {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 15px;
  display: block;
  letter-spacing: 1px;
}

.noticia-share-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.share-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0f2f5;
  color: #555;
  transition: all 0.3s ease;
  font-size: 1.2rem;
}

.share-btn:hover {
  background: var(--primary-color);
  color: #fff;
  transform: translateY(-3px);
}

.noticia-back {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid #eee;
}

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

  .noticia-hero-v2 {
    min-height: 350px;
    padding-top: 100px;
    padding-bottom: 40px;
  }

  .noticia-share-sidebar {
    position: relative;
    top: 0;
    margin-bottom: 40px;
  }

  .noticia-share-btns {
    flex-direction: row;
  }
}

/* =====================
   Página de Contato
   ===================== */
.contact-hero {
  min-height: 400px;
  padding-top: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-bottom: 5px solid var(--primary-color);
  color: #fff;
}

.contact-hero h6 {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.contact-hero h1 {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 20px;
}

.contact-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 50px;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-card {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: transform 0.3s ease;
}

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

.contact-card i {
  font-size: 1.5rem;
  color: var(--primary-color);
  background: rgba(var(--primary-rgb), 0.1);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
}

.contact-card h4 {
  margin-bottom: 5px;
  font-weight: 700;
  color: #333;
}

.contact-card p,
.contact-card a {
  color: #777;
  text-decoration: none;
}

.whatsapp-btn-large {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background-color: #25d366;
  color: #fff !important;
  padding: 20px;
  border-radius: 15px;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
}

.whatsapp-btn-large:hover {
  background-color: #128c7e;
  transform: scale(1.02);
  box-shadow: 0 15px 30px rgba(37, 211, 102, 0.3);
}

.contact-form-container {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #444;
}

.contact-form .form-control {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #eee;
  border-radius: 10px;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

.contact-form .form-control:focus {
  outline: none;
  border-color: var(--primary-color);
}

.contact-form textarea.form-control {
  resize: vertical;
  min-height: 150px;
}

.btn-send-contact {
  background: var(--primary-color);
  color: #fff;
  border: none;
  padding: 15px 40px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  width: 100%;
  transition: background 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-send-contact:hover {
  background: var(--primary-hover);
}

.map-container {
  margin-top: 50px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  height: 450px;
}

@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .contact-hero h1 {
    font-size: 2.5rem;
  }
}

/* Estilos para o Login Administrativo (Dark Mode Support) */
.admin-login-body.dark-mode-admin {
  background-color: #0b0f13;
  color: #e2e8f0;
}

.dark-mode-admin .login-card {
  background-color: #151c24;
  border: 1px solid #2d3748;
  color: #e2e8f0;
}

.dark-mode-admin .login-card-header {
  background: linear-gradient(135deg, #019A25 0%, #00771c 100%);
}

.dark-mode-admin .input-group-text {
  background-color: #1a202c;
  border-color: #2d3748;
  color: #a0aec0;
}

.dark-mode-admin .form-control {
  background-color: #1a202c;
  border-color: #2d3748;
  color: #e2e8f0;
}

.dark-mode-admin .form-control:focus {
  background-color: #1a202c;
  color: #e2e8f0;
  border-color: #019A25;
}

.dark-mode-admin .admin-back-link a {
  color: #a0aec0;
}

.dark-mode-admin .admin-back-link a:hover {
  color: #019A25;
}