/* inicio.css - Estilos específicos para a página inicial */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nunito&Sans:wght@500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@500;600;700&display=swap');

/* ===== VARIÁVEIS ESPECÍFICAS INICIO ===== */
/* ===== VARIÁVEIS GLOBAIS ===== */
:root {
  --bg-primary: #000000;
  --bg-secondary: #1a001a;
  --bg-card: #0d0013;
  --text-primary: #ffffff;
  --text-neon-pink: #ff00ff;
  --text-neon-purple: #b000ff;
  --text-warm: #f8f0e0;
  --accent-neon-pink: #ff00ff;
  --accent-neon-purple: #b000ff;
  --border-neon: #b000ff;
  --neon-purple: #b000ff;
  --neon-pink: #ff00cc;
  --neon-blue: #00ffff;
  
  /* Cores RGB para efeitos especiais */
  --rgb-purple-1: #ff00ff;
  --rgb-purple-2: #e100e1;
  --rgb-purple-3: #c400c4;
  --rgb-purple-4: #a000a0;
  --rgb-purple-5: #800080;
  --rgb-blue-1: #00ffff;
  --rgb-blue-2: #00e1e1;
  --rgb-pink-1: #ff0080;
  --rgb-pink-2: #e10070;
}
  
  /* Espaçamentos específicos */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 12px;
  --space-lg: 16px;
  --space-xl: 24px;
  --space-2xl: 32px;
  --space-3xl: 48px;
  
  /* Bordas específicas */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  
  /* Transições específicas */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.45s cubic-bezier(0.2, 0.9, 0.3, 1);
}

/* ===== TRATAMENTO DE FOTOS DE PERFIL ===== */
.avatar-ring {
  width: 143px;
  height: 143px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  padding: 10px;
  background: radial-gradient(
    circle at center,
    rgba(176, 0, 255, 0.8) 0%,
    rgba(176, 0, 255, 0.3) 50%,
    transparent 70%
  );
  margin-bottom: var(--space-2xl);
  position: relative;
  animation: neonPulse 2.5s ease-in-out infinite alternate;
  box-shadow: 0 0 30px rgba(176, 0, 255, 0.4);
  border: 1.5px solid var(--border-neon);
}

.avatar {
  width: 125px;
  height: 125px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #000000;
  background: var(--bg-primary);
  position: relative;
  transition: var(--transition-normal);
}

.avatar:hover {
  transform: scale(1.05);
  box-shadow: 0 0 40px rgba(176, 0, 255, 0.6);
}

.age-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.9);
  border: 1.5px solid var(--neon-purple);
  color: var(--neon-purple);
  font-size: 11px;
  font-weight: 700;
  display: grid;
  place-items: center;
  z-index: 3;
  box-shadow: 0 0 12px rgba(176, 0, 255, 0.6);
}

/* ===== TRATAMENTO DE TÍTULOS ===== */
.name {
  font-family: 'Dancing Script', cursive;
  font-size: clamp(32px, 7vw, 42px);
  font-weight: 700;
  margin: 0 0 var(--space-md);
  line-height: 1.1;
  color: var(--text-neon-pink);
  text-shadow: 0 0 25px rgba(255, 0, 255, 0.8);
  letter-spacing: 0.5px;
  position: relative;
  display: inline-block;
}

.name::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--text-neon-pink), transparent);
  opacity: 0.8;
}

.subtitle {
  margin: 0;
  color: var(--text-primary);
  font-size: clamp(16px, 4vw, 18px);
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  opacity: 0.95;
  text-shadow: 0 0 15px rgba(176, 0, 255, 0.6);
  margin-bottom: var(--space-xl);
}

/* ===== TRATAMENTO DE BOTÕES DE LINKS ===== */
.links {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  padding: 0 var(--space-lg);
  max-width: 500px;
  margin: 0 auto var(--space-2xl);
}

.link-card {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1.5px solid var(--border-neon);
  text-decoration: none;
  color: var(--text-primary);
  cursor: pointer;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
  box-shadow: 0 6px 25px rgba(13, 0, 19, 0.4);
}

.link-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(176, 0, 255, 0.08), rgba(13, 0, 19, 0.9));
  opacity: 1;
  transition: var(--transition-normal);
}

.link-card:hover::before {
  background: linear-gradient(135deg, rgba(176, 0, 255, 0.15), rgba(13, 0, 19, 0.85));
}

.link-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(176, 0, 255, 0.25), 0 8px 20px rgba(13, 0, 19, 0.5);
}

.link-left {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(176, 0, 255, 0.12);
  display: grid;
  place-items: center;
  font-size: 20px;
  z-index: 1;
  border: 1.5px solid rgba(176, 0, 255, 0.4);
  transition: var(--transition-normal);
}

.link-card:hover .link-left {
  background: rgba(176, 0, 255, 0.2);
  transform: scale(1.05);
}

.link-icon {
  width: 22px;
  height: 22px;
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(100%) contrast(100%);
  transition: var(--transition-normal);
}

.link-card:hover .link-icon {
  transform: scale(1.1);
}

.link-text {
  flex: 1;
  font-weight: 600;
  font-size: clamp(16px, 3vw, 18px);
  z-index: 1;
  color: var(--text-primary);
  font-family: 'Poppins', sans-serif;
  text-shadow: 0 0 12px rgba(176, 0, 255, 0.6);
  letter-spacing: 0.3px;
}

.link-right {
  font-size: 22px;
  z-index: 1;
  color: var(--neon-purple);
  transition: var(--transition-normal);
}

.link-card:hover .link-right {
  transform: translateX(3px);
}

.link-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(13, 0, 19, 0.95);
  border: 1.5px solid var(--neon-purple);
  color: var(--neon-purple);
  font-size: 9px;
  font-weight: 700;
  display: grid;
  place-items: center;
  z-index: 2;
  box-shadow: 0 0 8px rgba(176, 0, 255, 0.5);
}

/* ===== TRATAMENTO DE ÍCONES ===== */
.socials {
  display: flex;
  gap: var(--space-lg);
  margin: var(--space-2xl) 0;
  justify-content: center;
}

.circle {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: rgba(0, 0, 0, 0.85);
  text-decoration: none;
  color: var(--neon-purple);
  font-size: 20px;
  transition: var(--transition-normal);
  border: 1.5px solid var(--neon-purple);
  box-shadow: 0 4px 20px rgba(176, 0, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.social-icon {
  width: 26px;
  height: 26px;
  filter: brightness(0) saturate(100%) invert(25%) sepia(100%) saturate(5000%) hue-rotate(270deg) brightness(100%) contrast(100%);
  transition: var(--transition-normal);
}

.circle::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, transparent, rgba(176, 0, 255, 0.15), transparent);
  opacity: 0;
  transition: var(--transition-normal);
}

.circle:hover::before {
  opacity: 1;
}

.circle:hover {
  box-shadow: 0 6px 30px rgba(176, 0, 255, 0.7), 0 0 20px rgba(176, 0, 255, 0.4);
  transform: translateY(-3px);
}

.circle:hover .social-icon {
  transform: scale(1.1);
}

/* ===== TRATAMENTO DO MENU ===== */
.menu-toggle {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background: rgba(13, 0, 19, 0.9);
  border: 1.5px solid var(--border-neon);
  border-radius: var(--radius-md);
  width: 50px;
  height: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  transition: var(--transition-normal);
  box-shadow: 0 0 20px rgba(176, 0, 255, 0.3);
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--neon-purple);
  border-radius: 1px;
  transition: var(--transition-normal);
  box-shadow: 0 0 5px var(--neon-purple);
}

.menu-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 0 25px rgba(176, 0, 255, 0.6);
}

.menu-toggle.active {
  transform: rotate(90deg);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-normal);
  backdrop-filter: blur(2px);
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.side-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 85%;
  max-width: 400px;
  min-width: 280px;
  height: 100vh;
  background: var(--bg-card);
  border-right: 1.5px solid var(--border-neon);
  z-index: 1000;
  transition: var(--transition-normal);
  overflow-y: auto;
  box-shadow: 0 0 30px rgba(176, 0, 255, 0.3);
  display: flex;
  flex-direction: column;
  padding: var(--space-xl) 0;
}

.side-menu.active {
  left: 0;
}

.menu-thumbnail-container {
  position: relative;
  margin: 0 var(--space-xl) var(--space-lg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px solid var(--border-neon);
  box-shadow: 0 0 20px rgba(176, 0, 255, 0.2);
  aspect-ratio: 16/9;
}

.menu-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.menu-thumbnail-container:hover .menu-thumbnail {
  transform: scale(1.05);
}

.menu-nav {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  padding: 0 var(--space-xl);
  margin-bottom: var(--space-lg);
}

.menu-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-lg);
  background: rgba(255, 255, 255, 0.05);
  border: 1.5px solid var(--border-neon);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.menu-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(176, 0, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.menu-item:hover::before {
  left: 100%;
}

.menu-item:hover {
  background: rgba(176, 0, 255, 0.1);
  transform: translateX(5px);
}

.menu-item-icon {
  font-size: 18px;
  width: 24px;
  text-align: center;
  color: var(--neon-purple);
}

.menu-item-text {
  flex: 1;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
}

.menu-item-arrow {
  color: var(--neon-purple);
  font-size: 16px;
  transition: var(--transition-normal);
}

.menu-item:hover .menu-item-arrow {
  transform: translateX(3px);
}

.menu-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-neon), transparent);
  margin: var(--space-lg) var(--space-xl);
  opacity: 0.6;
}

/* ===== TRATAMENTO DE CARREGAMENTO INICIAL ===== */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-primary);
  display: grid;
  place-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.fade-out {
  opacity: 0;
  visibility: hidden;
}

.loading-spinner {
  width: 60px;
  height: 60px;
  border: 4px solid rgba(176, 0, 255, 0.3);
  border-top: 4px solid var(--neon-purple);
  border-radius: 50%;
  animation: spin 1.2s linear infinite;
}

/* ===== ANIMAÇÕES ESPECÍFICAS ===== */
@keyframes neonPulse {
  0%, 100% {
    box-shadow: 
      0 0 25px rgba(176, 0, 255, 0.7),
      0 0 50px rgba(176, 0, 255, 0.5),
      0 0 75px rgba(176, 0, 255, 0.3);
  }
  50% {
    box-shadow: 
      0 0 35px rgba(176, 0, 255, 0.9),
      0 0 70px rgba(176, 0, 255, 0.7),
      0 0 95px rgba(176, 0, 255, 0.5);
  }
}

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

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== LAYOUT RESPONSIVO ESPECÍFICO ===== */
@media (min-width: 768px) {
  .links {
    grid-template-columns: 1fr;
    max-width: 600px;
    gap: var(--space-xl);
  }
  
  .avatar-ring {
    width: 160px;
    height: 160px;
  }
  
  .avatar {
    width: 140px;
    height: 140px;
  }
  
  .name {
    font-size: clamp(36px, 6vw, 44px);
  }
}

@media (min-width: 1024px) {
  .hero {
    padding: var(--space-3xl) var(--space-2xl) var(--space-2xl);
  }
  
  .profile-wrap {
    display: grid;
    grid-template-columns: 280px 1fr;
    grid-template-rows: auto auto auto;
    gap: 0 50px;
    align-items: start;
    text-align: left;
    margin-bottom: 60px;
  }
  
  .avatar-ring {
    grid-column: 1;
    grid-row: 1 / span 3;
    width: 250px;
    height: 250px;
    margin-bottom: 0;
    margin-left: -20px;
    align-self: center;
  }
  
  .avatar {
    width: 225px;
    height: 225px;
  }
  
  .name {
    grid-column: 2;
    grid-row: 1;
    font-size: 4rem;
    margin-bottom: 0;
    margin-top: 40px;
    align-self: end;
    text-align: left;
  }
  
  .subtitle {
    grid-column: 2;
    grid-row: 2;
    font-size: 1.6rem;
    margin-bottom: 0;
    text-align: left;
    white-space: nowrap;
    align-self: start;
    margin-top: 15px;
  }
  
  .socials {
    grid-column: 2;
    grid-row: 3;
    justify-content: flex-start;
    margin: 25px 0 0 0;
    gap: 25px;
  }
  
  .links {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1000px;
    gap: 25px;
    margin: 40px auto 80px;
    padding: 0;
  }
  
  .link-card {
    padding: 28px 22px;
    min-height: 110px;
  }
  
  .link-left {
    width: 52px;
    height: 52px;
  }
  
  .link-text {
    font-size: 18px;
  }
}

@media (min-width: 1440px) {
  .hero {
    max-width: 1400px;
    padding: 100px 60px 80px;
  }
  
  .profile-wrap {
    grid-template-columns: 300px 1fr;
    gap: 0 60px;
    margin-bottom: 70px;
  }
  
  .avatar-ring {
    width: 280px;
    height: 280px;
    margin-left: -30px;
  }
  
  .avatar {
    width: 252px;
    height: 252px;
  }
  
  .name {
    font-size: 4.5rem;
    margin-top: 50px;
  }
  
  .subtitle {
    font-size: 1.8rem;
    margin-top: 20px;
  }
  
  .links {
    max-width: 1100px;
    gap: 30px;
    margin: 50px auto 100px;
  }
}

/* ===== ESTILOS PARA O SUBMENU PRIVACY ===== */
.privacy-container {
  position: relative;
  grid-column: 1;
}

.privacy-main {
  cursor: pointer;
  position: relative;
  z-index: 10;
}

.privacy-submenu {
  display: none;
  grid-template-columns: 1fr;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
  position: relative;
  z-index: 5;
  animation: fadeIn 0.3s ease;
}

.privacy-submenu.show {
  display: grid;
}

.privacy-sub {
  transform: scale(0.98);
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1.5px solid var(--border-neon) !important;
  padding: var(--space-md) var(--space-lg) !important;
  opacity: 0.9;
  min-width: 260px;
}

.privacy-sub:hover {
  transform: scale(1);
  background: rgba(255, 255, 255, 0.1) !important;
  opacity: 1;
}

.privacy-main .link-right {
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  display: inline-block;
}

.privacy-main.active .link-right {
  transform: rotate(180deg) scale(1.1);
}

/* Estilos específicos para imagens nos sub-botões */
.privacy-sub .link-left {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(176, 0, 255, 0.12);
  display: grid;
  place-items: center;
  border: 1.5px solid rgba(176, 0, 255, 0.4);
  transition: var(--transition-normal);
  overflow: hidden;
}

.privacy-sub .link-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: var(--transition-normal);
}

.privacy-sub:hover .link-icon {
  transform: scale(1.15);
  filter: brightness(0) invert(1) drop-shadow(0 0 8px var(--neon-purple));
}

.privacy-sub:hover .link-left {
  background: rgba(176, 0, 255, 0.2);
  transform: scale(1.05);
}

/* Responsividade para submenu */
@media (min-width: 1024px) {
  .privacy-container {
    grid-column: 1;
    grid-row: 1;
    position: relative;
    height: fit-content;
  }
  
  .privacy-submenu {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm);
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: var(--space-sm);
    z-index: 100;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    box-shadow: none !important;
  }
  
  .privacy-submenu.show {
    display: grid;
    animation: slideDown 0.3s ease;
  }
  
  .privacy-sub {
    padding: var(--space-md) var(--space-xl) !important;
    min-height: auto;
    margin: 0;
    min-width: 240px;
  }
}

/* ===== FOOTER ESPECÍFICO ===== */
.footer {
  background: var(--bg-card);
  border-top: 1.5px solid var(--border-neon);
  margin-top: var(--space-3xl);
  padding: var(--space-xl) var(--space-lg);
  display: flex;
  justify-content: center;
}

.footer .socials {
  margin: 0;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer .circle {
  width: auto;
  padding: var(--space-sm) var(--space-md);
  font-size: clamp(14px, 2.5vw, 15px);
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
  font-family: 'Poppins', sans-serif;
  box-shadow: 0 2px 6px rgba(176, 0, 255, 0.25);
}

/* Ajustes mobile para footer */
@media (max-width: 480px) {
  .footer {
    padding: var(--space-lg) var(--space-md);
  }
  
  .footer .socials {
    gap: var(--space-sm);
  }
  
  .footer .circle {
    padding: var(--space-xs) var(--space-sm);
    font-size: 13px;
  }
}.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-primary);
  display: grid;
  place-items: center;
  z-index: 9999;
}

.loading-spinner {
  width: 60px;
  height: 60px;
  border: 4px solid rgba(176, 0, 255, 0.3);
  border-top: 4px solid var(--neon-purple);
  border-radius: 50%;
  animation: spin 1.2s linear infinite;
}

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