/* IMPORT GLOBAL */

@import "../global/global.css";

/* HEADER */

header {
  display: flex;
  justify-content: center;
  width: 100%;
  position: relative;
  overflow: hidden;
}

header img.blushPrincipal {
  width: 2000px;
  height: 2000px;
  top: -800px;
  left: -800px;
  opacity: 0.5;
  position: absolute;
  z-index: 1;
}

header .titulo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 50px;
  min-height: 100vh;
  z-index: 2;
}
header .titulo .origenslogo {
  width: 120px;
  margin-bottom: 10px;
}

header .titulo .logo {
  width: 190px;
  height: 50px;
  margin-bottom: 10px;
}

header .titulo .logos {
  display: flex;
  width: 90%;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 20px;
}

header .titulo .titulos {
  display: flex;
  width: 100%;
  justify-content: space-between;
  flex-direction: column;
}

header .titulo h1 {
  font-family: var(--bold);
  font-size: clamp(2rem, 2.1vw, 3rem);
  line-height: 1;
  color: var(--cor-branco);
  width: 100%;

  max-width: 500px;
}

header .titulo h1 span {
  color: var(--cor-vermelho);
}


header .titulo a {
  font-family: var(--regular);
  font-size: clamp(1.1rem, 3vw, 1.2rem);
  line-height: 1.5;
  color: var(--cor-branco);
  border-bottom: 3px solid #032776;
  max-width: 700px;
  width: 90%;

  margin: 10px 0 0px 0;
}

header .titulo a:hover {
  cursor: pointer;
  text-decoration: underline;
}

header .titulo .title-form {
  border-bottom: none;
  color: white;
  font-weight: 100;
  font-size: 18px;
}

header .data {
  width: 90%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-bottom: 20px;
}

header .data p {
  font-family: var(--regular);
  font-size: clamp(1.1rem, 3vw, 1.2rem);
  line-height: 1.5;
  color: var(--cor-branco);
  border-bottom: 3px solid #032776;
  max-width: 700px;
  width: 90%;

  margin: 10px 0 0px 0;
}


header .topform p {
  border: none;
  font-size: 1.2rem;
}



header .imagem {
  width: 100%;
  max-width: 900px;
  min-width: 400px;
  height: 900px;
  max-height: 1000px;
  min-height: 1000px;
  position: relative;
  overflow: hidden;
}

header .imagem img.rafaelUm {
  position: absolute;
  left: 50px;
  top: 80px;
  z-index: 7;
  width: 900px;
  bottom: 0;
  right: 150px;
  animation: rafaelUm 25s linear infinite;
}

header .imagem .descriptionfoto {
  position: absolute;
  z-index: 7;
  width: 500px;
  bottom: 150px;
  right: 120px;
  color: white;
}

header .imagem .descriptionfoto h1 {
  font-size: 35px;
  color: white;
}

@keyframes rafaelUm {
  0% {
    transform: scale(1);
    filter: brightness(100%);
  }
  50% {
    transform: scale(1.1);
    filter: brightness(80%);
  }
  100% {
    transform: scale(1);
    filter: brightness(100%);
  }
}

header .imagem img.blushUm {
  position: absolute;
  z-index: 2;
  width: 350px;
  top: 50px;
  left: 50px;
  animation: blush 3s linear infinite;
  opacity: 0.5;
}

@keyframes blush {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

@media screen and (max-width: 1200px) {
  header {
    flex-direction: column;
    align-items: center;
  }

  header .titulo a {
    font-family: var(--regular);
    font-size: clamp(0.8rem, 3vw, 1.2rem);
    line-height: 1.5;
    color: var(--cor-branco);
    max-width: 700px;
    width: 90%;
    margin: 15px 0 0px 0;
  }

  header img.blushPrincipal {
    width: 1500px;
    height: 1500px;
  }

  header .titulo {
    padding: 10px 20px;
    min-height: auto;
  }



  header .data {
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 10px;
  }

  header .data p {
    font-size: 14px;
    font-weight: 400;
  }

  header .titulo h1 {
    font-family: var(--bold);
    font-size: 26px;
    line-height: 1;
    color: var(--cor-branco);
    width: 100%;
    max-width: 500px;
  }

  header .titulo .origenslogo {
    width: 50px;
    margin-bottom: 10px;
  }

  header .titulo .title-form {
    border-bottom: none;
    color: white;
    font-weight: 100;
    font-size: 14px;
  }

  header .titulo .logo {
    width: 120px;
    height: 30px;
    margin-bottom: 10px;
  }

  header .titulo .logos {
    display: flex;
    width: 100%;
    justify-content: space-between;
    padding: 10px;
    align-items: flex-end;
  }

  header .imagem img.blushUm {
    position: absolute;
    z-index: 2;
    width: 175px;
    top: 25px;
    left: 25px;
    opacity: 0.5;
  }

  header .imagem img.blushDois {
    position: absolute;
    z-index: 2;
    width: 175px;
    bottom: 0;
    right: 25px;
    opacity: 0.2;
  }

  header .imagem img.blushTres {
    position: absolute;
    z-index: 2;
    width: 175px;
    top: 125px;
    left: 0px;
    opacity: 0.7;
  }

  header .imagem img.blushQuatro {
    position: absolute;
    z-index: 2;
    width: 175px;
    top: 75px;
    right: 25px;
    opacity: 0.9;
  }
}
.content {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
  position: relative;
  overflow: hidden;
}

#ultimosEventos{
  padding: 50px 10%;
  margin-top: -220px;
  background-color: rgb(3, 3, 3);
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

#ultimosEventos h1{
  color: white;
  font-size: 2.5rem;
  font-weight: 800;
  font-family: var(--bold);
}

#ultimosEventos p{
  color: white;
  font-family: "Poppins";
}
.containerPalestrantes{
  padding: 20px 0px;
  width: 100%;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
}
.palestrante{
  width: 25%;
  padding: 10px 20px;
  text-align: center;
}

.palestrante img    {
  border-radius: 50%;
  width: 200px;
}
.palestrante p{
  font-weight: 300;
  margin-top: 10px;
}

.palestrante h2{
  color: white;
  font-size: 2rem;
  font-weight: 800;
  font-family: var(--bold);
}

.formulario{
  width: 100%;
}
.formulario input{
  width: 90%;
  height: 50px;
  background-color: transparent;
  border-radius: 10px;
  border: solid 2px #083789;
  padding: 10px;
  color: white;
  font-size: 18px;
  margin-bottom: 5px;
}

.formulario label{
  color: rgb(161, 161, 161);
  font-size: 14px;

}

.formulario #hbspt-form-42827d21-c5c7-4339-939e-44c93271ff4f{
  color: rgb(255, 255, 255);
  font-size: 2.5rem;

}

.formulario select{
  width: 90%;
  height: 50px;
  background-color: transparent;
  border-radius: 10px;
  border: solid 2px #083789;
  padding: 10px;
  color: white;
  font-size: 18px;
  margin-bottom: 5px;
}

.formulario select:active{
  background-color: black !important;
}

.formulario option:not(:checked) {
  background-color:black !important;
}


.formulario input[type=submit]{
  width: 90%;
  font-family: var(--bold);
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.5;
  height: auto;
  color: var(--cor-branco);
  background-color: transparent;
  border: 2px solid #032776;
  padding: 10px;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}

.formulario input[type=submit]:hover{
  border: 2px solid #2b2d30;
  color: #909192;
}


.formulario button:hover{
  color: rgb(202, 202, 202);
  border: 2px solid #021338;
}

.formulario p {
  font-family: var(--regular);
  font-size: clamp(1rem, 3vw, 1.2rem);
  line-height: 1.5;
  color: var(--cor-branco);
  border-bottom: 2px solid #032776;
  width: 90%;
  margin: 15px 0 20px 0;
}
.hbspt-form{
  color: white;
  font-size: 20px;
}

@media screen and (max-width: 700px) {
  #ultimosEventos{
    margin-top: -150px;
  }
  .containerPalestrantes{
    flex-direction: column;
  }
  .palestrante{
    
    width: 100%;
    margin-top: 20px;
  }
  header .formulario input{
    width: 100%;
  }
  header .formulario button{
    width: 100%;
  }
  header .imagem {
    width: 500px;
    max-width: 500px;
    min-width: 500px;
    height: 500px;
    max-height: 500px;
    min-height: 500px;
  }


  header .imagem img.personagemUm {
    position: absolute;
    z-index: 6;
    width: 300px;
    bottom: 0;
    right: 0;
  }

  header .imagem img.rafaelUm {
    position: absolute;
    z-index: 7;
    width: 490px;
    top: 30px;
    bottom: 50px;
    left:60px;
  }

  .formulario select{
    width: 100%;
  }

  .formulario input[type=submit]{
    width: 100%;
  }

}