@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Lato", "Roboto", sans-serif;
  font-weight: 400;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: transparent;
}

section {
  width: 728px;
    margin-top: 6px;
    padding: 24px 85px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #F2F2F2;
}

h1 {
    margin-top: 5px;
    text-align: center;
    color: #333;
    font-size: 24px;
    /* opacity: 0.8; */
    font-weight: 500;
    line-height: 1.1;
    text-transform: uppercase;
}
h2 {
    margin-top: 7px;
    text-align: center;
    color: #777;
    font-size: 16px;
    /* opacity: 0.8; */
    font-weight: 500;
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 29px;
}

.registros,
.saidas {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.saidas {
  margin-bottom: 35px;
}

.container {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 12px;
  color: #ffffff;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
}

.container.nome-entrada {
  margin-bottom: 0;
}

.container.aberto .material-symbols-outlined {
  transform: rotate(180deg);
  margin-top: 0;
}

.container.aberto .btn-ver-mais {
  background-color: rgba(255, 255, 255, 0.9);
}

.informacoes {
  width: 100%;
  min-height: 108px;
  padding: 14px 40px;
  border-radius: 8px;
  color: #ffffff;
  background-color: #4A008A;
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
  gap: 18px;
  transition: all 0.15s ease;
}

.saidas .container.aberto .informacoes {
  background-color: #D12B88;
}

.container-foto {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  flex: 0 0 80px;
  align-self: flex-start;
}

.foto {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.bloco-infos {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  min-width: 0;
}

.detalhes {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.infos {
  min-width: 0;
}

p.nome {
  font-size: 20.5px;
  font-weight: 600;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.pais {
  margin-top: 2px;
  opacity: 0.9;
  font-size: 15.5px;
  overflow-wrap: anywhere;
}

.pais span {
  opacity: 0.7;
  font-size: 14px;
  text-transform: uppercase;
  padding-left: 1px;
}

.btn-ver-mais {
  background-color: rgba(255, 255, 255, 0.65);
  padding: 10px;
  border-radius: 40px;
  height: 46px;
  width: 46px;
  flex: 0 0 46px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.1s ease;
  user-select: none;
}

.btn-ver-mais:hover {
  background-color: rgba(255, 255, 255, 0.9);
}

.material-symbols-outlined {
  font-size: 44px !important;
  margin-top: 3px;
}

.icon-down {
  color: #4A008A;
}

.saidas .container.aberto .icon-down {
  color: #D12B88;
}

.detalhamento {
  width: calc(100% - 96px);
  max-width: 424px;
  color: #585858;
  background-color: #ffffff;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 3px 12px #00000010;
  padding: 26px 32px 32px;
  margin: -12px auto 15px;
}


p.frase {
    font-size: 20px;
    font-style: italic;
    margin-bottom: 16px;
    /* color: #196782; */

    padding-bottom: 21px;
    border-bottom: 1px solid #d0d0d0;
}

.titulo-bio {
  font-size: 14px;
  font-weight: 600;
  color: #41BFEB;
  margin-bottom: 4px;
}

.biografia {
  font-size: 15px;
  line-height: 25px;
  overflow-wrap: anywhere;
}

.detalhamento a {
  display: inline-block;
  text-decoration: none;
  background-color: #e9f6fc;
  padding: 4px 13px;
  border-radius: 20px;
  min-height: 20px;
  font-size: 11.5px;
  color: #41BFEB;
  font-weight: 600;
  white-space: nowrap;
  /* margin-top: 10px; */
}

.detalhamento a:hover {
  background-color: #e2f2fa;
  color: #41BFEB;
}

.video {
  margin-top: 20px;
}

.video iframe {
  width: 100%;
  max-width: 100%;
  border-radius: 8px;
  display: block;
  min-height: 200px;
}

@media (max-width: 520px) {
  section {
    width: calc(100% - 24px);
    margin-top: 12px;
            padding: 18px 9px;
  }

  h1 {
    font-size: 17px;
  }
  h2 {
    font-size: 12px;
    margin-bottom: 18px;
  }

  .informacoes {
    min-height: 96px;
    padding: 15px;
    gap: 12px;
  }

  p.frase {
    font-size: 18px;
  }

  .container-foto {
    width: 66px;
    height: 66px;
    flex-basis: 66px;
  }

  .video iframe {

  min-height: 70px;
}

.detalhamento a {
    font-size: 11.5px;
}

  p.nome {
    font-size: 15px;
  }

  .pais {
    font-size: 13px;
  }

  .pais span {
    font-size: 12.5px;
  }

  .btn-ver-mais {
    height: 42px;
    width: 42px;
    flex-basis: 42px;
    padding: 8px;
  }

  .material-symbols-outlined {
    font-size: 40px !important;
  }

  .detalhamento {
    width: calc(100% - 30px);
    max-width: none;
    padding: 24px 22px 28px;
  }

  .biografia {
    font-size: 14px;
    line-height: 23px;
  }
}

@media (max-width: 380px) {
  section {
    width: calc(100% - 18px);
  }

  .informacoes {
    padding: 13px;
    gap: 10px;
  }

  .container-foto {
    width: 58px;
    height: 58px;
    flex-basis: 58px;
  }

  p.nome {
    font-size: 13px;
    padding-bottom: 3px;
  }

  .pais {
    font-size: 12px;
    line-height: 15px;
  }

  .pais span {
    font-size: 11.5px;
  }

  .btn-ver-mais {
    height: 36px;
    width: 36px;
    flex-basis: 36px;
  }

  .material-symbols-outlined {
    font-size: 34px !important;
  }

  .detalhamento {
    width: calc(100% - 22px);
    padding: 22px 18px 24px;
  }
}
