* {
    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 */
.top-bar {
    background: #000000;
    color: rgb(255, 255, 255);
    padding: 8px 0;
    font-size: 12px;
}

.top-bar .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.top-links a {
  margin-right: 1.25rem;
  font-size: 0.875rem;
  color: #1e293b;
  text-decoration: none;
}

.top-links a i {
  margin-right: 0.4rem;
}

.language-selector {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
}

.social-icons a {
  color: #1e293b;
  margin-left: 0.5rem;
  font-size: 1rem;
}
.top-links {
    display: flex;
    gap: 20px;
}

.top-links a {
    color: rgb(255, 255, 255);
    text-decoration: none;
}

.language-selector {
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-icons  {
    color: #ffffff;
    display: flex;
    gap: 10px;
}

.social-icons a {
    color: #fff;
    text-decoration: none;
}



.social-icons1  {
    color: #000000;
    text-decoration: none;
    margin-right: 10px;
}
.social-icons1 a {
    color: #000000;
    text-decoration: none;
}
.header {
    background: white;
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.header .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  height: 40px; /* mantém a altura da área do menu */
  overflow: visible; /* permite que a logo ultrapasse visualmente */
}

.logo img {
  height: 100px; /* aumenta o tamanho da logo */
  width: auto;
  margin-top: -10px; /* ajusta o posicionamento para centralizar melhor */
  transition: all 0.3s ease;
}


.nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.nav .inicio-btn {
    background: #4CAF50;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
}

.search-container {
    position: relative;
}

.search-input {
    padding: 10px 40px 10px 15px;
    border: 1px solid #ddd;
    border-radius: 25px;
    width: 250px;
}

.search-btn {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
}
.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: #000000;
  color: #ffffff;
  padding: 8px 0;
  font-size: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

/* empurra o conteúdo abaixo da barra fixa */
.header {
  margin-top: 40px; /* ajusta conforme altura da .top-bar */
}
.header {
  position: fixed;
  top: 0px; /* altura da .top-bar */
  left: 0;
  width: 100%;
  background: white;
  padding: 15px 0;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  z-index: 999;
}



/* Hero Section */
.hero-full-bg {
  background: linear-gradient(to right, rgba(209, 240, 215, 0.4), rgba(154, 226, 169, 0.733)), url('../image/Banner.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(0, 0, 0);
}

.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 - Updated to match the design */


.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: #166534;
    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;
}

.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: #dcfce7;
    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;
}

.testimonial {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 1rem;
    display: flex;
    gap: 0.75rem;
    max-width: 400px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.testimonial img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-content {
    flex: 1;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
}

.testimonial strong {
    color: #1e293b;
    font-weight: 600;
}

.testimonial-time {
    color: #64748b;
    font-size: 0.875rem;
}

.testimonial p {
    color: #374151 !important;
    font-size: 0.875rem !important;
    margin: 0 !important;
}

.mention {
    color: #ec4899;
}

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


/* PCA Section */
.pca-section {
    padding: 60px 0;
    background: #ffffff;
}

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

.pca-image {
    position: relative;
}

.pca-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

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

.pca-content p {
    margin-bottom: 30px;
    color: #666;
}

.pca-features {
    list-style: none;
}

.pca-features li {
    margin-bottom: 20px;
    padding-left: 20px;
    position: relative;
}

.pca-features li::before {
    content: '•';
    color: #4CAF50;
    font-size: 20px;
    position: absolute;
    left: 0;
}

.pca-features h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: #333;
}

/* Red Footer */

.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: 1.8rem;
  color: #ffffff;
}

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

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

.carousel-card {
  color: white;
  flex: 0 0 300px;
  background-color: #035307b9;
  backdrop-filter: blur(4px);
  border-radius: 0.75rem;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.05);
  min-height: 200px;
}

.carousel-card h3 {
  font-size: 1.2rem;
  color: #ffffff;
  margin-bottom: 1rem;
}
Email
￼

.carousel-card p {
  font-size: 1rem;
  color: #ffffff;
  line-height: 1.5;
}
.carousel-card1 {
  flex: 0 0 300px;
  background-color: #004912;
  backdrop-filter: blur(4px);
  border-radius: 0.75rem;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  min-height: 200px;
  color: #ffffff;
}

.carousel-card3 {
  flex: 0 0 300px;
  background-color: #ffffff;
  backdrop-filter: blur(4px);
  border-radius: 0.75rem;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  min-height: 200px;
  color: #000000;
}

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


/* Projects Section */
.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;
}
.view-more-btn {
  background: #4CAF50;
  color: white;
  padding: 15px 30px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 auto;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  justify-content: center;
  width: fit-content;
  transition: background-color 0.3s ease;
}

.view-more-btn:hover {
  background-color: #388e3c;
}


/* 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;
}


/* Partners Section */

.partners-section {
  background-color: #ffffff;
  padding: 4rem 1rem;
  overflow: hidden;
}

.partners-subtitle {
  text-transform: uppercase;
  font-weight: 600;
  color: #28a745;
  text-align: center;
  margin-bottom: 2rem;
}

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

.partners-carousel-track {
  display: flex;
  gap: 3rem;
  animation: scrollPartners 25s linear infinite;
  width: max-content;
}

.partner-logo {
  flex: 0 0 auto;
  background-color: #f0fdf4;
  border-radius: 0.5rem;
  padding: 1.5rem 2rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  min-width: 150px;
  text-align: center;
  font-size: 1.1rem;
  font-weight: bold;
  color: #1e3932;
  transition: transform 0.3s ease;
}

.partner-logo:hover {
  transform: scale(1.05);
}

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

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

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

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

.partners-subtitle {
    background: #4CAF50;
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 12px;
    display: inline-block;
    margin-bottom: 40px;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 30px;
    align-items: center;
}

.partner-logo {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    border: 1px solid #eee;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.partner-logo:hover {
    transform: translateY(-5px);
}

.partner-logo {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    border: 1px solid #eee;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.partner-logo:hover {
    transform: translateY(-5px);
}

/* 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;
}

.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 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

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

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

/* Responsive */
@media (max-width: 1024px) {
    .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;
    }
}

@media (max-width: 768px) {
    .hero-text-left h1 {
        font-size: 2rem;
    }

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

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

    .projects-grid,
    .footer-content,
    .main-footer .footer-content {
        grid-template-columns: 1fr;
    }

    .projects-header,
    .filters {
        flex-direction: column;
        gap: 15px;
    }

    .stats-numbers {
        justify-content: center;
    }

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

    .news-layout {
        grid-template-columns: 1fr;
    }

    .newsletter-form {
        flex-direction: column;
    }
}


/*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 */
}
