:root {
  --cinza-claro: #f0edee;
  --azul-profundo: #44a1a0;
  --azul-marinho: #07393c;
  --black: #000000;
  --cinza: #808080;
  --branco: #ffffff;
  --branco-transparente: #ffffffc0;
  --laranja: #f60;
}

html {
  font-size: 62.5%;
}

body {
  margin: 0;
  padding: 0;
  font-family: Manrope, sans-serif;
  font-size: 1.3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: black;
}
.fouth {
  display: flex;
  flex-direction: column;
  width: 100vw;
  justify-content: center;
}
/* cabecalho*/

ul {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.cabecalho {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: black;
  border-bottom: solid rgba(128, 128, 128, 0.375);
  padding: 2rem;
  padding-right: 3.3rem;


  .imagemlogo {
    display: flex;
    cursor: pointer;
    width: 23rem;
    height: auto;
  }
}

.ordemcabecalho {
  display: flex;
   

  & a {
    font-size: 1.7rem;
    color: white;
    text-decoration: none;
  }
}

.filhos ul {
  z-index: 9999;
  display: none;
  flex-flow: column;
  gap: 0;
  align-items: stretch;
  width: max-content;
  position: absolute;
  top: 2rem;
  right: 0rem;
  padding: 2rem 3.3rem;
  border-radius: 2.5rem;
  box-shadow: inset 0 0 0.4rem 0.1rem rgba(0, 0, 0, 0.1);
}

.filhos:hover ul {
  display: flex;
  background-color: rgba(252, 255, 255, 0.96);
}

.filhos::after {
  content: "\2bc6";
  color: white;
}
.filhos {
  position: relative;
}

.lista-cabecalho {
  list-style-type: none;

  & a {
    color: black;
    font-weight: 600;
    text-decoration: none;
  }
}

/*calculadora*/

.minst-imc {
  display: flex;
  justify-content: center;
  padding: 3.3rem;
  padding-top: 12.8rem;
}

.prime {
  background-color: #fff;
  padding: 5rem 4rem;
  border-radius: 1rem;
  box-shadow: 0 0.21rem 0.4rem rgba(0, 0, 0, 0.21);
  width: 100%;
  max-width: 40rem;
}

#cal {
  display: flex;
  flex-direction: column;
  gap: 2.7rem;
}

.titulocal {
  text-align: center;
  color: #333;
  padding-bottom: 3rem;
}

label {
  display: block;
  margin-bottom: 1rem;
  color: #555;
}

input[type="number"],
input[type="text"] {
  width: calc(100% - 2.2rem);
  padding: 1rem;
  border: 0.1rem solid #ccc;
  border-radius: 0.5rem;
}

button[type="submit"] {
  width: 100%;
  padding: 1rem;
  background-color: #fca311;
  border: none;
  border-radius: 0.5rem;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button[type="submit"]:hover {
  background-color: #45a049;
}

#resultado {
  margin-top: 2rem;
  padding: 1.5rem;
  background-color: #f4f4f4;
  border-radius: 0.5rem;
  border: 0.1rem solid #ddd;
}

#resultado p {
  margin: 0;
  color: #333;
}

/*rodape*/

.container-rodape {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem;

  & .logo-orio {
    width: 30rem;
  }
}

.subsecao-rodape {
  display: flex;
  flex-direction: column;
  align-content: center;
  align-items: center;
}

.rodape-redessociais {
  display: flex;
  gap: 0.82rem;
}
.rodape-redessociais {
  cursor: pointer;
}

.link-redessociais svg {
  width: 4rem;
  fill: rgb(150, 150, 150);
  stroke: rgb(150, 150, 150);
}

.link-redessociais:hover svg {
  fill: var(--laranja);
  stroke: var(--laranja);
  transition: ease 1s;
}

.rodape-redessociais a.link-redessociais:link,
.rodape-redessociais a.link-redessociais:visited,
.rodape-redessociais a.link-redessociais:hover,
.rodape-redessociais a.link-redessociais:active {
  color: transparent;
}

.rodape a:active,
.rodape a:hover {
  color: var(--laranja);
}

.rodape-titulo {
  font-weight: 600;
  color: var(--branco);
  font-size: 2rem;
}

.footer-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--branco);
  padding: 2rem;
}

.footer-bottom p {
  color: var(--branco);
  font-size: 1.4rem;
}
