@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");

:root {
  --text-color: #999999;
  --theme-color: #ff7b00ff;
  --theme-color-rgb: 255, 123, 0;
  --theme-hover-color: #f4a54aff;
  --power-black: #18191a;
  --night-black: #212223;
  --metal-black: #2d2e2f;
  --grey-black: #434445;
  --grey-black-200: #333333;
  --white: #ffffff;
  --white-weak: #e9e9e9;

  --font-title: "Poppins", sans-serif;
  --font-text: "Poppins", sans-serif;
  --font-number-project: "Plus Jakarta Sans", sans-serif;

  --duration: .7s;
}

[data-theme="light"] {
  --text-color: #666666;
  --theme-color: #cc5f00ff;
  --theme-color-rgb: 204, 95, 0;
  --theme-hover-color: #a35700ff;
  --power-black: #f5f5f5;
  --night-black: #ffffff;
  --metal-black: #e0e0e0;
  --grey-black: #cccccc;
  --grey-black-200: #dddddd;
  --white: #333333;
  --white-weak: #444444;
}

* {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  margin: 0px;
  padding: 0px;
}

body {
  min-height: 100vh;
  background-color: var(--power-black);
}

body,
html {
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 100%;
}

main {
  width: 59.1875rem;
  margin: 0 auto;
  padding-left: 275px;
  padding-top: 60px;
  padding-bottom: 60px;
}

.highlight {
  color: var(--white); /* Define a cor branca */
  font-weight: normal; /* Remove o peso da fonte */
}

/* Barras do plano de fundo */

.bars-background {
  position: fixed;
  width: 100%;
  height: 100%;
  border: none;
  z-index: -5;
}

.bars-background::before {
  content: "";
  position: absolute;
  width: calc(100% - 1px);
  height: calc(100% - 1px);
  border: 0.1px dashed var(--metal-black);
}

.bars-background-01 {
  left: 28%;
}

.bars-background-02 {
  left: 48%;
}

.bars-background-03 {
  left: 68%;
}

.bars-background-04 {
  left: 88%;
}

.cube-container-01,
.cube-container-02,
.cube-container-03,
.cube-container-04 {
  position: fixed;
  top: 0;
  transform: translateX(-50%);
  z-index: -5;
}

.cube-container-01 {
  left: 28.05%;
}

.cube-container-02 {
  left: 48.07%;
}

.cube-container-03 {
  left: 68.05%;
}

.cube-container-04 {
  left: 88.05%;
}

/* Cubos do plano de fundo */

.cube-01,
.cube-02,
.cube-03,
.cube-04 {
  width: 8px;
  height: 8px;
  background-color: var(--theme-color);
}

.cube-01 {
  animation: moveDown 35s linear infinite;
}

.cube-02 {
  animation: moveUp 30s linear infinite;
}

.cube-03 {
  animation: moveDown 25s linear infinite;
}

.cube-04 {
  animation: moveUp 40s linear infinite;
}

/* Barra de scrollar direita */

::-webkit-scrollbar {
  width: 5px;
  background-color: transparent;
}

::-webkit-scrollbar-thumb {
  width: 10px;
  border-radius: 20px;
  background-color: var(--grey-black);
}

::-webkit-scrollbar-thumb:hover {
  background-color: var(--grey-black-200);
}

/* altera a cor do texto selecionado */

::selection {
  background-color: #c58536ff;
  color: white;
}

::-moz-selection {
  background-color: #c58236ff;
  color: white;
}

#introduction,
#about,
#project {
  scroll-margin-top: 110px;
}

#summary {
  scroll-margin-top: 80px;
}

/* circulo do cursor */
.circle-1 {
  --circle-size: 30px;
  position: fixed;
  height: var(--circle-size);
  width: var(--circle-size);
  border: 1px solid var(--white);
  border-radius: 100%;
  top: calc(var(--circle-size) / 2 * -1);
  left: calc(var(--circle-size) / 2 * -1);
  pointer-events: none;
  z-index: 4;
}

.circle-2 {
  --circle-size-mini: 2px;
  position: fixed;
  height: var(--circle-size-mini);
  width: var(--circle-size-mini);
  border: 0.1px solid var(--white);
  border-radius: 100%;
  top: calc(var(--circle-size-mini) / 2 * -1);
  left: calc(var(--circle-size-mini) / 2 * -1);
  pointer-events: none;
  z-index: 6;
}

/* Barra de navegação lateral direita */

.menu {
  position: fixed;
  top: 30%;
  left: 93%;
  border: 2px solid var(--theme-color);
  display: flex;
  width: 1em;
  height: 15em;
  font-size: 1.5em;
  padding: 0 0.9em;
  flex-direction: column;
  background-color: var(--power-black);
  border-radius: 3em;
  z-index: 5;
}

.menu-item {
  position: relative;
  all: unset;
  flex-grow: 1;
  display: flex;
  cursor: pointer;
  border-radius: 50%;
  will-change: transform;
  align-items: center;
  justify-content: center;
  transition: transform var(--timeOut, var(--duration));
}

.menu-item::before {
  position: absolute;
  content: "";
  z-index: -1;
  width: 3em;
  height: 3em;
  border-radius: 50%;
  transform: scale(0);
  transition: background-color var(--duration), transform var(--duration);
}

.menu-item.active:nth-child(1) {
  transform: translate3d(0, -0.5em, 0);
}

.menu-item.active:nth-child(2) {
  transform: translate3d(-1em, 0, 0);
}

.menu-item.active:nth-child(3) {
  transform: translate3d(-1em, 0, 0);
}

.menu-item.active:nth-child(4) {
  transform: translate3d(-1em, 0, 0);
}

.menu-item.active:nth-child(5) {
  transform: translate3d(0, 0.5em, 0);
}

.menu-item.active::before {
  transform: scale(1);
  border: 2px solid var(--theme-color);
  background-color: var(--power-black);
}

.span-nav-name,
.span-nav-name-about-me {
  position: absolute;
  left: 105%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  white-space: nowrap;
  max-width: 120px;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: var(--font-text);
  font-size: 1rem;
  color: var(--text-color);
  background: var(--power-black);
  padding: 4px 12px;
  border-radius: 8px;
  pointer-events: none;
  transition: left 0.2s;
  z-index: 10;
}

.menu-item.active .span-nav-name,
.menu-item.active .span-nav-name-about-me {
  opacity: 1;
  left: 120%;
}

.menu-item.active span {
  transition: 2s;
  opacity: 1;
}

.icon-navbar {
  width: 1.6em;
  height: 1.6em;
  color: var(--white-weak);
}

.icon-navbar-home {
  color: var(--theme-hover-color);
}

.icon-navbar-about {
  color: var(--white-weak);
}

.icon-navbar-custom {
  width: 1.6em;
  height: 1.6em;
  stroke: var(--theme-hover-color);
  fill: transparent;
  stroke-width: 1pt;
  stroke-miterlimit: 10;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 400;
}

.menu-item.active .icon-navbar-custom {
  animation: strok 1.5s reverse;
}

/* Minhas informações */

.personal-info-sidebar {
  position: fixed;
  top: 50%;
  left: 13%;
  transform: translate(-50%, -50%);
  width: 370px;
  height: 635px;
  background-color: var(--night-black);
  overflow: hidden;
  z-index: 5;
  clip-path: url(#my-clip-path);
}

.personal-info-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  top: -15%;
}

.img-container {
  position: relative;
  display: inline-block;
}

.personal-info-img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 7px solid var(--metal-black);
}

.status-indicator {
  position: absolute;
  bottom: 15px;
  right: 5px;
  width: 15px;
  height: 15px;
  background-color: #22ff00ff;
  border-radius: 50%;
  border: 2px solid var(--night-black);
  z-index: 1;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 136, 255, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(0, 136, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 136, 255, 0);
  }
}

.personal-info-img-button {
  border-radius: 50%;
}

.personal-info-name {
  font-size: 1.2rem;
  width: 70%;
  padding-top: 10px;
  font-family: var(--font-title);
  color: var(--white);
  cursor: default;
}

.personal-info-job {
  font-size: 0.9rem;
  font-family: var(--font-text);
  color: var(--theme-color);
  cursor: default;
}

.personal-info-job span {
  position: relative;
}

.personal-info-divider {
  width: 80%;
  height: 1px;
  margin-top: 20px;
  margin-bottom: 10px;
  padding-top: -10px;
  background-color: var(--grey-black);
  opacity: 0.4;
}

/* Grafico circular de linguagens */

.progress-bars-professional {
  width: 90%;
  height: 25.5%;
  position: relative;
  top: -10%;
  left: 5%;
  display: flex;
  flex-direction: row;
  font-family: var(--font-text);
  color: var(--white-weak);
  background-color: var(--metal-black);
  border-radius: 1rem;
  overflow: hidden;
  cursor: default;
}

.progress-bars-professional-container {
  position: relative;
  width: 80%;
  margin-top: 70px;
  left: -26.1%;
  display: flex;
  align-items: center;
  gap: 10px;
}

.title-professional-skills {
  position: relative;
  top: 10%;
  left: 5%;
  height: 25px;
  font-size: 1rem;
  font-weight: 500;
}

/* 
        {Logica do codigo}
    Quanto menor o numero, maior a porcentagem do circulo,
sendo impossivel o numero ser maior q 233 e menor q 44.

    Use uma porcentagem ja existente para saber a nova porcentagem.

Valores:
233 = 0%
44 = 100%

Prompt: preciso q vc faça o circulo 1 ter %, o circulo 2 %, o circulo 3 %, e o circulo 4 %

*/

/* {{{{{ LOGICA DA PORCENTAGEM DOS CIRCULOS }}}}} */

/* Circunferência 1 → 70% */
#circle-02 {
  stroke-dashoffset: 100.7;
  stroke: var(--theme-color);
  animation: fillBarscircle01 16s steps(1500) 1;
}

/* Circunferência 2 → 85% */
#circle-04 {
  stroke-dashoffset: 72.35;
  stroke: var(--theme-color);
  animation: fillBarscircle02 16s steps(1500) 1;
}

/* Circunferência 3 → 75% */
#circle-06 {
  stroke-dashoffset: 91.25;
  stroke: var(--theme-hover-color);
  animation: fillBarscircle03 16s steps(1500) 1;
}

/* Circunferência 4 → 80% */
#circle-08 {
  stroke-dashoffset: 81.8;
  stroke: var(--theme-hover-color);
  animation: fillBarscircle04 16s steps(1500) 1;
}

/* Circulo 1 */
.circle-box-01 svg {
  width: 70px;
  height: 70px;
  fill: none;
  stroke: rgb(37, 37, 37);
  stroke-width: 2;
}

circle {
  width: 70px;
  height: 70px;
  transform: translate(5px, 5px);
  stroke-dasharray: 233;
  stroke-dashoffset: 233;
}

#circle-01 {
  stroke-dashoffset: 0;
  stroke: rgb(68, 68, 68);
}

.text-circle-info-01 {
  font-size: 0.8rem;
  position: relative;
  top: -28px;
  display: flex;
  justify-content: center;
  color: var(--white-weak);
}

.percentage-label-01 {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  top: -53px;
  color: var(--white-weak);
  width: 100%;
  height: 86%;
  font-family: var(--font-title-fine);
  color: var(--white-weak);
}

/* Circulo 2 */
.circle-box-02 svg {
  width: 70px;
  height: 70px;
  fill: none;
  stroke: rgb(37, 37, 37);
  stroke-width: 2;
}

#circle-03 {
  stroke-dashoffset: 0;
  stroke: rgb(68, 68, 68);
}

.text-circle-info-02 {
  font-size: 0.8rem;
  position: relative;
  top: -28px;
  display: flex;
  justify-content: center;
  color: var(--white-weak);
}

.percentage-label-02 {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  top: -53px;
  color: var(--white-weak);
  width: 100%;
  height: 86%;
  font-family: var(--font-title-fine);
  color: var(--white-weak);
}

/* Circulo 3 */
.circle-box-03 svg {
  width: 70px;
  height: 70px;
  fill: none;
  stroke: rgb(37, 37, 37);
  stroke-width: 2;
}

#circle-05 {
  stroke-dashoffset: 0;
  stroke: rgb(68, 68, 68);
}

.text-circle-info-03 {
  font-size: 0.8rem;
  position: relative;
  top: -28px;
  display: flex;
  justify-content: center;
  color: var(--white-weak);
}

.percentage-label-03 {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  top: -53px;
  color: var(--white-weak);
  width: 100%;
  height: 86%;
  font-family: var(--font-title-fine);
  color: var(--white-weak);
}

/* Circulo 4 */
.circle-box-04 svg {
  width: 70px;
  height: 70px;
  fill: none;
  stroke: rgb(37, 37, 37);
  stroke-width: 2;
}

#circle-07 {
  stroke-dashoffset: 0;
  stroke: rgb(68, 68, 68);
}

.text-circle-info-04 {
  font-size: 0.8rem;
  position: relative;
  top: -28px;
  display: flex;
  justify-content: center;
  color: var(--white-weak);
}

.percentage-label-04 {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  top: -53px;
  color: var(--white-weak);
  width: 100%;
  height: 86%;
  font-family: var(--font-title-fine);
  color: var(--white-weak);
}

/* Parte de Indrodução */

.introduction-section {
  /* Elemento Pai */
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--night-black);
  padding: 3.125rem;
  border-radius: 1rem;
}

.info-introduction {
  border-radius: 1rem;
  border: 1px solid var(--metal-black);
  font-size: 0.7rem;
  font-family: var(--font-text);
  width: 125px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 9px;
  color: var(--white);
  cursor: default;
}

.icon-svg-home-introduction {
  color: var(--theme-hover-color);
}

.introduction-title {
  font-size: 3rem;
  font-weight: 600;
  width: 70%;
  padding-top: 20px;
  line-height: 1.2;
  word-break: break-word;
  font-family: var(--font-text);
  color: var(--white);
}

.introduction-title strong {
  white-space: nowrap;
}

.introduction-title strong {
  color: var(--theme-color);
  font-weight: 600;
}

.introduction-paragraph {
  font-size: 1rem;
  padding-top: 20px;
  font-family: var(--font-title);
  color: var(--text-color);
}

.introduction-paragraph strong {
  color: var(--theme-hover-color);
}

.introduction-info-2 {
  font-size: 1rem;
  padding-top: 20px;
  font-family: var(--font-title);
  color: var(--text-color);
  display: flex;
  align-items: center;
  gap: 5px;
}

.introduction-info-2 svg {
  color: var(--theme-hover-color);
}

.indroduction-svg-check-02 {
  padding-left: 15px;
}

/* Botão personalizado */
.type--A {
  --line_color: #555555;
  --back_color: #ffecf6;
}
.type--B {
  --line_color: #1b1919;
  --back_color: #e9ecff;
}
.type--C {
  --line_color: var(--theme-color);
  --back_color: #434343;
}
.button {
  position: relative;
  z-index: 0;
  width: 240px;
  height: 56px;
  text-decoration: none;
  font-size: 12px;
  color: var(--line_color);
  letter-spacing: 2px;
  transition: all 0.3s ease;
}
.button__text {
  font-family: var(--font-text);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.button::before,
.button::after,
.button__text::before,
.button__text::after {
  content: "";
  position: absolute;
  height: 3px;
  border-radius: 2px;
  background: var(--line_color);
  transition: all 0.5s ease;
}
.button::before {
  top: 0;
  left: 54px;
  width: calc(100% - 56px * 2 - 16px);
}
.button::after {
  top: 0;
  right: 54px;
  width: 8px;
}
.button__text::before {
  bottom: 0;
  right: 54px;
  width: calc(100% - 56px * 2 - 16px);
}
.button__text::after {
  bottom: 0;
  left: 54px;
  width: 8px;
}
.button__line {
  position: absolute;
  top: 0;
  width: 56px;
  height: 100%;
  overflow: hidden;
}
.button__line::before {
  content: "";
  position: absolute;
  top: 0;
  width: 150%;
  height: 100%;
  box-sizing: border-box;
  border-radius: 300px;
  border: solid 3px var(--line_color);
}
.button__line:nth-child(1),
.button__line:nth-child(1)::before {
  left: 0;
}
.button__line:nth-child(2),
.button__line:nth-child(2)::before {
  right: 0;
}
.button:hover {
  letter-spacing: 6px;
}
.button:hover::before,
.button:hover .button__text::before {
  width: 8px;
}
.button:hover::after,
.button:hover .button__text::after {
  width: calc(100% - 56px * 2 - 16px);
}
.button__drow1,
.button__drow2 {
  position: absolute;
  z-index: -1;
  border-radius: 16px;
  transform-origin: 16px 16px;
}
.button__drow1 {
  top: -16px;
  left: 40px;
  width: 32px;
  height: 0;
  transform: rotate(30deg);
}
.button__drow2 {
  top: 44px;
  left: 77px;
  width: 32px;
  height: 0;
  transform: rotate(-127deg);
}
.button__drow1::before,
.button__drow1::after,
.button__drow2::before,
.button__drow2::after {
  content: "";
  position: absolute;
}
.button__drow1::before {
  bottom: 0;
  left: 0;
  width: 0;
  height: 32px;
  border-radius: 16px;
  transform-origin: 16px 16px;
  transform: rotate(-60deg);
}
.button__drow1::after {
  top: -10px;
  left: 45px;
  width: 0;
  height: 32px;
  border-radius: 16px;
  transform-origin: 16px 16px;
  transform: rotate(69deg);
}
.button__drow2::before {
  bottom: 0;
  left: 0;
  width: 0;
  height: 32px;
  border-radius: 16px;
  transform-origin: 16px 16px;
  transform: rotate(-146deg);
}
.button__drow2::after {
  bottom: 26px;
  left: -40px;
  width: 0;
  height: 32px;
  border-radius: 16px;
  transform-origin: 16px 16px;
  transform: rotate(-262deg);
}
.button__drow1,
.button__drow1::before,
.button__drow1::after,
.button__drow2,
.button__drow2::before,
.button__drow2::after {
  background: var(--back_color);
}
.button:hover .button__drow1 {
  animation: drow1 ease-in 0.06s;
  animation-fill-mode: forwards;
}
.button:hover .button__drow1::before {
  animation: drow2 linear 0.08s 0.06s;
  animation-fill-mode: forwards;
}
.button:hover .button__drow1::after {
  animation: drow3 linear 0.03s 0.14s;
  animation-fill-mode: forwards;
}
.button:hover .button__drow2 {
  animation: drow4 linear 0.06s 0.2s;
  animation-fill-mode: forwards;
}
.button:hover .button__drow2::before {
  animation: drow3 linear 0.03s 0.26s;
  animation-fill-mode: forwards;
}
.button:hover .button__drow2::after {
  animation: drow5 linear 0.06s 0.32s;
  animation-fill-mode: forwards;
}
@keyframes drow1 {
  0% {
    height: 0;
  }
  100% {
    height: 100px;
  }
}
@keyframes drow2 {
  0% {
    width: 0;
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  11% {
    opacity: 1;
  }
  100% {
    width: 120px;
  }
}
@keyframes drow3 {
  0% {
    width: 0;
  }
  100% {
    width: 80px;
  }
}
@keyframes drow4 {
  0% {
    height: 0;
  }
  100% {
    height: 120px;
  }
}
@keyframes drow5 {
  0% {
    width: 0;
  }
  100% {
    width: 124px;
  }
}

.container {
  width: 100%;
  margin-top: 30px;
  display: flex;
}

.container-center {
  justify-content: center;
  align-items: center;
  width: 100%;
  position: relative;
  left: 55%;
}

/* Parte de Sobre mim */

.about-me-section {
  /* Elemento pai */
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--night-black);
  padding: 3.125rem;
  border-radius: 1rem;
}

.info-about-me {
  border-radius: 1rem;
  border: 1px solid var(--metal-black);
  font-size: 0.7rem;
  font-family: var(--font-text);
  width: 110px;
  height: 30px;
  padding-right: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 9px;
  color: var(--white);
  cursor: default;
}

.icon-svg-home-about-me {
  color: var(--theme-hover-color);
  padding-bottom: 2px;
}

.about-me-title {
  font-size: 3rem;
  width: 70%;
  padding-top: 20px;
  line-height: 1.2;
  font-family: var(--font-title);
  font-weight: 200;
  color: var(--white);
  white-space: nowrap;
}

.about-me-title strong {
  color: var(--theme-color);
}

.about-me-paragraph {
  font-size: 1rem;
  padding-top: 20px;
  font-family: var(--font-title);
  color: var(--text-color);
}

.about-me-paragraph strong {
  color: var(--white-weak);
}

/* Seção de progresso em linguagens */

.skill-progress {
  width: 78%;
  padding-top: 20px;
  padding-bottom: 25px;
  gap: 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.skill-item-01,
.skill-item-02,
.skill-item-03,
.skill-item-04,
.skill-item-05 {
  border-radius: 30em;
  border: 1px dashed var(--grey-black);
  stroke-dasharray: 20;
  color: var(--text-color);
  font-family: var(--font-text);
  font-size: 0.9rem;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  transition: 0.5s;
  padding: 10px;
  box-sizing: border-box;
  flex-grow: 1;
  flex-basis: 100px;
}

.skill-item-01:hover,
.skill-item-02:hover,
.skill-item-03:hover,
.skill-item-04:hover,
.skill-item-05:hover {
  color: var(--white);
  transition: 0.5s;
}

/* Seção de Meus Projetos */

.session-my-projects {
  /* Elemento pai */
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  background-color: var(--night-black);
  padding: 3.125rem;
  border-radius: 1rem;
}

.info-projects {
  border-radius: 1rem;
  border: 1px solid var(--metal-black);
  font-size: 0.7rem;
  font-family: var(--font-text);
  width: 110px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 9px;
  color: var(--white);
  cursor: default;
}

.info-projects p {
  padding-top: 2.1px;
}

.icon-svg-home-project {
  color: var(--theme-hover-color);
  padding-top: 2px;
}

.my-project-title {
  font-size: 3rem;
  font-weight: 200;
  width: 70%;
  padding-top: 20px;
  line-height: 1.2;
  font-family: var(--font-title);
  color: var(--white);
  white-space: nowrap;
}

.my-project-title strong {
  color: var(--theme-color);
}

.my-project-paragraph {
  font-size: 1rem;
  padding-top: 20px;
  font-family: var(--font-text);
  color: var(--text-color);
  margin-bottom: 40px;
}

.my-project-paragraph strong {
  color: var(--white-weak);
}

.session-my-projects-bloons {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.project-item {
  width: 82%;
  height: 79%;
  padding: 2.125rem;
  display: flex;
  flex-direction: column;
  background-color: var(--night-black);
  color: var(--text-color);
  font-family: var(--font-text);
  border-radius: 1rem;
  border: 1px solid var(--metal-black);
  transition: 0.3s;
}

.project-item a {
  text-decoration: none;
  color: var(--white-weak);
  transition: 1s;
  position: relative;
}

.project-item a::after {
  content: "";
  width: 0%;
  height: 2px;
  background-color: var(--theme-hover-color);
  position: absolute;
  bottom: 0;
  left: 0;
  transition: 0.2s ease-in-out;
}

.project-item a:hover::after {
  width: 100%;
}

.project-item:hover {
  border: 1px solid var(--theme-color);
  transition: 0.3s;
}

.project-item:hover a {
  color: var(--theme-hover-color);
  transition: 0.3s;
}

.project-item:hover h1 {
  -webkit-text-stroke: 1px var(--white-weak);
  transition: 0.3s;
}

.project-item:hover svg {
  transition: 0.3s;
  transform: rotate(-45deg);
}

.project-number {
  font-family: var(--font-title);
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-color);
  width: 100px;
  height: 100px;
}

.number-border {
  font-family: var(--font-title);
  color: transparent;
  transition: 0.3s;
  -webkit-text-stroke: 1px var(--text-color);
}

.project-title {
  font-family: var(--font-title);
  font-size: 1.5rem;
  color: var(--white-weak);
  padding-top: 10px;
  padding-bottom: 15px;
  transition: 0.3s;
}

.project-title a {
  text-decoration: none;
  color: var(--white-weak);
  transition: 1s;
}

.project-description {
  line-height: 1.8;
}

.icon-svg-bloon-project {
  color: var(--theme-hover-color);
  position: absolute;
  transition: 0.3s;
}

.icon-svg-bloon-project-01,
.icon-svg-bloon-project-03 {
  left: 52%;
}

.icon-svg-bloon-project-02,
.icon-svg-bloon-project-04 {
  left: 74.8%;
}

.more-projects-button {
  position: relative;
  left: 72%;
  margin-top: 0;
}

/* Seção do Resumo */

.summary-section {
  /* Elemento pai */
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  background-color: var(--night-black);
  padding: 3.125rem;
  border-radius: 1rem;
}

.info-summary {
  border-radius: 1rem;
  border: 1px solid var(--metal-black);
  font-size: 0.7rem;
  font-family: var(--font-text);
  width: 110px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 9px;
  color: var(--white);
  cursor: default;
}

.info-summary p {
  padding-top: 2px;
}

.icon-svg-home-summary {
  color: var(--theme-color);
}

.summary-title {
  font-size: 3rem;
  font-weight: 200;
  width: 100%;
  padding-top: 20px;
  line-height: 1.2;
  font-family: var(--font-title);
  color: var(--white);
}

.summary-title strong {
  color: var(--theme-color);
}

.summary-paragraph {
  font-size: 1rem;
  padding-top: 20px;
  font-family: var(--font-text);
  color: var(--text-color);
  margin-bottom: 40px;
}

.summary-paragraph strong {
  color: var(--white-weak);
}

/* ===== GRIDS DE EXPERIÊNCIA E EDUCAÇÃO ===== */

/* Container Principal do Grid */
.experience-grid-container,
.education-grid-container {
  display: grid;
  grid-template-columns: 200px 50px 1fr;
  grid-template-rows: repeat(3, auto);
  gap: 2rem;
  margin-bottom: 2rem;
  position: relative;
}

/* Coluna 1: Empresas/Instituições */
.experience-column.companies,
.education-column.institutions {
  display: contents;
}

.experience-item-header,
.education-item-header {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-height: 120px;
  justify-content: flex-start;
  grid-column: 1;
}

.experience-item-header:nth-child(1),
.education-item-header:nth-child(1) {
  grid-row: 1;
}

.experience-item-header:nth-child(2),
.education-item-header:nth-child(2) {
  grid-row: 2;
}

.experience-item-header:nth-child(3),
.education-item-header:nth-child(3) {
  grid-row: 3;
}

.company-name,
.institution-name {
  color: var(--white-weak);
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 1.1rem;
  margin: 0;
  line-height: 1.2;
}

.company-date,
.institution-date {
  color: var(--theme-color);
  font-family: var(--font-text);
  font-size: 0.9rem;
  font-weight: 500;
  margin: 0;
}

/* Coluna 2: Timeline */
.experience-column.timeline,
.education-column.timeline {
  display: contents;
}

.timeline-column {
  position: relative;
}

.timeline-line {
  position: absolute;
  left: 1.99vw;
  top: 0;
  width: 2px;
  height: 90%;
  background-color: var(--grey-black-200);
  z-index: 1;
  grid-column: 2;
  grid-row: 1 / -1;
  margin: 0 auto;
}

.timeline-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 120px;
  justify-content: flex-start;
  grid-column: 2;
}

.timeline-item:nth-child(1) {
  grid-row: 1;
}

.timeline-item:nth-child(2) {
  grid-row: 2;
}

.timeline-item:nth-child(3) {
  grid-row: 3;
}

.timeline-dot {
  width: 12px;
  height: 12px;
  background-color: var(--theme-color);
  border-radius: 50%;
  border: 3px solid var(--night-black);
  box-shadow: 0 0 0 2px var(--theme-color);
  z-index: 2;
  position: absolute;
  left: 1.5vw;
  top: 0;
  transform: none;
  margin: 0;
}

/* Coluna 3: Conteúdo */
.experience-column.content,
.education-column.content {
  display: contents;
}

.experience-content-item,
.education-content-item {
  min-height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  grid-column: 3;
}

.experience-content-item:nth-child(1),
.education-content-item:nth-child(1) {
  grid-row: 1;
}

.experience-content-item:nth-child(2),
.education-content-item:nth-child(2) {
  grid-row: 2;
}

.experience-content-item:nth-child(3),
.education-content-item:nth-child(3) {
  grid-row: 3;
}

.experience-title,
.education-title {
  color: var(--white-weak);
  font-family: var(--font-text);
  font-weight: 600;
  font-size: 1.5rem;
  margin: 0 0 1rem 0;
  line-height: 1.2;
}

.experience-description,
.education-description {
  color: var(--text-color);
  font-family: var(--font-text);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.experience-description-list {
  color: var(--text-color);
  font-family: var(--font-text);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
}

.experience-description-list::before {
  content: "-";
  position: absolute;
  left: 0;
  color: var(--theme-color);
  font-weight: bold;
}

.experience-description-list-end {
  margin-bottom: 0;
}

/* Ajuste para educação */
.education-grid-container {
  grid-template-rows: repeat(2, auto);
}

.education-column.timeline .timeline-item {
  min-height: 80px;
}

.education-content-item {
  min-height: 80px;
}

.education-title {
  margin: 0 0 0.75rem 0;
}

/* ===== RESPONSIVIDADE ===== */

@media (max-width: 1200px) {
  .experience-grid-container,
  .education-grid-container {
    grid-template-columns: 160px 40px 1fr;
    gap: 1.5rem;
  }
  .timeline-line, .timeline-dot {
    left: 6vw;
  }
}

@media (max-width: 1000px) {
  .experience-grid-container,
  .education-grid-container {
    grid-template-columns: 140px 30px 1fr;
    gap: 1rem;
  }
  
  .company-name,
  .institution-name {
    font-size: 1rem;
  }
  
  .experience-title,
  .education-title {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .experience-grid-container,
  .education-grid-container {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .experience-column.companies,
  .education-column.institutions {
    order: 1;
  }
  
  .experience-column.timeline,
  .education-column.timeline {
    display: none;
  }
  
  .experience-column.content,
  .education-column.content {
    order: 2;
  }
  
  .experience-item-header,
  .education-item-header {
    min-height: auto;
    margin-bottom: 1rem;
  }
  
  .experience-content-item,
  .education-content-item {
    min-height: auto;
  }
  .timeline-line, .timeline-dot {
    left: 8vw;
  }
}

@media (max-width: 800px) {
  /* Esconde a timeline */
  .timeline-line,
  .timeline-dot {
    display: none !important;
  }

  /* Ajusta o grid para empilhar os cards */
  .experience-grid-container,
  .education-grid-container {
    display: flex !important;
    flex-direction: column;
    gap: 24px;
    position: static;
  }

  /* Card para cada experiência */
  .experience-content-item,
  .education-content-item {
    background: #fff;
    border: 1.5px solid #e0e0e0;
    border-radius: 12px;
    box-shadow: 0 2px 8px #0001;
    padding: 20px 16px 16px 16px;
    margin: 0;
    position: relative;
  }

  /* Título e data juntos no topo */
  .experience-content-item .experience-title,
  .education-content-item .education-title {
    display: inline-block;
    font-size: 1.1em;
    font-weight: bold;
    margin-bottom: 2px;
    margin-right: 12px;
    color: var(--theme-color, #0072ff);
  }
  .company-date,
  .institution-date {
    display: inline-block;
    font-size: 0.98em;
    color: #888;
    font-weight: 500;
    margin-bottom: 8px;
  }

  /* Remove grid colunas extras */
  .experience-column,
  .education-column {
    display: none;
  }

  /* Mostra só o conteúdo */
  .experience-column.content,
  .education-column.content {
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
  }
}

/* Parte do rodapé */

footer {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
  height: 1px;
  margin-top: 40px;
  font-family: var(--font-text);
  font-size: 1rem;
  color: var(--text-color);
  padding-bottom: 10px;
}

/* KeyFrames (Animações) */

/* Animação do cubo descendo e subindo a tela */
@keyframes moveDown {
  0% {
    transform: translateY(-2vh) rotate(-45deg);
  }
  100% {
    transform: translateY(102vh) rotate(-45deg);
  }
}

@keyframes moveUp {
  0% {
    transform: translateY(102vh) rotate(-45deg);
  }
  100% {
    transform: translateY(-2vh) rotate(-45deg);
  }
}

@keyframes fillBarscircle01 {
  from {
    width: 0;
    stroke-dashoffset: 233;
  }
  to {
    width: 100%;
    stroke-dashoffset: 123.38;
  }
}

@keyframes fillBarscircle02 {
  from {
    stroke-dashoffset: 233;
  }
  to {
    stroke-dashoffset: 164.96;
  }
}

@keyframes fillBarscircle03 {
  from {
    width: 0;
    stroke-dashoffset: 233;
  }
  to {
    width: 100%;
    stroke-dashoffset: 93.14;
  }
}

@keyframes fillBarscircle04 {
  from {
    width: 0;
    stroke-dashoffset: 233;
  }
  to {
    width: 100%;
    stroke-dashoffset: 79.91;
  }
}

/* Anima o svg menu da navbar */

@keyframes strok {
  0% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: 400;
  }
}

.language-buttons {
  display: flex;
  gap: 10px;
  margin-top: 15px;
  justify-content: center;
}

.lang-btn {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 1px solid var(--grey-black);
  background: transparent;
  color: var(--theme-color);
  cursor: pointer;
  font-family: var(--font-text);
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.lang-btn:hover {
  background: var(--theme-color);
  color: var(--night-black);
}

.lang-btn.active {
  background: var(--theme-color);
  color: var(--night-black);
}

.personal-info-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 15px;
  width: 80%;
}

.info-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-text);
  font-size: 0.9rem;
}

.info-label {
  color: var(--text-color);
}

.info-value {
  color: var(--white-weak);
}

.theme-buttons {
  position: absolute;
  left: -120px;
  top: 50%;
  transform: translateY(-50%);
  display: none;
  flex-direction: column;
  gap: 20px;
  z-index: 10;
}

.menu-item.active .theme-buttons {
  display: flex;
  animation: slideIn 0.3s ease-out forwards;
}

.theme-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid var(--theme-color);
  background: var(--night-black);
  color: var(--theme-color);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.theme-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--theme-color);
  border-radius: 50%;
  transform: scale(0);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

.theme-btn svg {
  width: 24px;
  height: 24px;
  transition: all 0.3s ease;
  z-index: 1;
}

.theme-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(var(--theme-color-rgb), 0.3);
}

.theme-btn:hover::before {
  transform: scale(1);
}

.theme-btn:hover {
  color: var(--night-black);
}

.theme-btn:hover svg {
  transform: rotate(360deg);
}

.theme-btn.active {
  background: var(--theme-color);
  color: var(--night-black);
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(var(--theme-color-rgb), 0.4);
}

.theme-btn.active::before {
  transform: scale(1);
}

.theme-btn.active svg {
  transform: rotate(180deg);
}

.theme-btn:active {
  transform: scale(0.95);
}

/* Animações específicas para cada botão */
.theme-btn.dark-theme {
  animation-delay: 0.1s;
}

.theme-btn.light-theme {
  animation-delay: 0.2s;
}

/* Animação de entrada */
@keyframes slideIn {
  0% {
    opacity: 0;
    transform: translateY(-50%) translateX(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
  }
}

/* Animação individual dos botões */
.theme-btn {
  animation: fadeInScale 0.4s ease-out forwards;
  opacity: 0;
  transform: scale(0.8);
}

.menu-item.active .theme-btn.dark-theme {
  animation: fadeInScale 0.4s ease-out 0.1s forwards;
}

.menu-item.active .theme-btn.light-theme {
  animation: fadeInScale 0.4s ease-out 0.2s forwards;
}

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

/* Efeito de pulso para o botão ativo */
.theme-btn.active {
  animation: theme-pulse 2s infinite;
}

@keyframes theme-pulse {
  0% {
    box-shadow: 0 6px 20px rgba(var(--theme-color-rgb), 0.4);
  }
  50% {
    box-shadow: 0 6px 25px rgba(var(--theme-color-rgb), 0.6);
  }
  100% {
    box-shadow: 0 6px 20px rgba(var(--theme-color-rgb), 0.4);
  }
}

/* Responsividade para telas menores */
@media (max-width: 1380px) {
  .theme-buttons {
    display: none !important;
  }
}

.education-grid-container .timeline-line {
  height: 75%;
}

[data-theme="light"] .span-nav-name,
[data-theme="light"] .span-nav-name-about-me {
  background: var(--power-black);
}

.menu .icon-svg-home-summary {
  color: var(--white-weak);
}

.summary-section .icon-svg-home-summary {
  color: var(--theme-color);
}
