section{
  width: 100%;
  height: fit-content;
  justify-content: center;
}

.pratosp{
  width: 100%;
  text-align: center;
  color: #fff;
}

section:nth-child(even){
  background: linear-gradient(to right, #000 35%, #f2b138);
  border: 1px solid #fff;
  border-radius: 10px;
}

section:nth-child(odd){
  background: linear-gradient(to right, #000, #3d1365);
  border: 1px solid #fff;
  border-radius: 10px;
}

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

html{
  scroll-behavior: smooth;
}

header{
  position: fixed;
  padding: 15px 0px;
  width: 100%;
  background-color: rgba(0, 0, 0 , 0.7);
  font-weight: bold;
  z-index: 9999;
}

.sec1 p, .sec2 p{
  border: 2px solid #fff;
  border-radius: 15px;
  padding: 10px;
  color: #fff;
  margin: 5px;
}

header nav ul{
  list-style: none;
  text-align: center;
}

header nav ul li{
  display: inline;
}

header nav ul li a{
  text-decoration: none;
  text-transform: uppercase;
  padding: 2px 10px;
  display: inline-block;
  color: #fff;
  text-shadow: 4px 4px 5px #fff, -4px -4px 10px #fff;
}

.banner{
  padding-top: 70px;
  display: flex;
  background-image: url(../imgs/imghome.png);
}

.banner img{
  width: 100%;
  border: 3px solid #fff;
}

.sechome{
  display: flex;
  text-align: center;
  flex-direction: row;
  flex-wrap: wrap;
  padding-bottom: 30px;
  justify-content: center;
}

.sechome .imghome{
  width: 200px;
  height: auto;
  margin: 20px;
  border-radius: 30px;
  border: 3px solid #fff;
}

.textohome{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  max-width: 300px;
}

.textohome img{
  width: 200px;
  height: auto;
  margin: 20px;
  border-radius: 30px;
  border: 3px solid #fff;
}

.sechome img{
  width: 250px;
  height: auto;
  margin: 20px;
  border-radius: 30px;
  border: none;
}

img{
  width:100%;
  border-radius: 10px;
  border: 3px solid #fff;
}

.sec1{
  border: 2px #fff solid;
  border-radius: 30px;
  color: #fff;
  font-weight: bold;
  margin: 10px;
  padding: 20px;
  width: 100%;
  height: fit-content;
  background-color: #000;
}

.sec2{
  border: 2px #fff solid;
  color: #fff;
  font-weight: bold;
  border-radius: 30px;
  margin: 10px;
  padding: 20px;
  width: 100%;
  height: fit-content;
}

.flexivel{
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  padding: 30px;
}

article{
  width: 100%;
  text-align: center;
  color: #fff;
  font-weight: bold;
}

/*responsividade*/
@media (max-width:800px){
  section{
    flex-wrap: wrap;
  }
  article{
    display: block;
  }
}

[data-anima]{
  opacity: 0;
  transition: 1s;
}

[data-anima="esquerda"]{
  transform: translate3D(-30px,0,0);
}

[data-anima="direita"]{
  transform: translate3D(30px,0,0);
}

[data-anima="centro"]{
  transform: translate3D(0,30px,0);
}

[data-anima].animacao{
  opacity: 1;
  transform: translate3D(0,0,0);
}

