@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@400;700&family=Caveat:wght@700&display=swap');

@import url('root.css');
@import url('menu.css');
@import url('buttons.css');
@import url('forms.css');

html, body {
  font-family: var(--fonte);
  font-size: 16px;
  color: var(--texto);
  height: 100%;
  margin: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
}

h1 {font-size: 3.635em;}
h2 {font-size: 2.932em;}
h3 {font-size: 2.364em;}
h4 {font-size: 1.907em;}
h5 {font-size: 1.538em;}
h6 {font-size: 1.24em;}

b, strong {font-weight: 700}

a {text-decoration: none !important;}
a:hover {text-decoration: none !important;}

.header {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;

  background: url('../img/bg-header.jpg');
  background-position: center center;
  background-size: cover;

  height: -webkit-fill-available;
  -webkit-background-size: cover;
}

.header h3 {
  color: var(--bg0);
}

.header p,
.header #timer {
  color: var(--bg0);
  font-weight: bold;
}

.sobre {
  padding: 80px 0px;
  font-family: var(--fonte-titulo);
  text-align: center;
  color: var(--primaria);
}

.item-consultorio,
.item-curriculo,
.item-consultoria {
  display: flex;
  align-items: center;
}

.item-consultorio h2,
.item-consultoria-topico h2,
.item-consultoria h2 {
  font-family: var(--fonte-titulo);
  color: var(--primaria);
}

.curriculo {
  background: var(--degrade);
  padding: 50px;
  margin-top: 80px;
  color: var(--bg0);
}

.curriculo .item-curriculo img {
  margin-bottom: 24px;
}

.curriculo hr {
  display: none;
}

.contato {
  padding: 80px 0px;
}

.contato h2, .contato h4 {
  text-align: center;
  font-family: var(--fonte-titulo);
  color: var(--primaria);
}

.contato h2 {
  margin-bottom: 32px;
}

footer .itens-rodape {
  color: var(--primaria);
  
    display: flex;
    justify-content: space-around;
    align-items: center;
}

footer .itens-rodape p {
  margin-bottom: 0px;
}

footer .itens-rodape .redes-rodape img {
  margin: auto 8px;
}

footer .copy {
  color: var(--primaria1);
  text-align: center;
  margin-top: 24px;
  padding-bottom: 2px;
}

footer .copy a {
  color: var(--primaria1);
}

footer .copy a:hover {
  color: var(--texto);
}

/* ==========================================================================
   Arrow Slide
========================================================================== */


@-moz-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -moz-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -moz-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -moz-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}
@-webkit-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -moz-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -moz-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}

.arrow {
  position: absolute;
  /*bottom: 110px;*/
  bottom: 30px;
  left: 50.4%;
  margin-left: -20px;
  width: 30px;
  height: 30px;
  background-image: url('../img/abaixo.svg');
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 10;
}

.bounce {
  -moz-animation: bounce 2s infinite;
  -webkit-animation: bounce 2s infinite;
  animation: bounce 2s infinite;
}