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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: #333;
}

/* Header */

.hero-full-bg {
  background: url("../image/Banner1.png");
  background-size: cover;
  background-position: center;
  min-height: 140vh;
  display: flex;
  align-items: center;
  position: relative;
}

.hero-overlay {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  position: relative;
}

.hero-text-left {
  max-width: 600px;
  color: rgb(255, 255, 255);
}

.sustainability-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(76, 175, 80, 0.9);
  color: rgb(0, 0, 0);
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 14px;
  margin-bottom: 30px;
}

.hero-text-left h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-text-left p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  opacity: 0.9;
}

.message-popup {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: white;
  padding: 15px 20px;
  border-radius: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 10px;
  color: #333;
}

.message-popup img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}

.green-section {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, #09a342 0%, #22c55e 50%, #16a34a 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 4rem 0;
}

.green-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("../image/PAPAPA.png");
  background-size: cover;
  background-position: center;
  opacity: 100;
  z-index: 1;
}

.decorative-dots {
  position: absolute;
  top: 2rem;
  right: 2rem;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.5rem;
  opacity: 0.6;
  z-index: 2;
}

.dot {
  width: 8px;
  height: 8px;
  background-color: #ffffff;
  border-radius: 50%;
}

.curved-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
}

.curved-bottom svg {
  width: 100%;
  height: auto;
  display: block;
  color: #ffffff;
}

.green-section .container {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.green-content {
  color: white;
}

.green-content h2 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.green-content p {
  font-size: 1.25rem;
  color: #ffffff;
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 500px;
}

.explore-btn {
  background-color: #1e293b;
  color: white;
  border: none;
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-bottom: 2rem;
}

.explore-btn:hover {
  background-color: #0f172a;
}


.contact-form {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  max-width: 400px;
  margin-left: auto;
}

.contact-form h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1.5rem;
}

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

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
  margin-bottom: 0.5rem;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"] {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus {
  outline: none;
  border-color: #22c55e;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

.file-upload {
  border: 2px dashed #d1d5db;
  border-radius: 0.5rem;
  padding: 2rem;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.3s ease;
  background: #fafafa;
}
.file-upload-label:hover
{
  background: #00b54246;
  border: 2px dashed #21e784;
  border-radius: 0.5rem;
}

.file-upload:hover {
  border-color: #22c55e;
  background: #f0fdf4;
}

.file-upload i {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  display: block;
}

.file-upload small {
  color: #6b7280;
  font-size: 0.75rem;
}

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 1rem 0;
}

.checkbox-group input[type="checkbox"] {
  width: 1rem;
  height: 1rem;
  accent-color: #22c55e;
}

.checkbox-group label {
  font-size: 0.875rem;
  color: #374151;
  margin: 0;
}

.submit-btn {
  width: 100%;
  background-color: #14b8a6;
  color: white;
  border: none;
  padding: 0.75rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.submit-btn:hover {
  background-color: #0d9488;
}

.footer-carousel {
  background-color: #22c55e;
  padding: 4rem 1rem;
  overflow: hidden;
}

.footer-intro h2 {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  font-size: 2rem;
  color: #ffffff;
}

.footer-carousel a {
  color: #ffffff;       
  text-decoration: none; 
}

.footer-carousel a h3 {
  text-decoration: none; 
  color: #ffffff;       
}

.carousel-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.carousel-track {
  display: flex;
  gap: 1.5rem;
  animation: scrollCarousel 20s linear infinite;
  width: max-content;
}

.carousel-card,
.carousel-card1,
.carousel-card3 {
  flex: 0 0 380px; 
  border-radius: 1rem;
  padding: 2rem;
  min-height: 240px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  font-size: 1rem;

}

/* Estilos individuais */
.carousel-card {
  background-color: #035307b9;
  color: #ffffff;
}

.carousel-card1 {
  background-color: #004912;
  color: #ffffff;
}

.carousel-card3 {
  background-color: #ffffff;
  color: #000000;
}

/* Texto */
.carousel-card h3,
.carousel-card1 h3,
.carousel-card3 h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: #ffffff;   
  color: #dddddd
}

.carousel-card p,
.carousel-card1 p,
.carousel-card3 p {
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Animação */
@keyframes scrollCarousel {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Projects */

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

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

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

.projects-header h2 {
  font-size: 2rem;
  color: #333;
}

.filters {
  display: flex;
  gap: 15px;
  align-items: center;
}

.filter-select {
  padding: 10px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  background: white;
  cursor: pointer;
}

.search-projects-btn {
  background: #4caf50;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
}

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

.project-card {
  background: #fff;
  border-radius: 0.75rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  max-width: 400px;
}

.project-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.project-card-content {
  padding: 1.5rem;
}

.project-card-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: #2c3e50;
}

.project-card-content p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 1rem;
}

.project-progress-wrapper {
  margin-bottom: 1rem;
}

.progress-label {
  font-size: 0.875rem;
  color: #666;
  margin-bottom: 0.5rem;
}

.project-progress-bar {
  background-color: #e6e6e6;
  border-radius: 999px;
  overflow: hidden;
  height: 0.5rem;
}

.project-progress-bar .progress {
  height: 100%;
  background-color: #28a745;
  transition: width 0.5s ease;
}

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

.project-avatars {
  display: flex;
  gap: -10px;
}

.project-avatars img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #fff;
  object-fit: cover;
  margin-left: -8px;
}

.comment-count {
  font-size: 0.9rem;
  color: #888;
}

.ver-mais-link {
  display: inline-block;
  padding: 2px 8px;
  margin-left: 150px;
  font-size: 0.775rem;
  background-color: #00b542;
  color: #fff;
  border-radius: 3px;
  text-decoration: none;

}

.ver-mais-link:hover {
  background-color: #00b542;
}


/* Stats Section */
.stats-section {
  background: #e8e8e8;
  padding: 80px 0;
}

.stats-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.stats-content h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #333;
}

.stats-content p {
  color: #666;
  margin-bottom: 30px;
  line-height: 1.6;
}

.stats-numbers {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.stat-item {
  flex: 1 1 150px;
  text-align: center;
}

.stat-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 0.75rem;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #28a745;
}

.stat-label {
  font-size: 1rem;
  color: #555;
  margin-top: 0.25rem;
}

.stats-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.stats-images img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
}

/* ministra video  */
.ministra {
  padding: 3rem 0;
  background-color: #ffffff; 
}

.containervideo {
  max-width: 910px;
  margin: 0 auto;
  padding: 0 1rem;
}

.ministra h2 {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 2rem;
  color: #28a745;
}

.video-center {
  display: flex;
  justify-content: center;
}

/* Wrapper do vídeo com proporção 16:9 */
.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 800px;
  padding-bottom: 56.25%; 
  height: 0;
  overflow: hidden;
  border-radius: 0.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.section-icon {
  width: 40px;
  height: 40px;
  background: #28a745;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

@media (max-width: 600px) {
  .video-wrapper {
    max-width: 100%;
  }
}

/* Partners Section */
.partners-section20 {
  background-color: #fffffffb;
  padding: 10px 0;
}

.partners-section20 .container20 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.partners-section20 h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #333;
}

.partners-subtitle20 {
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #000;
  padding: 5px 15px;
  border-radius: 10px;
  font-size: 28px;
  display: inline-block;
}

.partners-carousel-wrapper20 {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.partners-carousel-track20 {
  display: flex;
  gap: 40px;
  animation: scrollLoop 40s linear infinite;
  width: max-content;
}

.partner-logo20 {
  flex: 0 0 auto;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  background-color: #fff;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.partner-logo20:hover {
  transform: scale(1.08);
}

.partner-logo20 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

@keyframes scrollLoop {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}


/* News Section */
.news-section {
  padding: 80px 0;
  background: #f9f9f9;
}

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

.news-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 40px;
}

.news-header h2 {
  font-size: 2.25rem;
  color: #1e293b;
  font-weight: 700;
}

.news-badge {
  background: #22c55e;
  color: white;
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

.news-layout {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 768px) {
  .news-layout {
    flex-direction: row;
  }
}

.featured-news {
  flex: 2;
  position: relative;
  height: 500px;
  border-radius: 1rem;
  overflow: hidden;
  text-decoration: none;
}
.event-mini-link {
  text-decoration: none;  
}

.featured-news img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 2rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
  color: #fff;
}

.featured-title {
  color: #ffffff;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-decoration: none;
}

.featured-meta {
  font-size: 0.9rem;
  color: #d1d5db;
}

.news-aside {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mini-news {
  display: flex;
  align-items: center;
  gap: 1rem;
  background-color: #f8fafc;
  padding: 1.25rem;
  border-radius: 0.75rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.mini-news img {
  width: 80px;
  height: 60px;
  object-fit: cover;
  border-radius: 0.5rem;
}

.mini-news-info h4 {
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 0.25rem;
  color: #1e293b;
}

.news-meta {
  font-size: 0.85rem;
  color: #64748b;
}

.weather-box {
  background-image: url("../image/Rectangle.png");
  color: white;
  text-align: center;
  padding: 1.5rem;
  border-radius: 0.75rem;
  font-weight: 600;
}

.weather-temp {
  font-size: 2.5rem;
  margin-bottom: 0.25rem;
}

.weather-info {
  font-size: 1rem;
}

.view-news-btn {
  margin: 3rem auto 0;
  display: block;
  background-color: #16a34a;
  color: white;
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 0.5rem;
  font-size: 1.125rem;
  font-weight: bold;
  cursor: pointer;
  width: fit-content;
  transition: background-color 0.3s ease;
  text-decoration: none;
}

.view-news-btn:hover {
  background-color: #15803d;
}
.news-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .news-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.news-card {
  background-color: #f8fafc;
  border-radius: 0.75rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.news-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 0.5rem;
}

.news-text h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #1e293b;
  line-height: 1.4;
}

.news-text .news-meta {
  font-size: 0.85rem;
  color: #64748b;
}

.view-news-btn {
  margin: 3rem auto 0;
  display: block;
  background-color: #166534;
  color: white;
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 0.5rem;
  font-size: 1.125rem;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.view-news-btn:hover {
  background-color: #14532d;
}

/* FAQ Section */
.faq-section {
  padding: 80px 0;
  background: white;
}

.faq-section .container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.faq-section h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #333;
}

.faq-subtitle {
  color: #666;
  margin-bottom: 40px;
}

.faq-item {
  border-bottom: 1px solid #eee;
  margin-bottom: 20px;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
  font-weight: 500;
}

.faq-number {
  color: #999;
  margin-right: 15px;
}

.faq-toggle {
  font-size: 20px;
  color: #4caf50;
}

.faq-answer {
  padding: 0 0 20px 40px;
  color: #666;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

/* Newsletter Section */
.newsletter-section {
  background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
  padding: 60px 0;
}

.newsletter-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.newsletter-content h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #333;
}

.newsletter-form {
  display: flex;
  gap: 15px;
}

.newsletter-input {
  flex: 1;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.newsletter-btn {
  background: #333;
  color: white;
  padding: 15px 30px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

/* Main Footer */
.main-footer {
  background: #ffffff;
  color: white;
  padding: 60px 0 20px;
}

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

.main-footer .footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-contact {
  margin-top: 20px;
  color: #000000;
}

.footer-links h3 {
  margin-bottom: 20px;
  color: rgb(0, 0, 0);
}

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

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

.footer-links ul li a {
  color: #000000;
  text-decoration: none;
}

.footer-links ul li a:hover {
  color: rgb(52, 52, 52);
}

/*efeito menu*/
.nav {
  display: flex;
  gap: 10px;
}
.nav-link {
  padding: 10px 20px;
  text-decoration: none;
  color: black;
  border-radius: 50px;
  transition: all 0.3s ease;
}
.nav-link.active {
  background-color: #e0ffe0; /* Fundo verde claro */
  border: 2px solid #00bfa5; /* Borda teal */
}

/*submenu*/
.nav {
  display: flex;
  gap: 20px;
  position: relative;
}

.nav-item {
  position: relative;
}

.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  background-color: #fff;
  padding: 10px 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.nav-item:hover .submenu {
  display: block;
}

.submenu a {
  display: block;
  padding: 5px 15px;
  white-space: nowrap;
  text-decoration: none;
  color: #333;
}

.submenu a:hover {
  background-color: #f0f0f0;
}


/* Mobile First - Responsividade para dispositivos móveis */
@media (max-width: 768px) {
  /* Top Bar Mobile */
  .top-bar {
    padding: 6px 0;
    font-size: 11px;
  }

  .top-bar .container {
    padding: 0 15px;
    flex-direction: column;
    gap: 8px;
  }

  .top-links {
    gap: 15px;
    font-size: 11px;
  }

  .language-selector {
    gap: 8px;
    font-size: 11px;
  }

  .social-icons {
    gap: 8px;
  }

  /* Header Mobile */
  .header {
    padding: 10px 0;
    margin-top: 60px; /* Ajuste para compensar top-bar maior */
  }

  .header .container {
    padding: 0 15px;
    flex-wrap: wrap;
    gap: 15px;
  }

  .logo img {
    height: 60px; /* Logo menor no mobile */
    margin-top: -5px;
  }

  /* Navigation Mobile */
  .nav {
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    order: 3;
  }

  .nav a {
    font-size: 14px;
    padding: 8px 12px;
  }

  .nav .inicio-btn {
    padding: 6px 12px;
    font-size: 14px;
  }

  /* Search Mobile */
  .search-container {
    order: 2;
    width: 100%;
    max-width: 230px;
  }

  .search-input {
    width: 100%;
    padding: 8px 32px 8px 12px;
    font-size: 12px;
  }

  /* Hero Section Mobile */
  .hero-full-bg {
    min-height: 100vh;
    padding: 20px 0;
  }

  .hero-overlay {
    padding: 0 15px;
  }

  .hero-text-left {
    max-width: 100%;
    text-align: center;
  }

  .hero-text-left h1 {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }

  .hero-text-left p {
    font-size: 1rem;
    margin-bottom: 15px;
  }

  .sustainability-badge {
    font-size: 12px;
    padding: 6px 12px;
    margin-bottom: 20px;
  }

  .message-popup {
    position: static;
    margin: 20px auto 0;
    max-width: 280px;
    padding: 12px 15px;
    font-size: 14px;
  }

  .message-popup img {
    width: 28px;
    height: 28px;
  }

  /* Green Section Mobile */
  .green-section {
    min-height: auto;
    padding: 3rem 0;
  }

  .green-section .container {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1rem;
    text-align: center;
  }

  .green-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .green-content p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .explore-btn {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .testimonial {
    max-width: 100%;
    margin: 0 auto;
  }

  .contact-form {
    max-width: 100%;
    margin: 0 auto;
    padding: 1.5rem;
  }

  .decorative-dots {
    display: none;
  }

  /* PCA Section Mobile */
  .pca-section {
    padding: 40px 0;
  }

  .pca-section .container {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .pca-content h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
  }

  .pca-features li {
    padding-left: 15px;
    margin-bottom: 15px;
  }

  .pca-features h3 {
    font-size: 1.1rem;
  }

  /* Footer Carousel Mobile */
.footer-carousel {
  padding: 2rem 0.5rem;
}

.footer-intro h2 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  padding: 0 1rem;
}

.carousel-card {
  flex: 0 0 280px;
  padding: 1.5rem;
  min-height: 200px;
}

.carousel-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
}

.carousel-card p {
  font-size: 1rem;
}


  /* Projects Section Mobile */
  .projects-section {
    padding: 60px 0;
  }

  .projects-header {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .projects-header h1 {
    font-size: 1.5rem;
  }

  .filters {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  .filter-select,
  .search-projects-btn {
    width: 100%;
    max-width: 250px;
  }

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

  .project-card {
    max-width: 100%;
  }

  /* Stats Section Mobile */
  .stats-section {
    padding: 60px 0;
  }

  .stats-section .container {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;

  }

  .stats-content h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    text-size-adjust: 20px;
  }

  .stats-numbers {
    gap: 1rem;
    justify-content: center;
  }

  .stat-item {
    flex: 1 1 120px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .stats-images {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  /* Video Section Mobile */
  .ministra {
    padding: 2rem 0;
  }

  .containervideo {
    padding: 0 1rem;
  }

  .ministra h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }

  /* Partners Section Mobile */
  .partners-section {
    padding: 40px 0;
  }

  .partners-section h2 {
    font-size: 1.5rem;
    text-align: center;
  }

  .partners-subtitle {
    font-size: 18px;
    padding: 4px 12px;
    margin-bottom: 30px;
  }

  .partner-logo {
    width: 120px;
    height: 120px;
  }

  .partners-carousel-track {
    gap: 20px;
  }

  /* News Section Mobile */
  .news-section {
    padding: 60px 0;
  }

  .news-header {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    margin-bottom: 30px;
  }

  .news-header h2 {
    font-size: 1.8rem;
  }

  .news-layout {
    flex-direction: column;
    gap: 1.5rem;
  }

  .featured-news {
    height: 300px;
  }

  .featured-overlay {
    padding: 1.5rem;
  }

  .featured-title {
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
  }

  .mini-news {
    padding: 1rem;
    gap: 0.8rem;
  }

  .mini-news img {
    width: 60px;
    height: 45px;
  }

  .mini-news-info h4 {
    font-size: 1rem;
  }

  .weather-box {
    padding: 1.2rem;
  }

  .weather-temp {
    font-size: 2rem;
  }

  /* FAQ Section Mobile */
  .faq-section {
    padding: 60px 0;
  }

  .faq-section h2 {
    font-size: 1.5rem;
    text-align: center;
  }

  .faq-question {
    padding: 15px 0;
    font-size: 14px;
  }

  .faq-number {
    margin-right: 10px;
  }

  .faq-answer {
    padding: 0 0 15px 30px;
    font-size: 14px;
  }

  /* Newsletter Section Mobile */
  .newsletter-section {
    padding: 40px 0;
  }

  .newsletter-section .container {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .newsletter-content h2 {
    font-size: 1.5rem;
  }

  .newsletter-form {
    flex-direction: column;
    gap: 10px;
    max-width: 300px;
    margin: 0 auto;
  }

  .newsletter-input,
  .newsletter-btn {
    width: 100%;
  }

  /* Footer Mobile */
  .main-footer {
    padding: 40px 0 15px;
  }

  .main-footer .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .footer-contact {
    margin-top: 15px;
  }

  .footer-links h3 {
    margin-bottom: 15px;
    font-size: 1.1rem;
  }

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

  /* Submenu Mobile */
  .submenu {
    position: static;
    display: block;
    background-color: #f8f8f8;
    box-shadow: none;
    padding: 5px 0;
    margin-top: 5px;
    border-radius: 5px;
  }

  .nav-item:hover .submenu {
    display: block;
  }

  .submenu a {
    padding: 8px 15px;
    font-size: 13px;
  }
}

/* Media queries adicionais para tablets */
@media (max-width: 1024px) and (min-width: 769px) {
  .green-section .container,
  .pca-section .container,
  .stats-section .container,
  .newsletter-section .container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .contact-form {
    margin: 0 auto;
  }

  .decorative-dots {
    display: none;
  }

  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .partners-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Ajustes específicos para telas muito pequenas */
@media (max-width: 480px) {
  .hero-text-left h1 {
    font-size: 1.5rem;
  }

  .green-content h2 {
    font-size: 1.8rem;
  }

  .carousel-card,
  .carousel-card1,
  .carousel-card3 {
    flex: 0 0 250px;
    padding: 1.2rem;
  }

  .partner-logo {
    width: 100px;
    height: 100px;
  }

  .featured-news {
    height: 250px;
  }

  .featured-title {
    font-size: 1.1rem;
  }
}

/* Ajustes para orientação landscape em mobile */
@media (max-width: 768px) and (orientation: landscape) {
  .hero-full-bg {
    min-height: 80vh;
  }

  .green-section {
    padding: 2rem 0;
  }

  .hero-text-left h1 {
    font-size: 1.6rem;
  }
}
