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

  font-family: "Roboto Mono", monospace;
}

body.no-scroll {
  overflow: hidden;
}

.hamburger {
  width: 60px;
  height: 60px;
  position: fixed;
  top: 40px;
  right: 40px;
  background-color: transparent;
  z-index: 100;
  cursor: pointer;
}

.hamburger:hover span {
  box-shadow: 0 0 10px 3px #ffffffa1;
}

.hamburger span {
  position: absolute;
  right: 0;
  height: 3px;
  background-color: #fff;
  transition: all 1s;
}

.hamburger span.um {
  width: 60px;
  top: 20px;
}

.hamburger span.dois {
  width: 40px;
  bottom: 20px;
}

.hamburger.active span.um {
  transform: rotate(45deg);
  top: 28px;
}

.hamburger.active span.dois {
  transform: rotate(-45deg);
  width: 60px;
  bottom: 28px;
}

.hamburger .bar {
  display: block;
  width: 35px;
  height: 2px;
  margin: 5px auto;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: white;
}

.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}

.hamburger.active .bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active .bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.nav-content {
  position: fixed;
  left: 100%;
  background-color: aliceblue;
  transition: 500ms ease-in-out;

  width: 100%;
  height: 100vh;
  z-index: 100;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  background: rgba(0, 0, 0, 0.8);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.082);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.nav-content.active {
  left: 0;
  bottom: 0;
}

.nav-content ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4rem;
}

.nav-content ul li {
  width: max-content;
}

.nav-content ul li a {
  text-decoration: none;
  font-size: 3rem;
  color: var(--color-text);
}

.nav-content li a::after {
  content: "";
  width: 0%;
  height: 3px;
  border-radius: 2rem;
  background-color: rgb(192, 192, 192);

  position: relative;
  bottom: -1rem;
  left: -1rem;
  display: block;

  transition: width 200ms ease-in-out;
}

.nav-content li a:hover::after {
  padding-inline: 1rem;
  width: 100%;
}

.nav-content .social-links {
  margin-top: 5rem;
  display: flex;
  align-items: center;
  gap: 3rem;

  position: sticky;
  top: 100px;
}

.nav-content .social-links svg {
  filter: drop-shadow(2px 4px 20px #006ddd);
  animation: move 2.5s infinite ease-in-out;
  transition: all 200ms ease-in-out;
}

.nav-content .social-links a svg:hover {
  filter: drop-shadow(4px 8px 20px #ffffff);
  cursor: pointer;
}

.nav-content .social-links a:nth-child(2) svg {
  animation-delay: 200ms;
}

.nav-content .social-links a:nth-child(3) svg {
  animation-delay: 400ms;
}

footer iframe {
  display: block;
  margin: 10px auto;
  max-width: 600px;
  border: none;
}

@media (min-width: 1080px) {
  .hamburger {
    right: 2%;
    top: 4%;
  }

  .hamburger .bar {
    width: 55px;
    height: 2px;
  }

  .nav-content ul {
    gap: 6rem;
  }

  .nav-content ul li a {
    text-decoration: none;
    font-size: 4rem;
    color: var(--color-text);
  }

  .nav-content .social-links {
    margin-top: 8rem;
  }
}

:root {
  font-size: 62.5%;
  --nav-height: 7.2rem;

  --primary-color: #006ddd;
  --secondary-color: #004388;
  --tertinary-color: #001326;

  --color-text: #e4e4e4;
  --p-color: #6e6e6e;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

html,
body {
  width: 100%;
  height: 100%;
  text-align: center;
}

body {
  background-color: #000;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  height: 100%;
}

ul {
  list-style: none;
}

.wrapper {
  width: min(50rem, 100%);
  margin-inline: auto;

  padding-inline: 2.4rem;
}

.wrapper-home {
  width: min(130rem, 100%);
  margin-inline: auto;

  padding-inline: 2.4rem;
}

section {
  padding-block: 10rem;
}

/*====  scrollbar ============================ */

::-webkit-scrollbar {
  width: 1rem;
  background-color: #111111;
}

::-webkit-scrollbar-thumb {
  width: 1rem;
  background-color: #333333;
}

#particles-js {
  background-color: transparent;
  opacity: 0.7;
  position: fixed;
  width: 100%;
  height: 100%;
  height: 100%;
  top: 0;
}

/* HOME =================== */
#home {
  overflow: hidden;
}

#home .banner video {
  display: initial;
}

.banner {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.banner video {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  object-fit: cover;
  width: 100%;
  height: 100vh;
  filter: brightness(0.5);
}

.banner .content {
  display: flex;
  gap: 5rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#home .content .text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#home .content .text .paragraphy {
  display: flex;
  align-items: center;
}

#home .social-links {
  margin-top: 3rem;
  display: flex;
  align-items: center;
  gap: 3rem;

  position: sticky;
  top: 100px;
}

#home .social-links svg {
  filter: drop-shadow(2px 4px 20px #006ddd);
  animation: move 2.5s infinite ease-in-out;
  transition: all 200ms ease-in-out;
}

#home .social-links a svg:hover {
  filter: drop-shadow(4px 8px 20px #ffffff);
  cursor: pointer;
}

#home .social-links a:nth-child(2) svg {
  animation-delay: 200ms;
}

#home .social-links a:nth-child(3) svg {
  animation-delay: 400ms;
}

#home .content .text svg {
  width: 5rem;
  height: 5rem;
}

#home .content .text .paragraphy p {
  font-size: 2rem;
  color: #d8d8d8;
  font-weight: 400;
}

#home .content .text h1 {
  font-family: "Poppins", sans-serif;
  font-size: 6rem;
  font-weight: 900;
  color: white;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.6),
    0 0 20px rgba(255, 255, 255, 0.3), 0 0 30px rgba(0, 109, 221, 0.2);
  animation: pulseNeon 3s infinite;
}

@keyframes pulseNeon {
  0%,
  100% {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5),
      0 0 20px rgba(255, 255, 255, 0.2), 0 0 30px rgba(0, 109, 221, 0.1);
  }
  50% {
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.7),
      0 0 25px rgba(255, 255, 255, 0.4), 0 0 35px rgba(0, 109, 221, 0.3);
  }
}

#home .content .arrow {
  filter: drop-shadow(2px 4px 15px #006ddd);

  transition: all 200ms ease-in-out;
}

#home .content .arrow:hover {
  transform: scale(1.1);
}

/* PROJECTS =================== */
#projects {
  overflow: hidden;
  background: rgba(0, 0, 0, 0.519);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.082);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  position: relative;
}

#projects img.textoPortfolio {
  width: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%);
  z-index: -1;
  opacity: 0.02;
}

#projects img.looper {
  position: absolute;

  animation: rotate infinite linear 20s;
  z-index: -1;
  filter: brightness(0.1);
}

#projects img.looper.um {
  bottom: 91%;
  right: -24rem;
}

#projects img.looper.dois {
  bottom: 45%;
  left: -24rem;
}

#projects img.looper.tres {
  bottom: 10%;
  right: -24rem;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

#projects header h2 {
  line-height: 1.1;
  color: var(--color-text);
  font-size: 3.5rem;

  margin-bottom: 1rem;
}

#projects header p {
  font-family: "Poppins", sans-serif;
  font-size: 1.6rem;
  color: var(--p-color);
  font-weight: 600;
}

#projects header {
  margin-bottom: 8rem;
}

#projects .cards {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10rem;
}

#projects .image img {
  width: 100%;
  transition: all 200ms ease-in-out;
  animation: move 2.5s infinite ease-in-out;

  filter: drop-shadow(2px 4px 20px #1b1b1b);

  margin-bottom: 4rem;
}

#projects .card.right .image img {
  animation-delay: 500ms;
}

#projects .image img:hover {
  cursor: pointer;
  filter: drop-shadow(1px 3px 15px #4646469d);
}

#projects h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #d8d8d8;

  margin-bottom: 0.5rem;
}

#projects p {
  font-family: "Poppins", sans-serif;
  color: var(--p-color);
  font-size: 1.6rem;
}

#projects .technologies {
  margin-top: 2rem;
}

#projects .technologies ion-icon {
  font-size: 2.5rem;
  color: #fff;
}

#projects .technologies ion-icon:nth-child(1) {
  color: #f0db4f;
  border-radius: 1rem;
}

#projects .technologies ion-icon:nth-child(2) {
  color: #ec6231;
}

#projects .technologies ion-icon:nth-child(3) {
  color: #264de4;
}

/* competencias=================== */
#competencias {
  background: transparent !important;
  overflow: hidden;
}

#competencias header h2 {
  font-size: 3.5rem;
  color: var(--color-text);
  margin-bottom: 5rem;
}

#competencias .cards .card {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 2rem;
  min-height: 30rem;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

#competencias .cards .card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
}

#competencias .cards .card ion-icon {
  font-size: 6rem;
  color: white;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.8),
    0 0 20px rgba(255, 255, 255, 0.5);
}

#competencias .cards .card span {
  color: white;
  font-weight: 700;
  font-size: 2rem;
  margin-top: -1rem;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.8),
    0 0 20px rgba(255, 255, 255, 0.5);
}

#competencias .cards .card p {
  font-family: "Poppins", sans-serif;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.6rem;
  font-weight: 300;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
}

/* sobre =================== */
#sobre {
  position: relative;
  background: transparent !important;
  overflow: hidden;
  z-index: 1;
}

#sobre .image {
  margin-bottom: 3rem;
}

#sobre .image img {
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 50%;
  width: 100%;
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
  filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.3));
  animation: move 3s ease-in-out infinite;
}

#sobre .content header h2 {
  font-size: 4rem;
  color: white;
  text-align: left;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.8),
    0 0 20px rgba(255, 255, 255, 0.5), 0 0 30px rgba(255, 255, 255, 0.3);
}

#sobre .content .text {
  text-align: left;
}

#sobre .content .text p {
  font-weight: 300;
  color: white;
  font-size: 1.6rem;
  font-family: "Poppins", sans-serif;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.6),
    0 0 20px rgba(255, 255, 255, 0.3);
}

#sobre .content .text p span {
  font-weight: 600;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.8),
    0 0 25px rgba(255, 255, 255, 0.5);
}

#sobre .content .text ul {
  margin-top: 3rem;
  margin-left: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  align-items: start;
  text-align: left;
}

#sobre .content .text ul li {
  font-size: 1.4rem;
  color: white;
  list-style: disc;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.6),
    0 0 20px rgba(255, 255, 255, 0.3);
}

#sobre .content .text a {
  text-decoration: none;
  color: white;
}

#sobre .content .text a button {
  font-family: "Poppins", sans-serif;
  margin-top: 2rem;
  padding: 1.2rem 2.4rem;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  color: white;
  font-size: 1.4rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.1),
    inset 0 0 15px rgba(255, 255, 255, 0.1);
}

#sobre .content .text a button:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-2px);
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.8),
    0 0 25px rgba(255, 255, 255, 0.6);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2),
    inset 0 0 20px rgba(255, 255, 255, 0.2);
}

#sobre .content .text a button ion-icon {
  font-size: 1.8rem;
  transition: transform 0.3s ease;
}

#sobre .content .text a button:hover ion-icon {
  transform: translateX(3px);
  text-shadow: 0 0 15px rgba(255, 255, 255, 1);
}

/* Adicionar efeito de brilho ao passar o mouse */
#sobre .content .text a button::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transform: rotate(45deg);
  transition: 0.5s;
  opacity: 0;
}

#sobre .content .text a button:hover::after {
  opacity: 1;
  left: 100%;
}

/* buttonWhatsapp =================== */
#buttonHome {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 100;

  opacity: 0;
  visibility: hidden;

  transform: translateY(100%);
  transition: all 300ms ease-in-out;
}

#buttonHome.show {
  opacity: 1;
  visibility: visible;

  transform: translateY(0);
}

#buttonHome img {
  width: 6rem;
  transition: all 300ms ease-in-out;
}

#buttonHome svg:hover {
  transform: scale(1.1);
}

section#competenciasDesktop {
  display: inherit;
  overflow: hidden;
  position: relative;
}

section#competenciasDesktop img.textoHabilidades {
  width: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%);
  z-index: -1;
  opacity: 0.04;
}

@media (min-width: 1300px) {
  .wrapper {
    width: min(150rem, 100%);
  }

  header#home {
    background-image: none;
    background-repeat: initial;
    background-size: initial;
    background-position: initial;
  }

  header#home .wrapper-home .banner .text h1 {
    font-size: 10rem;
  }

  header#home .content .text .paragraphy p {
    font-size: 3rem;
  }

  header#home .banner video {
    filter: brightness(0.5);
    display: initial;
  }

  section#projects .wrapper header h2 {
    font-size: 5rem;
  }

  section#projects .wrapper .cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20rem;
    column-gap: 30rem;
  }

  section#sobre {
    position: relative;
    background: transparent !important;
    overflow: hidden;
  }

  section#sobre::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: -1;
  }

  section#sobre .wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    background: transparent;
  }

  section#sobre .image img {
    width: 60%;
  }

  section#sobre .content header h2 {
    text-align: left;
  }

  section#sobre .content .text {
    text-align: left;
  }

  section#competencias {
    background: transparent !important;
  }

  section#competenciasDesktop header h2 {
    display: none;
  }

  section#competenciasDesktop .cards {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 3rem;
  }

  section#competenciasDesktop .cards .card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 2rem;
    border-radius: 1rem;
    align-items: center;
    justify-content: space-between;

    /* From https://css.glass */
    background: rgba(255, 255, 255, 0.05);
    box-shadow: none;
    border: 1px solid rgba(255, 255, 255, 0.2);

    box-shadow: 6px 6px 30px #141414, -6px -6px 30px #0c0c0c;
  }

  section#competenciasDesktop .cards .card ion-icon {
    font-size: 5rem;
    color: var(--color-text);
  }

  section#competenciasDesktop .cards .card span {
    color: var(--color-text);
    font-weight: 700;
    font-size: 2rem;
  }

  section#competenciasDesktop .cards .card p {
    font-family: "Poppins", sans-serif;
    color: #6e6e6e;
    font-size: 1.6rem;
  }

  body {
    background: transparent !important;
  }
}

@keyframes move {
  50% {
    transform: translateY(10px);
  }
}

@keyframes moveicon {
  50% {
    transform: translateX(5px);
  }
}

footer iframe {
  display: block;
  margin: 10px auto;
  max-width: 600px;
  border: none;
}
.audio-controls {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 1001;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  background: rgba(0, 0, 0, 0.2);
  padding: 5px;
  border-radius: 10px;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  width: auto;
  min-width: 220px;
}

.audio-controls:hover {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.audio-buttons {
  display: flex;
  align-items: center;
  gap: 3px;
  flex-wrap: wrap;
  justify-content: center;
}

.audio-buttons button {
  padding: 5px;
  border: none;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 11px;
  min-width: 28px;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.audio-buttons button:hover {
  background: rgba(0, 83, 165, 0.5);
  transform: scale(1.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Ajuste para os botões de controle de música */
.audio-buttons button:nth-child(2),
.audio-buttons button:nth-child(5) {
  font-size: 12px;
  opacity: 0.8;
}

.audio-buttons button:nth-child(2):hover,
.audio-buttons button:nth-child(5):hover {
  opacity: 1;
}

.volume-control {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(0, 0, 0, 0.2);
  padding: 3px 6px;
  border-radius: 6px;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

#volumeDisplay {
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  min-width: 35px;
  text-align: center;
}

.music-info {
  background: rgba(0, 0, 0, 0.3);
  padding: 3px 6px;
  border-radius: 5px;
  margin-top: 3px;
  width: 100%;
  overflow: hidden;
}

.marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.track {
  display: inline-block;
  white-space: nowrap;
  animation: marquee 20s linear infinite;
  position: relative;
  transform: translateX(100%);
}

#musicName {
  color: rgba(255, 255, 255, 0.9);
  font-size: 10px;
  padding-right: 50px;
}

@keyframes marquee {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Pausa a animação quando passar o mouse */
.track:hover {
  animation-play-state: paused;
}

/* Ajustes para telas menores */
@media (max-width: 768px) {
  .audio-controls {
    min-width: 180px;
    transform: scale(0.95);
  }

  .banner video {
    object-position: center;
  }

  #home .content .text h1 {
    font-size: 4rem;
  }

  .nav-content ul li a {
    font-size: 2.4rem;
  }

  .nav-content ul {
    gap: 2rem;
  }

  .nav-content .social-links {
    margin-top: 3rem;
    gap: 2rem;
  }

  section#competenciasDesktop .cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    padding: 0 1.5rem;
  }

  section#competenciasDesktop header h2 {
    font-size: 3rem;
    margin-bottom: 3rem;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.6),
      0 0 20px rgba(255, 255, 255, 0.3);
  }

  section#competenciasDesktop .cards .card {
    padding: 1.5rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
  }

  section#competenciasDesktop .cards .card:hover {
    transform: translateY(-5px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
  }

  section#competenciasDesktop .cards .card ion-icon {
    font-size: 3rem;
    color: white;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8),
      0 0 20px rgba(255, 255, 255, 0.5);
  }

  section#competenciasDesktop .cards .card span {
    font-size: 1.6rem;
    text-align: center;
    color: white;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
  }

  section#competenciasDesktop .cards .card p {
    font-size: 1.2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
  }

  section#sobre .wrapper {
    display: flex;
    flex-direction: column;
    gap: 3rem;
  }

  section#sobre .image img {
    width: 60%;
    margin: 0 auto;
    display: block;
  }

  section#projects .wrapper .cards {
    display: flex;
    flex-direction: column;
    gap: 5rem;
  }

  section#projects .wrapper header h2 {
    font-size: 3rem;
  }
}

@media (max-width: 480px) {
  .audio-controls {
    transform: scale(0.9);
    left: 10px;
    top: 10px;
  }

  section#competenciasDesktop header h2 {
    font-size: 2.5rem;
  }

  section#competenciasDesktop .cards {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 0 1rem;
  }

  section#competenciasDesktop .cards .card {
    padding: 1.2rem;
    min-height: 180px;
  }

  section#sobre .image img {
    width: 80%;
  }
}

/* Remover qualquer outro background que possa estar interferindo */
.wrapper,
.wrapper-home,
section {
  background: transparent !important;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Efeito 3D de partículas centralizado sobre o vídeo */
#particle-3d {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

#particle-3d canvas {
  opacity: 0.25;
}
