@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

:root {
  /* Cores principais */
  --color-bg: #000000;
  --color-white: #ffffff;
  --color-overlay: rgba(255, 255, 255, 0.3);
  --color-overlay-light: rgba(255, 255, 255, 0.09);
  --color-teste: rgba(84, 83, 83, 0.973);
  --color-purple: #8b5cf6;
  --color-purple-light: #7c3aed;

  /* Tipografia */
  --font-primary: "Montserrat", sans-serif;

  /* Tamanhos */
  --font-base: 14px;
}

/* Reset e Configuração Global */

html {
  font-size: var(--font-base);
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--font-primary);
}

body {
  background-color: var(--color-bg);
  color: var(--color-white);
}

.information {
  display: flex;
  flex-direction: column;
}

/* === NAVBAR PRINCIPAL === */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  justify-content: center;
  padding: 3rem 0;
}

.navbar ul {
  display: flex;
  position: relative;
  gap: 4px;
  padding: 20px 5px;
  background-color: var(--color-teste);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 600;
}

.navbar ul li {
  display: inline;
}

.navbar ul li a {
  text-decoration: none;
  color: var(--color-white);
  padding: 15px 15px;
  border-radius: 50px;
}

.indicador {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: 0;
  pointer-events: none;
}

/* === DROPDOWN MENU (FIXO) === */
.navbar-dropdown {
  position: fixed;               /* ✅ agora é fixa */
  top: 0;                        /* gruda no topo */
  left: 0;
  width: 100%;
  display: none;
  justify-content: center;
  z-index: 999;
  padding-top: 3rem;
  background: transparent;       /* mantém visual limpo */
  transition: transform 0.5s ease;
}

.navbar-hidden {
  transform: translateY(-100%);
}


.dropdown {
  position: relative;            /* botão centralizado dentro do container fixo */
  justify-content: center;
}

.dropdown-btn {
  background-color: var(--color-teste);
  backdrop-filter: blur(10px);
  color: var(--color-white);
  height: 60px;
  width: 180px;
  border: none;
  border-radius: 50px;
  padding: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background-color 0.3s ease;
  font-size: 1.2rem;
  font-weight: 600;
  z-index: 2;
  align-items: center;
}

.texto-btn {
  transition: color 0.3s ease;
}

.seta {
  display: inline-block;
  transition: transform 0.3s ease;
  font-size: 0.9rem;
}

.dropdown.open .seta {
  transform: rotate(180deg);
}

/* MENU */
.dropdown-menu {
  position: absolute;
  font-size: 1.2rem;
  font-weight: 600;
  top: 85px;
  left: 50%;
  transform: translateX(-50%) scale(0.95);
  background:  var(--color-teste);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 10px 0;
  display: none;
  flex-direction: column;
  gap: 10px;
  width: 180px;
  opacity: 0;
  pointer-events: none;
  transform-origin: top center;
  transition: all 0.3s ease;
  z-index: 1;
}

/* MENU ABERTO */
.dropdown.open .dropdown-menu {
  opacity: 1;
  transform: translateX(-50%) scale(1);
  pointer-events: auto;
}

.dropdown-item {
  position: relative;
  color: #fff;
  text-align: center;
  padding: 12px 20px;
  border-radius: 40px;
  z-index: 1;
  cursor: pointer;
  text-decoration: none;
}

/* Indicador vertical animado */
.indicador-item {
  position: absolute;
  left: 10px;
  top: 0;
  width: calc(100% - 20px);
  height: 0;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 40px;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 0;
  pointer-events: none;
}

@media (max-width: 1280px) {
  .navbar {
    display: none;
  }

  .dropdown-menu {
    display: flex;
  }
}

@media (max-width: 480px) {
  .navbar {
    display: none;
  }

  .dropdown-menu {
    display: none;
  }

  .navbar-dropdown {
    display: none;
  }
}


/* === SECTION === */


.section {
  opacity: 0;
  transform: translateY(60px);
  filter: blur(6px);
  transition: all 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.section.show {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}


/* === HOME === */

#home {
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 2rem;
}

#home .name {
  font-size: 7rem;
  margin: 0px;
  font-weight: bold;
  letter-spacing: 2px;
  color: var(--color-white);
  animation: slideFadeIn 1s forwards;
}

#home h2 {
  font-size: 2rem;
  font-weight: normal;
  color: var(--color-white);
  margin: 0;
}

#home .social-midia {
  display: flex;
  list-style-type: none;
  justify-content: center;
  gap: 30px;
}

#home .social-midia li img {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  transition: transform 0.5s ease, filter 0.5s ease;
  cursor: pointer;
}

#home .social-midia li img:hover {
  transform: scale(1.2);
  filter: brightness(1.2);
}

#caracteristica {
  border-right: 2px solid var(--color-white);
  padding-right: 2px;
  white-space: nowrap;
  animation: blink 0.8s infinite;
}

/* RESPONSIVIDADE HOME */

@media (max-width: 1024px) {
  #home .name {
    font-size: 5rem;
  }
  #home h2 {
    font-size: 2rem;
  }
  #home .social-midia li img {
    width: 60px;
    height: 60px;
  }
}

@media (max-width: 768px) {
  #home .name {
    font-size: 4rem;
  }
  #home h2 {
    font-size: 1.8rem;
  }
  #home .social-midia li img {
    width: 50px;
    height: 50px;
  }

  #home .social-midia {
    gap: 20px;
  }
}

@media (max-width: 480px) {
  #home .name {
    font-size: 4rem;
  }
  #home h2 {
    font-size: 1.8rem;
  }
  #home .social-midia li img {
    width: 60px;
    height: 60px;
  }

  #home .social-midia {
    gap: 20px;
  }
}


/* === ABOUT === */

#about {
  display: flex;
  height: 100%;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  padding-bottom: 170px;
}

#about .title {
  text-align: center;
  justify-content: center;
  font-size: 3.5rem;
  font-weight: bold;
  color: var(--color-white);
}

#about .description {
  text-align: center;
  color: var(--color-white);
  font-style: italic;
  font-weight: 500;
}

#about .information {
  display: flex;
  gap: 20px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

#about .phrase {
  color: var(--color-white);
  font-style: italic;
  font-weight: 500;
}

#about .box-about {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

#about .box-about button {
  height: 50px;
  width: 200px;
  border: none;
  border-radius: 5px;
  font-size: 1.2rem;
  font-weight: 600;
  background-color: var(--color-purple-light);
  color: var(--color-white);
  cursor: pointer;
}

#about .description-about {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 50px 80px;
  width: 1000px;
  height: auto;
  background-color: var(--color-overlay-light);
  color: var(--color-white);
  text-align: justify ;
  justify-content: center;
  border-radius: 15px;
  font-weight: 500;
  font-size: 1.3rem;
  line-height: 25px;
}

#about .description-about p strong{
  color: var(--color-purple);
}


#about .box-about button:hover {
  background-color: var(--color-purple);
  color: var(--color-white);
  transition: background-color 0.5s ;
}

/* RESPONSIVIDADE ABOUT */

@media (max-width: 1024px) {
  #about {
    height: 100%;
    padding: 0 100px 100px 100px;
    gap: 30px;
  }

  #about .information {
    gap: 10px;
  }

  #about .description-about {
    padding: 30px 50px;
    width: auto;
    height: auto;
    gap: 20px;
  }
}

@media (max-width: 768px) {

  #about {
    height: auto;
    padding: 0 20px 100px 20px;
  }

  #about .information .title {
    font-size: 3rem;
    font-weight: bold;
  }

  #about .description-about {
    gap: 20px;
    padding: 30px 40px;
    width: 100%;
    height: auto;
    text-align: left;
    word-break: keep-all;
    font-size: 1.2rem;
    font-weight: 500;
  }

  #about .box-about button {
    width: 200px;
    font-size: 1.3rem;
    font-weight: 600;
  }
}

@media (max-width: 480px) {

  #about {
    height: auto;
    gap: 20px;
    padding: 0 20px 100px 20px;
  }

  #about .box-about button {
    width: 100%;
    font-size: 1.2rem;
    font-weight: 600;
  }

  #about .phrase {
    text-align: center;
    color: var(--color-white);
    font-size: 1.2rem;
    font-style: italic;
    font-weight: 600;
    max-width: 800px;
  }

}


/* === SKILLS === */

#skills {
  display: flex;
  height: 100%;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}

#skills .information {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

#skills .title {
  text-align: center;
  justify-content: center;
  font-size: 3.5rem;
  font-weight: bold;
  color: var(--color-white);
}

#skills .description {
  text-align: center;
  color: var(--color-white);
  font-style: italic;
  font-weight: 500;
  max-width: 900px;
}

#skills .skills-nav {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 980px;
  height: 100px;
  background-color: var(--color-overlay-light);
  border-radius: 10px;
  padding: 10px 20px;
}

#skills .skills-nav .arrow-left img {
  display: none;
  width: 25px;
  height: 25px;
} .arrow-right img {
  display: none;
  width: 25px;
  height: 25px;
}

#skills .skills-nav .skills-button {
  display: flex;
  width: 100%;
  height: 80px;
  justify-content: space-around;
  gap: 10px;
}

#skills .skills-nav .skills-button button {
  justify-content: center;
  align-items: center;
  gap: 3px;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  width: 100%;
  border-radius: 10px;
  border: none;
  font-size: 1.3rem;
  font-weight: 700;
  background-color: transparent;
  color: var(--color-white);
}

#skills .skills-nav .skills-button button img {
  justify-content: center;
  width: 25px;
  height: 25px;
}

#skills .skills-button button:hover  {
  background-color: var(--color-overlay-light);
  color: var(--color-white);
  transition: background-color 0.3s ;
}

#skills .skills-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr); 
  justify-content: center; 
  justify-items: center; 
  gap: 30px;
  width: 100%;
  max-width: 1200px; 
  transition: opacity 0.4s ease;
  margin-bottom: 100px;
}

#skills .skill-card {
  background-color: var(--color-overlay-light);
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  width: 180px;
  height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 0 0 transparent;
}

#skills .skill-card img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 10px;
}

#skills .skill-card p {
  color: var(--color-white);
  font-size: 1.2rem;
  font-weight: 500;
}

.skill-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(255,255,255,0.15), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

#skills .skill-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 0px 30px rgba(139, 92, 246, 0.5);
  border: 1px solid var(--color-purple);
}

.skill-card:hover::before {
  opacity: 1;
}

#skills .skills-button button.active {
  background-color: var(--color-overlay-light);
  color: var(--color-white);
}

.section.show {
  animation: fadeUp 1s ease forwards;
}

/* ANIMAÇÕES SKILS */

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

@keyframes fadeUpCard {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVIDADE SKILLS */

@media (max-width: 1280px) {

  #skills .skills-grid {
    grid-template-columns: repeat(4, 0fr); 
  }
}

@media (max-width: 1024px) {
  #skills{
    height: 100%;
    padding: 0 100px;
    gap: 30px;
  }

  #skills .skills-nav {
    width: 100%;
    min-width: 700px;
  }


  #skills .skills-nav .skills-button {
    display: flex;
    height: 80px;
    width: 100%;
    justify-content: space-between;
    gap: 10px;
  }

  #skills .skills-nav .skills-button button {
    width: 100%;
    font-size: 1.3rem;
    font-weight: 600;
  }
  
  #skills .skills-nav .skills-button button img {
    justify-content: center;
    width: 25px;
    height: 25px;
  }

  #skills .skills-button button:hover  {
    background-color: var(--color-overlay-light);
    color: var(--color-white);
    transition: background-color 0.3s ;
  }
  
}

@media (max-width: 768px) {

  #skills {
    height: auto ;
    padding: 0 20px;
    gap: 20px;
  }

  #skills .information {
    gap: 10px;
  }

  #skills .information .title {
    font-size: 3rem;
    font-weight: bold;
  }

  #skills .description {
    text-align: center;
    color: var(--color-white);
    font-size: 1.2rem;
    font-style: italic;
    font-weight: 500;
    max-width: 800px;
  }

  #skills .skills-grid {
    grid-template-columns: repeat(3, 0fr);
  }

  #skills .skills-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-width: 100px;
    gap: 10px;
    padding: 10px 20px;
  }

  #skills .skills-tab {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
    width: 100%;
    gap: 10px;
  }

  #skills .skills-nav .skills-button {
    align-items: center;
    height: 80px;
    width: 100%;
    justify-content: center;
    gap: 10px;
  }

  #skills .skills-nav .skills-button button {
    height: 80px;
    width: 300px;
    font-size: 1.2rem;
    font-weight: 600;
  }
  
  #skills .skills-nav .skills-button button img {
    justify-content: center;
    width: 30px;
    height: 30px;
  }

  #skills .skills-button button:hover  {
    background-color: var(--color-overlay-light);
    color: var(--color-white);
    transition: background-color 0.3s ;
  }
}

@media (max-width: 600px) {
  #skills {
    padding: 0 20px;
  }

  #skills .description {
    text-align: center;
    color: var(--color-white);
    font-size: 1.2rem;
    font-style: italic;
    font-weight: 500;
    max-width: 800px;
  }

  #skills .skills-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-width: 400px;
    max-width: 400px;
    gap: 20px;
    padding: 10px 30px;
  }

  #skills .skills-nav .arrow-left img {
    display: block;
    width: 25px;
    height: 25px;
    cursor: pointer;
  } .arrow-right img {
    cursor: pointer;
    display: block;
    width: 25px;
    height: 25px;
  }

  #skills .skills-nav .skills-button {
    display: flex;
    height: 80px;
    width: 100%;
    gap: 10px;
  }

  #skills .skills-nav .skills-button button {
    justify-content: center;
    align-items: center;
    gap: 3px;
    display: flex;
    flex-direction: column-reverse;
    cursor: pointer;
    width: 100%;
    border-radius: 10px;
    border: none;
    font-size: 1.3rem;
    font-weight: 700;
    background-color: transparent;
    color: var(--color-white);
    display: none;
  }

  #skills .skills-nav .skills-button button.active {
    display: flex;
    flex-direction: row;
    gap: 10px;
    font-size: 1.6rem;
    justify-content: center;
    width: 100%;
  }

  #skills .skills-nav .skills-button button img {
    justify-content: center;
    width: 30px;
    height: 30px;
  }

  #skills .skills-grid {
    grid-template-columns: repeat(2, 0fr);
  }
}

/* === PROJECTS === */

#projects {
  display: flex;
  height: auto;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  padding-bottom: 100px;
}

#projects .information {
  display: flex;
  gap: 20px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

#projects .title {
  text-align: center;
  justify-content: center;
  font-size: 3.5rem;
  font-weight: bold;
  color: var(--color-white);
}

#projects .description {
  text-align: center;
  color: var(--color-white);
  font-style: italic;
  font-weight: 500;
  max-width: 800px;
}

#projects .projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-content: center;
  justify-items: center;
  gap: 20px;
  width: 100%;
  max-width: 1200px;
  margin: auto;
  transition: opacity 0.4s ease;
  margin-bottom: 100px;
}

#projects .projects-card {
  display: flex;
  flex-direction: column;
  background-color: var(--color-overlay-light);
  border: 1px solid var(--color-overlay-light);
  background: var(--color-overlay-light);
  width: 500px;
  height: auto;
  padding: 20px;
  gap: 15px;
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  transition: all 0.4s ease;
  transform: translateY(0);
}

#projects .projects-card .projects-img {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  height: 100%;
}

/* imagem com zoom suave */
#projects .projects-card img {
  background-color: var(--color-purple-light);
  width: 100%;
  height: 260px;
  border-radius: 15px;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.6s ease;
}

#projects .projects-card .projects-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
}

#projects .projects-card h1 {
  color: var(--color-white);
  font-size: 2rem;
  font-weight: 600;
}

#projects .projects-card p {
  color: var(--color-white);
  text-align: justify;
  font-size: 1.1rem;
  font-weight: 300;
}

#projects .projects-card button {
  margin-top: auto;
  display: block;
  background-color: var(--color-purple-light);
  border: 0px solid var(--color-overlay-light);
  color: var(--color-white);
  align-self: flex-end;
  padding: 10px 30px;
  height: auto;
  border-radius: 5px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
}

#projects .projects-card button a {
  text-decoration: none;
  color: var(--color-white);
}


/* === efeito hover refinado === */
#projects .projects-card:hover {
  border: 1px solid var(--color-purple);
  box-shadow: 0 0 30px rgba(139, 92, 246, 0.5);
}

/* apenas a imagem faz o zoom, o card fica fixo */
#projects .projects-card:hover .projects-img img {
  transform: scale(1.1);
}

#projects .projects-info button:hover {
  transform: scale(1.05);
  transition: 0.1s;
}

#projects .projects-card button:active{
  background-color: var(--color-purple);
}

/* RESPOSIVIDADE PROJETOS */

@media (max-width: 1600px) {
  #projects .projects-grid {
    grid-template-columns: repeat(2, 0fr);
  }
}

@media (max-width: 1024px) {
  #projects .projects-grid {
    grid-template-columns: repeat(1, 0fr)
  }

  #projects {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  #projects {
    gap: 20px;
  }

  #projects .information {
    gap: 10px;
  }

  #projects .information .title {
    font-size: 3rem;
    font-weight: bold;
  }

  #projects .description {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  #projects {
    padding: 0 20px 100px 20px;
  }

  #projects .description {
    text-align: center;
    color: var(--color-white);
    font-size: 1.2rem;
    font-style: italic;
    font-weight: 500;
    max-width: 800px;
  }

  #projects .projects-card h1 {
    color: var(--color-white);
    font-size: 1.8rem;
    font-weight: 600;
  }

  #projects .projects-grid {
    display: grid;
    grid-template-columns: repeat(1, 0fr);
    justify-content: center;
    justify-items: center;
    gap: 20px;
    margin: 0;
  }

  #projects .projects-card {
    display: flex;
    flex-direction: column;
    background-color: var(--color-overlay-light);
    border: 1px solid var(--color-overlay-light);
    background: var(--color-overlay-light);
    width: 400px;
    height: auto;
    padding: 20px;
    gap: 15px;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    transition: all 0.4s ease;
    transform: translateY(0);
  }

}

/* === CONTATO === */

#contact {
  display: flex;
  height: auto;
  flex-direction: column; 
  align-items: center;
  gap: 50px;
}

#contact .title {
  text-align: center;
  justify-content: center;
  font-size: 3.5rem;
  font-weight: bold;
  color: var(--color-white);
}

#contact .description {
  text-align: center;
  color: var(--color-white);
  font-style: italic;
  font-weight: 500;
}

#contact .information {
  display: flex;
  gap: 20px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

#contact .contact-grid {
  width: 100%;
  display: flex;
  justify-content: center;
}

#contact .contact-container {
  background-color: #151515;
  padding: 40px;
  border-radius: 12px;
  max-width: 1000px;
  width: 100%;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.5);
}

#contact .contact-container h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  color: #fff;
}

/*  FORM STRUCTURE  */

#contact .contact-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

#contact .form-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

#contact .form-group {
  display: flex;
  flex-direction: column;
  flex: 1;
}

#contact .full-width {
  width: 100%;
}

#contact label {
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 1.1rem;
  color: var(--color-white);
}

/*  INPUTS & TEXTAREA  */

#contact input,
textarea {
  background-color: #0a0a0b;
  border: 1px solid #222;
  color: #fff;
  padding: 12px 15px;
  border-radius: 8px;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

#contact input:focus,
textarea:focus {
  border-color: var(--color-purple);
  outline: none;
  box-shadow: 0 0 8px rgba(139, 92, 246, 0.5);
}

#contact textarea {
  min-height: 150px;
  resize: vertical;
}

/*  BUTTON  */

#contact .send-btn {
  background-color: var(--color-purple-light);
  border: none;
  padding: 15px;
  color: #fff;
  font-weight: 600;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1.1rem;
}

#contact .send-btn:hover {
  background-color: var(--color-purple);
}

/* ===== RESPONSIVIDADE CONTATO ===== */
@media (max-width: 1024px) {
  #contact {
    padding: 0 100px;
    gap: 30px;
  }

  #contact .information {
    gap: 10px;
  }


  #contact .title {
    font-size: 3rem;
  }

  #contact .description {
    font-weight: 500;
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  #contact {
    padding: 0 20px;
    gap: 20px;
  }

  #contact .information {
    gap: 10px;
  }

  #contact .title {
    font-size: 3rem;
  }

  #contact .description {
    font-size: 1.2rem;
  }
}

/* RODAPÉ */

footer {
  display: flex;
  flex-direction: column;
  padding: 40px 0;
}

footer hr {
  font-size: medium;
}

footer p {
  text-align: center;
  font-size: 1.2rem;
  font-weight: 200;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
  }

  .contact-container {
    padding: 30px 20px;
  }
}

/* ANIMAÇÕES */

@keyframes slideFadeIn {
  to {
    opacity: 1;
    transform: translateY(4);
  }
}

@keyframes blink {
  50% {
    border-color: transparent;
  }
}

/* ===== Scroll Fade Delay (efeito suave em cascata) ===== */
.show .skill-card:nth-child(1) { animation-delay: 0.1s; }
.show .skill-card:nth-child(2) { animation-delay: 0.2s; }
.show .skill-card:nth-child(3) { animation-delay: 0.3s; }
.show .skill-card:nth-child(4) { animation-delay: 0.4s; }
.show .skill-card:nth-child(5) { animation-delay: 0.5s; }
.show .skill-card:nth-child(6) { animation-delay: 0.6s; }