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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  color: #333;
}

/* Header - Mantido conforme solicitado */
header {
  background: #024794;
  color: white;
  padding: 16px 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: relative;
  z-index: 1000;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

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

.logo-section {
  display: flex;
  align-items: center;
}

.instagram-section {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 65px;
  border-radius: 8px;
}

.instagram {
  color: #f7d708;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: bold;
  font-size: 20px;
  transition: all 0.3s ease;
}

.instagram:hover {
  transform: translateY(-2px);
  color: #fff;
}

.instagram img {
  height: 24px;
}

/* Navbar */
.navbar {
  background: linear-gradient(135deg, #0056b3 0%, #003f8f 100%);
  padding: 14px 0;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 999;
}

.navbar nav {
  display: flex;
  justify-content: center;
  gap: 40px;
}

.navbar nav a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  padding: 12px 20px;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
}

.navbar nav a:hover,
.navbar nav a.nav-active {
  background-color: rgba(247, 215, 8, 0.2);
  color: #f7d708;
  transform: translateY(-2px);
}

.navbar nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: #f7d708;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.navbar nav a:hover::after,
.navbar nav a.nav-active::after {
  width: 80%;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  width: 100;
  background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('imgs/banner.avif') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-content {
  max-width: 800px;
  padding: 0 20px;
  animation: fadeInUp 1s ease-out;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #f7d708;
  margin-bottom: 20px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
  animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-subtitle {
  font-size: 1.4rem;
  color: white;
  margin-bottom: 40px;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
  animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
  animation: fadeInUp 1s ease-out 0.6s both;
}

.stat-item {
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease;
}

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

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: #f7d708;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.9rem;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #f7d708 0%, #f76b07 100%);
  color: #024794;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(247, 215, 8, 0.3);
  animation: fadeInUp 1s ease-out 0.8s both;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(247, 215, 8, 0.4);
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

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

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #f7d708 0%, #f76b07 100%);
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

/* Sobre Section */
.sobre-section {
  padding: 100px 0;
  background: #f8f9fa;
}

.sobre-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: stretch;
}

.sobre-text {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.highlight-card {
  background: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: transform 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
}

.highlight-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

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

.highlight-icon {
  background: linear-gradient(135deg, #f7d708 0%, #f76b07 100%);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.highlight-content h3 {
  font-size: 1.5rem;
  color: #024794;
  margin-bottom: 10px;
}

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

.achievement-card {
  background: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
}

.achievement-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

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

.achievement-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.achievement-header h3 {
  font-size: 1.5rem;
  color: #024794;
}

.edition-badge {
  background: linear-gradient(135deg, #f7d708 0%, #f76b07 100%);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

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

.achievement-item {
  text-align: center;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 15px;
}

.achievement-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #f76b07;
}

.achievement-unit {
  display: block;
  font-size: 0.9rem;
  color: #024794;
  font-weight: 600;
  margin-bottom: 5px;
}

.achievement-desc {
  font-size: 0.8rem;
  color: #666;
}

.achievement-note {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px;
  background: #e3f2fd;
  border-radius: 10px;
  color: #024794;
  font-size: 0.9rem;
}

/* Sobre Images */
.sobre-images {
  position: relative;
}

.image-grid {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
  height: 500px;
}

.image-main {
    position: relative;
    height: 220px;     /* altura */
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    background-color: #ddd; /* só para visualizar se não tiver imagem */
}

.main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.image-main:hover .main-img {
  transform: scale(1.05);
}

.image-secondary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.secondary-img-container {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.secondary-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.secondary-img-container:hover img {
  transform: scale(1.05);
}

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

.image-main:hover .image-overlay,
.secondary-img-container:hover .image-overlay {
  transform: translateY(0);
}

/* Impact Section */
.impact-section {
  padding: 50px 0;
  background: white;
}

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

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

.impact-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

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

.impact-icon {
  background: linear-gradient(135deg, #f7d708 0%, #f76b07 100%);
  color: white;
  width: 80px;
  height: 80px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 20px;
}

.impact-number {
  display: block;
  font-size: 3rem;
  font-weight: 700;
  color: #024794;
  margin-bottom: 5px;
}

.impact-unit {
  display: block;
  font-size: 1.1rem;
  color: #f76b07;
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

#formulario {
  text-align: center;
}

.impact-desc {
  color: #666;
  line-height: 1.5;
}

/* Apoiadores Section */
.apoiadores {
  padding: 50px 0;
  background: #f8f9fa;
}

.carousel-container {
  position: relative;
  max-width: 800px;
  margin: 0 auto 60px;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel-slide {
  min-width: 100%;
  position: relative;
}

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

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  color: #024794;
  transition: all 0.3s ease;
  z-index: 10;
}

.carousel-btn:hover {
  background: white;
  transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
  left: 20px;
}

.carousel-btn.next {
  right: 20px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
  background: #f7d708;
  transform: scale(1.2);
}

.apoio-cta {
  text-align: center;
  background: white;
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  max-width: 600px;
  margin: 0 auto;
}

.cta-content h3 {
  font-size: 2rem;
  color: #024794;
  margin-bottom: 15px;
}

.cta-content p {
  color: #666;
  margin-bottom: 30px;
  font-size: 1.1rem;
}

.btn-apoiar {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #f7d708 0%, #f76b07 100%);
  color: white;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(247, 215, 8, 0.3);
}

.btn-apoiar:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(247, 215, 8, 0.4);
}

/* Footer */
.footer {
  background: #024794;
  color: white;
  padding: 60px 0 20px;
}

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

.footer-section h4 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: #f7d708;
}

.footer-logo {
  height: 60px;
  border-radius: 8px;
  margin-bottom: 15px;
}

.footer-section p {
  color: #ccc;
  line-height: 1.6;
}

.footer-section ul {
  list-style: none;
}

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

.footer-section ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #f7d708;
}

.social-links a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: #f7d708;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #ccc;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .sobre-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .hero-stats {
    gap: 20px;
  }
  
  .stat-item {
    padding: 15px;
  }
  
  .impact-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  
  .navbar nav {
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .navbar nav a {
    font-size: 16px;
    padding: 10px 15px;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }
  
  .stat-item {
    width: 200px;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .sobre-section,
  .impact-section,
  .apoiadores {
    padding: 60px 0;
  }
  
  .highlight-card,
  .achievement-card {
    padding: 20px;
  }
  
  .highlight-card {
    flex-direction: column;
    text-align: center;
  }
  
  .achievement-stats {
    grid-template-columns: 1fr;
  }
  
  .image-grid {
    height: auto;
    grid-template-rows: auto auto;
  }
  
  .image-secondary {
    grid-template-columns: 1fr;
  }
  
  .impact-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .impact-card {
    padding: 30px 20px;
  }
  
  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .carousel-btn.prev {
    left: 10px;
  }
  
  .carousel-btn.next {
    right: 10px;
  }
  
  .apoio-cta {
    padding: 30px 20px;
  }
  
  .cta-content h3 {
    font-size: 1.5rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .highlight-icon,
  .impact-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  
  .impact-number {
    font-size: 2.5rem;
  }
  
  .carousel-slide img {
    height: 250px;
  }
}

/* Estilos para outras páginas (metas, galeria, contato) */
.metas-hero, .galeria-hero, .contato-hero {
  position: relative;
  height: 60vh;
  background: linear-gradient(135deg, #034794 0%, #0056b3 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.metas-hero .overlay, .galeria-hero .overlay, .contato-hero .overlay {
  text-align: center;
  color: white;
}

.metas-hero h2, .galeria-hero h2, .contato-hero h2 {
  font-size: 42px;
  margin-bottom: 20px;
  color: #f7d708;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.6);
}

.metas-hero p, .galeria-hero p, .contato-hero p {
  font-size: 20px;
  color: white;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

.metas-content, .galeria-content, .contato-content {
  background-color: #f8f9fa;
  padding: 60px 20px;
}

.metas-wrapper, .galeria-wrapper, .contato-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.grafico-geral {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  margin-bottom: 40px;
}

.grafico-geral h3 {
  font-size: 28px;
  color: #034794;
  text-align: center;
  margin-bottom: 30px;
  border-bottom: 3px solid #f7d708;
  padding-bottom: 10px;
}

.chart-container {
  position: relative;
  height: 400px;
  width: 100%;
}

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

.stat-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.stat-card h4 {
  font-size: 18px;
  color: #034794;
  margin-bottom: 15px;
}

.stat-number {
  display: block;
  font-size: 36px;
  font-weight: bold;
  color: #f76b07;
  margin-bottom: 5px;
}

.stat-unit {
  font-size: 14px;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.metas-detalhes {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.metas-detalhes h3 {
  font-size: 28px;
  color: #034794;
  text-align: center;
  margin-bottom: 30px;
  border-bottom: 3px solid #f7d708;
  padding-bottom: 10px;
}

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

.ano-card {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 25px;
  border-radius: 12px;
  border-left: 5px solid #f7d708;
  transition: transform 0.3s ease;
}

.ano-card:hover {
  transform: translateX(5px);
}

.ano-card h4 {
  font-size: 24px;
  color: #034794;
  margin-bottom: 15px;
  text-align: center;
}

.ano-card p {
  margin-bottom: 8px;
  color: #333;
  line-height: 1.5;
}

.ano-card p strong {
  color: #f76b07;
}

/* Galeria */
.galeria-section {
  margin-bottom: 50px;
}

.galeria-section h3 {
  font-size: 28px;
  color: #034794;
  text-align: center;
  margin-bottom: 30px;
  border-bottom: 3px solid #f7d708;
  padding-bottom: 10px;
  display: inline-block;
  width: 100%;
}

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

.galeria-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.galeria-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

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

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

.galeria-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;
}

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

.galeria-title {
  display: block;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 5px;
  color: #f7d708;
}

/* Contato */
.contato-form {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  color: #034794;
  font-weight: 600;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #f7d708;
}

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

.btn-enviar {
  background: linear-gradient(135deg, #f7d708 0%, #f76b07 100%);
  color: white;
  padding: 15px 30px;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.btn-enviar:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(247, 215, 8, 0.3);
}

/* Responsividade adicional */
@media (max-width: 768px) {
  .metas-hero h2, .galeria-hero h2, .contato-hero h2 {
    font-size: 32px;
  }
  
  .metas-hero p, .galeria-hero p, .contato-hero p {
    font-size: 16px;
  }
  
  .grafico-geral, .metas-detalhes, .contato-form {
    padding: 20px;
  }
  
  .chart-container {
    height: 300px;
  }
  
  .estatisticas {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
  
  .anos-grid {
    grid-template-columns: 1fr;
  }
  
  .galeria-grid {
    grid-template-columns: 1fr;
  }
}



/* ===== OTIMIZAÇÕES ESPECÍFICAS PARA MOBILE ===== */

/* Touch-friendly buttons */
@media (max-width: 768px) {
  .cta-button,
  .btn-apoiar,
  .btn-enviar,
  .carousel-btn {
    min-height: 48px;
    min-width: 48px;
    padding: 15px 25px;
    font-size: 16px;
  }
  
  /* Navegação mobile melhorada */
  .navbar {
    padding: 10px 0;
  }
  
  .navbar nav {
    gap: 15px;
    padding: 0 10px;
  }
  
  .navbar nav a {
    padding: 12px 16px;
    font-size: 14px;
    min-width: 80px;
    text-align: center;
  }
  
  /* Hero mobile otimizado */
  .hero {
    height: 80vh;
    min-height: 600px;
  }
  
  .hero-content {
    padding: 0 15px;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 20px;
    max-width: 300px;
    margin: 0 auto 40px;
  }
  
  .stat-item {
    width: 100%;
    padding: 20px;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  /* Formulário mobile */
  .form-row {
    flex-direction: column;
  }
  
  .form-group input,
  .form-group textarea,
  .form-group select {
    font-size: 16px; /* Evita zoom no iOS */
    padding: 18px 15px;
    border-radius: 12px;
  }
  
  .form-group label {
    font-size: 16px;
    margin-bottom: 10px;
  }
  
  /* Cards mobile */
  .info-cards-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .info-card {
    padding: 20px;
    text-align: center;
  }
  
  .info-icon {
    margin: 0 auto 15px;
  }
  
  /* Carrossel mobile */
  .carousel-container {
    margin: 0 -20px 40px;
    border-radius: 0;
  }
  
  .carousel-slide img {
    height: 300px;
  }
  
  .carousel-btn {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }
  
  .carousel-btn.prev {
    left: 15px;
  }
  
  .carousel-btn.next {
    right: 15px;
  }
  
  /* Footer mobile */
  .footer-content {
    gap: 30px;
  }
  
  .footer-section {
    text-align: center;
  }
  
  /* Quick links mobile */
  .contact-quick-links {
    flex-direction: column;
    gap: 15px;
    max-width: 250px;
    margin: 0 auto;
  }
  
  .quick-link {
    width: 100%;
    justify-content: center;
  }
}

/* Otimizações para telas muito pequenas */
@media (max-width: 480px) {
  .container {
    padding: 0 10px;
  }
  
  /* Header mobile */
  .header-content {
    gap: 10px;
  }
  
  .logo-img {
    height: 50px;
  }
  
  .instagram {
    font-size: 16px;
  }
  
  /* Hero extra small */
  .hero-title {
    font-size: 1.8rem;
    line-height: 1.2;
  }
  
  .hero-subtitle {
    font-size: 0.95rem;
  }
  
  /* Seções mobile */
  .sobre-section,
  .impact-section,
  .apoiadores,
  .contato-content {
    padding: 40px 0;
  }
  
  .section-title {
    font-size: 1.6rem;
  }
  
  .section-subtitle {
    font-size: 0.9rem;
  }
  
  /* Cards extra small */
  .highlight-card,
  .achievement-card,
  .impact-card,
  .ajuda-card {
    padding: 20px 15px;
  }
  
  .highlight-icon,
  .impact-icon,
  .ajuda-icon {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
  
  /* Formulário extra small */
  .contato-form {
    padding: 25px 15px;
  }
  
  .form-group input,
  .form-group textarea,
  .form-group select {
    padding: 15px 12px;
  }
  
  /* Navegação extra small */
  .navbar nav {
    flex-wrap: wrap;
    gap: 8px;
  }
  
  .navbar nav a {
    padding: 10px 12px;
    font-size: 13px;
    min-width: 70px;
  }
}

/* Otimizações para landscape mobile */
@media (max-width: 768px) and (orientation: landscape) {
  .hero {
    height: 100vh;
  }
  
  .hero-stats {
    flex-direction: row;
    gap: 20px;
  }
  
  .stat-item {
    width: auto;
    flex: 1;
  }
}

/* Melhorias de acessibilidade */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Estilos para status do formulário */
.status-message {
  margin-top: 20px;
  padding: 15px 20px;
  border-radius: 10px;
  display: none;
  animation: slideIn 0.3s ease;
}

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

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

.status-content {
  display: flex;
  align-items: center;
  gap: 10px;
}

.status-icon {
  font-size: 1.2rem;
}

/* Estilos para formulário melhorado */
.form-description {
  color: #666;
  margin-bottom: 30px;
  text-align: center;
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.form-row .form-group {
  flex: 1;
  margin-bottom: 0;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  color: #034794;
  font-weight: 600;
}

.form-group label i {
  color: #f7d708;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 15px;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #f7d708;
}

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

.checkbox-group {
  margin: 25px 0;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 14px;
  line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
  display: none;
}

.checkmark {
  width: 20px;
  height: 20px;
  border: 2px solid #ddd;
  border-radius: 4px;
  position: relative;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
  background: #f7d708;
  border-color: #f7d708;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-weight: bold;
  font-size: 12px;
}

/* Estilos para hero de contato */
.contato-hero {
  position: relative;
  height: 70vh;
  background: linear-gradient(135deg, rgba(2, 71, 148, 0.9) 0%, rgba(0, 86, 179, 0.9) 100%), url('imgs/banner.avif') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-quick-links {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.quick-link {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  padding: 12px 20px;
  border-radius: 25px;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.quick-link:hover {
  background: rgba(247, 215, 8, 0.2);
  color: #f7d708;
  transform: translateY(-2px);
}

/* Estilos para cards de ajuda melhorados */
.ajuda-content {
  text-align: left;
}

.ajuda-list {
  list-style: none;
  margin-top: 15px;
}

.ajuda-list li {
  padding: 5px 0;
  color: #666;
  position: relative;
  padding-left: 20px;
}

.ajuda-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #f7d708;
  font-weight: bold;
}

/* Animação de entrada */
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Grid responsivo para info cards */
.info-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-bottom: 50px;
}

/* Melhorias no botão de envio */
.btn-enviar {
  position: relative;
  overflow: hidden;
}

.btn-enviar::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.btn-enviar:hover::before {
  left: 100%;
}

/* Estilos para links de contato */
.info-details a {
  color: #024794;
  text-decoration: none;
  transition: color 0.3s ease;
}

.info-details a:hover {
  color: #f7d708;
}

/* Estilos para o Modal da Galeria */
.modal {
  display: none; /* Inicia oculto */
  position: fixed; /* Fica fixo na tela */
  z-index: 2000; /* Garante que fique sobre todo o conteúdo */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto; /* Permite rolagem se a imagem for muito grande */
  background-color: rgba(0, 0, 0, 0.9); /* Fundo preto semitransparente */
  justify-content: center; /* Centraliza a imagem horizontalmente */
  align-items: center; /* Centraliza a imagem verticalmente */
  animation: fadeIn 0.3s ease; /* Animação de surgimento */
}

#modalImage {
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 10px;
  animation: zoomIn 0.3s ease; /* Animação de zoom na imagem */
}

.close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s ease;
}

.close:hover,
.close:focus {
  color: #f7d708; /* Cor amarela ao passar o mouse */
  text-decoration: none;
}

/* Animações para o Modal */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes zoomIn {
  from { transform: scale(0.5); }
  to { transform: scale(1); }
}


/* Contato Info Cards */
.info-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  justify-content: center; /* Centraliza os cards no grid */
  align-items: stretch;
  margin-top: 40px;
}

.info-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  text-align: center; /* Centraliza o texto dentro do card */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e0e0e0; /* Borda sutil */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.info-icon {
  background: linear-gradient(135deg, #024794 0%, #0056b3 100%);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0, 70, 148, 0.3);
}

.info-details h4 {
  font-size: 1.4rem;
  color: #024794;
  margin-bottom: 10px;
  font-weight: 600;
}

.info-details p {
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
  margin-bottom: 5px;
}

.info-details p a {
  color: #0056b3;
  text-decoration: none;
  transition: color 0.3s ease;
}

.info-details p a:hover {
  color: #024794;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .info-cards-grid {
    grid-template-columns: 1fr;
  }
}