@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {

  --fundo: #000918;
  --fundo-c: #f9fafb;
  --destaques: #6f2bcd;
  --icones:#e9e6fc;
  --botao-principal: #2563eb;
  --hover: #3b82f6;
  --highlight: #fbc531;
}
html {
  scroll-behavior: smooth;
}

.montserrat {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  /*background: rgba(0, 0, 0, 0.35);*/
  z-index: -1;
}

body {
  color: var(--icones);
  font-family: "Montserrat", sans-serif;
}

/* HEADER E MENU */
header {
  height: 30vh;
  background-color: var(--fundo);
  color: --var(fundo-c);
  padding: 0 20px;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.menu {
  display: none;
}

.mobile {
  margin: 0 auto;
  display: flex;
  flex-flow: column wrap;
  justify-content: center;
  text-align: center;
}
.mobile i {
  font-size: 1.5em;
}
.mobile i:hover {
  color: var(--highlight);
  transition: 0.8s;
}

.menu-mobile {
  height: 120px;
  width: 200px;

  display: none;
  list-style: none;

  background-color: var(--icones);
  flex-flow: column wrap;
  justify-content: center;
  text-align: center;

  left: 50%;
  transform: translateX(-50%);

  margin-top: 150px;

  position: absolute; 
  border-radius: 10px;  
  padding: 5px;
  z-index: 999;
}

.menu-mobile.active {
  display: flex;
}
.menu-mobile > li {
  background-color: var(--hover);
  margin-bottom: 5px;
  width: 100%;
  padding: 3px;
  font-size: 0.8em;
  border-bottom: 2px solid var(--highlight);
}
.menu-mobile > li:hover{
  background-color: var(--destaques);
  transition: 0.8s;
}

.menu-mobile > li > a {
  color: var(--fundo-c);
}

.menu-mobile > li > a:hover {
  color: var(--highlight);
  text-decoration: none;
}

.logo {
  padding: 10px;
}
header img {
  width: 50px;
  height: auto;
  border-radius: 50px;
  padding: 5px;
}

header a {
  text-decoration: none;
  color: var(--fundo-c);
  font-size: 1.1em;
  line-height: 1.3;
  font-weight: bold;
  transition: color 0.3s ease, text-decoration-color 0.3s ease;
}

header a:hover {
  text-decoration: underline;
}

h1 {
  font-size: 1.3em;
  color: var(--fundo-c);
}

span {
  color: var(--icones);
  font-weight: bold;
  font-size: 0.8em;
}

#wpp{
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  background-image: linear-gradient(45deg, var(--hover), var(--destaques));
  color: var(--fundo-c);
  font-size: 1.8em;
  transition: color 0.3s ease;
  position: absolute;
  right: 20px;
  top: 20px;
  border-radius: 5px;
  border: 2px solid var(--destaques);
  padding: 5px;
}
#wpp span {
  display: none;
}
#wpp:hover {
  color: var(--fundo);
  span {
    display: inline;
    margin-left: 5px;
    font-size: 0.27em;
    color: var(--fundo);
    transition: color 0.3s ease, font-size 0.3s ease, display 0.3s ease;
  }
  transition: color 0.3s ease, span 0.3s ease;
}


/* HEADER E MENU */

#voltar {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background-color: var(--fundo-escuro);
  color: var(--highlight);
  border: none;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  font-size: 1.2em;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 1000;
}

#voltar.show {
  opacity: 1;
  pointer-events: auto;
}

#voltar:hover {
  transform: scale(1.1);
  background-color: var(--highlight);
  color: var(--fundo);
}

/* perfil */

.perfil {
  display: flex;
  height: 70vh;
  flex-flow: row wrap;
  justify-content: center;
  background-color: var(--fundo);
  width: 100%;
  margin: 0 auto;
  margin-bottom: 10px;
  padding: 10vh 10px 0 10px;
}

.hero{
  text-align: center;
  width: 100%;
  margin: 0 auto;
}
.hero p{
  color: var(--fundo-c);
  padding: 20px;
  text-align: justify;
  font-size: 0.9em;
}
.icones-perfil {
  width: 100%;
}
.icones-perfil ul {
  display: flex;
  flex-flow: row nowrap;
  list-style: none;
  color: var(--fundo-c);
  justify-content: center;
  font-size: 1.8em;
  gap: 15px;
  line-height: 1.3;
}
.icones-perfil a {
  text-decoration: none;
  color: var(--fundo-c);
  font-size: 1.1em;
  line-height: 1.3;
  font-weight: bold;
}
.icones-perfil a:hover {
  color: var(--highlight);
}
.dashboard {
    display: none;
  }


/* perfil */

h3 {
  margin: 20px 0;
  text-align: left;
  color: var(--fundo);
  text-shadow: none;
  margin-bottom: -5px;
}

/*atividades*/

.atividades {
  width: 90%;
  border-radius: 10px;
  height: auto;
  margin: 0 auto;
  padding: 20px;
  background: var(--fundo-c);
}
.item-atividade {
  display: flex;
  flex-flow: row nowrap;

  background-color: var(--icones);
  color: var(--fundo-c);
  border-radius: 5px;
  margin: 10px auto;
  padding: 10px;
  color: var(--fundo);
}
.item-atividade:hover {
  background-color: var(--hover);
  color: var(--fundo-c);
  transition: 0.8s;
}
.item-atividade i {
  font-size: 2em;
  margin-right: 15px;
  color: var(--destaques);
  align-self: center;
}
.item-atividade h4 {
  margin-bottom: 5px;
  font-size: 0.9em;
}
.item-atividade p {
  margin: 0;
  font-size: 0.8em;
}





/* projetos */

.botoes-projetos{
  text-align: center;
  margin: 20px 0;
}
.botoes-projetos button{
  background-color: var(--fundo-escuro);
  border-radius: 5px;
  padding: 0 5px;
  color: var(--botao-principal);
  font-size: 1.2em;
  font-weight: lighter;
}
.botoes-projetos button:hover{
  background-color: var(--highlight);
  transition: 0.8s;
}

#titulo-projetos {
  text-align: left;
  width: 90%;
  margin: 0 auto;
  color: var(--fundo);
}
.botoes-projetos{
  text-align: center;
  margin: 20px 0;
}
.botoes-projetos button{
  background-color: var(--fundo);
  font-size: 1em;
  border-radius: 5px;
  padding: 5px;
  font-weight: lighter;
}
.projetos {
  width: 95%;
  margin: 0 auto;
  padding: 10px;
}
.main-projeto {
  display:flex;
  flex-flow: row wrap;
  gap: 10px;
  width: auto;
  margin-bottom: 10px;
  justify-content: center;
}

.projeto{
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: space-between;

  width: 100%;
  border-radius: 10px;
  padding: 10px;
  border: 2px solid var(--icones);
  background-color: var(--fundo);
}
.projeto:hover {
  background-color: var(--highlight);
  transition: 0.8s;
}
.projeto a{
  text-decoration: none;
  color: var(--fundo-claro);
  font-size: 1.1em;
  line-height: 1.3;
  font-weight: bold;
}
.projeto img{
  width: 25%;
  max-width: 200px;
  height: 15vh;
  min-height: 100px;
  border-radius: 5px;
}
.projeto i{
  width: 15%;
  font-size: 1.5em;
  color: var(--icones);
}
.titulo-projeto {
  width: 50%;
  padding: 0 10px;
  text-align: left;
}
.titulo-projeto h3{
  color: var(--icones);
  font-size: 0.8em;
}
.titulo-projeto span{
  color: var(--hover);
  font-size: 0.8em;}

.descricao-projeto {
  display: none;
  width: 100%;
  margin-top: 15px;
  padding-top: 10px;
  border-top: 1px dashed var(--icones);
}

.projeto.aberto {
  flex-flow: column nowrap;
  align-items: flex-start; 
  background-color: var(--fundo); 
}
.projeto.aberto img {
  width: 100%;
  max-width: none;
  height: auto;
  margin-bottom: 10px;
}
.projeto.aberto .titulo-projeto {
  width: 100%;
  padding: 10px 0;
}
.projeto.aberto .descricao-projeto {
  display: block;
}
/* projetos */

/* FOOTER */

footer {
  text-align: center;
  padding: 10px;
  background-color: var(--fundo);
  color: var(--fundo-c);
}

.redes {
  margin: 10px 0;
}
footer p{
  font-size: 0.8em;
  width: 50%;
  margin: 5px auto;
}
footer p i{
  color: var(--hover);
}
footer img {
  width: 50px;
  height: auto;
  border-radius: 50px;
  transition: transform 0.3s;
  filter: invert(20%) sepia(100%) saturate(300%) hue-rotate(180deg);
}
footer img:hover {
  cursor: pointer;
  transform: scale(1.1);
}
/* formação */
footer h3 {
  color: var(--hover);
  text-align: center;
}
.formacao {
  width: 50%;
  margin: 0 auto;
  padding: 10px;
  border-radius: 10px;
  color: var(--fundo-c);
}
.main-formacao {
  position: relative;
  max-height: 320px;
  overflow-y: auto;
  padding-left: 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;

  scrollbar-width: thin;
  scrollbar-color: var(--destaques) transparent;  
}
/* linha vertical */
.main-formacao::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  height: 100%;
  background-color: var(--destaques);
  border-radius: 999px;
}
/* linha vertical */

.curso {
  position: relative;
  display: flex;
  flex-direction: row nowrap;
}
/* círculo */
.ponto {
  position: absolute;
  left: -25px;
  top: 30%;
  width: 20px;
  height: 20px;
  background-color: var(--hover);
  border-radius: 50%;
}
/* círculo */

.curso-info {
  border-radius: 5px;
  margin-bottom: 10px;
  text-align: center;
  font-size: 0.8em;
}

.portal-imoveis{

    width:90%;
    max-width:1200px;

    margin:40px auto;

}

.portal-container{

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

    padding:30px;

    border-radius:16px;

    background:var(--icones);
    

    border:1px solid rgba(111,43,205,.3);

}

.portal-info{

    flex:2;

}

.portal-tag{

    display:inline-block;

    color:var(--destaques);

    font-size:.8rem;

    letter-spacing:2px;

    margin-bottom:10px;

}

.portal-info h2{

    color:var(--fundo);

    font-size:2rem;

    margin-bottom:10px;

}

.portal-info p{

    color: var(--hover);

    line-height:1.7;

    max-width:600px;

}

.portal-beneficios{

    flex:1;

    display:flex;
    flex-direction:column;
    gap:10px;

}

.beneficio{

    display:flex;
    align-items:center;
    gap:10px;

    color:var(--fundo-c);
    text-shadow: 1px 2px 2px var(--fundo);

}

.beneficio i{

    color:var(--highlight);

    width:20px;

}

.portal-btn{

    display:flex;
    align-items:center;
    gap:10px;

    background:var(--botao-principal);

    color:white;

    text-decoration:none;

    padding:14px 22px;

    border-radius:10px;

    font-weight:600;

    white-space:nowrap;

    transition:.3s;

}

.portal-btn:hover{

    background:var(--hover);

    transform:translateY(-2px);

}

@media(max-width:900px){

    .portal-container{

        flex-direction:column;
        text-align:center;

    }

    .portal-info h2{

        font-size:1.6rem;

    }

    .portal-beneficios{

        width:100%;
        align-items:center;

    }

    .portal-btn{

        width:100%;
        justify-content:center;

    }

}

@media (min-width: 768px) {
  /* MENU */
  header {
    display: block;
    text-align: left;
    height: 20vh; 
  }
    
  header > nav {
      width: 100%;
      display: flex;
      flex-flow: row nowrap;
      gap: 10px;
      align-items: center;
      justify-content: space-between;
      padding: 10px;
    }
    .logo{
      margin-left: -8%;
    }
    .mobile {
      display: none;
    }
   .menu {
      width: 60%;
      display: flex;
      flex-flow: row nowrap;
      justify-content: flex-end;
      gap: 10px;
      list-style: none;
      padding: 10px;
    }
    .menu li{
      border: 2px solid var(--hover);
      border-radius: 10px;
      padding: 2px;
    }
    .menu li:hover{
      background-color: var(--destaques);
      transition: 0.8s;
    }
    #wpp span {
      display: block;
      font-size: 0.3em;
      margin-left: 5px;
      color: var(--fundo-c);
    }
    #wpp:hover { 
      color: var(--fundo);
      background-color: var(--hover);
      
      span { 
        color: var(--fundo);
        transition: color 0.3s ease, font-size 0.3s ease;
      } 

    }
  /* MENU */

  /* PERFIL */

.perfil {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 80vh;
    margin: 0 auto;
    padding: 20px 20px 0 20px;
  }

  .hero {
    flex: 0 0 35%;
    width: 30%;
    text-align: center;
    margin: 0;
    padding: 20px;
  }

  .hero h2 {
    text-align: left;
  }

  .hero p {
    padding: 20px 20px 20px 0;
  }

  .icones-perfil ul {
    justify-content: center;
  }

  .dashboard {
    display: block;
    position: absolute;
    flex: 0 0 65%;
    width: 65vw;
    height: 60vh;
    bottom: 0;
    right: 0;
  }
  /* PERFIL */

  /*atividades*/

  .atividades {
    margin: 20px auto;
    width: 90%;
    display: grid;  
    grid-template-columns: repeat(4, auto);
    grid-template-rows: 50px 1fr;
    align-items: stretch;
    justify-content: center;
    gap: 20px;
    background: none;
  }
  .atividades h3{
    grid-column: 1 / -1;
    text-align: left;
  }
  .item-atividade {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 20px;
    background-color: var(--fundo-c);
  }

  /* .atividades*/

  /* projetos */

   
    .main-projeto {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      width: 100%;
    }
    .projeto {
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
    }

    .projeto img {
      width: 100%;
      max-width: none;
      height: 200px; 
      object-fit: cover; 
    }

    .projeto .titulo-projeto {
      width: 100%;
      padding: 10px 0 5px 0;
      text-align: center;
    }

    .titulo-projeto h3 {
      font-size: 1em;
      text-align: center;
    }

    .descricao-projeto {
      display: block; 
    }
    .descricao-projeto p {
      font-size: 0.8em;
      padding: 10px;
    }
    .projeto i {
      display: none;
    }
    .projeto:hover {
      background-color: var(--hover); 
      cursor: default;
    }

  /* projetos */



  /* FOOTER */
  footer {
    padding-top: 20px;
  }
  .contatos {
    width: 80%;
    margin: 0 auto;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: center;
  }

  .icones-footer p{
    font-size: 0.8em;
    width: 100%;
    margin: 5px auto;
  }
  .contatos-main {
    flex: 1;
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    gap: 5px;
  }

  .logos{
    flex: 1;
  }
  .redes{
    margin: 10px;
  }
  /* formação */

  .formacao {
    flex: 1;
    max-width: 500px;
  }
  .formacao h3 {
    margin-bottom: 10px;
  }

  .main-formacao {
    height: auto;
    width: 100%;
    flex-direction: row;
    gap: 0;
    }

  .curso {
    display: flex;
    flex-flow: row wrap;
    width: 100%;
    padding: 0;
  }
  .curso-info {
    padding-top: 30px;
  }
  
  /* círculo */
  .ponto {
      left: 45%;
      top: 0;
     }

  /* linha horizontal */
  .main-formacao::before {
    top: 10px;
    left: 0;
    width: 100%;
    height: 2px;
  }
  .curso-info p {
    width: 100%;
    margin: 0 auto;
  }
  /* linha horizontal */

  /* formação */

  /* FOOTER */
}
