/* ============================== */
/*        CLASSES  GLOBAIS        */
/* ============================== */
html, body {
  height: 100dvh;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Arial', sans-serif;
  background-color: #0a0a23;
  background-image:
    linear-gradient(
      107deg,
      transparent 85%,
      rgba(0, 195, 255, 0.1) 92%,
      rgba(0, 195, 255, 0.25) 96%,
      rgba(0, 195, 255, 0.4) 100%,
      transparent 120%
    ),
    linear-gradient(135deg, #030a13 20%, #080c17 80%);
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  color: #e0e6f0;
  overflow-x: hidden;
}

main {
    flex: 1;
}

.container{
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
}


/* ============================== */
/*             HEADER             */
/* ============================== */
.header {
  position: absolute;
  top: 2.5dvh;
  left: 3dvw;
  display: flex;
  align-items: center;
  z-index: 10;
}

/* ------------ LOGO ------------ */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  height: 64px;
  width: auto;
}

.logo span {
  font-size: 1.8rem;
  font-weight: bold;
  color: #dbeafe;
  font-family: 'Arial', sans-serif;
}

a.logo, a.logo:hover {
  text-decoration: none; 
}

a.logo span {
  color: #dbeafe; 
}

/* ----------- NAVBAR ----------- */
.menu-hamburguer  {
  display: none;
}

.navbar {
  position: absolute;
  top: 2.5dvh;
  right: 3dvw;
  z-index: 10;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 36px;
  margin: 0;
  padding: 0;
}

.navbar a {
  text-decoration: none;
  font-size: 1rem;
  color: #dbeafe;
  font-weight: 500;
  transition: color 0.3s ease;
  letter-spacing: 1px;
}

.navbar a:hover {
  color: #38bdf8; /* Azul claro ao passar o mouse */
}

/* ----- RESPONSIVO  HEADER ----- */
@media screen and (max-width: 768px) {
  .header {
    position: fixed; 
    width: 100%;
    flex-direction: row;
    display: flex;
    justify-content: space-between; 
    align-items: center;
    padding: 0.8rem 1.5rem;    
    z-index: 1000;
    top: 0;
    left: 0;
    box-sizing: border-box;
    background-color: #030a13;
  }

  .logo img {
    height: 40px;
  }

  .logo span {
    font-size: 1.5rem;
  }

  .menu-hamburguer {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    flex-grow: 1;
    text-align: right;
    padding-right: 2.5rem;
  }
  
  .navbar {
    position: fixed;
    top: 4rem;
    left: 3rem;
    width: 35%;
    height: 30dvh;
    background: #080c17;
    transform: translateX(350%);
    transition: transform 0.3s ease-in-out;
    padding-top: 1.5rem;
    filter: drop-shadow(0 0 10px rgba(0, 195, 255, 0.2));
    z-index: 999;
    background-color: #080c17;
  }
 
  .navbar.ativo {
    transform: translateX(150%);
  }

  .navbar ul {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }

  .navbar ul li {
    opacity: 0;
  }

  .navbar.ativo ul li {
    animation: fadeInUp 0.5s ease forwards;
  }
  
  .navbar a:hover {
    background-color: rgba(0, 195, 255, 0.15);
    color: #38bdf8;
  }

  .navbar.ativo ul li:nth-child(1) { animation-delay: 0.2s; }
  .navbar.ativo ul li:nth-child(2) { animation-delay: 0.3s; }
  .navbar.ativo ul li:nth-child(3) { animation-delay: 0.4s; }
  .navbar.ativo ul li:nth-child(4) { animation-delay: 0.5s; }
  .navbar.ativo ul li:nth-child(5) { animation-delay: 0.6s; }

}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ============================== */
/*              HOME              */
/* ============================== */
/* -------- TEXTO  INTRO -------- */
.intro {
  margin-left: 5dvw;
  margin-top: 15dvh;
  z-index: 1;
  position: relative;
}

.intro h1 {
  max-width: 50%;
  font-size: 3rem;
  color: #f1f5f9;
  margin-bottom: 1rem;
  font-weight: 800;
}

.intro p {
  max-width: 50%;
  font-size: 1.1rem;
  color: #cbd5e1;
  line-height: 1.6;
}

/* -------- FOTO  PERFIL -------- */
.foto-perfil-container {
  position: absolute;
  top: 0dvh;
  right: 12dvw;
  width: 300px;
  aspect-ratio: 1 / 1;
  pointer-events: none;
  z-index: -1;
}

.foto-perfil-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  clip-path: polygon(
    20% 0%,
    80% 0%,
    100% 45%,
    80% 90%,
    20% 90%,
    0% 45%
  );
  z-index: -1;
}

/* ---- CARTÕES  INTERATIVOS ---- */
.cards-container {
  position: relative;
  display: flex;
  justify-content: space-evenly;
  align-items: flex-start;
  gap: 2rem;
  margin: 10dvh 5dvw 0;
  flex-wrap: wrap;
}

.card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(to bottom, #0f172a, #0a0a23);
  border: 1px solid rgba(0, 195, 255, 0.4);
  border-radius: 16px;
  padding: 2rem;
  width: 300px;
  color: #e2e8f0;
  text-align: center;
  box-shadow: 0 0 10px rgba(0, 195, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(0, 195, 255, 0.4);
  background: linear-gradient(to bottom, #10182c, #0a0a23);
}

.card h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
  color: #ffffff;
}

.card p {
  font-size: 1rem;
  color: #cbd5e1;
}

/* ----- DESTAQUES PROJETOS ----- */
.home .atividade-section{
  position: relative;
}

.home .atividade-section h3{
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 1rem;
}

.home .atividade-section p{
  color: #cbd5e1;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.home .atividade-section-carrossel{
  position: relative;
  gap: 2rem;
  margin: 10dvh 5dvw 0;
}

.destaques-home {
  max-width: 1200px;
  margin: 6rem auto 3rem;
  padding: 0 2rem;
  color: #e2e8f0;
}

.destaques-home h2 {
  color: #dbeafe;
  font-size: 2rem;
  border-left: 4px solid #38bdf8;
  padding-left: .75rem;
  margin-bottom: 1.5rem;
}

.card-preview {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
  gap: 1.25rem;
}

.card-spotlight {
  background: rgba(15, 23, 42, 0.45); /* bem escuro mas transparente */
  backdrop-filter: blur(10px) saturate(150%);
  -webkit-backdrop-filter: blur(10px) saturate(150%);
  border: 1px solid rgba(56,189,248,.35);
  border-radius: 14px;
  padding: 1.1rem 1.2rem;
  box-shadow: 0 0 20px rgba(0,195,255,.12);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.card-spotlight h3 { 
  margin: 0 0 .35rem; color: #fff; font-size: 1.15rem; 
}

.card-spotlight .desc { 
  color:#cbd5e1; font-size:.98rem; line-height:1.55; margin: 0 0 .75rem;
}

.skills-line { 
  display:flex; flex-wrap:wrap; gap:.5rem; margin-bottom:.75rem; 
}

.skill-chip {
  border: 1px solid rgba(148, 163, 184, .35);
  background: rgba(148, 163, 184, .08);
  border-radius: 999px;
  padding: .25rem .6rem;
  font-size: .8rem;
}

.tag-novo {
  font-size: .70rem;
  font-weight: 700;
  letter-spacing: .02em;
  padding: .16rem .45rem;
  border-radius: 999px;
  margin-left: .4rem;
  background: rgba(34,197,94,.18);
  color: #86efac;
  border: 1px solid rgba(34,197,94,.35);
}

.destaques-home .saiba-mais {
  color: #38bdf8;
  font-weight: 600;
  text-decoration: none;
}

.card-spotlight:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0,195,255,.12);
  border-color: rgba(56,189,248,.6);
}

.destaques-home .saiba-mais:hover { 
  color:#0ea5e9; 
}

/* ---- RESPONSIVO  HOMEPAGE ---- */
@media screen and (max-width: 768px) {
  .intro {
    padding-top: 2dvh;
    margin: 4dvh 1.5rem 0 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .intro h1 {
    max-width: 100%;
    margin-bottom: 1rem;
  }

  .apresentacao {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    width: 100%;
  }

  .apresentacao p {
    flex-shrink: 1;
    text-align: center;
    max-width: 100%;
    z-index: 1;
  }

  .foto-perfil-container {
    position: relative;
    width: 35dvw;
    margin-top: 3dvh;
    margin-left: 10dvw;
    flex-shrink: 0;
  }

  .foto-perfil-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    clip-path: polygon(
      20% 0%,
      80% 0%,
      100% 45%,
      80% 90%,
      20% 90%,
      0% 45%
    );
  }

  .cards-container {
    flex-direction: column;
    align-items: center;
    margin: 6dvh 1rem 3rem;
    gap: 2rem;
  }

  .card {
    width: 90%;
    padding: 1.5rem;
  }
}


/* ============================== */
/*          ATIVIDADES            */
/* ============================== */
.atividades {
  max-width: 2000px;
  margin: 8dvh auto 3rem auto;
  padding: 0 2rem 0 3rem;
  color: #e2e8f0;
}

.atividades h2 {
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 1rem;
}

.intro-atividades {
  color: #cbd5e1;
  font-size: 1.1rem;
  max-width: 1000px;
  margin-bottom: 3rem;
  line-height: 1.6;
}

/* ------ ÁREAS ATIVIDADES ------ */
.atividade-section{
  position: relative;
  gap: 2rem;
  margin: 10dvh 5dvw 0;
}

.atividade-section h3{
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 1rem;
}

.atividade-section p{
  color: #cbd5e1;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

/* ----- CARROSSEL  RIOBOTZ ----- */
.atividade-section-carrossel{
  position: relative;
}

.coverflow-carrossel-container {
    position: relative;
    width: 100%;
    max-width: 100dvw;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 100dvw;
    height: 30dvh;
}

.coverflow-carrossel-track {
    display: flex;
    align-items: center;
    position: relative;
    transform-style: preserve-3d;
}

.carrossel-itens {
    position: absolute;
    top: 50%;
    transition: 
      transform 0.5s ease-in-out, 
      opacity 0.5s ease-in-out, 
      z-index 0.5s;
}

.carrossel-itens.center .card-atividade {
    border-color: rgba(0, 195, 255, 0.6);
    box-shadow: 0 0 10dvb rgba(0, 195, 255, 0.5);
}

/* ------ BOTÕES CARROSSEL ------ */
.coverflow-carrossel-container .carrossel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    background-color: rgba(15, 23, 42, 0.5);
    color: white;
    border: 1px solid rgba(0, 195, 255, 0.4);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
    cursor: pointer;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.coverflow-carrossel-container .carrossel-button:hover {
    background-color: rgba(15, 23, 42, 0.8);
    border-color: rgba(0, 195, 255, 0.8);
}

.coverflow-carrossel-container .prev-button {
    left: 0px;
}

.coverflow-carrossel-container .prox-button {
    right: 0px;
}

/* ------- ÁREAS PROJETOS ------- */
.cards-atividades {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.card-atividade {
  background: linear-gradient(to bottom, #0f172a, #0a0a23);
  border: 1px solid rgba(0, 195, 255, 0.3);
  border-radius: 12px;
  padding: 1rem;
  width: 280px;
  color: #e2e8f0;
  box-shadow: 0 0 10px rgba(0, 195, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-atividade h4 {
  color: #ffffff;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.card-atividade p {
  color: #cbd5e1;
  font-size: 0.95rem;
  line-height: 1.4;
}

.card-atividade .saiba-mais {
  display: inline-block;
  margin-top: 0.5rem;
  color: #38bdf8;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s ease;
}

.card-atividade:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(0, 195, 255, 0.4);
}

.card-atividade .saiba-mais:hover {
  color: #0ea5e9;
}

/* -------- PROJETO NOVO -------- */
.tag-novo {
  background: #e74c3c;
  color: white;
  font-size: 0.7rem;
  font-weight: bold;
  padding: 0.2rem 0.5rem;
  border-radius: 12px;
  margin-left: 0.5rem;
  vertical-align: middle;
}

#projetos-home {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

/* ------ ESTILO  PROJETOS ------ */
.card-spotlight {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 1.2rem;
  backdrop-filter: blur(10px);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card-spotlight:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.grid-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

/* --- RESPONSIVO  ATIVIDADES --- */
@media screen and (max-width: 768px) {
  .atividades {
    padding-top: 0;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .atividades .atividade-section,
  .atividades .atividade-section-carrossel {
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .coverflow-carrossel-container {
    margin-top: 2rem;
  }

  .coverflow-carrossel-container .card-atividade {
    width: 35dvw; 
    max-width: 75dvw; 
  }

  .cards-atividades {
    justify-content: center;
  }

  .card-atividade {
    width: 100%;
    max-width: 60dvw;
  }
}

/* ============================== */
/*      PÁGINAS EM CONSTRUÇÃO     */
/* ============================== */
.construction-notice {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 4rem 2rem;
    margin: auto;
    flex-grow: 1; /* Essencial para ocupar o espaço vertical */
    color: #cbd5e1; /* Cor padrão para parágrafos */
}

.construction-notice i {
    font-size: 4rem;
    color: #38bdf8; /* Sua cor de destaque */
    margin-bottom: 1.5rem;
}

.construction-notice h3 {
    font-size: 1.75rem;
    color: #e2e8f0; /* Cor padrão para títulos */
    margin-bottom: 0.5rem;
}

.construction-notice p {
    max-width: 450px;
    font-size: 1.1rem;
    line-height: 1.6;
}


/* ============================== */
/*          CERTIFICADOS          */
/* ============================== */
.certificados {
  max-width: 1200px;
  margin: 12dvh auto 3rem auto; 
  padding: 0 2rem;
  color: #e2e8f0; 
}

.intro-cert {
  text-align: center;
  margin-bottom: 2rem;
}

.intro-cert h2 {
  color: #dbeafe;
  font-size: 2rem;
  margin-bottom: 1 rem;
  padding-left: 0.75rem;
  display: inline-block;
}

.intro-cert p {
  color: #cbd5e1;
  font-size: 1.1rem;
  max-width: 1000px;
  margin: 0 auto;
  line-height: 1.6;
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.cert-card {
  background: linear-gradient(to bottom, #0f172a, #0a0a23); 
  padding: 1rem;
  border-radius: 12px;
  border: 1px solid rgba(0, 195, 255, 0.3);
  box-shadow: 0 0 10px rgba(0,195,255, 0.05);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #e2e8f0;
}

.cert-card h3 {
  color: #ffffff;
  margin: 0.5rem 0;
}

.cert-card p {
  color: #cbd5e1;
  font-size: 0.95rem;
  text-decoration: none;
}

.cert-card-link {
  color: inherit;
  display: grid;
  grid-template-columns: auto 1fr; 
  gap: 1.2rem;
  align-items: center;
  text-decoration: none !important;
}

.cert-card-link:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 25px rgba(0, 195, 255, 0.5);
}

.cert-card-link:hover .cert-texto h3,
.cert-card-link:hover .cert-texto p {
  color: inherit;
}

.cert-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 25px rgba(0, 195, 255, 0.5);
  background: linear-gradient(to bottom, #10182c, #0a0a23);
}

/* - CERTIFICADOS  UNIVERSIDADE - */
.cert-universidade {
  max-width: 700px;
  margin: 2rem auto;
}

.cert-universidade .cert-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.2rem;
  align-items: center;
  padding: 1rem;
  background: linear-gradient(to bottom, #0f172a, #0a0a23); 
  border-radius: 12px;
  border: 1px solid rgba(0, 195, 255, 0.3);
  box-shadow: 0 0 10px rgba(0,195,255, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #e2e8f0;
}

.cert-universidade .cert-card img {
  width: 130px;
  object-fit: contain;
  border-radius: 6px;
  flex-shrink: 0;
  justify-self: center;
}

.cert-universidade .cert-texto {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cert-universidade .cert-texto h3 {
  margin: 0;
  font-size: 1.1rem;
  color: #ffffff;
}

.cert-universidade .cert-texto p {
  font-size: 0.95rem;
  color: #cbd5e1;
  margin-top: 0.3rem;
}

.cert-universidade .cert-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 25px rgba(0, 195, 255, 0.5);
}

/* ------ TIMELINE COLEGIO ------ */
.timeline-container {
  position: relative;
  max-width: 1000px;
  margin: 80px auto;
  padding: 0 20px;
}

.timeline-linha {
  content: "";
  position: absolute;
  width: 4px;
  background-color: #38bdf8;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -2px;
  z-index: 0;
}

.timeline-content {
  background: linear-gradient(to bottom, #0f172a, #0a0a23);
  padding: 1rem;
  border-radius: 12px;
  border: 1px solid rgba(0, 195, 255, 0.3);
  box-shadow: 0 0 10px rgba(0,195,255, 0.05);
  color: #e2e8f0;
}

.timeline-titulo {
  font-weight: bold;
  font-size: 1.0rem;
  color: #bae6fd;
  margin-bottom: 6px;
}

.timeline-entrada {
  position: relative;
  width: 50%;
  padding: 20px 40px;
  box-sizing: border-box;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.timeline-esquerda {
  left: 0;
  text-align: right;
}

.timeline-direita {
  left: 50%;
  text-align: left;
}

.timeline-entrada::before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  background-color: #38bdf8;
  border: 3px solid #0f172a;
  border-radius: 50%;
  z-index: 2;
  top: 32px;
}

.timeline-esquerda::before {
  right: -11px; 
}

.timeline-direita::before {
  left: -11px;
}

.timeline-entrada.visivel {
  opacity: 1;
  transform: translateY(0);
}

/* -- RESPONSIVO  CERTIFICADOS -- */
@media screen and (max-width: 640px) {
  .cert-universidade .cert-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cert-universidade .cert-texto {
    align-items: center;
  }

  .cert-universidade .cert-card img {
    width: 100px;
  }
} 

@media screen and (max-width: 768px) {
  .timeline-entrada,
  .timeline-esquerda,
  .timeline-direita {
    width: 100%;
    left: 0;
    text-align: left;
    padding-left: 20px;
    padding-right: 20px;
  }

  .timeline-entrada::before {
    left: -13px;
    right: auto;
  }

  .timeline-linha {
    left: 13px;
  }
}


/* ============================== */
/*           SOBRE  MIM           */
/* ============================== */

.sobre-mim {
  max-width: 1200px;
  margin: 12dvh auto 3rem auto;
  padding: 0 2rem;
  color: #e2e8f0;
}

.sobre-mim section {
  margin-bottom: 3rem;
}

.sobre-mim h2 {
  color: #dbeafe;
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  border-left: 4px solid #38bdf8;
  padding-left: 0.75rem;
}

.sobre-mim p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  text-align: justify;
  color: #cbd5e1;
}

/* ----------- SKILLS ----------- */
.skills-section {
  max-width: 1200px;
  margin: 10dvh auto 3rem;
  padding: 0 2rem;
}

.skills-section .titulo {
  color: #dbeafe;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: .75rem;
}

.skills-section .subtitulo {
  color: #94a3b8;
  margin-bottom: 1.75rem;
  max-width: 900px;
  line-height: 1.6;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}

.skill-card {
  background: linear-gradient(to bottom, #0f172a, #0a0a23);
  border: 1px solid rgba(0,195,255,.35);
  border-radius: 16px;
  padding: 1.25rem;
  box-shadow: 0 0 10px rgba(0,195,255,.08);
  transition: transform .25s ease, box-shadow .25s ease;
}

.skill-card h3 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: .75rem;
  letter-spacing: .3px;
}

.skill-list {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem .6rem;
}

.skill-tag {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .35rem .7rem;
  border-radius: 9999px;
  background: rgba(56,189,248,.10);
  border: 1px solid rgba(56,189,248,.35);
  color: #e2e8f0;
  font-size: .9rem;
  line-height: 1;
  white-space: nowrap;
}

.skill-tag i {
  font-size: .95rem; opacity: .9;
}

.skill-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 22px rgba(0,195,255,.35);
}

/* ------ ANIMAÇÃO  SCROLL ------ */
.visivel { 
  opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; 
}

.visivel.on { 
  opacity: 1; transform: translateY(0); 
}

/* ---- RESPONSIVO SOBRE MIM ---- */
@media (max-width: 768px) {
  .sobre-mim {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .skills-section { margin-top: 8dvh; }
}


/* ============================== */
/*             FOOTER             */
/* ============================== */

.social-menu {
  background-color: transparent;
  padding-top: 1rem;
  text-align: center;
}

.social-menu ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 0;
  margin: 0;
}

.social-menu ul li a {
  color: white;
  font-size: 1.5rem;
  transition: transform 0.3s ease;
  display: inline-block;
}

.social-menu ul li a:hover {
  transform: translateY(-6px);
  color: #00c8ff;
}

.copyright {
  text-align: center;
  font-size: 0.85rem;
  color: #a0aec0;
  margin-top: 2rem;
  padding-bottom: 1rem;
}
