:root{
    --colorPrimary: #bf925b;
    --colorSecundary: #f0f8ff;
    --colorPrimaryText: black;
    --colorSecundaryText: rgb(113, 113, 113);
    
    --colorFundoSection: rgb(231, 231, 231);
    --fontsizePrimaryText: 2rem;
    --fontsizeSecundaryText: 1.2rem;

    --fontsizeCardsTittle: 1.5rem;
    --fontsizeCardsIcons: 3rem;
}

  .hidden{
      opacity: 0;
      filter: blur(5px);
      transition: all ease-in-out .5s;
  }

  .show{
      opacity: 1;
      filter: blur(0px);
      transition: all ease-in-out .5s;
  }
nav button {
    background-color: #61CE70;
    padding: 1rem;
    border-radius: 30px;
    color: #fff;
    font-weight: 600;
    border: none;
    transition: all .2s ease-in-out;
    display: flex;
    gap: 0.5rem;
    align-items: center;
}
nav button span{
  font-size: 1rem;
}
.conteudo p{
  font-size: var(--fontsizeSecundaryText);
  padding: .8rem 0;
  text-align: start;
}
.conteudo ul li{
  font-size: var(--fontsizeSecundaryText);
  color: #0d0d0d;
  text-decoration: none;
  list-style: none;
  gap:.5rem;
  display: flex;
}
.conteudo h2{
  color: #0d0d0d;
  font-size: 1.8rem;
}
.conteudo h3{
  color: #0d0d0d;
  font-size: 1.34rem;
  margin-top: .7rem;
}
.conteudo h4{
  color: #0d0d0d;
  font-size: 1.2rem;
}
main{
  display: flex;
  flex-direction: column;
  background-color: var(--colorPrimary);
  background-color: rgb(236, 236, 236);
  padding-bottom: 3rem;
}

.section1 .container{
  justify-content: center;
  align-items: center;
}

.section1 .container .section1_container{
  align-items: center;
}

.section1_container .tittle h1{
  text-align: center;
}
.section1_container .text h3{
  color: #fff;
}


section {
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: start;
}
main .content{
  display: flex;
  flex-direction: column;
  align-self: center;
  max-width:1080px ;
}
main .titulos{
  display: flex;
  flex-direction: column;
  max-width: 1360px;
  gap: 1rem;
  margin: 3rem 1rem 2rem 1rem;
}
main .titulos h1{
  color: black;
}
main .titulos .sub-titulos{
  display: flex;
  gap: .5rem;
  color: black;
}
main .titulos .sub-titulos span{
  color: rgb(118, 118, 118);
  font-weight: 600;
  font-size: 1rem;
}
main .titulos .sub-titulos .Tempo{
  color: var(--colorPrimary);
}

main .section_guia{
  display: flex;
  flex-direction: column;
  max-width: 100%;
  box-shadow: 0px 0px 2px 1px rgb(168, 168, 168);
  justify-self: center;
  align-self: center;
  border-radius: 1rem;
  overflow: hidden;
}
.section_guia .introducao{
  display: flex;
  flex-direction: column;
}
.section_guia .introducao .image-intro{
    max-height: 320px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.section_guia .introducao .image-intro img{
  width: 100%;
  height: 100%;
}

.conteudo{
  padding: 2rem;
}

.tecnica ul{
  display: flex;
  flex-direction: column;
  gap:.3rem;
  margin-bottom: 1rem;
}


.image-mega{
  display: flex;
  justify-content: center;
  width: 100%;
  max-height: 420px;
  margin: 2rem 0;
  overflow: hidden;
  border-radius: 1rem;
}
.image-mega img{
  width: 100%;
  object-fit: cover;
  object-position: center;
  aspect-ratio: 8/3;
}

.vip {
    background-image: url(../src/images/vip.png);
    display: flex;
}
.vip .vip-texts h3{
  color: #fff;

}
.faq,.duvida{
  justify-content: center;
  align-items: center;
}

.duvida p{
  text-align: center;
}

.faq h3{
  margin: 0px;
}

@media screen and (max-width:450px) {
main .titulos h1{
  color: black;
  font-size: 1.7rem;
}
main .titulos .sub-titulos span{
  color: rgb(118, 118, 118);
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
}
.conteudo ul li{
  font-size: 1rem;
  color: #0d0d0d;
  text-decoration: none;
  list-style: none;
  gap:.5rem;
  display: flex;
}
.conteudo h2{
  color: #0d0d0d;
  font-size: 1.55rem;
}
.conteudo h3{
  color: #0d0d0d;
  font-size: 1.10rem;
  margin-top: .7rem;
}
.conteudo h4{
  color: #0d0d0d;
  font-size: 1rem;
}
.conteudo p{
  font-size: 1rem;
}
.vip .vip_fundo{
        background: linear-gradient(90deg, var(--colorPrimary) 15%, transparent);
    }
}