@charset "UTF-8";
/* CSS Document */

:root {
  --rosa: #ea0244;
  --placeholder: #b2b2b2;
  --cinza: #b6b6b6;
  --bege: #fdf8f3;
  --texto: #41738e;
}

* {
  box-sizing: border-box;
}


body {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-size: 16px;
  color: #FFF;
  -webkit-font-smoothing: antialiased;
  -webkit-font-smoothing: subpixel-antialiased;
  font-display: swap;
  display: flex;
  justify-content: center;
  background-color: #000;
}

a:link {
  text-decoration: none;
  color: var(--texto);
  cursor: pointer;
  outline: 0;
}
a:visited {
  text-decoration: none;
  color: var(--texto);
  cursor: pointer;
  outline: 0;
}
a:hover {
  text-decoration: none;
  color: var(--rosa2);
  cursor: pointer;
  outline: 0;
}
a:active {
  text-decoration: none;
  color: var(--texto);
  cursor: pointer;
  outline: 0;
}

section{
  width: 550px;
}
img{
  width: 100%;
}

.home{
  position: relative;
  width: 100%;
}

.home .texto{
  position: absolute;
  left: 0px;
  width: 100%;
  text-align: center;
  top: 10px;
  font-size: 20px;
  letter-spacing: 10px;
}

.container_mouse{
  position: absolute;
  right: 20px;
  bottom: 30px;
}

.mouse-btn {
  margin: 10px auto;
  width: 30px;
  height: 50px;
  border: 3px solid rgba(255, 255, 255, 0.918);
  border-radius: 20px;
  display: flex;
}

.mouse-scroll {
  display: block;
  width: 10px;
  height: 10px;
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.918), rgb(255, 255, 255));
  border-radius: 50%;
  margin: auto;
  animation: scrolling13 1s linear infinite;
}

@keyframes scrolling13 {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }

  100% {
    opacity: 1;
    transform: translateY(20px);
  }
}



.biografia .bt{
  width: 50%;
  border: 2px solid #7e3e97;
  padding: 20px;
  text-align: center;
  cursor: pointer;
  transition: all ease-in-out .2s;
}
.biografia .bt:hover{
  background-color: #a04cc2;
}
.biografia .pt,
.biografia .en{
  padding: 30px;
}
.biografia .en{
  display: none;
}
.biografia .bt img,
.biografia .bt img{
  width: 40px;
}
.biografia .active{
  background-color: #7e3e97;
  color: #FFF;
  cursor: inherit;
}

.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
}
.video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.contato{
  position: relative;
}

.contato a{
  width: 12%;
  margin: 0px 10px;
}

/*----------------------------------------------*/
/*----------------------------------------------*/
/*-------------- ADAPTAÇÃO MOBILE --------------*/
/*----------------------------------------------*/
/*----------------------------------------------*/
@media screen and (max-width: 1360px) {

  section{
    width: 100%;
  }

  .home img{
    height: 90vh;
    object-fit: contain;
  }
  
}


/*

  /pacientes
    nome_paciente
    foto_paciente
    idade_paciente
    telefone
  
  /consultas
    id_consulta
    id_paciente
    

  

*/