@import url('https://fonts.googleapis.com/css2?family=Dosis:wght@200..800&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

* {
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
  margin: 0;
  padding: 0;
}

body {
  background-color: #031126;
  padding: 0 100px;
  color: #fff;
}

.header {
  width: 100%;
  padding: 20px 0 0 50px;
}

.header .titlePage {
  color: #fff;
  font-weight: 300;
  margin: 0;
}

.searchBar {
  width: 100%;
  max-width: 1000px;
  margin: 20px 0 0 50px;
  background-color: #1D3359;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 15px;
  border-radius: 10px;
}

.searchBar .a {
  display: flex;
  align-items: center;
  flex: 1;
}

.searchBar .searchIcon {
  margin: 10px;
  flex-shrink: 0;
}

.searchBar .inputNome {
  background-color: #1D3359;
  border: none;
  outline: none;
  width: 100%;
  max-width: 500px;
  height: 50px;
  font-size: 1.5rem;
  font-family: "Dosis", sans-serif;
  margin: 10px;
  color: #fff;
}

.searchBar .inputNome:focus {
  border: none;
  outline: none;
}

.btnPesquisar {
  width: 150px;
  background-color: #1B63E0;
  border: none;
  border-radius: 10px;
  transition: ease-in-out .3s;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  cursor: pointer;
}

.btnPesquisarTxt {
  color: #fff;
  font-weight: 300;
  margin: 0;
  font-size: 1rem;
}

.btnPesquisar:active {
  transform: scale(1.02);
  transition: all ease-in-out .05s;
}

.btnPesquisar:hover {
  background-color: #1554c0;
}

.cardRetorno {
  width: 100%;
  max-width: 1000px;
  margin: 40px 0 0 50px;
  background-color: #1D3359;
  height: 400px;
  border-radius: 8px;
  padding: 30px 60px;
  color: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.nomeFoto {
    display: flex;
    align-items: center;
    width: 100%;
}

.imgPerfil {
    width: 120px;
    height: 120px;
    border-radius: 60px;
    margin-right: 30px;
}

.Nome {
    color: #fff;
    font-size: 2.2rem;
    font-family: "Dosis", sans-serif;
    font-weight: 500;
    margin-bottom: 10px;
}

.userLink{
    text-decoration: none;
}

.user {
    color: #1B63E0;
}

.BioDesde {
    margin: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.bio {
    color: #fff;
    font-weight: 200;
}

.desde {
    color: #ffffffab;
    font-weight: 200;
}

.dados {
    background-color: #031126;
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin-top: 40px;
    width: 700px;
    height: 200px;
    border-radius: 20px;
}

.dado {
    height: 70;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.dadoTitle {
    color: #fff;
    font-size: 1rem;
    font-family: "Dosis", sans-serif;
    font-weight: 300;
}

.dadoNumero {
    color: #4da3ff;
    font-size: 3rem;
    font-weight: 400;
}


.SemRetorno {
    width: 100%;
    max-width: 1000px;
    margin: 40px 0 0 50px;
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.SemRetornoTexto {
    color: #ffffff69;
    font-weight: 200;
}

@media (max-width: 1000px) {
    body {
        padding: 0 50px;
    }

    .header {
        padding: 10px 0;
        text-align: center;
    }

    .searchBar {
        margin: 20px auto;
        flex-direction: column;
        align-items: stretch;
        max-width: 100%;
    }

    .searchBar .a {
        margin-bottom: 10px;
    }

    .searchBar .inputNome {
        max-width: 100%;
        font-size: 1rem;
    }

    .btnPesquisar {
        width: 100%;
    }

    .cardRetorno,
    .SemRetorno {
        margin: 20px auto;
        padding: 20px;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    body {
        padding: 0 20px;
    }

    .cardRetorno {
        height: auto;
    }

    .nomeFoto {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .imgPerfil {
        margin: 0 0 10px 0;
    }

    .BioDesde {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }

    .desde {
        margin-top: 10px;
    }

    .dados {
        gap: 15px;
        height: auto;
        padding: 10px;
        width: 600px;
    }
}

@media (max-width: 550px) {
    .searchIcon {
        display: none;
    }

    .inputNome {
        font-size: 2rem;
        height: 40px;
    }

    .btnPesquisar {
        padding: 8px;
    }

    .cardRetorno{
        height: auto;
    }

    .desde {
        margin-top: 10px;
    }

    .dados {
        width: 280px;
        flex-direction: column;
    }

    .dadoNumero {
        font-size: 2rem;
    }
}
