* {
  margin:0;
  padding:0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

/* Banner */
body {
  height: 100vh;
  background: url("Fundo\ 01.png") center/cover no-repeat;
  color: white;
  overflow: hidden;
}

/* Overlay do Banner */
.overlay{
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.60);
  backdrop-filter: blur(1px);
}

.language span{
  margin-left: 10px;
  cursor: pointer;
  opacity: 0.6;
}

.language .active {
  opacity: 1;
}

.logo-container {
  position: relative;
  z-index: 2;
  height: 80%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 70px;
  text-align: center;
}

.logotipo{
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 150px;
}

/* Versao do logotipo visível em desktop */
.versao-horizontal{
  width: 500px;
  max-width: 80%;
  height: auto;
}

/* Versao do logotipo visível em mobile */
.versao-vertical{
  width: 400px;
  max-width: 60%;
  height: auto;
  display: none;
}

.progresso strong{
  text-align: center;
  font-weight: 400;
  margin-bottom: 15px;
}

.progresso {
  text-align: center;
  font-weight: 300;
  letter-spacing: 6px;
  margin-bottom: 15px;
  font-size: 15px;
}

.break{
  display: inline;
  margin-left: 8px;
}

.barra-progresso{
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 20px 0;
}

.contorno-externo-barra{
  position: relative;
  width: 100%;
  max-width: 900px;
  height: 14px;
  background: transparent;
}

.preenchimento-barra{
  position: absolute;
  left: 0;
  top: 0;

  height: 100%;
  width: 75%;
  background: #fbb142;
}

.final-da-barra{
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);

  width: 400px;
  height: 14px;
  border: 1px solid #fbb142;
}

@keyframes loading{
  0% {width: 20%;}
  50% {width: 75%;}
  100% {width: 20%;}
}

/* Social*/

.social{
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 50px;
}

.social img {
  width: 90px;
  height: 60px;
  object-fit: contain;
}

.icon img{
  transition: 0.3s;
}

.icon.fb {
  background-image: url('./facebook-icon-y.png');
}

footer {
  position: absolute;
  bottom: 50px;
  width: 100%;
  font-weight: 400;
  text-align: center;
  font-size: 14px;
  opacity: 0.7;
  margin-bottom: 40px;
  letter-spacing: 6px;
  padding: 50px;
}

.texto-amarelo {
  color: #fbb142;
}

/*RESPONSIVO*/

@media (max-with: 768px) {
  .versao-horizontal{display: none;}
  .versao-vertical{display: block;}
  
  .logotipo {
    flex-direction: column;
  }

  .break{
    display: block;
    margin-left: 0;
    margin-top: 6px;
  }

  .status {
    font-size: 14px;
    padding: 0 10px;
  }

  .progresso{
    max-width: 70%;
  }

  .contorno-externo-barra {
    width: 70%;
  }

  .preenchimento-barra{
    width: 70%;
  }

  .final-da-barra{
    width: 280px;
    height: 16px;
  }

  footer{
    font-size: 11px;
    padding: 0 10px;
  }
}

@media (max-with: 480px) {
  .status {
    font-size: 12px;
  }

  .social a {
    width: 38px;
    height: 38px;
    font-size: 14px;
  }

  .break {
    display: block;
    margin-left: 0;
    margin-top: 6px;
  }
}