.hero-carbono {
  background-image: url('imagens/bg2\ \(1\).png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh; /* preenche 100% da tela */
  padding: 60px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.hero-text-box {
  background-color: #000;
  display: inline-block;
  padding: 10px 20px;
  color: white;
}

.hero-text-box h1 {
  font-size: 5rem;
  line-height: 1.4;
  margin: 0;
}

.hero-text-box .verde {
  color: #76F659;
  font-style: normal;
}

.hero-images .img-hero {
  max-width:600px;
  height: auto;
}

/* Responsivo */
@media (max-width: 576px) {
  .hero-text-box h1 {
    font-size: 2.5rem;
  }

  .hero-images .img-hero {
    max-width: 400px;
  }
}





/* Animação de entrada da direita */
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-slide-in {
  animation: slideInRight 1s ease-out forwards;
}

/* Animação infinita para o selo */
@keyframes pulseSelo {
  0%, 100% {
    transform: scale(1) rotate(0deg);
  }
  50% {
    transform: scale(1.05) rotate(2deg);
  }
}

.selo-animado {
  animation: pulseSelo 2s infinite ease-in-out;
}

















.sessao-carbono {  /* Substitua com o caminho da sua imagem */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 60px 20px;
  color: #fff;
}
.bgc02{
     background-image: url('imagens/bgc02.png'); 
}

.container-carbono {
  max-width: 1000px;
  margin: 0 auto;
}

.titulo-topo {
  color: #93BC3A;
  font-weight: bold;
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.titulo-principal {
  font-size: 3rem;
  color: #73F757;
  font-weight: bold;
  margin-bottom: 30px;
}

.titulo-principal span {
  color: #73F757;
}

.verde {
  color: #73F757;
  font-weight: 600;
}

.verde-claro {
  color: #73F757;
}

.sessao-carbono p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.sessao-carbono ul {
  padding-left: 20px;
  margin-bottom: 30px;
}

.sessao-carbono ul li {
  margin-bottom: 10px;
  line-height: 1.6;
}



@media (max-width: 768px) {
  .titulo-topo {
    font-size: 1.3rem;
    text-align: center;
  }

  .titulo-principal {
    font-size: 1.8rem;
    text-align: center;
  }
}



/* Animações principais */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-80px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(80px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Classes com animação suave */
.animate-left {
  animation: slideInLeft 1.5s ease forwards;
}

.animate-right {
  animation: slideInRight 1.5s ease forwards;
}

/* Invisível por padrão */
.hidden-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s ease;
}

/* Animação infinita do selo (pulso + rotação leve) */
@keyframes pulseSelo {
  0%, 100% {
    transform: scale(1) rotate(0deg);
  }
  50% {
    transform: scale(1.05) rotate(2deg);
  }
}

/* Classe que anima o selo */
.selo-animado {
  animation: pulseSelo 2s infinite ease-in-out;
}
















.sessao-certificacao {
 /* Substitua pelo nome real da imagem de fundo */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 60px 20px;
  color: #fff;
}

.container-certificacao {
  max-width: 1000px;
  margin: 0 auto;
}

.subtitulo {
  color: #c7f246;
  font-weight: bold;
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.titulo {
  font-size: 2rem;
  color: #6fff4a;
  font-weight: bold;
  margin-bottom: 30px;
  max-width: 700px;
}

.destaque {
  color: #6eff6b;
  font-weight: bold;
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.sessao-certificacao p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 900px;
}

.selos {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 40px;
}

.selos img {
  max-height: 90px;
  height: auto;
  width: auto;
  align-items: center;
}

.selo-centro {
  text-align: center;
  margin-top: 40px;
}

.selo-centro img {
  max-height: 170px;
  height: auto;
  width: auto;
}

@media (max-width: 768px) {
  .selo-centro {
  text-align: center;
  margin-top: 40px;
}

.selo-centro img {
  max-height: 140px;
  height: auto;
  width: auto;
}
}