/*-----------------------------------*\
  #PROPRIEDADES CUSTOMIZADAS
\*-----------------------------------*/

:root {
  --bg-gradient-onyx: linear-gradient(to bottom right, hsl(240, 1%, 25%) 3%, hsl(0, 0%, 19%) 97%);
  --bg-gradient-jet: linear-gradient(to bottom right, hsla(240, 1%, 18%, 0.251) 0%, hsla(240, 2%, 11%, 0) 100%), hsl(240, 2%, 13%);
  --bg-gradient-yellow-1: linear-gradient(to bottom right, hsl(45, 100%, 71%) 0%, hsla(36, 100%, 69%, 0) 50%);
  --bg-gradient-yellow-2: linear-gradient(135deg, hsla(45, 100%, 71%, 0.251) 0%, hsla(35, 100%, 68%, 0) 59.86%), hsl(240, 2%, 13%);
  --border-gradient-onyx: linear-gradient(to bottom right, hsl(0, 0%, 25%) 0%, hsla(0, 0%, 25%, 0) 50%);
  --text-gradient-yellow: linear-gradient(to right, hsl(45, 100%, 72%), hsl(35, 100%, 68%));
  --jet: hsl(0, 0%, 22%);
  --onyx: hsl(240, 1%, 17%);
  --eerie-black-1: hsl(240, 2%, 13%);
  --eerie-black-2: hsl(240, 2%, 12%);
  --smoky-black: hsl(0, 0%, 7%);
  --white-1: hsl(0, 0%, 100%);
  --white-2: hsl(0, 0%, 98%);
  --orange-yellow-crayola: hsl(45, 100%, 72%);
  --vegas-gold: hsl(45, 54%, 58%);
  --light-gray: hsl(0, 0%, 84%);
  --light-gray-70: hsla(0, 0%, 84%, 0.7);
  --bittersweet-shimmer: hsl(0, 43%, 51%);
  --ff-poppins: 'Poppins', sans-serif;
  --fs-1: 24px;
  --fs-2: 18px;
  --fs-3: 17px;
  --fs-4: 16px;
  --fs-5: 15px;
  --fs-6: 14px;
  --fs-7: 13px;
  --fs-8: 11px;
  --fw-300: 300;
  --fw-400: 400;
  --fw-500: 500;
  --fw-600: 600;
  --shadow-1: -4px 8px 24px hsla(0, 0%, 0%, 0.25);
  --shadow-2: 0 16px 30px hsla(0, 0%, 0%, 0.25);
  --shadow-3: 0 16px 40px hsla(0, 0%, 0%, 0.25);
  --shadow-4: 0 25px 50px hsla(0, 0%, 0%, 0.15);
  --shadow-5: 0 24px 80px hsla(0, 0%, 0%, 0.25);
  --transition-1: 0.25s ease;
  --transition-2: 0.5s ease-in-out;
}

/*-----------------------------------*\
  #TEMA CLARO
\*-----------------------------------*/

body.light-theme {
  --bg-gradient-onyx: linear-gradient(to bottom right, hsl(0, 0%, 95%) 3%, hsl(0, 0%, 98%) 97%);
  --bg-gradient-jet: linear-gradient(to bottom right, hsla(240, 1%, 18%, 0.251) 0%, hsla(240, 2%, 11%, 0) 100%), hsl(240, 2%, 13%);
  --bg-gradient-yellow-1: linear-gradient(to bottom right, hsl(45, 100%, 71%) 0%, hsla(36, 100%, 69%, 0) 50%);
  --bg-gradient-yellow-2: linear-gradient(135deg, hsla(45, 100%, 71%, 0.251) 0%, hsla(35, 100%, 68%, 0) 59.86%), hsl(240, 2%, 13%);
  --border-gradient-onyx: linear-gradient(to bottom right, hsl(0, 0%, 25%) 0%, hsla(0, 0%, 25%, 0) 50%);
  --jet: hsl(0, 0%, 22%);
  --onyx: hsl(240, 1%, 17%);
  --eerie-black-1: hsl(240, 2%, 13%);
  --eerie-black-2: hsl(240, 2%, 12%);
  --smoky-black: hsl(0, 0%, 100%);
  --white-1: hsl(0, 0%, 100%);
  --white-2: hsl(0, 0%, 98%);
  --light-gray: hsl(0, 0%, 84%);
  --light-gray-70: hsla(0, 0%, 84%, 0.7);
  --shadow-1: -4px 8px 24px hsla(0, 0%, 0%, 0.25);
  --shadow-2: 0 16px 30px hsla(0, 0%, 0%, 0.25);
  --shadow-3: 0 16px 40px hsla(0, 0%, 0%, 0.25);
  --shadow-4: 0 25px 50px hsla(0, 0%, 0%, 0.15);
  --shadow-5: 0 24px 80px hsla(0, 0%, 0%, 0.25);
}

/*-----------------------------------*\
  #RESET
\*-----------------------------------*/

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

a {
  text-decoration: none;
}

* {
  transition: background-color 0.8s ease, color 0.8s ease, border-color 0.8s ease;
}

li {
  list-style: none;
}

img,
ion-icon,
a,
button,
time,
span {
  display: block;
}

button {
  font: inherit;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
}

input,
textarea {
  display: block;
  width: 100%;
  background: none;
  font: inherit;
}

::selection {
  background: var(--orange-yellow-crayola);
  color: var(--smoky-black);
}

:focus {
  outline-color: var(--orange-yellow-crayola);
}

html {
  font-family: var(--ff-poppins);
}

body {
  background: var(--smoky-black);
}

/*-----------------------------------*\
  #ESTILOS REUTILIZADOS
\*-----------------------------------*/

.barra-lateral,
article {
  background: var(--eerie-black-2);
  border: 1px solid var(--jet);
  border-radius: 20px;
  padding: 15px;
  box-shadow: var(--shadow-1);
  z-index: 1;
}

.separador {
  width: 100%;
  height: 1px;
  background: var(--jet);
  margin: 16px 0;
}

.caixa-icone {
  position: relative;
  background: var(--border-gradient-onyx);
  width: 30px;
  height: 30px;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  color: var(--orange-yellow-crayola);
  box-shadow: var(--shadow-1);
  z-index: 1;
}

.caixa-icone::before {
  content: '';
  position: absolute;
  inset: 1px;
  background: var(--eerie-black-1);
  border-radius: inherit;
  z-index: -1;
}

.caixa-icone ion-icon {
  --ionicon-stroke-width: 35px;
}

article {
  display: none;
  opacity: 0;
  transform: translateY(30px) scale(0.95);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

article.active {
  display: block;
  opacity: 1;
  transform: translateY(0) scale(1);
  animation: slideInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes slideInUp {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }

  50% {
    opacity: 0.7;
    transform: translateY(15px) scale(0.98);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Animação para elementos dentro das seções */
article.active .titulo-artigo {
  animation: slideInLeft 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
}

article.active .texto-sobre,
article.active .lista-servicos,
article.active .lista-depoimentos,
article.active .lista-tecnologias,
article.active .linha-do-tempo,
article.active .lista-habilidades-nova,
article.active .lista-projetos,
article.active .container-contato {
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.4s both;
}

@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-30px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Animação para itens individuais em listas */
article.active .item-servico {
  animation: fadeInScale 0.6s cubic-bezier(0.4, 0, 0.2, 1) both;
}

article.active .item-servico:nth-child(1) {
  animation-delay: 0.6s;
}

article.active .item-servico:nth-child(2) {
  animation-delay: 0.7s;
}

article.active .item-servico:nth-child(3) {
  animation-delay: 0.8s;
}

article.active .item-depoimento {
  animation: slideInRight 0.6s cubic-bezier(0.4, 0, 0.2, 1) both;
}

article.active .item-depoimento:nth-child(1) {
  animation-delay: 0.6s;
}

article.active .item-depoimento:nth-child(2) {
  animation-delay: 0.7s;
}

article.active .item-depoimento:nth-child(3) {
  animation-delay: 0.8s;
}

article.active .item-tecnologia {
  animation: bounceIn 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55) both;
}

article.active .item-tecnologia:nth-child(1) {
  animation-delay: 0.6s;
}

article.active .item-tecnologia:nth-child(2) {
  animation-delay: 0.7s;
}

article.active .item-tecnologia:nth-child(3) {
  animation-delay: 0.8s;
}

article.active .item-tecnologia:nth-child(4) {
  animation-delay: 0.9s;
}

article.active .item-tecnologia:nth-child(5) {
  animation-delay: 1.0s;
}

article.active .item-tecnologia:nth-child(6) {
  animation-delay: 1.1s;
}

article.active .item-linha-do-tempo {
  animation: slideInLeft 0.6s cubic-bezier(0.4, 0, 0.2, 1) both;
}

article.active .item-linha-do-tempo:nth-child(1) {
  animation-delay: 0.6s;
}

article.active .item-linha-do-tempo:nth-child(2) {
  animation-delay: 0.7s;
}

article.active .item-linha-do-tempo:nth-child(3) {
  animation-delay: 0.8s;
}

article.active .item-linha-do-tempo:nth-child(4) {
  animation-delay: 0.9s;
}

article.active .item-habilidade-categoria {
  animation: fadeInScale 0.6s cubic-bezier(0.4, 0, 0.2, 1) both;
}

article.active .item-habilidade-categoria:nth-child(1) {
  animation-delay: 0.6s;
}

article.active .item-habilidade-categoria:nth-child(2) {
  animation-delay: 0.7s;
}

article.active .item-habilidade-categoria:nth-child(3) {
  animation-delay: 0.8s;
}

article.active .item-projeto {
  animation: zoomIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) both;
}

article.active .item-projeto:nth-child(1) {
  animation-delay: 0.6s;
}

article.active .item-projeto:nth-child(2) {
  animation-delay: 0.7s;
}

article.active .item-projeto:nth-child(3) {
  animation-delay: 0.8s;
}

article.active .item-projeto:nth-child(4) {
  animation-delay: 0.9s;
}

article.active .item-projeto:nth-child(5) {
  animation-delay: 1.0s;
}

article.active .item-projeto:nth-child(6) {
  animation-delay: 1.1s;
}

@keyframes fadeInScale {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(30px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }

  50% {
    opacity: 1;
    transform: scale(1.05);
  }

  70% {
    transform: scale(0.9);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.h2,
.h3,
.h4,
.h5 {
  color: var(--white-2);
  text-transform: capitalize;
}

.h2 {
  font-size: var(--fs-1);
}

.h3 {
  font-size: var(--fs-2);
}

.h4 {
  font-size: var(--fs-4);
}

.h5 {
  font-size: var(--fs-7);
  font-weight: var(--fw-500);
}

.titulo-artigo {
  position: relative;
  padding-bottom: 7px;
}

.titulo-artigo::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 3px;
  background: var(--text-gradient-yellow);
  border-radius: 3px;
}

.has-scrollbar::-webkit-scrollbar {
  display: none;
}

.has-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.cartao-conteudo {
  position: relative;
  background: var(--border-gradient-onyx);
  padding: 15px;
  padding-top: 45px;
  border-radius: 14px;
  box-shadow: var(--shadow-2);
  cursor: pointer;
  z-index: 1;
}

.cartao-conteudo::before {
  content: '';
  position: absolute;
  inset: 1px;
  background: var(--bg-gradient-jet);
  border-radius: inherit;
  z-index: -1;
}

/*-----------------------------------*\
  #MAIN
\*-----------------------------------*/

main {
  margin: 15px 12px;
  margin-bottom: 75px;
  min-width: 259px;
}

/*-----------------------------------*\
  #BARRA LATERAL
\*-----------------------------------*/

.barra-lateral {
  margin-bottom: 15px;
  max-height: 112px;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateY(0);
}

.barra-lateral.active {
  max-height: 405px;
  animation: expandBar 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes expandBar {
  0% {
    transform: translateY(-10px);
    opacity: 0.9;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.barra-lateral-info {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
}

.caixa-avatar {
  background: var(--bg-gradient-onyx);
  border-radius: 20px;
  overflow: hidden;
}

.caixa-avatar img {
  width: 80px;
}

.conteudo-info .nome {
  color: var(--white-2);
  font-size: var(--fs-3);
  font-weight: var(--fw-500);
  letter-spacing: -0.25px;
  margin-bottom: 10px;
}

.conteudo-info .titulo {
  color: var(--white-1);
  background: var(--onyx);
  font-size: var(--fs-8);
  font-weight: var(--fw-300);
  width: max-content;
  padding: 3px 12px;
  border-radius: 8px;
}

.btn-mais-info {
  position: absolute;
  top: -15px;
  right: -15px;
  border-radius: 0 15px;
  font-size: 13px;
  color: var(--orange-yellow-crayola);
  background: var(--border-gradient-onyx);
  padding: 10px;
  box-shadow: var(--shadow-2);
  transition: var(--transition-1);
  z-index: 1;
}

.btn-mais-info::before {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: var(--bg-gradient-jet);
  transition: var(--transition-1);
  z-index: -1;
}

.btn-mais-info:hover,
.btn-mais-info:focus {
  background: var(--bg-gradient-yellow-1);
}

.btn-mais-info:hover::before,
.btn-mais-info:focus::before {
  background: var(--bg-gradient-yellow-2);
}

.btn-mais-info span {
  display: none;
}

.barra-lateral-info-mais {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.barra-lateral.active .barra-lateral-info-mais {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  animation: slideInDown 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both;
}

@keyframes slideInDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.lista-contatos {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.item-contato {
  min-width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
}

.info-contato {
  max-width: calc(100% - 46px);
  width: calc(100% - 46px);
}

.titulo-contato {
  color: var(--light-gray-70);
  font-size: var(--fs-8);
  text-transform: uppercase;
  margin-bottom: 2px;
}

.info-contato :is(.link-contato, time, address) {
  color: var(--white-2);
  font-size: var(--fs-7);
}

.info-contato address {
  font-style: normal;
}

.lista-social {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
  padding-bottom: 4px;
  padding-left: 7px;
}

.item-social .link-social {
  color: var(--light-gray-70);
  font-size: 18px;
}

.item-social .link-social:hover {
  color: var(--light-gray);
}

/*-----------------------------------*\
  #NAVEGAÇÃO
\*-----------------------------------*/

.navegacao {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: hsla(240, 1%, 17%, 0.75);
  backdrop-filter: blur(10px);
  border: 1px solid var(--jet);
  border-radius: 12px 12px 0 0;
  box-shadow: var(--shadow-2);
  z-index: 5;
}

.lista-navegacao {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 0 10px;
}

.link-navegacao {
  color: var(--light-gray);
  font-size: var(--fs-8);
  padding: 20px 7px;
  transition: color var(--transition-1);
}

.link-navegacao:hover,
.link-navegacao:focus {
  color: var(--light-gray-70);
}

.link-navegacao.active {
  color: var(--orange-yellow-crayola);
  animation: pulseActive 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

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

  50% {
    transform: scale(1.1);
  }

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

/*-----------------------------------*\
  #SOBRE
\*-----------------------------------*/

.sobre .titulo-artigo {
  margin-bottom: 15px;
}

.texto-sobre {
  color: var(--light-gray);
  font-size: var(--fs-6);
  font-weight: var(--fw-300);
  line-height: 1.6;
}

.texto-sobre p:not(:last-child) {
  margin-bottom: 15px;
}

.servicos {
  margin-top: 30px;
  margin-bottom: 10px;
}

.titulo-servico {
  margin-bottom: 20px;
}

.lista-servicos {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.item-servico {
  position: relative;
  background: var(--border-gradient-onyx);
  padding: 20px;
  border-radius: 14px;
  box-shadow: var(--shadow-2);
  z-index: 1;
}

.item-servico::before {
  content: '';
  position: absolute;
  inset: 1px;
  background: var(--bg-gradient-jet);
  border-radius: inherit;
  z-index: -1;
}

.caixa-icone-servico {
  margin-bottom: 10px;
}

.caixa-icone-servico img {
  margin: auto;
}

.caixa-conteudo-servico {
  text-align: center;
}

.titulo-item-servico {
  margin-bottom: 7px;
}

.texto-item-servico {
  color: var(--light-gray);
  font-size: var(--fs-6);
  font-weight: var(--fw-300);
  line-height: 1.6;
}

/*-----------------------------------*\
  #DEPOIMENTOS
\*-----------------------------------*/

.depoimentos {
  margin-top: 30px;
  margin-bottom: 30px;
}

.titulo-depoimentos {
  margin-bottom: 20px;
}

.container-navegacao-depoimentos {
  position: relative;
}

.lista-depoimentos {
  display: flex;
  gap: 15px;
  margin: 0 -15px;
  padding: 25px;
  padding-bottom: 35px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: inline mandatory;
  scroll-padding-inline: 25px;
}

.item-depoimento {
  min-width: 90%;
  scroll-snap-align: start;
}

.caixa-avatar-depoimento {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(15px, -25px);
  background: var(--bg-gradient-onyx);
  border-radius: 14px;
  box-shadow: var(--shadow-1);
  overflow: hidden;
}

.titulo-item-depoimento {
  margin-bottom: 7px;
}

.texto-depoimento {
  color: var(--light-gray);
  font-size: var(--fs-6);
  font-weight: var(--fw-300);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.titulo-item-depoimento,
.titulo-modal {
  display: flex;
  align-items: center;
  gap: 10px;
}

.link-social-depoimento ion-icon {
  color: var(--light-gray-70);
  font-size: 18px;
  transition: var(--transition-1);
}

.link-social-depoimento:hover ion-icon {
  color: var(--orange-yellow-crayola);
}

.btn-nav-depoimento {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  background: var(--onyx);
  color: var(--white-2);
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: none;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  z-index: 2;
  transition: var(--transition-1);
}

.btn-nav-depoimento:hover {
  background: var(--orange-yellow-crayola);
  color: var(--eerie-black-2);
}

#btn-dep-anterior {
  left: -23px;
}

#btn-dep-proximo {
  right: -8px;
}

/*-----------------------------------*\
  #MODAL DEPOIMENTOS
\*-----------------------------------*/

.container-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow-y: auto;
  overscroll-behavior: contain;
  z-index: 20;
  pointer-events: none;
  visibility: hidden;
  padding: 20px 15px;
}

.container-modal.active {
  pointer-events: all;
  visibility: visible;
}

.sobreposicao {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: hsl(0, 0%, 5%);
  opacity: 0;
  visibility: hidden;
  z-index: 21;
  transition: var(--transition-1);
}

.sobreposicao.active {
  opacity: 0.8;
  visibility: visible;
}

.modal-depoimento {
  background: var(--eerie-black-2);
  position: relative;
  padding: 25px;
  border: 1px solid var(--jet);
  border-radius: 14px;
  box-shadow: var(--shadow-5);
  transition: var(--transition-1);
  width: 100%;
  max-width: 450px;
  z-index: 22;
  transform: scale(1.2);
  opacity: 0;
}

.container-modal.active .modal-depoimento {
  transform: scale(1);
  opacity: 1;
}

.btn-fechar-modal {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--onyx);
  border-radius: 8px;
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--white-2);
  font-size: 18px;
  opacity: 0.7;
  z-index: 23;
}

.wrapper-img-modal {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 25px;
}

.caixa-avatar-modal {
  background: var(--bg-gradient-onyx);
  border-radius: 14px;
  box-shadow: var(--shadow-1);
  overflow: hidden;
  width: 80px;
  height: 80px;
  margin-bottom: 10px;
}

.wrapper-img-modal>img {
  display: none;
}

.caixa-avatar-modal img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.conteudo-modal {
  text-align: center;
}

.conteudo-modal .titulo-modal {
  width: max-content;
  margin-inline: auto;
  margin-bottom: 15px;
}

.conteudo-modal [data-texto-modal] p {
  color: var(--white-2) !important;
  text-align: center;
}

/*-----------------------------------*\
  #TECNOLOGIAS
\*-----------------------------------*/

.tecnologias {
  margin-bottom: 30px;
}

.titulo-tecnologias {
  margin-bottom: 20px;
}

.container-navegacao-tecnologias {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

.scroller-container {
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
  width: 100%;
  flex-grow: 1;
  min-width: 0;
  scroll-behavior: smooth;
}

.scroller-container::-webkit-scrollbar {
  display: none;
}

.lista-tecnologias {
  display: flex;
  width: max-content;
  gap: 70px;
  padding-block: 1rem;
}

.item-tecnologia {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
}

.item-tecnologia img {
  max-height: 60px;
  width: auto;
  height: auto;
  opacity: 0.7;
  transition: var(--transition-1);
}

.item-tecnologia img:hover {
  opacity: 1;
  transform: scale(1.1);
}

.btn-nav-tec {
  background: var(--onyx);
  color: var(--white-2);
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: none;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  transition: var(--transition-1);
  flex-shrink: 0;
}

.btn-nav-tec:hover {
  background: var(--orange-yellow-crayola);
  color: var(--eerie-black-2);
}


/*-----------------------------------*\
  #RESUMO
\*-----------------------------------*/

.resumo .titulo-artigo {
  margin-bottom: 30px;
}

.linha-do-tempo {
  margin-bottom: 30px;
}

.linha-do-tempo .wrapper-titulo {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.lista-linha-do-tempo {
  font-size: var(--fs-6);
  margin-left: 45px;
}

.item-linha-do-tempo:not(:last-child) {
  margin-bottom: 20px;
}

.titulo-item-linha-do-tempo {
  font-size: var(--fs-6);
  line-height: 1.3;
  margin-bottom: 7px;
}

.lista-linha-do-tempo span {
  color: var(--vegas-gold);
  font-weight: var(--fw-400);
  line-height: 1.6;
}

.lista-linha-do-tempo {
  position: relative;
}

.lista-linha-do-tempo::before {
  content: '';
  position: absolute;
  top: 0;
  left: -30px;
  width: 1px;
  height: 100%;
  background: var(--jet);
}

.item-linha-do-tempo {
  position: relative;
}

.item-linha-do-tempo::after {
  content: '';
  position: absolute;
  top: 5px;
  left: -33px;
  height: 6px;
  width: 6px;
  background: var(--text-gradient-yellow);
  border-radius: 50%;
  box-shadow: 0 0 0 4px var(--jet);
}

.texto-linha-do-tempo {
  color: var(--light-gray);
  font-weight: var(--fw-300);
  line-height: 1.6;
}

.habilidades {
  margin-top: 20px;
}

.lista-habilidades-nova {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px 30px;
  padding: 25px;
}

.item-habilidade-categoria {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}

.titulo-categoria {
  color: var(--orange-yellow-crayola);
  font-weight: var(--fw-500);
  font-size: var(--fs-4);
  margin-bottom: 20px;
  padding-bottom: 17px;
  border-bottom: 1px solid var(--jet);
  text-align: center;
  width: 80%;
}

.lista-itens-habilidade {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.lista-itens-habilidade li:hover {
  color: var(--white-2);
  transform: translateY(-2px);
  box-shadow: var(--shadow-2);
}

.lista-itens-habilidade {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.lista-itens-habilidade li {
  background: var(--eerie-black-1);
  color: var(--light-gray);
  padding: 6px 15px;
  border-radius: 20px;
  font-size: var(--fs-7);
  font-weight: var(--fw-400);
  border: 1px solid var(--jet);
  transition: var(--transition-1);
}

.lista-itens-habilidade li:hover {
  color: var(--white-2);
  transform: translateY(-2px);
  box-shadow: var(--shadow-2);
}

.item-habilidade:not(:last-child) {
  margin-bottom: 15px;
}

/*-----------------------------------*\
  #PORTFÓLIO
\*-----------------------------------*/

.lista-filtro {
  display: none;
}

.caixa-selecao-filtro {
  position: relative;
  margin-bottom: 25px;
}

.selecao-filtro {
  background: var(--eerie-black-2);
  color: var(--light-gray);
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--jet);
  border-radius: 14px;
  font-size: var(--fs-6);
  font-weight: var(--fw-300);
}

.selecao-filtro.active .icone-selecao {
  transform: rotate(0.5turn);
}

.lista-selecao {
  background: var(--eerie-black-2);
  position: absolute;
  top: calc(100% + 6px);
  width: 100%;
  padding: 6px;
  border: 1px solid var(--jet);
  border-radius: 14px;
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.15s ease-in-out;
}

.selecao-filtro.active+.lista-selecao {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.item-selecao button {
  background: var(--eerie-black-2);
  color: var(--light-gray);
  font-size: var(--fs-6);
  font-weight: var(--fw-300);
  text-transform: capitalize;
  width: 100%;
  padding: 8px 10px;
  border-radius: 8px;
}

.item-selecao button:hover {
  --eerie-black-2: hsl(240, 2%, 20%);
}

.lista-projetos {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-bottom: 10px;
}

.item-projeto {
  display: none;
}

.item-projeto.active {
  display: block;
  animation: scaleUp 0.25s ease forwards;
}

@keyframes scaleUp {
  0% {
    transform: scale(0.5);
  }

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

.item-projeto>a {
  width: 100%;
}

.img-projeto {
  position: relative;
  width: 100%;
  height: 200px;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 15px;
}

.img-projeto::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: 1;
  transition: var(--transition-1);
}

.item-projeto.em-construcao .img-projeto::before,
.item-projeto.em-construcao .caixa-icone-item-projeto {
  display: none;
}

.item-projeto>a:hover .img-projeto::before {
  background: hsla(0, 0%, 0%, 0.5);
}

.caixa-icone-item-projeto {
  --scale: 0.8;
  background: var(--jet);
  color: var(--orange-yellow-crayola);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(var(--scale));
  font-size: 20px;
  padding: 18px;
  border-radius: 12px;
  opacity: 0;
  z-index: 1;
  transition: var(--transition-1);
}

.item-projeto>a:hover .caixa-icone-item-projeto {
  --scale: 1;
  opacity: 1;
}

.caixa-icone-item-projeto ion-icon {
  --ionicon-stroke-width: 50px;
}

.img-projeto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-1);
}

.item-projeto>a:hover img {
  transform: scale(1.1);
}

.titulo-projeto,
.categoria-projeto {
  margin-left: 10px;
}

.titulo-projeto {
  color: var(--white-2);
  font-size: var(--fs-5);
  font-weight: var(--fw-400);
  text-transform: capitalize;
  line-height: 1.3;
}

.categoria-projeto {
  color: var(--light-gray-70);
  font-size: var(--fs-6);
  font-weight: var(--fw-300);
}

/*-----------------------------------*\
  #CONTATO
\*-----------------------------------*/

.caixa-mapa {
  position: relative;
  height: 250px;
  width: 100%;
  border-radius: 16px;
  margin-bottom: 30px;
  border: 1px solid var(--jet);
  overflow: hidden;
}

.caixa-mapa figure {
  height: 100%;
}

.caixa-mapa iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: saturate(25%) brightness(90%) contrast(120%);
}

.container-contato {
  display: flex;
}

.coluna-form-contato {
  width: 100%;
}

.titulo-form {
  margin-bottom: 20px;
}

.wrapper-input {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  margin-bottom: 25px;
}

.input-form {
  color: var(--white-2);
  font-size: var(--fs-6);
  font-weight: var(--fw-400);
  padding: 13px 20px;
  border: 1px solid var(--jet);
  border-radius: 14px;
  outline: none;
}

.input-form::placeholder {
  font-weight: var(--fw-500);
}

.input-form:focus {
  border-color: var(--orange-yellow-crayola);
}

textarea.input-form {
  min-height: 100px;
  height: 120px;
  max-height: 200px;
  resize: vertical;
  margin-bottom: 25px;
}

textarea.input-form::-webkit-resizer {
  display: none;
}

.input-form:focus:invalid {
  border-color: var(--bittersweet-shimmer);
}

.btn-form {
  position: relative;
  width: 100%;
  background: var(--border-gradient-onyx);
  color: var(--orange-yellow-crayola);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 13px 20px;
  border-radius: 14px;
  font-size: var(--fs-6);
  text-transform: capitalize;
  box-shadow: var(--shadow-3);
  z-index: 1;
  transition: var(--transition-1);
}

.btn-form::before {
  content: '';
  position: absolute;
  inset: 1px;
  background: var(--bg-gradient-jet);
  border-radius: inherit;
  z-index: -1;
  transition: var(--transition-1);
}

.btn-form ion-icon {
  font-size: 16px;
}

.btn-form:hover {
  background: var(--bg-gradient-yellow-1);
}

.btn-form:hover::before {
  background: var(--bg-gradient-yellow-2);
}

.btn-form:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.btn-form:disabled:hover {
  background: var(--border-gradient-onyx);
}

.btn-form:disabled:hover::before {
  background: var(--bg-gradient-jet);
}


/*-----------------------------------*\
  #MEDIA QUERIES
\*-----------------------------------*/

@media (min-width: 580px) {
  :root {
    --fs-1: 32px;
    --fs-2: 24px;
    --fs-3: 26px;
    --fs-4: 18px;
    --fs-6: 15px;
    --fs-7: 15px;
    --fs-8: 12px;
  }

  .barra-lateral,
  article {
    width: 520px;
    margin-inline: auto;
    padding: 30px;
  }

  .titulo-artigo {
    font-weight: var(--fw-600);
    padding-bottom: 15px;
  }

  .titulo-artigo::after {
    width: 40px;
    height: 5px;
  }

  .caixa-icone {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    font-size: 18px;
  }

  main {
    margin-top: 60px;
    margin-bottom: 100px;
  }

  .barra-lateral {
    max-height: 180px;
    margin-bottom: 30px;
  }

  .barra-lateral.active {
    max-height: 584px;
  }

  .barra-lateral-info {
    gap: 25px;
  }

  .caixa-avatar {
    border-radius: 30px;
  }

  .caixa-avatar img {
    width: 120px;
  }

  .conteudo-info .nome {
    margin-bottom: 15px;
  }

  .conteudo-info .titulo {
    padding: 5px 18px;
  }

  .btn-mais-info {
    top: -30px;
    right: -30px;
    padding: 10px 15px;
  }

  .btn-mais-info span {
    display: block;
    font-size: var(--fs-8);
  }

  .btn-mais-info ion-icon {
    display: none;
  }

  .separador {
    margin: 32px 0;
  }

  .lista-contatos {
    gap: 20px;
  }

  .info-contato {
    max-width: calc(100% - 64px);
    width: calc(100% - 64px);
  }

  .navegacao {
    border-radius: 20px 20px 0 0;
  }

  .lista-navegacao {
    gap: 20px;
  }

  .link-navegacao {
    --fs-8: 14px;
  }

  .sobre .titulo-artigo {
    margin-bottom: 20px;
  }

  .texto-sobre {
    margin-bottom: 40px;
  }

  .item-servico {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 18px;
    padding: 30px;
  }

  .caixa-icone-servico {
    margin-bottom: 0;
    margin-top: 5px;
  }

  .caixa-conteudo-servico {
    text-align: left;
  }

  .titulo-depoimentos {
    margin-bottom: 25px;
  }

  .lista-depoimentos {
    gap: 30px;
    margin: 0 -30px;
    padding: 30px;
    padding-bottom: 35px;
  }

  .cartao-conteudo {
    padding: 30px;
    padding-top: 25px;
  }

  .caixa-avatar-depoimento {
    transform: translate(30px, -30px);
    border-radius: 20px;
  }

  .caixa-avatar-depoimento img {
    width: 80px;
  }

  .titulo-item-depoimento {
    margin-bottom: 10px;
    margin-left: 95px;
  }

  .texto-depoimento {
    -webkit-line-clamp: 2;
  }
}

@media (min-width: 768px) {

  .barra-lateral,
  article {
    width: 700px;
  }

  .has-scrollbar::-webkit-scrollbar-button {
    width: 100px;
  }

  .lista-habilidades-nova {
    grid-template-columns: 1fr 1fr;
  }

  .modal-depoimento {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    max-width: 680px;
  }

  .wrapper-img-modal {
    margin-bottom: 0;
  }

  .wrapper-img-modal>img {
    display: block;
  }

  .conteudo-modal {
    text-align: left;
  }

  .conteudo-modal .titulo-modal {
    margin-inline: 0;
  }

  .lista-contatos {
    grid-template-columns: 1fr 1fr;
    gap: 30px 15px;
  }

  .link-navegacao {
    --fs-8: 15px;
  }

  .portfolio .titulo-artigo {
    padding-bottom: 20px;
  }

  .caixa-selecao-filtro {
    display: none;
  }

  .lista-filtro {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 25px;
    padding-left: 5px;
    margin-bottom: 30px;
  }

  .item-filtro button {
    color: var(--light-gray);
    font-size: var(--fs-5);
    transition: var(--transition-1);
  }

  .item-filtro button:hover {
    color: var(--light-gray-70);
  }

  .item-filtro button.active {
    color: var(--orange-yellow-crayola);
  }

  .lista-projetos {
    grid-template-columns: 1fr 1fr;
  }

  .wrapper-input {
    grid-template-columns: 1fr 1fr;
  }

  .btn-form {
    width: max-content;
    margin-left: auto;
  }
}

@media (min-width: 1024px) {
  :root {
    --shadow-1: -4px 8px 24px hsla(0, 0%, 0%, 0.125);
    --shadow-2: 0 16px 30px hsla(0, 0%, 0%, 0.125);
    --shadow-3: 0 16px 40px hsla(0, 0%, 0%, 0.125);
  }

  .barra-lateral,
  article {
    width: 950px;
    box-shadow: var(--shadow-5);
  }

  main {
    margin-bottom: 60px;
  }

  .conteudo-principal {
    position: relative;
    width: max-content;
    margin: auto;
  }

  .navegacao {
    position: absolute;
    bottom: auto;
    top: 0;
    left: auto;
    right: 0;
    width: max-content;
    border-radius: 0 20px;
    padding: 0 20px;
    box-shadow: none;
  }

  .lista-navegacao {
    gap: 30px;
    padding: 0 20px;
  }

  .link-navegacao {
    font-weight: var(--fw-500);
  }

  .lista-servicos {
    grid-template-columns: 1fr 1fr;
    gap: 20px 25px;
  }

  .item-depoimento {
    min-width: 46%;
  }

  .btn-nav-depoimento {
    display: flex;
  }

  .btn-nav-tec {
    display: flex;
  }

  .lista-projetos {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1250px) {
  body::-webkit-scrollbar {
    width: 20px;
  }

  body::-webkit-scrollbar-track {
    background: var(--smoky-black);
  }

  body::-webkit-scrollbar-thumb {
    border: 5px solid var(--smoky-black);
    background: hsla(0, 0%, 100%, 0.1);
    border-radius: 20px;
    box-shadow: inset 1px 1px 0 hsla(0, 0%, 100%, 0.11), inset -1px -1px 0 hsla(0, 0%, 100%, 0.11);
  }

  body::-webkit-scrollbar-thumb:hover {
    background: hsla(0, 0%, 100%, 0.15);
  }

  body::-webkit-scrollbar-button {
    height: 60px;
  }

  .barra-lateral,
  article {
    width: auto;
  }

  article {
    min-height: 100%;
  }

  main {
    max-width: 1200px;
    margin-inline: auto;
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 25px;
  }

  .conteudo-principal {
    min-width: 75%;
    width: 75%;
    margin: 0;
  }

  .barra-lateral {
    position: sticky;
    top: 60px;
    max-height: max-content;
    height: 100%;
    margin-bottom: 0;
    padding-top: 60px;
    z-index: 1;
  }

  .barra-lateral-info {
    flex-direction: column;
  }

  .caixa-avatar img {
    width: 150px;
  }

  .conteudo-info .nome {
    white-space: nowrap;
    text-align: center;
  }

  .conteudo-info .titulo {
    margin: auto;
  }

  .btn-mais-info {
    display: none;
  }

  .barra-lateral-info-mais {
    opacity: 1;
    visibility: visible;
  }

  .lista-contatos {
    grid-template-columns: 1fr;
  }

  .info-contato :is(.link-contato) {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .info-contato :is(.link-contato, time, address) {
    --fs-7: 14px;
    font-weight: var(--fw-300);
  }

  .separador:last-of-type {
    margin: 15px 0;
    opacity: 0;
  }

  .lista-social {
    justify-content: center;
  }

  .texto-linha-do-tempo {
    max-width: 700px;
  }
}

.item-linha-do-tempo::before {
  display: none !important;
}

.lista-itens-habilidade li {
  cursor: pointer;
}

.container-modal-habilidade {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 30;
  padding: 20px;
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  transition: var(--transition-1);
}

.container-modal-habilidade.active {
  pointer-events: all;
  visibility: visible;
  opacity: 1;
}

.sobreposicao-habilidade {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: hsla(0, 0%, 5%, 0.8);
}

.modal-habilidade {
  background: var(--eerie-black-2);
  position: relative;
  padding: 30px;
  border: 1px solid var(--jet);
  border-radius: 14px;
  box-shadow: var(--shadow-5);
  width: 100%;
  max-width: 500px;
  z-index: 31;
}

.titulo-modal-habilidade {
  color: var(--orange-yellow-crayola);
  margin-bottom: 15px;
  border-bottom: 1px solid var(--jet);
  padding-bottom: 15px;
}

.descricao-modal-habilidade {
  color: var(--light-gray);
  font-size: var(--fs-6);
  line-height: 1.6;
}

/*-----------------------------------*\
  #ÍCONE DO CAFÉ - ALTERNADOR DE TEMA
\*-----------------------------------*/

.btn-alternador-tema {
  cursor: pointer;
  background-color: transparent;
  border: none;
  padding: 8px;
  border-radius: 50%;
  transition: background-color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.btn-alternador-tema:hover {
  background-color: var(--jet);
}

.btn-alternador-tema svg {
  width: 24px;
  height: 24px;
  stroke: var(--light-gray);
  transition: stroke 0.3s ease;
}

.icone-cafe-cheio {
  display: block;
}

.icone-cafe-quente {
  display: none;
}

.icone-cafe-quente .fumaca {
  stroke: var(--white-1);
  stroke-dasharray: 10;
  stroke-dashoffset: 10;
  animation: animacao-fumaca 2s infinite linear;
}

.icone-cafe-quente .fumaca2 {
  animation-delay: 0.5s;
}

.icone-cafe-quente .fumaca3 {
  animation-delay: 1s;
}

/* Tema claro */
body.light-theme .icone-cafe-cheio {
  display: none;
}

body.light-theme .icone-cafe-quente {
  display: block;
  stroke: var(--light-gray);
}

body.light-theme .icone-cafe-quente .fumaca {
  stroke: var(--orange-yellow-crayola);
  animation: animacao-fumaca 2s infinite linear;
}

body.light-theme .icone-cafe-quente .fumaca2 {
  animation-delay: 0.5s;
}

body.light-theme .icone-cafe-quente .fumaca3 {
  animation-delay: 1s;
}

body.light-theme .btn-alternador-tema svg {
  stroke: var(--light-gray);
}

body.light-theme .btn-alternador-tema:hover {
  background-color: var(--jet);
}

@keyframes animacao-fumaca {
  0% {
    stroke-dashoffset: 10;
    opacity: 0;
  }

  20% {
    stroke-dashoffset: 5;
    opacity: 1;
  }

  80% {
    stroke-dashoffset: 0;
    opacity: 1;
  }

  100% {
    stroke-dashoffset: 0;
    opacity: 0;
  }
}

@media (max-width: 580px) {
  .btn-alternador-tema {
    margin: 0 auto;
    padding: 6px;
  }

  .btn-alternador-tema svg {
    width: 20px;
    height: 20px;
  }

  .VoltarAoTopo {
    bottom: 80px;
    right: 15px;
    width: 40px;
    height: 40px;
  }

  .lista-navegacao {
    justify-content: space-around;
  }

  .link-navegacao {
    padding: 20px 5px;
  }

}

/*-----------------------------------*\
  #Voltar ao topo
\*-----------------------------------*/

.VoltarAoTopo {
  position: fixed;
  bottom: 100px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: var(--orange-yellow-crayola);
  border: none;
  border-radius: 50%;
  color: var(--smoky-black);
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 1000;
  box-shadow: 0 4px 15px rgba(255, 165, 0, 0.3);
}

.VoltarAoTopo.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.VoltarAoTopo:hover {
  background: var(--light-gray);
  color: var(--smoky-black);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 165, 0, 0.4);
}

.VoltarAoTopo {
  display: flex;
  justify-content: center;
  align-items: center;
}

.VoltarAoTopo ion-icon {
  width: 60%;
  height: 60%;
  font-size: 16px;
}

/* Tema claro */
body.light-theme .VoltarAoTopo {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

body.light-theme .VoltarAoTopo:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Responsivo */
@media (max-width: 768px) {
  .VoltarAoTopo {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .VoltarAoTopo {
    display: none !important;
  }
}