/* ===== Variáveis CSS ===== */
:root {
  --primary-color: #FF79C6;
  --secondary-color: #9B59B6;
  --bg-dark: #1F0D33;
  --bg-medium: #3A1C5C;
  --font-color: #fff;
  --transition-time: 0.3s;
  --shadow-light: rgba(0, 0, 0, 0.3);
  --shadow-medium: rgba(0, 0, 0, 0.4);
}

/* ===== Reset e Configurações Globais ===== */
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  font-family: 'Poppins', sans-serif;
  background: var(--bg-medium);
  color: var(--font-color);
}
*, *::before, *::after {
  box-sizing: border-box;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ===== Barra de Progresso de Scroll ===== */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: var(--primary-color);
  width: 0;
  z-index: 2000;
}

/* ===== Dots de Navegação ===== */
.section-dots {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1500;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.section-dots .dot {
  width: 10px;
  height: 10px;
  background: rgba(255, 121, 198, 0.5);
  border-radius: 50%;
  transition: background var(--transition-time);
}
.section-dots .dot.active,
.section-dots .dot:hover {
  background: var(--primary-color);
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(3px);
  padding: 4px 2%;
  z-index: 1000;
  transition: all var(--transition-time);
}
.header.scrolled {
  padding: 3px 2%;
  background: rgba(0, 0, 0, 0.5);
  box-shadow: 0 2px 10px var(--shadow-light);
}
.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo img {
  max-width: 80px;
  transition: max-width var(--transition-time);
}
nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}
nav a {
  text-decoration: none;
  color: inherit;
  font-weight: 500;
  transition: color var(--transition-time), transform var(--transition-time);
}
nav a:hover {
  color: var(--primary-color);
  transform: scale(1.05);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.hamburger span {
  width: 25px;
  height: 3px;
  background: #fff;
  transition: all var(--transition-time);
}
.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
nav ul.active {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 60px;
  right: 2%;
  background: rgba(0, 0, 0, 0.8);
  padding: 15px;
  border-radius: 8px;
}

/* ===== Seção Hero ===== */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  margin-top: 0;
  padding-top: 0;
}
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, transparent 60%, var(--bg-medium) 100%),
              url("assets/hero.png") no-repeat left center;
  background-size: cover;
  background-blend-mode: multiply;
  background-position: -10% center;
  z-index: 1;
  transition: transform var(--transition-time);
  -webkit-mask-image: linear-gradient(to right, black 65%, transparent 100%);
          mask-image: linear-gradient(to right, black 65%, transparent 100%);
}
.hero-overlay {
  position: absolute;
  top: 10%;
  left: 10%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 121, 198, 0.5), transparent);
  filter: blur(30px);
  z-index: 2;
}
.hero-text {
  position: absolute;
  top: 30%;
  right: 5%;
  transform: translateY(-30%);
  z-index: 3;
  max-width: 400px;
  padding: 20px;
  text-align: left;
  animation: fadeIn 1s ease-out forwards;
  opacity: 0;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-text h1 {
  font-size: 3rem;
  margin-bottom: 10px;
  line-height: 1.2;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}
.glitch {
  position: relative;
  color: var(--font-color);
}
.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.8;
  clip: rect(0, 900px, 0, 0);
}
.glitch::before {
  animation: glitch 2s infinite linear alternate-reverse;
  color: var(--primary-color);
}
.glitch::after {
  animation: glitch 3s infinite linear alternate-reverse;
  color: var(--secondary-color);
}

.hero-text h1 span {
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-text .tagline {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #ccc;
}
.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  line-height: 1.5;
}
.btn-primary {
  display: inline-block;
  background: #6C43FF;
  color: #fff;
  padding: 14px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: background var(--transition-time), transform var(--transition-time);
}
.btn-primary:hover {
  background: #7C55FF;
  transform: scale(1.05);
}
.scroll-indicator {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}
.scroll-indicator a {
  display: inline-block;
  color: var(--font-color);
  font-size: 2rem;
  line-height: 1;
  text-decoration: none;
  animation: bounce 2s infinite;
  transition: color var(--transition-time);
}
.scroll-indicator a:hover {
  color: var(--primary-color);
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-5px); }
}

/* ===== Seção Sobre - Versão Corrigida ===== */
.sobre {
  position: relative;
  z-index: 3;
  /* Em vez de row, use column */
  display: flex;
  flex-direction: column;
  align-items: center;     /* Centraliza horizontalmente */
  gap: 40px;              /* Espaço entre avatar e texto */
  justify-content: center; /* Se quiser centralizar verticalmente também */
  padding: 20px;          /* Ajuste conforme necessário */         /* Mantém conteúdo contido */
}

/* Removemos completamente aquele bloco .sobre .container { content:""; ... } */

/* Agora, se você quiser um overlay sutil, faça em .sobre::before ou .sobre::after */
.sobre::before {
  /* Se quiser uma leve camada sem atrapalhar o conteúdo */
  /* Caso NÃO queira overlay adicional, remova todo este bloco */
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(270deg, #2E0F44, #3A1C5C);
  opacity: 0.1;     /* Ajuste a opacidade */
  z-index: 1;       /* Fica atrás do container de conteúdo */
}

.sobre .container {
  position: relative; /* para que conte o z-index acima do pseudo-elemento */
  z-index: 2;        /* Garantimos que o conteúdo fique acima do overlay (caso exista) */
}

/* ===== Seção Sobre ===== */
/* Nesta versão, a seção Sobre tem um fundo transparente para que os particles apareçam.
   Um pseudo-elemento leve com opacidade 0.1 adiciona um gradiente sutil sem bloquear as partículas. */
   .sobre {
    position: relative;
    background: transparent;
    padding: 80px 0;
    overflow: hidden;
  }
  .sobre::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(270deg, #2E0F44, #3A1C5C);
    opacity: 0.1;
    z-index: 1;
  }
  #particles-js {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
  }
  .sobre .container {
    position: relative;
    z-index: 2;
  }
  .sobre h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--font-color);
    text-align: center;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
    transition: transform var(--transition-time);
  }
  .sobre h2::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 3px;
    background: var(--primary-color);
    transition: width var(--transition-time) ease, left var(--transition-time) ease;
  }
  .sobre h2:hover::after {
    width: 100%;
    left: 0;
  }
  .sobre-wrapper {
  position: relative;
  z-index: 3;
  /* Em vez de row, use column */
  display: flex;
  flex-direction: column;
  align-items: center;     /* Centraliza horizontalmente */
  gap: 40px;              /* Espaço entre avatar e texto */
  justify-content: center; /* Se quiser centralizar verticalmente também */
  padding: 20px;          /* Ajuste conforme necessário */
  }
  .sobre-avatar-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  }
  .avatar-container {
    position: relative;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    overflow: hidden;
    transition: transform var(--transition-time);
    box-shadow: 0 0 15px rgba(255, 121, 198, 0.6);
  }
  .avatar-container:hover {
    transform: scale(1.05);
  }
  .avatar-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .avatar-ring {
    position: absolute;
    top: -10px;
    left: -10px;
    width: 270px;
    height: 270px;
    border: 3px solid rgba(255, 121, 198, 0.7);
    border-radius: 50%;
    animation: rotateRing 12s linear infinite;
  }
  @keyframes rotateRing {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
  }
  .sobre-info {
  text-align: center;
  max-width: 700px;       
  margin: 0 auto;        
  }


  .sobre-info p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  
  /* ===== Anéis de Proficiência ===== */
  .ring-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-bottom: 30px;
  }
  .ring-skill {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
  }
  .ring {
    --percent: 70%;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: conic-gradient(var(--primary-color) calc(var(--percent) * 1%), #4e3b70 0);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 0 10px rgba(255, 121, 198, 0.5);
    transition: transform var(--transition-time);
  }
  .ring:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(255, 121, 198, 0.8);
  }
  .ring span {
    font-size: 0.9rem;
    color: var(--font-color);
    position: relative;
    z-index: 2;
  }
  .ring-skill p {
    font-size: 0.8rem;
    margin-top: 5px;
  }
  
  /* ===== Botão CV ===== */
  .btn-cv {
    display: inline-block;
    background: var(--primary-color);
    color: var(--font-color);
    padding: 12px 24px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    transition: background var(--transition-time), transform var(--transition-time);
    animation: pulse 2s infinite;
  }
  .btn-cv:hover {
    background: #FF92D4;
    transform: scale(1.05);
  }
  @keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
  }
/* ===== Seção Projetos Recentes - Antes da Transição com Onda ===== */
.projetos,
#projetos-container {
  position: relative;
  padding: 60px 0;
  background: linear-gradient(135deg, #2D0240, #3F0678);
  text-align: center;
}

/* Título da Seção de Projetos */
#projetos-container h2,
.projetos .section-title {
  font-size: 2.8rem;
  margin-bottom: 30px;
  text-align: center;
  color: #fff;
  text-shadow: 0 0 8px rgba(0,0,0,0.6);
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
  transition: transform var(--transition-time);
}
#projetos-container h2::after,
.projetos .section-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 3px;
  background: var(--primary-color);
  transition: width 0.3s ease, left 0.3s ease;
}
#projetos-container h2:hover::after,
.projetos .section-title:hover::after {
  width: 100%;
  left: 0;
}

/* Grid de Cartões de Projeto */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 30px;
  justify-items: center;
}

/* Cartões de Projeto */
.project-card {
  position: relative;
  width: 400px;
  height: 280px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin: 0 auto;
}
.project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.5);
}

/* Ribbon de Destaque */
.ribbon {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--primary-color);
  color: #fff;
  font-weight: 600;
  font-size: 0.8rem;
  padding: 5px 10px;
  border-bottom-left-radius: 8px;
  z-index: 4;
}

/* A imagem do projeto ocupa toda a área do card */
.project-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.project-card:hover .project-image img {
  transform: scale(1.08);
}

/* Overlay de Informações */
.project-info {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  z-index: 2;
  transition: opacity 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
}
.project-card:hover .project-info {
  opacity: 1;
}
.project-info p {
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 10px;
}

/* Área para os ícones de tecnologia */
.tech-icons {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 10px;
}
.tech-icons i {
  font-size: 1.5rem;
  color: #fff;
  transition: transform 0.2s ease, color 0.2s ease;
}
.tech-icons i:hover {
  transform: scale(1.2);
  color: var(--primary-color);
}

/* Barra de Carregamento */
.project-loader {
  width: 80%;
  max-width: 220px;
  height: 16px;
  border-radius: 8px;
  border: 1px solid var(--primary-color);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
  margin: 0 auto;
}
.project-loader-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  background-size: 200% 100%;
  animation: loaderPulse 2s infinite ease-in-out;
  transition: width 0.5s ease;
}
@keyframes loaderPulse {
  0% { background-position: 0% 0%; }
  50% { background-position: 100% 0%; }
  100% { background-position: 0% 0%; }
}
.loader-text {
  font-size: 0.8rem;
  color: #eee;
  margin-top: 6px;
  text-align: center;
}
/* ===== Seção Contato ===== */
section {
  padding: 60px 0;
  text-align: center;
  margin: 0;
}
section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}


/* ===== Responsividade ===== */
@media (max-width: 900px) {
  .hero-bg {
    -webkit-mask-image: none;
    mask-image: none;
    background: linear-gradient(to right, transparent 60%, var(--bg-medium) 100%),
                url("assets/hero.png") no-repeat center center;
    background-size: cover;
    background-blend-mode: multiply;
  }
  .hero-text {
    right: 50%;
    transform: translate(50%, -50%);
    max-width: 80%;
    text-align: center;
  }
  .hero-text h1 {
    font-size: 2rem;
  }
  .hero-text::after {
    width: 200%;
    height: 80px;
    filter: blur(30px);
  }
  .projects-grid {
    grid-template-columns: 1fr;
  }
}

/**********************************/
/* VARIÁVEIS CSS                  */
/**********************************/
:root {
  --primary-color: #FF79C6;
  --secondary-color: #9B59B6;
  --bg-dark: #1F0D33;
  --bg-medium: #3A1C5C;
  --font-color: #fff;
  --transition-time: 0.3s;
  --shadow-light: rgba(0, 0, 0, 0.3);
  --shadow-medium: rgba(0, 0, 0, 0.4);
}

/**********************************/
/* RESET E CONFIGURAÇÕES GERAIS   */
/**********************************/
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  font-family: 'Poppins', sans-serif;
  background: var(--bg-medium);
  color: var(--font-color);
  /* Sticky footer: Flex layout para alinhar o footer ao fim */
  display: flex;
  flex-direction: column;
}
*, *::before, *::after {
  box-sizing: border-box;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}



/**********************************/
/* BARRA DE PROGRESSO DE SCROLL   */
/**********************************/
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: var(--primary-color);
  width: 0;
  z-index: 2000;
}

/**********************************/
/* DOTS DE NAVEGAÇÃO              */
/**********************************/
.section-dots {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1500;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.section-dots .dot {
  width: 10px;
  height: 10px;
  background: rgba(255, 121, 198, 0.5);
  border-radius: 50%;
  transition: background var(--transition-time);
}
.section-dots .dot.active,
.section-dots .dot:hover {
  background: var(--primary-color);
}

/**********************************/
/* HEADER                         */
/**********************************/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(3px);
  padding: 4px 2%;
  z-index: 1000;
  transition: all var(--transition-time);
}
.header.scrolled {
  padding: 3px 2%;
  background: rgba(0, 0, 0, 0.5);
  box-shadow: 0 2px 10px var(--shadow-light);
}
.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo img {
  max-width: 80px;
  transition: max-width var(--transition-time);
}
nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}
nav a {
  text-decoration: none;
  color: inherit;
  font-weight: 500;
  transition: color var(--transition-time), transform var(--transition-time);
}
nav a:hover {
  color: var(--primary-color);
  transform: scale(1.05);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.hamburger span {
  width: 25px;
  height: 3px;
  background: #fff;
  transition: all var(--transition-time);
}
.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
nav ul.active {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 60px;
  right: 2%;
  background: rgba(0, 0, 0, 0.8);
  padding: 15px;
  border-radius: 8px;
}

/**********************************/
/* SEÇÃO HERO                     */
/**********************************/
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  margin-top: 0;
  padding-top: 0;
}
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, transparent 60%, var(--bg-medium) 100%),
              url("assets/hero.png") no-repeat left center;
  background-size: cover;
  background-blend-mode: multiply;
  background-position: -10% center;
  z-index: 1;
  transition: transform var(--transition-time);
  -webkit-mask-image: linear-gradient(to right, black 65%, transparent 100%);
          mask-image: linear-gradient(to right, black 65%, transparent 100%);
}
.hero-overlay {
  position: absolute;
  top: 10%;
  left: 10%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 121, 198, 0.5), transparent);
  filter: blur(30px);
  z-index: 2;
}
.hero-text {
  position: absolute;
  top: 30%;
  right: 5%;
  transform: translateY(-30%);
  z-index: 3;
  max-width: 400px;
  padding: 20px;
  text-align: left;
  animation: fadeIn 1s ease-out forwards;
  opacity: 0;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-text h1 {
  font-size: 3rem;
  margin-bottom: 10px;
  line-height: 1.2;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}
.glitch {
  position: relative;
  color: var(--font-color);
}
.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.8;
  clip: rect(0, 900px, 0, 0);
}
.glitch::before {
  animation: glitch 2s infinite linear alternate-reverse;
  color: var(--primary-color);
}
.glitch::after {
  animation: glitch 3s infinite linear alternate-reverse;
  color: var(--secondary-color);
}
.hero-text h1 span {
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-text .tagline {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #ccc;
}
.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  line-height: 1.5;
}
.btn-primary {
  display: inline-block;
  background: #6C43FF;
  color: #fff;
  padding: 14px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: background var(--transition-time), transform var(--transition-time);
}
.btn-primary:hover {
  background: #7C55FF;
  transform: scale(1.05);
}
.scroll-indicator {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}
.scroll-indicator a {
  display: inline-block;
  color: var(--font-color);
  font-size: 2rem;
  line-height: 1;
  text-decoration: none;
  animation: bounce 2s infinite;
  transition: color var(--transition-time);
}
.scroll-indicator a:hover {
  color: var(--primary-color);
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-5px); }
}

/* ===== Seção Contato ===== */
.contato-advanced {
  position: relative;
  background: linear-gradient(135deg, #210A2E, #2C0E44, #210A2E);
  background-size: 300% 300%;
  animation: gradientShift 20s ease-in-out infinite;
  padding: 60px 0;
  overflow: hidden;
  z-index: 0;
}
@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.contato-advanced::before {
  content: "";
  position: absolute;
  top: -30%;
  left: -30%;
  width: 160%;
  height: 160%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 15%, transparent 60%);
  z-index: 0;
  pointer-events: none;
}

/* Sparkles (opcional) */
.sparkles-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}
.sparkle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  opacity: 0;
  animation: sparkle 2s ease-in-out infinite;
}
@keyframes sparkle {
  0%   { transform: scale(0); opacity: 1; }
  50%  { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(0); opacity: 0; }
}
.sparkle:nth-child(1) { top: 10%; left: 20%; animation-delay: 0s; }
.sparkle:nth-child(2) { top: 40%; left: 80%; animation-delay: 0.5s; }
.sparkle:nth-child(3) { top: 70%; left: 30%; animation-delay: 1s; }

/* Conteúdo da Seção de Contato */
.contato-advanced .container {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.section-title {
  font-size: 2rem;
  margin-bottom: 20px;
}
.contact-subtitle {
  margin-bottom: 40px;
  font-size: 1.1rem;
}

/* Botões de Contato */
.contact-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-bottom: 20px;
}
.btn-contact {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(45deg, #FF96D6, #AA70C8, #FF96D6);
  background-size: 200% 200%;
  animation: gradientAnimation 5s ease infinite;
  color: #fff;
  padding: 14px 30px;
  border: none;
  border-radius: 30px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: none;
  background-clip: border-box;
  transition: transform 0.3s, box-shadow 0.3s;
}
@keyframes gradientAnimation {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.btn-contact:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.5);
}
.btn-contact:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 121, 198, 0.7);
}
.btn-contact span {
  color: #fff;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s;
}
.btn-contact:hover span {
  transform: translateY(-3px);
}
