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

body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  display: flex;
  flex-direction: column;
  background: linear-gradient(to bottom, #0f0f0f, #1c1c1c);
  min-height: 100dvh;
}

.banner {
  height: 260px;

  background-image: url("images/banner.jpg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #000;

  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;
}

.banner::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}

.banner h1 {
  position: relative;
  color: white;
  font-size: 38px;
  letter-spacing: 1px;
}

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

  padding: 80px 10%;
  gap: 60px;

  width: 100%;

  box-shadow: 0 0 10px rgb(255, 255, 255);

  transition: 0.3s;
}

/* fundo alternado suave */
.bloco:nth-child(even) {
  background: #000000;
}

.bloco:nth-child(odd) {
  background: #F97A03;
}

.reverso {
  flex-direction: row-reverse;
}

.bloco img {
  width: 350px;

  border-radius: 12px;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);

  transition: 0.3s;
}

.descricao {
  max-width: 1200px;
  color: white;
  width: 100%;
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
  lang:pt-br;
}

.descricao h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 28px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 30px;
  color: black;

}

.descricao p {
  font-size: 17px;
  line-height: 1.6;
}

.descricao.img2 h2{
  color: #F97A03;
}

.bloco img:hover {
  transform: scale(1.04);
}


.texto {
  flex: 1;

  font-size: 16px;
  line-height: .0;
  color: #DCDCDC;

  text-align: justify;
  max-width: 1200px;
  line-height: 1.6;
}

.whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;

  width: 50px;
  height: 50px;
  border-radius: 50%;

  box-shadow: 0 0 6px rgb(255, 196, 0);
  transition: 0.3s;
}

.whatsapp:hover {
  transform: scale(1.1);
}

.whatsapp img {
  width: 100%;
  height: 100%;
}

/* ANIMAÇÃO */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}


.footer {
   background: #000;
   color: #ffffff;
  text-align: center;
  padding: 7px;
  margin-top: 0
}

.footer-links a {
  color: #ff6a00;
  margin: 0 10px;
  text-decoration: none;
}

.header-simples {
  background: #000;
  padding: 40px 20px;
  text-align: center;
  margin-bottom: 10px;
}

.header-simples h1 {
  color: #ff6a00;
}

.conteudo.politica {
  max-width: 1000px;
  margin: auto;
  padding: 30px 10px;
  color: #ddd;
  line-height: 1.0;
  flex: 1;
}
.conteudo.termos {
  max-width: 1000px;
  margin: auto;
  padding: 30px 10px;
  color: #ddd;
  line-height: 1.0;
  flex: 1;
}
.conteudo p:first-child {
  text-align: center;
  font-size: 16px;
  color: #aaa;
  margin-bottom: 30px;
}

.conteudo h2 {
  color: #ff6a00;
  margin-top: 30px;
}

/* BOTÃO */
.voltar {
  text-align: center;
  margin: 40px 0;
}

.voltar a {
  display: inline-block;
  padding: 12px 25px;
  border: 2px solid #ff6a00;
  border-radius: 8px;
  color: #ff6a00;
  text-decoration: none;
  transition: 0.3s;
}

.voltar a:hover {
  background: #ff6a00;
  color: white;
}


/* RESPONSIVO */
@media (max-width: 768px) {
  .bloco {
    flex-direction: column;
    text-align: center;
    padding: 50px 6%;
  }

  .reverso {
    flex-direction: column;
  }

  .bloco img {
    width: 100%;
    max-width: 320px;
  }

  .banner h1 {
    font-size: 26px;
  }

  section {
    padding: 80px 10%;
  }

}

