/* ========================================
   UNIFIED CSS - Organização Completa
   ======================================== */
/* ========================================
   ESTILOS SIMPLES PARA PIX DONATION
   ======================================== */

/* Hero Simples */
.pix-hero-simple {
  background: var(--gradient-primary);
  color: white;
  padding: 120px 0 80px;
  text-align: center;
}

.hero-title-simple {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.hero-subtitle-simple {
  font-size: 1.2rem;
  opacity: 0.9;
  margin: 0;
}

/* Seção PIX Simples */
.pix-section-simple {
  padding: 80px 0;
  background: #f8f9fa;
}

.pix-card-simple {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pix-icon-large {
  font-size: 3rem;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

/* Tabs Simples */
.pix-tabs-simple {
  display: flex;
  background: #f8f9fa;
  border-radius: 10px;
  padding: 5px;
  margin-bottom: 30px;
}

.tab-btn {
  flex: 1;
  background: none;
  border: none;
  padding: 15px;
  border-radius: 8px;
  font-weight: 600;
  color: #666;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.tab-btn.active {
  background: var(--gradient-primary);
  color: white;
}

.tab-btn:hover:not(.active) {
  background: #e9ecef;
}

/* Conteúdo das Tabs */
.tab-content {
  display: block !important;
}

.tab-content.active {
  display: block;
}

/* QR Code Simples */
.qr-code-simple {
  width: 200px;
  height: 200px;
  margin: 0 auto 20px;
  padding: 15px;
  background: white;
  border: 3px solid var(--primary-color);
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.qr-code-simple img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.qr-text {
  color: #666;
  font-size: 1rem;
  margin: 0;
}

/* Chave PIX Simples */
.pix-key-simple label {
  display: block;
  font-weight: 600;
  margin-bottom: 10px;
  color: #333;
}

.key-group {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.key-group input {
  flex: 1;
  padding: 12px 15px;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-family: monospace;
  font-size: 1rem;
  background: #f8f9fa;
}

.key-group input:focus {
  outline: none;
  border-color: var(--primary-color);
}

.key-group button {
  background: var(--gradient-primary);
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.key-group button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

/* Botão WhatsApp Simples */
.btn-whatsapp-simple {
  background: #25d366;
  color: white;
  padding: 15px 30px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.btn-whatsapp-simple:hover {
  background: #1ea952;
  color: white;
  text-decoration: none;
  transform: translateY(-2px);
}

/* Valores Simples */
.values-section-simple {
  padding: 80px 0;
  background: white;
}

.value-card-simple {
  background: white;
  border: 2px solid #e9ecef;
  border-radius: 15px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.value-card-simple:hover {
  border-color: var(--primary-color);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.value-card-simple.featured {
  border-color: var(--primary-color);
  background: rgba(102, 126, 234, 0.05);
}

.value-amount {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.value-desc {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
}

.popular {
  position: absolute;
  top: -8px;
  right: 15px;
  background: var(--primary-color);
  color: white;
  padding: 4px 12px;
  border-radius: 10px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* Footer Simples */
.footer-simple {
  background: #2c3e50;
  color: white;
  padding: 40px 0 20px;
}

.footer-simple h5 {
  color: white;
  margin-bottom: 15px;
}

.footer-simple p {
  color: #bdc3c7;
  margin-bottom: 8px;
}

.footer-simple i {
  color: var(--primary-color);
  margin-right: 8px;
}

.footer-simple hr {
  border-color: #34495e;
  margin: 30px 0 20px;
}

/* Responsivo */
@media (max-width: 768px) {
  .hero-title-simple {
    font-size: 2rem;
  }

  .pix-card-simple {
    padding: 30px 20px;
  }

  .pix-tabs-simple {
    flex-direction: column;
    gap: 5px;
  }

  .key-group {
    flex-direction: column;
  }

  .key-group button {
    width: 100%;
  }

  .qr-code-simple {
    width: 180px;
    height: 180px;
  }
}

/* Animações Suaves */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tab-content.active {
  animation: fadeIn 0.3s ease;
}

/* Estados de Foco para Acessibilidade */
.tab-btn:focus,
.key-group button:focus,
.btn-whatsapp-simple:focus {
  outline: 3px solid rgba(102, 126, 234, 0.3);
  outline-offset: 2px;
}

/* ========================================
   1. RESET E VARIÁVEIS
   ======================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
}

:root {
  --primary-color: #93d8ff;
  --secondary-color: #19488d;
  --success-color: #28a745;
  --info-color: #17a2b8;
  --warning-color: #ffc107;
  --danger-color: #dc3545;
  --light-color: #f8f9fa;
  --dark-color: #343a40;
  --gradient-primary: linear-gradient(135deg, #93d8ff 0%, #19488d 100%);
  --gradient-success: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  --shadow-light: 0 5px 15px rgba(0, 0, 0, 0.1);
  --shadow-medium: 0 10px 30px rgba(0, 0, 0, 0.15);
  --shadow-heavy: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* ========================================
   2. NAVBAR
   ======================================== */
.navbar-custom {
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(102, 126, 234, 0.1);
  transition: all 0.3s ease;
  padding: 15px 0;
}

.navbar-custom.scrolled {
  background: rgba(255, 255, 255, 0.98) !important;
  box-shadow: 0 2px 20px rgba(102, 126, 234, 0.1);
  padding: 10px 0;
}

.navbar-brand {
  font-weight: bold;
  font-size: 1.3rem;
  color: #333 !important;
  transition: all 0.3s ease;
}

.navbar-brand:hover {
  transform: scale(1.05);
}

.navbar-brand img {
  height: 50px;
  width: auto;
  transition: all 0.3s ease;
}

.navbar-custom.scrolled .navbar-brand img {
  height: 40px;
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: #333 !important;
  padding: 10px 15px !important;
  margin: 0 5px;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
}

.navbar-nav .nav-link:hover {
  color: #93d8ff !important;
  background: rgba(102, 126, 234, 0.1);
  transform: translateY(-2px);
}

.navbar-nav .nav-link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #93d8ff, #19488d);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::before {
  width: 80%;
}

.dropdown-menu {
  border: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  padding: 10px 0;
  margin-top: 10px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
}

.dropdown-item {
  padding: 10px 20px;
  font-weight: 500;
  color: #333;
  transition: all 0.3s ease;
  border-radius: 8px;
  margin: 2px 10px;
}

.dropdown-item:hover {
  background: linear-gradient(135deg, #93d8ff, #19488d);
  color: white !important;
  transform: translateX(5px);
}

.navbar-toggler {
  border: none;
  padding: 8px 12px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.2);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.nav-link.dropdown-toggle::after {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.nav-link.dropdown-toggle[aria-expanded="true"]::after {
  transform: rotate(180deg);
}

/* ========================================
   3. SEÇÕES E COMPONENTES BASE
   ======================================== */
.section-padding {
  padding: 80px 0;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 25px;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(135deg, #93d8ff 0%, #19488d 100%);
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 60px;
}

.section-divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #93d8ff 0%, #19488d 100%);
  margin: 0 auto 40px;
  border-radius: 2px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
}

.section-header p {
  font-size: 1.2rem;
  color: #666;
}

/* ========================================
   4. HERO SECTIONS
   ======================================== */
.hero-section {
  background: var(--gradient-primary);
  color: white;
  padding: 120px 0 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("/placeholder.svg?height=1080&width=1920&text=Background") center / cover;
  opacity: 0.1;
  z-index: 0;
}

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

.hero-section h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-section .lead {
  font-size: 1.3rem;
  opacity: 0.9;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Hero Carousel (Home) */
.hero-carousel {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.carousel-item {
  height: 100vh;
  position: relative;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.3s ease;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  text-align: left;
  color: white;
  max-width: 700px;
  padding: 0 10px;
  padding-top: 150px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 25px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.hero-text {
  font-size: 1.3rem;
  margin-bottom: 35px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  line-height: 1.6;
  opacity: 0.95;
}

.hero-subtitle {
  font-size: 1.3rem;
  opacity: 0.9;
  margin-bottom: 30px;
  line-height: 1.5;
}

.hero-features {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.feature-item i {
  font-size: 1.2rem;
  color: #ffd700;
}

.hero-illustration {
  position: relative;
  z-index: 1;
}

/* ========================================
   5. BOTÕES
   ======================================== */
.btn-primary {
  background: var(--gradient-primary);
  border: none;
  border-radius: 25px;
  padding: 12px 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.btn-lg {
  padding: 15px 40px;
  font-size: 1.1rem;
}

.btn-hero {
  background: linear-gradient(135deg, #93d8ff 0%, #19488d 100%);
  color: white;
  padding: 15px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 5px 15px rgba(102, 159, 234, 0.4);
}

.btn-hero:hover {
  color: white;
  text-decoration: none;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.6);
}

.btn-whatsapp {
  background: #25d366;
  border: none;
}

.btn-whatsapp:hover {
  background: #1ea952;
}

.download-btn {
  background: var(--gradient-primary);
  color: white;
  padding: 15px 40px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  border: none;
  font-size: 1.1rem;
}

.download-btn:hover {
  color: white;
  text-decoration: none;
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
}

/* ========================================
   6. CARDS
   ======================================== */
.info-card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: var(--shadow-light);
  transition: all 0.3s ease;
  height: 100%;
  margin-bottom: 30px;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.info-card h4 {
  color: var(--primary-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.cta-card {
  background: var(--gradient-primary);
  color: white;
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: var(--shadow-medium);
  height: 100%;
}

.cta-card h4 {
  color: white;
  margin-bottom: 20px;
}

.team-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: all 0.3s ease;
  margin-bottom: 30px;
  height: 100%;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-medium);
}

.team-image {
  height: 200px;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 3rem;
}

/* ========================================
   7. LISTAS E ELEMENTOS
   ======================================== */
.info-list {
  list-style: none;
  padding: 0;
}

.info-list li {
  padding: 8px 0;
  border-bottom: 1px solid #eee;
  position: relative;
  padding-left: 25px;
}

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

.info-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success-color);
  font-weight: bold;
}

.info-list.negative li::before {
  content: "✗";
  color: var(--danger-color);
}

/* ========================================
   8. STATS E TIMELINE
   ======================================== */
.stats-section {
  background: var(--gradient-primary);
  color: white;
  padding: 80px 0;
}

.stat-card {
  text-align: center;
  padding: 30px;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
  font-size: 1.1rem;
  opacity: 0.9;
}

.stats-simple {
  display: flex;
  gap: 40px;
  margin-top: 40px;
}

.stat-item {
  text-align: center;
}

.stat-item .stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--secondary-color);
  margin-bottom: 5px;
}

.stat-item .stat-label {
  font-size: 1rem;
  color: #666;
  font-weight: 600;
}

.timeline {
  position: relative;
  padding: 20px 0;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--gradient-primary);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  margin: 40px 0;
}

.timeline-content {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: var(--shadow-light);
  width: 45%;
  position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
  margin-left: auto;
  margin-right: 55%;
}

.timeline-item:nth-child(even) .timeline-content {
  margin-left: 55%;
}

.timeline-date {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: var(--gradient-primary);
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: bold;
  z-index: 2;
}

/* ========================================
   9. PÁGINAS ESPECÍFICAS - DIRETORIA
   ======================================== */
.diretoria-hero {
  background: linear-gradient(135deg, #93d8ff 0%, #19488d 100%);
  color: white;
  padding: 150px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.diretoria-section {
  padding: 80px 0;
  background: white;
}

.director-card {
  background: white;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  border: 2px solid transparent;
}

.director-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--primary-color);
}

.director-image {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, #93d8ff 0%, #19488d 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  position: relative;
}

.director-image i {
  font-size: 4rem;
  color: white;
}

.director-info h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
}

.director-role {
  background: linear-gradient(135deg, #93d8ff 0%, #19488d 100%);
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-block;
  margin-bottom: 20px;
}

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

.team-description {
  background: white;
  border-radius: 20px;
  padding: 50px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}


.team-areas {
  margin-bottom: 40px;
}

.area-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.area-item:hover {
  background: #e9ecef;
  transform: translateX(5px);
}

.area-item i {
  font-size: 2rem;
  color: var(--primary-color);
  margin-top: 5px;
  flex-shrink: 0;
}

.team-values {
  background: linear-gradient(135deg, #93d8ff 0%, #19488d 100%);
  color: white;
  padding: 30px;
  border-radius: 15px;
  margin-bottom: 30px;
}

.team-values h4 {
  color: white;
  font-weight: 700;
  margin-bottom: 15px;
}

.commitment-box {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 25px;
  background: rgba(102, 126, 234, 0.1);
  border-radius: 15px;
  border-left: 4px solid var(--primary-color);
}

.transparency-section {
  padding: 80px 0;
  background: white;
}

.transparency-card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  border: 2px solid transparent;
}

.transparency-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border-color: var(--primary-color);
}

/* ========================================
   10. PÁGINAS ESPECÍFICAS - CONTATO
   ======================================== */
.contact-hero {
  background: var(--gradient-primary);
  color: white;
  padding: 150px 0 100px;
  text-align: center;
}

.contact-section {
  padding: 80px 0;
  background: var(--light-color);
}

.contact-card {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow-light);
  height: 100%;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  padding: 20px;
  background: var(--light-color);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.contact-item:hover {
  background: #e9ecef;
  transform: translateX(5px);
}

.contact-icon {
  font-size: 2rem;
  color: var(--secondary-color);
  margin-right: 20px;
  width: 50px;
  text-align: center;
}

.contact-info h5 {
  margin-bottom: 5px;
  color: var(--secondary-color);
  font-weight: 600;
}

.contact-info p {
  margin: 0;
  color: #666;
}

.social-links {
  margin-top: 30px;
  display: flex;
  gap: 15px;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin: 0 10px;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-btn.whatsapp {
  background: #25d366;
  color: white;
}

.social-btn.facebook {
  background: #1877f2;
  color: white;
}

.social-btn.instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: white;
}

.social-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
  color: white;
  text-decoration: none;
}

.hours-card {
  background: var(--gradient-primary);
  color: white;
  border-radius: 15px;
  padding: 25px;
  margin-bottom: 20px;
}

.hours-card h4 {
  color: white;
  margin-bottom: 15px;
}

.map-container {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  height: 400px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ========================================
   11. PÁGINAS ESPECÍFICAS - DOCUMENTOS
   ======================================== */
.document-hero {
  background: var(--gradient-primary);
  color: white;
  padding: 150px 0 100px;
  text-align: center;
  position: relative;
}

.document-container {
  padding: 80px 0;
}

.document-card {
  background: white;
  border-radius: 20px;
  padding: 50px;
  box-shadow: var(--shadow-medium);
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.document-icon {
  font-size: 4rem;
  color: var(--secondary-color);
  margin-bottom: 30px;
}

.document-info-card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: var(--shadow-light);
  transition: all 0.3s ease;
  height: 100%;
  margin-bottom: 30px;
  text-align: center;
}

.document-info-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.document-info-card h4,
.document-info-card h5 {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: 600;
}

/* ========================================
   12. PÁGINAS ESPECÍFICAS - DOAÇÃO
   ======================================== */
.content-section {
  padding: 80px 0;
}

.content-section.bg-light {
  background: var(--light-color);
}

.category-nav {
  background: white;
  border-radius: 50px;
  padding: 10px;
  box-shadow: var(--shadow-light);
}

.category-nav .nav-link {
  border-radius: 25px;
  padding: 12px 25px;
  color: #666;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
}

.category-nav .nav-link.active {
  background: var(--gradient-primary);
  color: white;
}

.category-nav .nav-link:hover {
  color: var(--primary-color);
}

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

.donation-item {
  background: white;
  border-radius: 15px;
  padding: 25px 20px;
  text-align: center;
  box-shadow: var(--shadow-light);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.donation-item:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
  box-shadow: var(--shadow-medium);
}

.donation-number {
  background: var(--gradient-primary);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin: 0 auto 15px;
  font-size: 1.1rem;
}

.donation-name {
  font-weight: 600;
  color: #333;
  font-size: 1.1rem;
}

.values-section,
.other-ways-section {
  padding: 80px 0;
}

.other-ways-section {
  background: var(--light-color);
}

.value-card,
.way-card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: var(--shadow-light);
  transition: all 0.3s ease;
  height: 100%;
}

.value-card:hover,
.way-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.value-price {
  font-size: 2rem;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.value-title,
.way-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
}

.value-description,
.way-description {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.way-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

/* ========================================
   13. PÁGINAS ESPECÍFICAS - PIX
   ======================================== */
.pix-hero {
  background: linear-gradient(135deg, #93d8ff 0%, #19488d 100%);
  color: white;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.pix-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.pix-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.2);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
}

.pix-main {
  padding: 80px 0;
  background: #f8f9fa;
}

.pix-donation-card {
  background: white;
  border-radius: 25px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  position: relative;
}

.card-header-custom {
  background: linear-gradient(135deg, #93d8ff 0%, #19488d 100%);
  color: white;
  padding: 40px;
  text-align: center;
  position: relative;
}

.pix-logo {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  backdrop-filter: blur(10px);
}

.pix-methods {
  padding: 40px;
}

.method-tabs {
  display: flex;
  background: #f8f9fa;
  border-radius: 15px;
  padding: 8px;
  margin-bottom: 30px;
}

.method-tab {
  flex: 1;
  background: none;
  border: none;
  padding: 15px 20px;
  border-radius: 10px;
  font-weight: 600;
  color: #666;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.method-tab.active {
  background: linear-gradient(135deg, #93d8ff 0%, #19488d 100%);
  color: white;
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.method-panel {
  display: none;
  animation: fadeIn 0.3s ease;
}

.method-panel.active {
  display: block;
}

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

.qr-container {
  text-align: center;
}

.qr-code {
  width: 200px;
  height: 200px;
  margin: 0 auto 20px;
  padding: 20px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 3px solid #93d8ff;
}

.pix-key-container {
  max-width: 400px;
  margin: 0 auto;
}

.key-input-group {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.key-input {
  flex: 1;
  padding: 15px 20px;
  border: 2px solid #e9ecef;
  border-radius: 15px;
  font-family: "Courier New", monospace;
  font-size: 1.1rem;
  font-weight: 600;
  background: #f8f9fa;
  color: #333;
}

.copy-btn {
  background: linear-gradient(135deg, #93d8ff 0%, #19488d 100%);
  color: white;
  border: none;
  padding: 15px 25px;
  border-radius: 15px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.copy-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.copy-btn.copied {
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}

.pix-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin: 30px 0;
  flex-wrap: wrap;
}

.action-btn {
  padding: 15px 30px;
  border-radius: 15px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.action-btn.primary {
  background: #25d366;
  color: white;
}

.action-btn.primary:hover {
  background: #1ea952;
  color: white;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

.action-btn.secondary {
  background: #f8f9fa;
  color: #93d8ff;
  border: 2px solid #e9ecef;
}

.action-btn.secondary:hover {
  background: #93d8ff;
  color: white;
  text-decoration: none;
  border-color: #93d8ff;
  transform: translateY(-2px);
}

.security-info {
  text-align: center;
  color: #28a745;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 20px;
  background: rgba(40, 167, 69, 0.1);
  border-radius: 15px;
  margin-top: 20px;
}

.impact-section {
  padding: 80px 0;
  background: white;
}

.impact-card {
  background: white;
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  border: 2px solid transparent;
}

.impact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: #93d8ff;
}

.impact-card.featured {
  background: linear-gradient(135deg, #93d8ff 0%, #19488d 100%);
  color: white;
  transform: scale(1.05);
}

.impact-icon {
  width: 80px;
  height: 80px;
  background: rgba(102, 126, 234, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.impact-value {
  font-size: 2.5rem;
  font-weight: 800;
  color: #93d8ff;
  margin-bottom: 10px;
}

.other-ways {
  padding: 80px 0;
  background: #f8f9fa;
}

/* ========================================
   14. PÁGINAS ESPECÍFICAS - HOME
   ======================================== */
.about-section {
  padding: 100px 0;
  background: white;
}

.about-section .lead {
  font-size: 1.3rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 25px;
}

.about-section p {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: 30px;
}

.about-image {
  position: relative;
}

.about-image img {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.about-image:hover img {
  transform: translateY(-10px);
}

.gallery-section {
  padding: 100px 0;
  background: #f8f9fa;
}

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

.gallery-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.gallery-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  padding: 30px 20px 20px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #93d8ff 0%, #19488d 100%);
  color: white;
  text-align: center;
}

.cta-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-section .lead {
  font-size: 1.2rem;
  opacity: 0.95;
  margin-bottom: 40px;
  line-height: 1.6;
}

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

.btn-cta {
  padding: 15px 35px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

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

.btn-cta.primary:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

.btn-cta.secondary {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.btn-cta.secondary:hover {
  background: rgba(255, 255, 255, 0.3);
  color: white;
  text-decoration: none;
  transform: translateY(-3px);
}

.simple-footer {
  background: #2c3e50;
  color: white;
  padding: 60px 0 30px;
}

.simple-footer h5,
.simple-footer h6 {
  color: white;
  font-weight: 600;
  margin-bottom: 20px;
}

.simple-footer p {
  color: #bdc3c7;
  line-height: 1.6;
}

.simple-footer i {
  color: var(--primary-color);
  margin-right: 8px;
}

.simple-footer hr {
  border-color: #34495e;
  margin: 40px 0 20px;
}

/* ========================================
   15. CAROUSEL CONTROLS
   ======================================== */
.carousel-control-prev,
.carousel-control-next {
  width: 60px;
  height: 60px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.8;
}

.carousel-control-prev {
  left: 30px;
}

.carousel-control-next {
  right: 30px;
}

.carousel-control-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.carousel-control-icon:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.carousel-control-icon i {
  font-size: 1.5rem;
  color: white;
}

.carousel-indicators {
  bottom: 30px;
}

.carousel-indicators li {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin: 0 8px;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  transition: all 0.3s ease;
}

.carousel-indicators .active {
  background: white;
  transform: scale(1.2);
}

/* ========================================
   16. FLOATING DONATION BUTTON
   ======================================== */
.floating-donation {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--gradient-success);
  color: white;
  padding: 15px 25px;
  border-radius: 50px;
  box-shadow: 0 8px 25px rgba(40, 167, 69, 0.4);
  text-align: center;
  font-size: 16px;
  z-index: 1000;
  transition: all 0.3s ease;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: pulse 2s infinite;
}

.floating-donation:hover {
  color: white;
  text-decoration: none;
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(40, 167, 69, 0.6);
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.4);
  }
  50% {
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.8);
  }
}

/* ========================================
   17. RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 991px) {
  .navbar-collapse {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 20px;
    margin-top: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }

  .navbar-nav .nav-link {
    margin: 5px 0;
    text-align: center;
  }

  .dropdown-menu {
    background: rgba(248, 249, 250, 0.95);
    margin: 10px 0;
  }
}

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

  .hero-text {
    font-size: 1.1rem;
  }

  .section-padding {
    padding: 60px 0;
  }

  .section-title {
    font-size: 2rem;
  }

  .about-section,
  .gallery-section,
  .cta-section {
    padding: 60px 0;
  }

  .timeline::before {
    left: 20px;
  }

  .timeline-content {
    width: calc(100% - 60px) !important;
    margin-left: 60px !important;
  }

  .timeline-date {
    left: 20px;
    transform: translateY(-50%);
  }

  .floating-donation {
    bottom: 20px;
    right: 20px;
    padding: 12px 20px;
    font-size: 14px;
  }

  .document-card {
    padding: 30px 20px;
  }

  .contact-item {
    flex-direction: column;
    text-align: center;
  }

  .contact-icon {
    margin-right: 0;
    margin-bottom: 10px;
  }

  .donation-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
  }

  .donation-item {
    padding: 20px 15px;
  }

  .pix-card {
    padding: 30px 20px;
  }

  .pix-actions {
    flex-direction: column;
  }

  .key-input-group {
    flex-direction: column;
  }

  .copy-btn {
    justify-content: center;
  }

  .method-tabs {
    flex-direction: column;
    gap: 8px;
  }

  .area-item {
    flex-direction: column;
    text-align: center;
  }

  .area-item i {
    margin-top: 0;
    margin-bottom: 10px;
  }

  .commitment-box {
    flex-direction: column;
    text-align: center;
  }

  .commitment-box i {
    margin-bottom: 15px;
  }

  .stats-simple {
    justify-content: center;
    gap: 30px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .carousel-control-prev,
  .carousel-control-next {
    width: 50px;
    height: 50px;
  }

  .carousel-control-prev {
    left: 15px;
  }

  .carousel-control-next {
    right: 15px;
  }

  .carousel-control-icon {
    width: 50px;
    height: 50px;
  }

  .impact-card.featured {
    transform: none;
  }

  .impact-card.featured:hover {
    transform: translateY(-10px);
  }
}

@media (max-width: 576px) {
  .hero-carousel {
    height: 70vh;
  }

  .carousel-item {
    height: 70vh;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-text {
    font-size: 1rem;
  }

  .btn-hero {
    padding: 12px 30px;
    font-size: 1rem;
  }

  .category-nav {
    flex-direction: column;
    gap: 10px;
  }
}

/* ========================================
   18. ANIMAÇÕES E TRANSIÇÕES
   ======================================== */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-slide-up {
  animation: slideInUp 0.6s ease-out;
}

.animate-slide-left {
  animation: slideInLeft 0.6s ease-out;
}

.animate-slide-right {
  animation: slideInRight 0.6s ease-out;
}

/* ========================================
   19. UTILITÁRIOS
   ======================================== */
.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-gradient-primary {
  background: var(--gradient-primary);
}

.bg-gradient-success {
  background: var(--gradient-success);
}

.shadow-custom {
  box-shadow: var(--shadow-medium);
}

.border-gradient {
  border: 2px solid transparent;
  background: linear-gradient(white, white) padding-box, var(--gradient-primary) border-box;
}

.backdrop-blur {
  backdrop-filter: blur(10px);
}

/* ========================================
   20. PRINT STYLES
   ======================================== */
@media print {
  .navbar-custom,
  .floating-donation,
  .carousel-control-prev,
  .carousel-control-next,
  .carousel-indicators {
    display: none !important;
  }

  .hero-section,
  .pix-hero,
  .contact-hero,
  .document-hero,
  .diretoria-hero {
    background: white !important;
    color: black !important;
    padding: 40px 0 !important;
  }

  .hero-section h1,
  .hero-title {
    color: black !important;
    text-shadow: none !important;
  }

  .card,
  .info-card,
  .contact-card,
  .document-card {
    box-shadow: none !important;
    border: 1px solid #ddd !important;
  }
}
