:root {
  --black-text: #0f0505;
  --background-color: #fcf8f8;
  --primary-red: #e61e1e;
  --secondary-red: #e48b8b;
  --accent-color: #ed5050;
}

* {
  margin: 0;
  padding: 0;

  font-family: Inter;

  box-sizing: border-box;
}

body {
  width: 100%;

  display: flex;
  flex-direction: column;
  align-items: center;

  overflow-x: hidden;
}

#header-global {
  width: 100%;
  height: 10vh;

  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;

  padding: 0 64px;

  user-select: none;

  position: sticky;
  top: 0;

  z-index: 2;

  background-color: rgb(237, 80, 80, 1);

  transition: 150ms ease-in-out;
}
.header-transparente-baixo {
  background-color: rgb(237, 80, 80, 0.75) !important;

  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}

header > img {
  height: 50%;

  cursor: pointer;
}

.nome-lifetap-header {
  color: white;

  height: 80%;

  display: flex;
  align-items: center;
  gap: 12px;
}
.nome-lifetap-header > img {
  height: 90%;
}

.conteudo-index {
  width: 100%;

  display: flex;
  flex-direction: column;
  align-items: center;

  overflow-x: hidden;

  padding: 40px 0;
}

.navbar-links {
  position: fixed;

  width: 75%;

  padding: 16px;

  border-radius: 15px;

  display: flex;
  justify-content: center;
  align-items: center;

  top: -20vh;
  left: 50%;

  z-index: 1;

  background-color: rgba(
    230,
    30,
    30,
    0.85
  ) !important;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);

  transform: translateX(-50%);

  transition: 250ms ease;
}
.navbar-links-open {
  top: 11vh;

  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}

.navbar-links ul {
  width: 100%;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  list-style-type: none;

  gap: 32px;

  flex-wrap: wrap;
}
.navbar-links-linha {
  width: 100%;

  display: flex;
  justify-content: space-around;
  align-items: center;

  text-align: center;
}

.navbar-links ul a {
  text-decoration: none;
}
.navbar-links ul a li {
  color: white;

  position: relative;

  font-size: 1.5rem;
  font-weight: bold;
}
.navbar-links ul a li::after {
  content: "";

  width: 75%;
  height: 2px;

  position: absolute;

  left: 50%;
  bottom: -4px;

  transform: translateX(-50%);

  background-color: white;

  transition: 250ms ease-in-out;
}
.navbar-links ul a li:hover::after {
  width: 100%;
}

footer {
  width: 100%;
  height: 35vh;

  position: relative;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;

  color: white;

  margin-top: 80px;

  padding: 4px;
}

.superior-footer {
  width: 80%;
  height: 60%;

  display: flex;
  align-items: center;
  justify-content: space-between;

  border-radius: 10px;

  position: absolute;
  top: -35%;

  background-color: var(--secondary-red);
}
.esquerda-superior-footer {
  width: 75%;
  height: 100%;

  padding: 24px 0;
  padding-left: 32px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.esquerda-superior-footer > h3 {
  font-size: 2rem;

  font-weight: bolder;
}
.esquerda-superior-footer > p {
  font-weight: 400;

  font-size: 1.35rem;
}

.direita-superior-footer {
  width: 25%;
  height: 100%;

  display: flex;
  align-items: center;
  justify-content: center;
}
.direita-superior-footer > a {
  text-decoration: none;

  width: 65%;

  text-align: center;

  padding: 8px;
  border-radius: 20px;

  font-size: 2rem;
  font-weight: bold;

  background-color: white;
  color: var(--secondary-red);
}
.direita-superior-footer > a:hover {
  color: #b36b6b;
}

.inferior-footer {
  width: 100%;
  height: 85%;

  display: flex;
  flex-direction: column;
  justify-content: space-around;
  justify-self: flex-end;

  padding: 8px 96px;

  border-radius: 10px;

  background-color: var(--primary-red);
}
.inferior-footer > h3 {
  display: flex;
  align-items: center;

  gap: 8px;

  font-size: 4rem;
}
.inferior-footer > h3 > img {
  height: 7vh;
}

.inferior-footer > p {
  font-size: 1.5rem;

  font-style: italic;
}

.imagem-introdutoria {
  height: 65vh;

  position: relative;
}

.imagem-introdutoria > img {
  height: 100%;
}

.imagem-introdutoria > h2 {
  position: absolute;

  left: 50%;
  top: 50%;

  text-align: center;
  font-size: 2.75rem;

  padding: 4px 8px;

  color: white;

  border-radius: 20px;

  background-color: rgb(237, 80, 80, 0.8);

  transform: translate(-50%, -50%);
}

.aplicativo-introdutorio {
  width: 100%;

  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;

  margin-top: 32px;
  padding-left: 64px;
  padding-right: 192px;
}

.paragrafo-introdutorio {
  color: var(--black-text);

  width: 40%;

  margin-top: 12px;

  font-size: 1.5rem;
  text-align: justify;

  align-self: flex-start;
}

#tela-celular-contorno {
  height: 35vh;
}

.explicacao-app {
  align-self: flex-end;

  margin-top: 24px;
  margin-right: 64px;

  width: 40%;

  font-size: 1.45rem;
  text-align: end;
  color: var(--accent-color);
}

.emergencias-principais {
  width: 100%;

  display: flex;
  flex-direction: column;
  align-items: center;

  margin-top: 80px;
  margin-bottom: 48px;
}
.emergencias-principais > h2 {
  font-size: 3rem;
  text-align: center;

  color: var(--primary-red);
}

.lista-emergencias {
  width: 80%;

  display: flex;
  justify-content: center;
  gap: 56px;

  flex-wrap: wrap;

  margin-top: 24px;
}

.card-emergencia {
  width: 290px;
  height: 260px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;

  padding-top: 16px;

  border: 1px solid var(--accent-color);
  border-radius: 20px;

  justify-self: center;

  overflow: hidden;

  cursor: pointer;

  color: white;

  text-decoration: none;
}
.card-emergencia:active {
  border-color: #b61616;
}
.card-emergencia > img {
  height: 75%;
}
.card-emergencia > h3 {
  width: 100%;
  height: 40px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 1.25rem;

  background-color: var(--secondary-red);

  transition: 100ms;
}
.card-emergencia:hover > h3 {
  background-color: var(--accent-color);
}
.card-emergencia:active > h3 {
  background-color: #b61616;
}

.item-emergencia {
  width: 30%;

  display: flex;
  justify-content: center;
  align-items: center;

  text-align: center;
  text-decoration: none;

  background-color: var(--secondary-red);

  border-radius: 20px;

  overflow: hidden;

  padding: 12px 12px;

  font-size: 1.5rem;
  font-weight: bold;

  cursor: pointer;
  color: white;

  transition: 100ms;
}

.item-emergencia:hover {
  background-color: var(--accent-color);
}

.titulo-pagina-conteudo {
  color: var(--primary-red);

  font-size: 2.5rem;
  font-weight: bold;

  align-self: flex-start;

  margin-left: 112px;
}

.conteudo-perguntas {
  width: 100%;

  margin-top: 32px;

  display: flex;
  justify-content: space-around;
}
.conteudo-perguntas > img {
  height: 60vh;
}

.conteudo-perguntas > .conteudo-perguntas-direita {
  width: 50%;

  display: flex;
  flex-direction: column;
  align-items: center;
}

.pergunta-frequente {
  width: 65%;
  height: fit-content;

  position: relative;

  margin-bottom: 48px;

  display: flex;
  flex-direction: column;
  align-items: center;
}
.pergunta-frequente::after {
  content: "";

  width: 102%;
  height: 3px;

  position: absolute;
  bottom: -16px;

  background-color: var(--accent-color);
}

.titulo-pergunta-frequente {
  width: 100%;

  display: flex;
  justify-content: space-between;
  align-items: center;

  cursor: pointer;

  padding: 0 16px;
  margin-bottom: 12px;
}
.titulo-pergunta-frequente-texto {
  width: 85%;
  color: var(--accent-color);

  font-size: 1.5rem;
}
.icone-abrir-fechar-pergunta {
  width: 32px;

  user-select: none;
}

.paragrafo-pergunta-frequente {
  width: 85%;
  height: 0;

  font-size: 1.2rem;
  color: var(--black-text);

  text-align: justify;

  overflow: hidden;

  transition: 300ms ease-in-out;
}

/* ARQUIVO CONTATO */

.wrapper-formulario {
  width: 85%;
  height: 80vh;

  display: flex;

  padding: 12px;

  border-radius: 8px;

  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.formulario-esquerda {
  width: 45%;
  height: 100%;

  border-radius: 4px;

  padding: 40px 40px;

  display: flex;
  flex-direction: column;
  /* align-items: center; */

  background-color: rgb(230, 30, 30, 0.85);
}

.formulario-esquerda > h3 {
  color: #fcf8f8;

  font-size: 2.75rem;
}

.formulario-esquerda-paragrafo {
  color: #fcf8f8;

  width: 85%;

  font-size: 1.25rem;
  font-weight: 300;

  line-height: 1.65rem;
}

.formulario-esquerda-lista-contatos {
  margin-top: 96px;

  display: flex;
  flex-direction: column;
  justify-content: center;

  gap: 12px;
}

.formulario-esquerda-lista-contatos > li {
  display: flex;
  align-items: center;

  gap: 8px;

  color: #fcf8f8;

  font-size: 1.2rem;
  letter-spacing: 1px;
  font-weight: 300;
}
.formulario-esquerda-lista-contatos > li > img {
  aspect-ratio: 1;

  user-select: none;

  height: 90%;
}

.formulario-direita {
  width: 65%;
  height: 100%;

  border-radius: 4px;

  padding: 40px 40px;

  display: flex;
  flex-direction: column;
  justify-content: center;
}

.formulario-direita-form {
  display: grid;
  gap: 1.5rem;

  grid-template-columns: 1fr 1fr;
}

.form-group {
  display: grid;
}
.form-group-linha-inteira {
  grid-column: 1 / -1;
}
.form-group > label {
  font-size: 1.25rem;
  font-weight: bold;

  color: var(--accent-color);
}
.form-input-default {
  width: 100%;

  outline: none;

  border: transparent;
  border-bottom: 1px solid var(--black-text);

  font-size: 1.25rem;

  height: 6vh;
}
.form-input-default-error {
  border-color: var(--primary-red);
}
.form-input-default::placeholder {
  font-size: 1rem;

  color: rgb(230, 30, 30, 0.45);
}

#input-mensagem {
  height: 20vh;

  margin-top: 8px;

  resize: none;
  outline: none;
}

.form-input-submit {
  grid-column: 1 / -1;
  justify-self: end;

  background-color: var(--accent-color);

  font-size: 1.5rem;

  padding: 12px 16px;

  display: flex;
  justify-content: center;
  align-items: center;

  min-width: 75px;
  height: 8vh;

  border-radius: 6px;
  border: transparent;

  font-weight: bold;
  color: #fcf8f8;

  transition: 50ms ease;
}
.form-input-submit:hover {
  background-color: var(--primary-red);
}

.loader {
  height: 90%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 6px solid;
  border-color: white #0000;
  animation: l1 1s infinite;
}
@keyframes l1 {
  to {
    transform: rotate(0.5turn);
  }
}

.area-integrantes {
  width: 100%;

  display: flex;
  justify-content: center;
  align-items: center;

  gap: 24px;
}

.card-integrante {
  width: 350px;
  height: 500px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  padding: 16px;

  border: 2px solid var(--primary-red);
  border-radius: 15px;

  /* box-shadow: 0px 20px 17px 0px rgba(0, 0, 0, 0.21);
  -webkit-box-shadow: 0px 20px 17px 0px rgba(0, 0, 0, 0.21);
  -moz-box-shadow: 0px 20px 17px 0px rgba(0, 0, 0, 0.21); */
}

.foto-integrante {
  aspect-ratio: 1;

  width: 75%;

  border-radius: 50%;
  overflow: hidden;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 12px;

  background-color: var(--accent-color);
}

.foto-integrante > img {
  height: 100%;
}

.card-integrante > h4 {
  text-align: center;

  min-height: 50px;

  font-size: 1.25rem;
}

.card-integrante > h5 {
  text-align: center;

  font-size: 1rem;

  font-weight: 500;
}

.midias-sociais {
  width: 100%;

  margin-top: 16px;

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 20px;
}

.midias-sociais > * {
  user-select: none;
}

.midias-sociais img {
  height: 50px;
}


.titulo-pagina {
  font-size: 3rem;

  color: var(--primary-red);
}

.conteudo-checklist {
  width: 60%;

  margin-top: 40px;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.card-emergencia-selecionado {
  border-color: var(--primary-red);
}
.card-emergencia-selecionado:hover {
  border-color: #8a0f0f;
}
.card-emergencia-selecionado:active {
  border-color: #b61616;
}
.card-emergencia-selecionado h3 {
  background-color: var(--primary-red);
}
.card-emergencia-selecionado:hover h3 {
  background-color: #8a0f0f;
}
.card-emergencia-selecionado:active h3 {
  background-color: #b61616;
}

.conteudo-checklist.conteudo-todo-selecionado > .card-emergencia-selecionado {
  border-color: green;
}
.conteudo-checklist.conteudo-todo-selecionado > .card-emergencia-selecionado > h3 {
  background-color: green;
}



.questionario {
  width: 75%;

  display: flex;
  flex-direction: column;
  align-items: center;

  gap: 32px;

  margin: 64px 0;
}

.questao {
  width: 100%;
  height: fit-content;

  padding: 16px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
.titulo-questao {
  color: var(--primary-red);

  font-size: 2.25rem;
}
.explicacao-questao {
  color: var(--accent-color);

  width: 60%;

  margin-top: 8px;

  font-size: 1.5rem;
  font-style: italic;
  text-align: center;
}
.respostas-questao {
  display: grid;

  grid-template-columns: 1fr 1fr;
  gap: 12px;

  margin-top: 12px;
}
.opcao-questao {
  width: 100%;

  font-size: 1.35rem;
  color: white;
  font-weight: bold;

  border: transparent;
  border-radius: 15px;

  background-color: rgb(228, 139, 139, .75);

  padding: 12px 8px;
}
.opcao-questao:hover {
  background-color: rgb(228, 139, 139, .95);
}
.opcao-questao-selecionada {
  background-color: var(--accent-color);
}
.opcao-questao-selecionada:hover {
  background-color: var(--accent-color);
}
.opcao-questao-correta {
  background-color: #2e7d32;
}
.opcao-questao-errada {
  background-color: #c62828;
}

.wrapper-terminar-questionario {
  align-self: flex-end;

  display: flex;
  gap: 32px;
}

.terminar-questionario {
  font-size: 1.75rem;
  font-weight: bold;
  color: white;

  cursor: pointer;

  border: 1px solid green;
  border-radius: 8px;

  padding: 4px 12px;

  background-color: rgba(18, 133, 53, 0.55);
}
.terminar-questionario:hover {
  background-color: green;
}
.terminar-questionario:active {
  cursor: default;
  background-color: #b61616;
}

.resetar-questionario {
  font-size: 1.75rem;
  font-weight: bold;
  color: white;

  cursor: pointer;

  border: transparent;
  border-radius: 8px;

  padding: 4px 12px;

  background-color: var(--accent-color);
}
.resetar-questionario:hover {
  background-color: #e61e1e;
}
.resetar-questionario:active {
  cursor: default;
  background-color: #b61616;
}

.span-erro-questionario {
  font-weight: bold;

  color: var(--primary-red);
}


.conteudo-emergencia {
  height: 75vh;

  margin-bottom: 112px;
}
.opcoes-emergencia {
  width: 75%;

  margin-top: 32px;

  display: flex;
  justify-content: space-around;
  align-items: center;
}
.escolha-emergencia {
  width: 400px;
  height: 400px;
  aspect-ratio: 1;

  display: flex;
  justify-content: center;
  align-items: center;

  border: 4px solid var(--primary-red);
  border-radius: 50%;

  cursor: pointer;

  background-color: rgb(182, 22, 22, .35);
}
.escolha-emergencia:hover {
  background-color: rgb(182, 22, 22, .55);
}
.escolha-emergencia:active {
  background-color: rgb(182, 22, 22, .75);

  cursor: default;
}
.escolha-emergencia > img {
  height: 55%;

  user-select: none;
}

.mensagem-simulacao {
  max-width: 600px;

  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  padding: 15px;
  
  background-color: #ffcccb;
  border-radius: 8px;
  
  color: #000;
  font-weight: bold;
  text-align: center;
  font-size: 1.2em;
}

.escondido {
  visibility: hidden;
}



.tutorial-wrapper {
  width: 75%;

  display: flex;
  flex-direction: column;
  align-items: center;

  margin-top: 32px;
  padding: 8px 40px;

  border: 4px solid var(--accent-color);
  border-radius: 15px;
}
.etapa-tutorial {
  width: 100%;

  display: grid;
  grid-template-columns: 1fr 3fr;

  gap: 64px;
}
.imagem-etapa-tutorial {
  height: 65%;

  justify-self: center;
  align-self: center;
}
.informacao-etapa-tutorial {
  height: 75%;

  justify-self: flex-start;
  align-self: center;

  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;

  gap: 20px;
}
.titulo-etapa {
  color: var(--primary-red);

  font-weight: bold;
  font-size: 2.25rem;
}
.descricao-etapa {
  color: var(--accent-color);

  font-size: 1.5rem;
  text-align: justify;
}