@import url('https://fonts.googleapis.com/css2?family=Mulish&display=swap');


:root {
  --accent: white;
  --accent-hover: rgb(190, 228, 0);
  --accent-active: #72d534;
  --control: #49aa00;
  --secondary: #ECEFEB;
  --secondary-hover: #E0E4DE;
  --secondary-active: #6c6c6b;
  --headline-color: rgba(100, 105, 150, 1);
  --event-text: rgba(29, 32, 59, 1);
  --success: rgba(80, 189, 85, 1);
  --error: rgba(232, 113, 113, 1);
  --white: rgba(255, 255, 255, 1);
  --background: #501E31;
  --table-background: #FFFFFF;
  --primary: #101824;
  --gray: #A0A7B1;
  --odd-row: #f6f9ff;
  --gray-background: #EDEEF1;
  --gray-mid: #F1F2F6;
  --color1: #d15544;
  --color2: #e49e94;
  --color3: #632138;
  --color4: #ac645c;
  --color5: #7a291e;
  --color6: #577c80;
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  position: relative;
  height: 100%;
}

body {

  font-family: 'Mulish', sans-serif;
  font-size: 1rem;
  color: #000;
  margin: 0;
  padding: 0;
  height: 100%;
  display: grid;
  text-rendering: optimizeLegibility;
  font-weight: initial;

}

a {
  color: inherit;
  text-decoration: none;
  font-size: 0.8rem;
}

p {
  font-size: 1rem;
  line-height: 1.2rem;
}


/*-----------------------------------------------*/


.svg-container {
  justify-content: center;
  left: 50%;
  transform: translate(-50%, -50%);
  flex-wrap: wrap;
  display: flex;
  position: absolute;
  top: 12%;
  left: 50%;
  

}



.svg-container h1 {
  max-width: 60ch;
  text-align: center;
  transform: scale(0.94);
  animation: scale 3s forwards cubic-bezier(0.5, 1, 0.89, 1);
  color: var(--secondary);
font-size: 16px;
letter-spacing: 0.3rem;

}





@keyframes scale {
  100% {
    transform: scale(1);
  }
}

span {
  display: inline-block;
  opacity: 0;
  filter: blur(4px);
}

span:nth-child(1) {
  animation: fade-in 0.8s 0.1s forwards cubic-bezier(0.11, 0, 0.5, 0);
  font-size: 1.5em;
}

span:nth-child(2) {
  animation: fade-in 0.8s 0.2s forwards cubic-bezier(0.11, 0, 0.5, 0);
  font-size: 1.5em;
}

span:nth-child(3) {
  animation: fade-in 0.8s 0.3s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

span:nth-child(4) {
  animation: fade-in 0.8s 0.4s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

span:nth-child(5) {
  animation: fade-in 0.8s 0.5s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

span:nth-child(6) {
  animation: fade-in 0.8s 0.6s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

span:nth-child(7) {
  animation: fade-in 0.8s 0.7s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

span:nth-child(8) {
  animation: fade-in 0.8s 0.8s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

span:nth-child(9) {
  animation: fade-in 0.8s 0.9s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

span:nth-child(10) {
  animation: fade-in 0.8s 1s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

span:nth-child(11) {
  animation: fade-in 0.8s 1.1s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

span:nth-child(12) {
  animation: fade-in 0.8s 1.2s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

span:nth-child(13) {
  animation: fade-in 0.8s 1.3s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

span:nth-child(14) {
  animation: fade-in 0.8s 1.4s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

span:nth-child(15) {
  animation: fade-in 0.8s 1.5s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

span:nth-child(16) {
  animation: fade-in 0.8s 1.6s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

span:nth-child(17) {
  animation: fade-in 0.8s 1.7s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

span:nth-child(18) {
  animation: fade-in 0.8s 1.8s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

@keyframes fade-in {
  100% {
    opacity: 1;
    filter: blur(0);
  }
}







/*-----------------------------------------------*/
.container {
  margin: auto;
  width: 100%;

}

.profile-wrapper {

  height: 40vh;
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);

}

.profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.6);
  cursor: pointer;
  transition: 0.5s;
  width: 40vw;
  /* Define a largura como 30% da viewport */
  height: 50vh;
  /* Define a altura como 40% da viewport */
}

@media (max-width: 768px) {

  /* Reduz a largura e altura para telas menores */
  .profile-image {
    width: 50vw;
    height: auto;
    /* Ajuste automático baseado na proporção da imagem */

  }

}

@media (max-width: 480px) {
  /* Reduz ainda mais a largura para telas bem pequenas */


  .profile-image {
    width: auto;
    /* Remove a largura definida anteriormente */
    height: 150vh;
    /* Define a altura como 150% da viewport */
    max-width: 100%;
    /* Limita a largura para evitar overflow */
    margin: 0 auto;
    /* Centraliza a imagem na tela */

  }

}

.profile .profile-image {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: 2;
  background-color: var(--background);
  transition: .5s;

}

.profile-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;

}

.profile:hover img {
  opacity: 0.4;
  transition: .5s;
}

.profile:hover .profile-image {
  transform: translateY(-104px);
  transition: all .9s;
}

.profile:hover .profile-bio {
  opacity: 0.9;
  font-size: 1.5vh;
}

.social-icons{
  position: absolute;
  display: flex;
  gap: 10px;
  z-index: 3;
  bottom: 140px;
  left: 50%;
  transform: translateX(-50%);
  
}


.profile ul{
  padding: 0;
}


.social-icons li {
  list-style: none;
}

.social-icons li a {
  position: relative;
  display: block;
  display: grid;
  place-items: center;
  background: #fff;
  font-size: 23px;
  font-weight: bold;
  width: 35px;
  height: 35px;
  border: 1px solid #CDCDCD;
  border-radius: 8px;
  transition: .2s;
  transform: translateY(32px);
  opacity: 0;
}

.social-icons li a:hover {
  background: var(--background);
  transition: .2s;
}

.social-icons li a svg {
  color: var(--background);
  transition: .2s;
}

.social-icons li a:hover svg {
  color: white;
  transition: 0.8s;
  transform: rotateY(360deg);
}

.profile:hover .social-icons li a {
  opacity: 1;
}

.profile:hover li:nth-child(1) a {
  transition-delay: 0.1s;
}

.profile:hover li:nth-child(2) a {
  transition-delay: 0.2s;
}

.profile:hover li:nth-child(3) a {
  transition-delay: 0.3s;
}



.profile-name {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 4;
  width: 100%;
  height: 106px;
  padding: 12px 14px;
  z-index: 1;
  color: #333;
  background-color: #fff;
  text-align: left;
  
}

.profile:hover .profile-name {
  background-color: #fff;
  
}

.profile-name h2 {
  margin-bottom: 8px;
  font-size: clamp(20px, 1.2vw, 24px);
}


/*-----------------------------------------------*/
.swiper {
  width: 100%;
  height: auto;

}



.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: var(--background);
  position: relative;
}

/*.swiper-slide h2 {
      position: absolute;
      color: white;
      z-index: 10;
      left: 50%;
      top: calc(50% - 36px);
      font-size: 42px;
      transform: translate(-50%, -50%);
  }*/

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;



}

#fundo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;


}


#projetos-fundo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;


}


.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  display: inline-block;
  border-radius: 100%;
  background: #eee;
  opacity: 0.2;

}

.swiper-pagination-bullet-active {
  opacity: 1;
}

/*-----------------------------------------------*/










/*-----------------------------------------------*/

.arrows {
  width: 80px;
  height: 90px;
  position: absolute;
  left: 50%;
  margin-left: -30px;
  bottom: 90px;
}

.arrows path {
  stroke: #eee;
  fill: transparent;
  stroke-width: 1px;
  animation: arrow 2s infinite;
  -webkit-animation: arrow 2s infinite;
}

@keyframes arrow {
  0% {
    opacity: 0
  }

  40% {
    opacity: 1
  }

  80% {
    opacity: 0
  }

  100% {
    opacity: 0
  }
}

@-webkit-keyframes arrow

/*Safari and Chrome*/
  {
  0% {
    opacity: 0
  }

  40% {
    opacity: 1
  }

  80% {
    opacity: 0
  }

  100% {
    opacity: 0
  }
}

.arrows path.a1 {
  animation-delay: -1s;
  -webkit-animation-delay: -1s;
  /* Safari 和 Chrome */
}

.arrows path.a2 {
  animation-delay: -0.5s;
  -webkit-animation-delay: -0.5s;
  /* Safari 和 Chrome */
}

.arrows path.a3 {
  animation-delay: 0s;
  -webkit-animation-delay: 0s;
  /* Safari 和 Chrome */
}


/*-----------------------------------------------*/




.btn {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  /* Adicione valores de sombra */
  background-color: var(--background);
  outline: 2px solid white;
  /* Adicione cor e largura da borda */
  color: white;
  text-shadow: none;
  /* Remova a sombra do texto */
  cursor: pointer;
  font-size: 1rem;
  line-height: 1.5rem;
  max-width: 50vw;
  width: 80%;
  letter-spacing: 0.3rem;
  font-weight: 400;
  position: relative;
  top: 5%;
  /* Alinha o topo do elemento ao centro verticalmente */
  left: 50%;
  /* Alinha a esquerda do elemento ao centro horizontalmente */
  transform: translate(-50%, -50%);
  /* Move o elemento de volta para cima e para a esquerda em metade de sua própria largura e altura */
  text-decoration: none;
  display: flex;
  justify-content: center;
  transition: all 550ms cubic-bezier(.36, .63, .5, .73);
  margin-bottom: 10px;
  margin-top: 10%;
}


.btn:hover {
  box-shadow: 0 0 0 2px var(--accent);
  outline-color: rgba(255, 255, 255, 0);
  outline-offset: 15px;
  color: var(--accent);
}


.content {

  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  background-color: var(--background);
  margin-bottom: 15px;
  text-align: justify;
  width: 80%;
  margin: 0 auto;
  margin-bottom: 15px;
  font-weight: 500;



}

@media(max-width: 480px) {
  .btn {
    width: 100vw;
    margin-top: 10%;
    font-size: clamp(10px, 12px, 14px);
  }

  .content {
    padding: 0;
    width: 100vw;
    font-size: clamp(10px, 12px, 14px);
  }
}


/*-----------------------------------------------*/

.card-formacao {
  height: 400px;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 1vw;
  padding: 10%;
min-width: 200px;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 20px;
  background-color: rgba(255, 255, 255, 0.45);
  box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.25);

  backdrop-filter: blur(15px);

}

.card-formacao p{
  font-weight: 700;
  line-height: 1.5rem;
}

@media (width <= 717px) {
  .card-formacao{
    height: 420px;
  }

  .card-container img{
    width: 4rem;
  }

}

.card-formacao h2{
  --s: 0.1em;   /* the thickness of the line */
  --c: #EDEEF1; /* the color */
  
  color: #0000;
  padding-bottom: var(--s);
  background: 
    linear-gradient(90deg,var(--c) 50%,#000 0) calc(100% - var(--_p,0%))/200% 100%,
    linear-gradient(var(--c) 0 0) 0% 100%/var(--_p,0%) var(--s) no-repeat;
  -webkit-background-clip: text,padding-box;
          background-clip: text,padding-box;
  transition: 0.5s;
  cursor: pointer;
}

.card-formacao h2:hover {--_p: 100%}


.card-formacao img{
  max-width: 6rem; /* Largura da imagem */
  height: auto; /* Altura da imagem */
  display: block;
  border-radius: 50%; /* Transforma a imagem em um círculo */
  object-fit: cover; /* Redimensiona a imagem para preencher o espaço disponível sem distorção */
  object-position: center; /* Centraliza a imagem */
  border: 2px solid #fff; /* Borda branca com 2px de largura */
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3); /* Sombra leve */
}




.tag{
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  text-transform: uppercase;
}

.tag span{
  padding: 4px;
  background-color: var(--gray-mid);
  border-radius: 6px;
  font-weight: 500;
  margin: 2px;
  font-size:0.6em;
}
.tag :nth-child(2n){
  background-color: #f4efff;
    color: #9A84DA;
}
.tag :nth-child(3n){
  color: #DF8FA8;
    background-color: #fbdde7;
}

.tag :nth-child(4n) {
  background-color: #eaf2ff;
  color: #739FDC;
}
.tag :nth-child(5n) {
  background-color: #fff6e5;
  color: #F4BD50;
}



/*-----------------------------------------------*/

.scrollbar-card {
  overflow: auto;
  height: 83vh;

}

::-webkit-scrollbar {
  width: 10px;
}

/* Estilo da pista da barra de rolagem (fundo) */
.scrollbar-card::-webkit-scrollbar-track {
  background-color: #f1f1f1;
}

/* Estilo do polegar (a parte da barra de rolagem que você arrasta) */
.scrollbar-card::-webkit-scrollbar-thumb {
  background-color: #888;
  border-radius: 5px;
}

/* Estilo do canto inferior direito da barra de rolagem, quando há um canto de arrasto */
.scrollbar-card::-webkit-scrollbar-corner {
  background-color: #f1f1f1;
}

/* Estilo ao passar o mouse sobre a barra de rolagem */
.scrollbar-card::-webkit-scrollbar-thumb:hover {
  background-color: #555;
}

/* Estilo ao clicar na barra de rolagem */
.scrollbar-card::-webkit-scrollbar-thumb:active {
  background-color: #333;
}

/* Estilo para o track quando há conteúdo abaixo da visão */
.scrollbar-card::-webkit-scrollbar-track-piece:end {
  background-color: #ddd;
}

/*-----------------------------------------------*/



#projetos:nth-child(2n) {
  background-color: #577C80;
}

.projetos-wrapper {

  height: 40vh;
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -50%);

}



.top-bar {
  display: flex;
  gap: 16px;
  align-items: center;
  width: 100%;
  flex-direction: row;
  color: var(--headline-color);
}

.top-bar h2 {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.5rem;
}

.top-bar svg {
  color: var(--headline-color);
}

.action-buttons {
  position: relative;
  display: inline-flex;
  flex: 0 0 auto;
  gap: 8px;
  scroll-snap-align: start;
  width: 100%;
  flex-wrap: wrap;
}

.action-button {
  color: #163300;
  border-radius: 16px;
  height: 32px;
  gap: 4px;
  cursor: pointer;
  display: flex;
  padding: 0 12px;
  font-weight: 600;
  transition: all 0.2s ease-in-out;
  white-space: nowrap;
  align-items: center;
  text-decoration: none;
  background: var(--background);
}

.action-button--primary:active {
  background: var(--accent-active);
}

.action-button:active {
  background: var(--secondary-active);
}


.action-button--horizontal-scroll {
  border-radius: 50%;
  cursor: pointer;
  border: none;
  outline: none;
  width: 32px;
  height: 32px;
  background: var(--accent);
}

.action-button--horizontal-scroll:hover {
  background: var(--accent-hover);
}

.action-button--horizontal-scroll:active {
  background: var(--accent-active);
}

.action-button--horizontal-scroll:disabled {
  cursor: not-allowed;
  background: var(--secondary);
}

.action-button--horizontal-scroll:disabled:hover {
  background: var(--secondary);
}

.action-button--horizontal-scroll:disabled:active {
  background: var(--secondary);
}

#action-button--previous {
  margin-left: auto;
  transform: rotate(-90deg);
}

#action-button--next {
  transform: rotate(90deg);
}

.action-button:hover {
  background: var(--secondary-hover);
}

.action-button--primary {
  background: var(--accent);
}

.action-button--primary:hover {
  background: var(--accent-hover);
}

.action-button--primary:active {
  background: var(--accent-active);
}

.wrappeer svg {
  height: 5vh;
}


.box-projetos {
  margin: 6% 10% 10% 10%;
  z-index: 0;

}


#events {
  display: flex;
  gap: 1.5rem;
  width: 100%;
  flex-direction: row;
  overflow: auto;
  margin-top: 2%;
  height: 70vh;
  overflow-x: hidden;
  border-right: 5px solid rgba(0, 0, 0, 0.25);

}

.event {
  appearance: none;
  text-decoration: none;
  position: relative;
  transition: all 0.2s ease-in-out;
  min-width: 250px;
  max-width: 300px;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  scroll-snap-align: start;
  overflow: hidden;
  color: rgba(29, 32, 59, 1);
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 20px;
  background-color: rgba(255, 255, 255, 0.45);
  box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.25);

}

@media (orientation:landscape) and (width <= 980px) {
  #events {
    height: 80vh;

  }




}

@media (min-width: 412px) and (max-width: 1024px) {
  #events {
    height: 70vh;

  }
}

@media (max-width: 380px) {
  #events {
    max-height: 75vh;
  }


}

@media (min-width: 1025px) {
  #events {
    height: 70%;
  }
}



.event__image {
  position: relative;
  height: 25vh;
}

.event__indicator {
  position: absolute;
  padding: 0.5rem;
  min-width: 3.5rem;
  min-height: 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: rgba(255, 255, 255, 1);
  align-items: center;
  border-radius: 0.5rem;
  z-index: 0;
  overflow: hidden;

}

.event__indicator::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -15px;
  right: -15px;
  background: rgb(190, 228, 0);
  height: 220px;
  width: 25px;
  border-radius: 32px;
  transform: scale(0.7);
  transform-origin: 50% 50%;
  transition: transform 0.15s ease-out;
}

.event__indicator:hover::before {
  transition-delay: 0.1s;

  transform: scale(40);
}

.event__indicator:hover {
  color: #ffffff;
}



.event__date {
  top: 0.5rem;
  left: 0.5rem;
  font-size: 1.35rem;
}

.event__date__month {
  font-size: 0.6rem;
  text-transform: uppercase;
  font-weight: bold;
  color: var(--event-headline);
}

.event__type {
  top: 0.5rem;
  right: 0.5rem;
}

.event__type svg {
  color: var(--event-text);
  height: 2rem;
  width: 2rem;
}

.event-description {
  color: var(--event-text);
  padding: 1rem;
  /*background-color: #CDCDCD;*/
  text-align: justify;
  height: fit-content;
  backdrop-filter: blur(15px);
  overflow-y: auto;
  cursor: default;
 
}

.event-description h2{
  font-size: 20px;
  text-decoration: none;
 
  cursor:pointer;
  --s: 0.1em;   /* the thickness of the line */
  --c: #EDEEF1; /* the color */
  
  color: #0000;
  padding-bottom: var(--s);
  background: 
    linear-gradient(90deg,var(--c) 50%,#000 0) calc(100% - var(--_p,0%))/200% 100%,
    linear-gradient(var(--c) 0 0) 0% 100%/var(--_p,0%) var(--s) no-repeat;
  -webkit-background-clip: text,padding-box;
          background-clip: text,padding-box;
  transition: 0.5s;
  cursor: pointer;
}

.event-description h2:hover{
  --_p: 100%
}


/* Estilos da barra de rolagem */
::-webkit-scrollbar {
  width: 5px;
  /* largura da barra de rolagem */
}

/* Estilos da barra de rolagem quando o mouse está sobre ela */
::-webkit-scrollbar:hover {
  background-color: #f1f1f1;
  /* cor de fundo ao passar o mouse */
}

/* Estilos da alça da barra de rolagem */
::-webkit-scrollbar-thumb {
  background-color: #888;
  /* cor da alça */
  border-radius: 5px;
  /* borda arredondada */
}

/* Estilos da alça da barra de rolagem quando o mouse está sobre ela */
::-webkit-scrollbar-thumb:hover {
  background-color: #555;
  /* cor da alça ao passar o mouse */
}

/* Estilos da trilha da barra de rolagem */
::-webkit-scrollbar-track {
  background-color: #f1f1f1;
  /* cor da trilha */
}

/* Estilos do canto inferior direito da barra de rolagem */
::-webkit-scrollbar-corner {
  background-color: transparent;
  /* cor do canto */
}




.event img {
  width: 100%;
  height: 250px;
  border-radius: 1rem 1rem 0 0;
  object-fit: cover;
  object-position: top;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}

.event h2 {
  font-size: 1.375rem;
  letter-spacing: normal;
  overflow-wrap: normal;
  white-space: nowrap;
  font-weight: 700;
  line-height: 1.25rem;
  
  overflow: hidden;
  text-overflow: ellipsis;
}

.bottom-stats {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  flex-direction: row;
  color: var(--headline-color);
}

.bottom-stat {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  flex-direction: row;
  color: var(--primary);
}

.card-container {

  width: 100%;
  position: absolute;
  top: 2%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 10vh
}




.circle {
  height: 0.5rem;
  width: 0.5rem;
  border-radius: 50%;
}

.circle--green {
  background: var(--success);
}

.circle--red {
  background: var(--error);
}





.svg-projetos {

  width: 100%;
  height: 85px;

}

svg text {

  animation: stroke 6s infinite alternate;
  stroke-width: 0.5;
  stroke: #FFFFFF;
  font-size: 58px;
}

@keyframes stroke {
  0% {
    fill: rgba(255, 255, 255, 0.3);
    stroke: rgba(255, 255, 255, 1);
    stroke-dashoffset: 25%;
    stroke-dasharray: 0 50%;
    stroke-width: 0.5;
  }

  70% {
    fill: rgba(99, 33, 56, 0);
    stroke: rgba(255, 255, 255, 1);
  }

  80% {
    fill: rgba(99, 33, 56, 0);
    stroke: rgba(255, 255, 255, 1);
    stroke-width: 2;
  }

  100% {
    fill: rgba(255, 255, 255, 0.3);
    stroke: rgba(255, 255, 255, 0);
    stroke-dashoffset: -25%;
    stroke-dasharray: 50% 0;
    stroke-width: 0;
  }
}




.title-projetos {
  writing-mode: vertical-rl;
  /* Define a escrita vertical, da direita para a esquerda */
  text-orientation: mixed;
  /* Mantém os caracteres verticais */
  white-space: nowrap;
  /* Impede a quebra de linha */
  font-size: 24px;
  /* Tamanho da fonte */
  color: white;


}



/*-----------------------------------------------*/




.patterns {
  height: 10vh;
  width: 100vw;
}



.title-svg text {

  letter-spacing: 10px;
  stroke: rgba(255, 255, 255, 0.432);
  font-size: 80px;
  font-weight: 500;
  stroke-width: 2;
  animation: textAnimate 5s infinite alternate;


}

@keyframes textAnimate {
  0% {
    stroke-dasharray: 0 50%;
    stroke-dashoffset: 20%;
    fill: var(--background)
  }

  100% {
    stroke-dasharray: 50% 0;
    stroke-dashoffstet: -20%;
    fill: hsla(189, 68%, 75%, 0%)
  }

}


/*-----------------------------------------------*/

/*wave*/

.editorial {
  display: block;
  width: 100%;
  height: 60px;
  max-height: 60px;
  margin: 0;
  z-index: 5;
  bottom: 0;
  position: absolute;
  left: 0px;
  float: left;
}

.parallax1>use {
  animation: move-forever1 10s linear infinite;

  &:nth-child(1) {
    animation-delay: -2s;
  }
}

.parallax2>use {
  animation: move-forever2 8s linear infinite;

  &:nth-child(1) {
    animation-delay: -2s;
  }
}

.parallax3>use {
  animation: move-forever3 6s linear infinite;

  &:nth-child(1) {
    animation-delay: -2s;
  }
}

.parallax4>use {
  animation: move-forever4 4s linear infinite;

  &:nth-child(1) {
    animation-delay: -2s;
  }
}

@keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }

  100% {
    transform: translate(-90px, 0%);
  }
}

@keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}

@keyframes move-forever3 {
  0% {
    transform: translate(85px, 0%);
  }

  100% {
    transform: translate(-90px, 0%);
  }
}

@keyframes move-forever4 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}


/*-----------------------------------------------*/

#contato {
  background-color: var(--color6);
}

.carousel-inner {
  margin-top: 2rem;

}

p {
  margin: 0;
}

p:not(:last-child) {
  margin-bottom: 1.5em;
}





.box-contato {
  margin: 6% 10% 10% 10%;
  z-index: 0;

}

.card-contato {
  height: 400px;
  min-height: 200px;

  margin-top: 3rem;
  padding: 35px;
  
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 20px;
  background-color: rgba(255, 255, 255, 0.45);
  box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.25);
cursor: default;
  backdrop-filter: blur(15px);
}

.card-contato li{
  font-size: large;
  
}
.card-contato ul{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  list-style-type: none;
  margin-bottom: 7rem;
  line-height: 5vh;
  padding: 0;
}
.card-contato span{
  font-size: large;
  font-weight: 500;
  cursor:copy;
  user-select: all;
  color: var(--secondary);
  }

.card-contato p{
  font-size: 0.5rem;
}

.card-contato a{
  font-size: medium;
  text-decoration: none;
 font-weight: 500;
  cursor: pointer;
  --s: 0.1em;   /* the thickness of the line */
  --c: #EDEEF1; /* the color */
  
  color: #0000;
  padding-bottom: var(--s);
  background: 
    linear-gradient(90deg,var(--c) 50%,#000 0) calc(100% - var(--_p,0%))/200% 100%,
    linear-gradient(var(--c) 0 0) 0% 100%/var(--_p,0%) var(--s) no-repeat;
  -webkit-background-clip: text,padding-box;
          background-clip: text,padding-box;
  transition: 0.5s;
  cursor: pointer;
}

.card-contato a:hover {--_p: 100%}


@media (orientation:landscape) and (width <=900px) {
  .card-contato {
    margin-top: 2%;
    max-height: 150px;

  }
}


