html, body {
  height: 100%;
}

body {
  background-color: #031520;
  color: #ffffff;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
body ::selection {
  background-color: #5f836b;
  color: white;
}

main {
  flex: 1 0 auto;
  padding-top: 20px;
}

#particles-js {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: #021825;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
  z-index: -1;
}

.count-particles {
  background: #000022;
  position: absolute;
  top: 48px;
  left: 0;
  width: 80px;
  color: #13E8E9;
  font-size: 0.8em;
  text-align: left;
  text-indent: 4px;
  line-height: 14px;
  padding-bottom: 2px;
  font-family: Helvetica, Arial, sans-serif;
  font-weight: bold;
  border-radius: 0 0 3px 3px;
  z-index: 1001;
}

header {
  display: flex;
  justify-content: space-between;
  background-color: transparent;
  align-items: center;
  padding: 0.8rem;
  position: fixed;
  width: 100%;
  z-index: 1000;
  transition: background 0.5s, backdrop-filter 0.1s;
}

.logo-container h1,
.logo-container h1 a {
  font-size: 2rem;
  letter-spacing: 1px;
  padding-left: 8rem;
  color: inherit;
  text-decoration: none;
}

.nav-container ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding-right: 12rem;
}
.nav-container li {
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-container a {
  display: inline-block;
  position: relative;
  padding: 0.5rem 1rem;
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.2rem;
  transition: color 0.3s;
}
.nav-container a::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0.2em;
  width: 100%;
  height: 0.18em;
  background: currentColor;
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.nav-container a:hover {
  color: #9EC5AB;
}
.nav-container a:hover::after {
  transform: scaleX(1);
  transition: transform 0.3s;
}
.nav-container a.active-page {
  color: #9EC5AB;
}
.nav-container a.active-page::after {
  transform: scaleX(1);
  transition: transform 0.3s;
}

.blink {
  position: relative;
}
.blink::after {
  content: "";
  display: inline-block;
  width: 1.5ch;
  height: 0.18em;
  background: currentColor;
  vertical-align: baseline;
  margin-left: 2px;
  border-radius: 2px;
  animation: blink-cursor 1s steps(1, start) infinite;
  transform-origin: left;
}

@keyframes blink-cursor {
  0%, 49% {
    opacity: 1;
  }
  50%, 100% {
    opacity: 0;
  }
}
.blink2 {
  position: relative;
}
.blink2::after {
  content: "";
  display: inline-block;
  width: 1.5ch;
  height: 0.18em;
  background: currentColor;
  vertical-align: baseline;
  margin-left: 2px;
  border-radius: 2px;
  animation: blink-fill 2s linear infinite;
  transform-origin: left;
}

@keyframes blink-fill {
  0% {
    transform: scaleX(0);
    transform-origin: left;
    opacity: 1;
  }
  40% {
    transform: scaleX(1);
    transform-origin: left;
    opacity: 1;
  }
  50% {
    transform: scaleX(1);
    transform-origin: right;
    opacity: 1;
  }
  90% {
    transform: scaleX(0);
    transform-origin: right;
    opacity: 1;
  }
  100% {
    transform: scaleX(0);
    transform-origin: left;
    opacity: 1;
  }
}
header.scrolled {
  background: rgba(20, 30, 40, 0.6);
  backdrop-filter: blur(5px);
}

.cue-code {
  color: #9EC5AB;
  font-size: 2.5rem;
  font-weight: 600;
}

.cue-small {
  font-size: 1.5rem;
  font-weight: 700;
}

.nav-container a i {
  margin-right: 0.5rem;
}

footer {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  font-size: 0.5rem;
  background-color: #02121b;
  color: #ffffff;
  text-align: center;
  justify-content: center;
  position: relative;
  z-index: 1000;
  flex-shrink: 0;
  padding: 1rem;
}
footer .copyright,
footer .name,
footer .socials {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
footer .copyright p,
footer .name p,
footer .socials p {
  height: 100%;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 0;
}
footer .copyright,
footer .name {
  align-items: start;
}
footer .cue-small {
  font-size: 0.8em;
  letter-spacing: 0.5px;
  font-weight: 500;
  opacity: 0.85;
}
footer .socials {
  align-items: start;
}
footer .socials ul {
  display: flex;
  justify-content: center;
  gap: 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
footer .socials li a {
  color: #fff;
  font-size: 1.7rem;
  transition: color 0.2s;
}
footer .socials li.whatsapp a:hover, footer .socials li.instagram a:hover, footer .socials li.mail a:hover, footer .socials li.linkedin a:hover, footer .socials li.github a:hover {
  color: #9ec5ab;
}

.index-main {
  margin-top: 5rem;
  display: grid;
  position: relative;
  overflow: hidden;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(4, 1fr);
  grid-template-areas: "presentation presentation-img" "presentation-introduction presentation-me" "tech-tools tech-tools" "find-me find-me";
  min-height: 100vh;
}
.index-main .presentation {
  grid-area: presentation;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 100%;
  padding: 1rem 1rem 1rem 10rem;
  position: relative;
}
.index-main .presentation h2 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  font-weight: 800;
}
.index-main .presentation h3 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.index-main .presentation .strong-name {
  font-size: 2.5rem;
  font-weight: 800;
  color: #9EC5AB;
}
.index-main .presentation .typewriter-container {
  display: inline-flex;
  align-items: center;
  margin-top: 5rem;
  font-family: "Roboto Mono", monospace;
}
.index-main .presentation .typewriter-container #typewriter {
  font-size: 2rem;
  font-weight: 800;
}
.index-main .presentation .typewriter-container .typewriter-cursor {
  display: inline-block;
  width: 1ch;
  color: white;
  font-weight: bold;
  font-size: 2rem;
  margin-left: -0.08em;
}
.index-main .presentation-img {
  grid-area: presentation-img;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 1rem 20rem 1rem 1rem;
  height: 100%;
}
.index-main .presentation-img img {
  max-width: 100%;
  height: auto;
  max-height: 350px;
  display: block;
  margin: 0 auto;
}
.index-main .presentation-introduction {
  grid-area: presentation-introduction;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  text-align: start;
  height: 100%;
  padding: 8rem 1rem 1rem 10rem;
}
.index-main .presentation-introduction h4 {
  font-size: 2.5rem;
  font-weight: 800;
}
.index-main .presentation-introduction p {
  font-size: 1.3rem;
}
.index-main .presentation-introduction .highlighted {
  font-size: 1.3rem;
  font-weight: 800;
  color: #9EC5AB;
}
.index-main .presentation-introduction .link-highlight {
  font-size: 1.3rem;
  text-decoration: underline;
  color: inherit;
  font-weight: 600;
  transition: color 0.3s ease;
}
.index-main .presentation-introduction .link-highlight:hover {
  color: #9EC5AB;
}
.index-main .presentation-me {
  grid-area: presentation-me;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 100%;
  padding: 5rem 15rem 1rem 1rem;
}
.index-main .presentation-me img {
  max-width: 100%;
  height: auto;
  max-height: 450px;
  display: block;
  margin: 0 auto;
}
.index-main .tech-tools {
  grid-area: tech-tools;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 5rem 2rem;
  text-align: center;
}
.index-main .tech-tools h5 {
  font-size: 2.5rem;
  font-weight: 800;
  margin: 3rem 0;
}
.index-main .tech-tools .tools-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5rem;
}
.index-main .tech-tools .tools-grid .tool-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 8rem;
  height: 8rem;
  padding: 1.5rem;
  background-color: transparent;
  border: 2px solid #9EC5AB;
  border-radius: 0.75rem;
  box-shadow: 0 20px 0px rgba(255, 255, 255, 0.2);
  transition: transform 0.2s ease;
}
.index-main .tech-tools .tools-grid .tool-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: filter 0.8s ease;
}
.index-main .tech-tools .tools-grid .tool-item:hover {
  transform: scale(1.03);
}
.index-main .find-me {
  grid-area: find-me;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem 2rem;
  background: rgba(158, 197, 171, 0.05);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}
.index-main .find-me .find-me-content {
  max-width: 800px;
}
.index-main .find-me .find-me-content h6 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #9EC5AB;
  margin-bottom: 3rem;
  margin-top: 3rem;
}
.index-main .find-me .find-me-content p {
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 3rem;
  color: #eee;
}
.index-main .find-me .find-me-content .contact-icons {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}
.index-main .find-me .find-me-content .contact-icons .contact-item {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  color: #9EC5AB;
  border: 2px solid #9EC5AB;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  transition: all 0.3s ease;
  text-decoration: none;
}
.index-main .find-me .find-me-content .contact-icons .contact-item:hover {
  background-color: #9EC5AB;
  color: #121212;
}
.index-main .find-me .find-me-content .contact-icons .contact-item i {
  font-size: 2.5rem;
}

.wave-hand {
  display: inline-block;
  font-size: 3rem;
  animation: wave 1.5s infinite;
  transform-origin: 70% 70%;
}

.wave-hand-svg {
  display: inline-block;
  animation: wave 1.5s infinite;
  transform-origin: 70% 70%;
  vertical-align: top;
}

@keyframes wave {
  0% {
    transform: rotate(0deg);
  }
  10% {
    transform: rotate(14deg);
  }
  20% {
    transform: rotate(-8deg);
  }
  30% {
    transform: rotate(14deg);
  }
  40% {
    transform: rotate(-4deg);
  }
  50% {
    transform: rotate(10deg);
  }
  60% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.bg-blob {
  position: absolute;
  z-index: 0;
  filter: blur(90px);
  opacity: 0.15;
  pointer-events: none;
}

@keyframes border-shine {
  0% {
    background-size: 0% 3px, 0% 3px, 3px 0%, 3px 0%;
  }
  25% {
    background-size: 50% 3px, 50% 3px, 3px 0%, 3px 0%;
  }
  50% {
    background-size: 100% 3px, 100% 3px, 3px 0%, 3px 0%;
  }
  75% {
    background-size: 100% 3px, 100% 3px, 3px 50%, 3px 50%;
  }
  100% {
    background-size: 100% 3px, 100% 3px, 3px 100%, 3px 100%;
  }
}
.cv-section {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 2rem;
}
.cv-section .cv-wrapper img {
  width: 100%;
  max-width: 900px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  display: block;
}

.download-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1.5rem;
  padding: 0.75rem 1.5rem;
  background-color: #9EC5AB;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}
.download-btn:hover {
  background-color: #85a790;
}

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

::-webkit-scrollbar-track {
  background: #021825;
  border: 1px solid #021825;
}

::-webkit-scrollbar-thumb {
  background: #9EC5AB;
  transition: background 0.3s ease;
  border: 1px solid #9EC5AB;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #c7edd4;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Raleway", sans-serif;
  font-size: 16px;
}

.custom-tooltip {
  --bs-tooltip-bg: #ffffff;
  --bs-tooltip-color: black;
}

/*# sourceMappingURL=style.css.map */
