/* Estilos base */
body {
  font-family: 'Montserrat', sans-serif;
  background-color: #f8f8f8;
  color: #333;
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

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

/* Seção de Certificações */
.certificacoes-section {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 40px;
  margin-bottom: 40px;
   scroll-margin-top: 100px; /* Para links âncora */
    animation: fadeIn 1s ease-in-out;
}

.certificacoes-section h1 {
  color: #004d26;
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 30px;
  font-weight: 700;
}

.certificacoes-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
}

.certificacoes-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 15px;
}

.selos-container {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.selo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.selo-img {
  width: 180px;
  height: auto;
  transition: transform 0.3s ease;
}

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

.certificado-btn {
  display: inline-block;
  padding: 12px 28px;
  background-color: #004d26;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid #004d26;
}

.certificado-btn:hover {
  background-color: transparent;
  color: #004d26;
}

/* Seção ESG */
.esg-section {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 40px;
}

.esg-section h2 {
  color: #004d26;
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 30px;
  font-weight: 700;
}

.esg-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
}

.esg-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 15px;
}

.esg-content strong {
  color: #004d26;
  font-weight: 700;
}

.esg-selo-container {
  display: flex;
  justify-content: center;
}

.esg-img {
  width: 200px;
  height: auto;
  transition: transform 0.3s ease;
}

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

.esg-btn {
  display: inline-block;
  padding: 12px 28px;
  background-color: #004d26;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid #004d26;
  margin-top: 20px;
}

.esg-btn:hover {
  background-color: transparent;
  color: #004d26;
}

/* Responsividade */
@media (max-width: 768px) {
  .main-container {
    padding: 20px 15px;
  }
  
  .certificacoes-section, .esg-section {
    padding: 30px 20px;
  }
  
  .certificacoes-section h1 {
    font-size: 1.8rem;
  }
  
  .esg-section h2 {
    font-size: 1.5rem;
  }
  
  .selos-container {
    gap: 30px;
  }
  
  .selo-img {
    width: 150px;
  }
  
  .esg-img {
    width: 180px;
  }
}

@media (max-width: 480px) {
  .certificado-btn, .esg-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }