@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;1,500;1,600&display=swap');

@import 'modal.css';
@import 'tooltip.css';
@import 'dropDownMenu.css';
@import 'menu-mobile.css';
@import 'numeros.css';
@import 'cpf.css';
@import 'animais.css';

body {
  font-family: 'Playfair Display', serif;
  background: #fff;
  color: #222;
  -webkit-font-smoothing: antialiased;
}

body::-webkit-scrollbar{
  width: 15px;
  background: #f8f8f8;
}

body::-webkit-scrollbar-thumb{
  border-radius: 10px;
  background: #FACCD0;
  border-left: 1px solid #fff;
  border-right: 1px solid #fff;
}

body,
h1,
h2,
ul,
li,
p,
dd,
dt,
dl {
  margin: 0px;
  padding: 0px;
}

img{
  display: block;
  max-width: 100%;
}

ul{
  list-style: none;
}

.grid-container{
  display: grid;
  grid-template-columns: 1fr 120px minmax(300px, 800px) 1fr ;
}

.menu{
  grid-column: 3 / 5;
  margin-top: 2rem;
  margin-bottom: 2rem;
  background: #FFCCC7;
}

.menu ul {
  display: flex;
  flex-wrap: wrap;
  padding: 10px;
}

.menu li a{
  display: block;
  padding: 10px;
  margin-right: 10px;
  color: #222;
  text-decoration: none;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: .1em;
}

.grid-section{
  grid-column: 2 / 4 ;
  width: 100%;
  box-sizing: border-box;
  padding: 10px;
  display: grid;
  grid-template-columns: 90px 300px 1fr;
  grid-gap: 20px;
  margin-bottom: 4rem;
}

.titulo{
  font-size: 6rem;
  line-height: 1;
  font-weight: 400;
  margin-bottom: 1rem;
  grid-column: 1 / 4;
}

.animais h2{
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 1rem;
  color: #ABC8FF;
}

.animais h2::before{
  content: '';
  display: inline-block;
  width: 40px;
  height: 10px;
  margin-right: 10px;
  background: #ABFCF4;  
}

.animais p{
  font-family: Helvetica, Arial;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.animais-lista{
  height: 370px;
  overflow-y: scroll;
  grid-column: 2;
}

.animais-lista li{
  cursor: pointer;
}

.animais-lista::-webkit-scrollbar{
  width: 18px;
}

.animais-lista::-webkit-scrollbar-thumb{
  background: #ABC8FF;
  border-radius: 10px;
  border-left: 2px solid #fff;
  border-right: 2px solid #fff;
}

.animais-lista::-webkit-scrollbar-thumb:hover{
  background: #ABFCF4;
}

.animais-lista::-webkit-scrollbar-track{
  background: #f8f8f8;
}

.animais-descricao{
  grid-column: 3;
}

.animais-descricao section
{
  margin-bottom: 3rem;
}

.faq-lista{
  grid-column: 2 / 4;
}

.faq-lista dt{
  margin-top: 2rem;
  margin-bottom: .5rem;
  color: #ABC8FF;
  cursor: pointer;
}

.faq-lista dt::before{
  content: '';
  display: inline-block;
  width: 20px;
  height: 10px;
  margin-right: 10px;
  background: #ABFCF4; 
}

.faq-lista dd{
  margin-bottom: .5rem;
  margin-left: 30px;
}

.mapa{
  grid-column: 2;
}

.dados{
  grid-column: 3;
}

.dados li{
  margin-bottom: 1rem;
}

.dados li::before{
  content: '';
  display: inline-block;
  width: 20px;
  height: 10px;
  margin-right: 10px;
  background: #ABFCF4; 
}

.copy {
  grid-column: 3 / 5;
  margin-bottom: 2rem;
  background: #FFCCC7;
}

.copy p{
  padding: 20px;
  
}

@media (max-width: 700px){

  .grid-container{
    grid-template-columns: 1fr;
  }

  .menu,
  .grid-section,
  .copy{
    grid-column: 1;
  }

  .grid-section{
    grid-template-columns: 100px 1fr;
    grid-gap: 10px;
  }

  .animais-lista{
    grid-column: 1;
  }

  .faq-lista,
  .dados,
  .mapa{
    grid-column: 1 / 3;
  }

  .grid-section h1{
    font-size: 3rem;
  }

  .menu{
    margin-top: 0px;
  }

  .copy{
    margin-bottom: 0px;
  }

}

.js .js-tabContent section{
  display: none;
}

.js-tabContent section.ativo{
  display: block !important;
  animation: show .5s forwards;
}

@keyframes show{

  from{
    opacity: 0;
    transform: translate3d(-30px, 0, 0);
  }

  to{
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }

}

.js .js-accordion dd{
  display: none;
}

.js-accordion dt::after{
  content: '⤵';
  margin-left: 10px;
}

.js-accordion dt.ativo::after{
  content: '⤴';
}

.js-accordion dd.ativo{
  display: block;
  animation: slideDown .5s forwards;
}

@keyframes slideDown {
  
  from{
    opacity: 0;
    max-height: 0;
  }

  to{
    opacity: 1;
    max-height: 200px;
  }

}

.js .js-scroll {
  opacity: 0;
  transform: translate3d(-30px, 0, 0);
  transition: .3s;
}

.js .js-scroll.ativo{
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

[data-semana]::after{
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #FACCD0;
  border-radius: 50%;
  margin-left: 4px;
  border: 2px solid rgba(0, 0, 0, .4);
}

[data-semana].aberto::after{
  background: #3F4;
}

.btc-preco {
  background: #3F4;
  padding: .2rem .5rem;
  border-radius: 2px;
}