/* ===== SEÇÃO SOBRE MIM ===== */
.about-section {
  width: 100%;
  max-width: 1200px;
  margin: var(--space-3xl) auto;
  padding: 0 var(--space-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.about-container {
  width: 100%;
  max-width: 1100px;
  position: relative;
  z-index: 2;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3xl);
  margin-top: var(--space-xl);
}

.about-text-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.about-text-content {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  border: 1.5px solid var(--border-neon);
  box-shadow: 0 8px 30px rgba(13, 0, 19, 0.5);
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

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

.about-text-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(176, 0, 255, 0.25);
}

.about-text-content:hover::before {
  background: linear-gradient(135deg, rgba(176, 0, 255, 0.12), rgba(13, 0, 19, 0.9));
}

.about-subtitle {
  font-family: 'Dancing Script', cursive;
  font-size: clamp(28px, 5vw, 36px);
  color: var(--text-neon-pink);
  margin-bottom: var(--space-lg);
  text-shadow: 0 0 20px rgba(255, 0, 255, 0.6);
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.about-description {
  color: var(--text-primary);
  line-height: 1.7;
  font-size: clamp(15px, 2vw, 16px);
  margin-bottom: var(--space-lg);
  position: relative;
  z-index: 1;
  font-family: 'Nunito Sans', sans-serif;
}

.about-description strong {
  color: var(--text-neon-purple);
  font-weight: 600;
}

.about-signature {
  margin-top: var(--space-xl);
  text-align: center;
  position: relative;
  z-index: 1;
}

.signature-text {
  font-family: 'Dancing Script', cursive;
  font-size: clamp(24px, 4vw, 30px);
  color: var(--text-neon-pink);
  text-shadow: 0 0 15px rgba(255, 0, 255, 0.5);
  display: inline-block;
}

.signature-line {
  width: 60%;
  height: 2px;
  margin: var(--space-xs) auto 0;
  background: linear-gradient(90deg, transparent, var(--neon-purple), transparent);
  border-radius: 50px;
  animation: signatureGlow 3s ease-in-out infinite;
}

.about-image-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-image-frame {
  position: relative;
  width: 100%;
  max-width: 380px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(13, 0, 19, 0.5);
  border: 1.5px solid var(--border-neon);
  background: var(--bg-card);
  transition: var(--transition-normal);
}

.about-image-frame:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(176, 0, 255, 0.25);
}

.about-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: var(--transition-normal);
}

.about-image-frame:hover .about-image {
  transform: scale(1.05);
}

/* ===== SEÇÃO DE PODCASTS ===== */
.podcasts-section {
  width: 100%;
  max-width: 1400px; /* Aumentado para acomodar cards maiores */
  margin: 0 auto;
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.podcasts-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  width: 100%;
  max-width: 1400px; /* Aumentado */
  margin: 0 auto;
  padding: 0 var(--space-lg);
  justify-content: center;
}

.podcast-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border-neon);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition-normal);
  box-shadow: 0 6px 25px rgba(13, 0, 19, 0.4);
  width: 100%;
  max-width: 100%; /* Removida limitação máxima */
  margin: 0 auto;
}

.podcast-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(176, 0, 255, 0.25);
}

.previews-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  width: 100%;
  max-width: 1400px; /* Aumentado */
  margin: 0 auto;
  padding: var(--space-lg) var(--space-xl);
}

.expandable-section {
  background: var(--bg-card);
  border: 1.5px solid var(--border-neon);
  border-radius: var(--radius-lg);
  margin: var(--space-lg) 0;
  padding: var(--space-xl);
  position: relative;
  transition: var(--transition-normal);
  box-shadow: 0 6px 25px rgba(13, 0, 19, 0.4);
  opacity: 0;
  transform: translateY(25px);
  animation: slideUpFade 0.7s ease-out forwards;
}

.expandable-section:nth-child(1) { animation-delay: 0.1s; }
.expandable-section:nth-child(2) { animation-delay: 0.2s; }
.expandable-section:nth-child(3) { animation-delay: 0.3s; }

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: var(--space-sm) 0;
}

.section-title {
  font-family: 'Dancing Script', cursive;
  font-size: clamp(22px, 4vw, 26px);
  color: var(--text-neon-pink);
  margin: 0;
  text-shadow: 0 0 15px rgba(255, 0, 255, 0.6);
  font-weight: 700;
}

.section-arrow {
  color: var(--neon-purple);
  font-size: 20px;
  transition: var(--transition-normal);
}

.section-content {
  margin-top: var(--space-xl);
  display: none;
}

.expandable-section.expanded .section-content {
  display: block;
}

.expandable-section.expanded .section-arrow {
  transform: rotate(180deg);
}

.carousel {
  position: relative;
  margin: var(--space-xl) 0;
}

.carousel-image {
  width: 100%;
  max-width: 350px;
  height: 350px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin: 0 auto;
  display: block;
  border: 2.5px solid var(--border-neon);
  box-shadow: 0 8px 30px rgba(13, 0, 19, 0.5);
  transition: var(--transition-normal);
}

.carousel-nav {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(176, 0, 255, 0.4);
  border: none;
  cursor: pointer;
  transition: var(--transition-normal);
}

.carousel-dot.active {
  background: var(--neon-purple);
  transform: scale(1.3);
  box-shadow: 0 0 10px rgba(176, 0, 255, 0.8);
}

.carousel-arrows {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  padding: 0 var(--space-lg);
}

.carousel-arrow {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: rgba(176, 0, 255, 0.9);
  color: var(--bg-card);
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: var(--transition-normal);
  box-shadow: 0 4px 15px rgba(176, 0, 255, 0.4);
}

.carousel-arrow:hover {
  background: var(--neon-purple);
  transform: scale(1.15);
  box-shadow: 0 6px 20px rgba(176, 0, 255, 0.6);
}

.podcast-list, .class-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.podcast-list li, .class-list li {
  padding: var(--space-lg);
  border-bottom: 1.5px solid rgba(176, 0, 255, 0.25);
  transition: var(--transition-normal);
}

.podcast-list li:hover, .class-list li:hover {
  background: rgba(176, 0, 255, 0.08);
  transform: translateX(5px);
}

.podcast-list a, .class-list a {
  color: var(--text-warm);
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  display: block;
  font-weight: 500;
  font-size: clamp(15px, 2vw, 16px);
}

/* ===== MEDIA QUERIES AVANÇADAS ===== */
@media (min-width: 768px) {
  .podcasts-container {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
    padding: 0 var(--space-xl);
  }
}

/* Desktop - CORREÇÃO PARA 3 COLUNAS E LAYOUT FIXO */
@media (min-width: 1024px) {
  .links {
    grid-template-columns: 1fr 1fr 1fr;
    max-width: 1000px;
    gap: var(--space-xl);
    padding: 0 var(--space-2xl);
    margin-bottom: var(--space-3xl);
  }
  
  .links.privacy-open {
    margin-bottom: calc(var(--space-3xl) + 30px);
  }
  
  .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;
  }
  
  .privacy-sub .link-text {
    font-size: 14px;
  }
  
  .links .link-card:not(.privacy-main):not(.privacy-sub) {
    grid-column: auto;
    grid-row: 1;
    height: auto;
  }
  
  .links .link-card:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
  }
  
  .links .link-card:nth-child(3) {
    grid-column: 3;
    grid-row: 1;
  }
  
  .about-content {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: var(--space-2xl);
  }
  
  .previews-container {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: var(--space-2xl);
    padding: var(--space-2xl);
  }
  
  #previewsSoloSection {
    grid-column: 1;
    grid-row: 1;
  }
  
  #previewsCasalSection {
    grid-column: 2;
    grid-row: 1;
  }
  
  #podcastsSection {
    grid-column: 1 / span 2;
    grid-row: 2;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: var(--space-xl);
  }
  
  body.privacy-open .podcasts-section {
    transform: translateY(30px);
  }
  
  body.privacy-open .footer {
    transform: translateY(30px);
  }
  
  .avatar-ring {
    margin-bottom: var(--space-3xl);
  }
  
  .subtitle {
    margin-bottom: var(--space-2xl);
  }
  
  .links {
    margin: var(--space-xl) auto var(--space-3xl);
  }
  
  .expandable-section {
    margin: var(--space-xl) 0;
    padding: var(--space-2xl);
  }
  
  .podcasts-section {
    transition: transform 0.4s ease;
  }
  
  .footer {
    transition: transform 0.4s ease;
  }
}

/* CORREÇÃO PRINCIPAL: Telas grandes mantêm 2 colunas */
@media (min-width: 1200px) {
  .podcasts-container {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
    padding: 0 var(--space-xl);
    max-width: 1200px; /* Aumentado para cards maiores */
    margin-left: auto;
    margin-right: auto;
  }
}

/* ===== EFEITOS RGB ===== */
/* Variáveis RGB (serão usadas apenas quando o modo RGB estiver ativo) */
:root {
  --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;
}

/* Apenas aplicados quando a classe .rgb-effect está presente no body */

.rgb-effect .avatar-ring,
.rgb-effect .circle,
.rgb-effect .link-card,
.rgb-effect .privacy-sub,
.rgb-effect .link-left,
.rgb-effect .age-badge,
.rgb-effect .link-badge,
.rgb-effect .about-text-content,
.rgb-effect .about-image-frame,
.rgb-effect .expandable-section,
.rgb-effect .podcast-card,
.rgb-effect .podcast-item,
.rgb-effect .carousel-image,
.rgb-effect .carousel-arrow,
.rgb-effect .footer,
.rgb-effect .menu-toggle,
.rgb-effect .side-menu,
.rgb-effect .menu-item,
.rgb-effect .menu-accordion-header,
.rgb-effect .menu-thumbnail-container,
.rgb-effect .menu-close {
  animation: rgbBorderCycle 4s linear infinite;
  box-shadow: 0 0 10px currentColor;
}

/* Animação RGB para as bordas */
@keyframes rgbBorderCycle {
  0%, 100% {
    border-color: var(--rgb-purple-1);
    box-shadow: 0 0 8px var(--rgb-purple-1);
  }
  5% {
    border-color: var(--rgb-purple-1);
    box-shadow: 0 0 8px var(--rgb-purple-1);
  }
  10% {
    border-color: var(--rgb-purple-2);
    box-shadow: 0 0 8px var(--rgb-purple-2);
  }
  15% {
    border-color: var(--rgb-purple-2);
    box-shadow: 0 0 8px var(--rgb-purple-2);
  }
  20% {
    border-color: var(--rgb-purple-3);
    box-shadow: 0 0 8px var(--rgb-purple-3);
  }
  25% {
    border-color: var(--rgb-purple-3);
    box-shadow: 0 0 8px var(--rgb-purple-3);
  }
  30% {
    border-color: var(--rgb-pink-1);
    box-shadow: 0 0 8px var(--rgb-pink-1);
  }
  35% {
    border-color: var(--rgb-pink-1);
    box-shadow: 0 0 8px var(--rgb-pink-1);
  }
  40% {
    border-color: var(--rgb-pink-2);
    box-shadow: 0 0 8px var(--rgb-pink-2);
  }
  45% {
    border-color: var(--rgb-pink-2);
    box-shadow: 0 0 8px var(--rgb-pink-2);
  }
  50% {
    border-color: var(--rgb-purple-4);
    box-shadow: 0 0 8px var(--rgb-purple-4);
  }
  55% {
    border-color: var(--rgb-purple-4);
    box-shadow: 0 0 8px var(--rgb-purple-4);
  }
  60% {
    border-color: var(--rgb-purple-3);
    box-shadow: 0 0 8px var(--rgb-purple-3);
  }
  65% {
    border-color: var(--rgb-purple-3);
    box-shadow: 0 0 8px var(--rgb-purple-3);
  }
  70% {
    border-color: var(--rgb-purple-2);
    box-shadow: 0 0 8px var(--rgb-purple-2);
  }
  75% {
    border-color: var(--rgb-purple-2);
    box-shadow: 0 0 8px var(--rgb-purple-2);
  }
  80% {
    border-color: var(--rgb-pink-1);
    box-shadow: 0 0 8px var(--rgb-pink-1);
  }
  85% {
    border-color: var(--rgb-pink-1);
    box-shadow: 0 0 8px var(--rgb-pink-1);
  }
  90% {
    border-color: var(--rgb-purple-1);
    box-shadow: 0 0 8px var(--rgb-purple-1);
  }
  95% {
    border-color: var(--rgb-purple-1);
    box-shadow: 0 0 8px var(--rgb-purple-1);
  }
}

/* Efeito RGB mais forte para elementos específicos */
.rgb-effect .avatar-ring {
  animation: rgbBorderCycle 3s linear infinite, neonPulse 2.5s ease-in-out infinite alternate;
}

.rgb-effect .link-card:hover,
.rgb-effect .circle:hover,
.rgb-effect .privacy-sub:hover {
  animation-duration: 2s;
  box-shadow: 0 0 20px currentColor, 0 0 30px rgba(255, 255, 255, 0.2);
}

/* Efeito RGB para texto neon */
.rgb-effect .name,
.rgb-effect .text-neon-pink,
.rgb-effect .text-neon-purple,
.rgb-effect .about-subtitle,
.rgb-effect .section-title,
.rgb-effect .signature-text {
  animation: rgbTextCycle 5s linear infinite;
}

@keyframes rgbTextCycle {
  0%, 100% {
    color: #f8f0ff;
    text-shadow: 0 0 6px rgba(248, 240, 255, 0.5);
  }
  5% {
    color: #f4e6ff;
    text-shadow: 0 0 6px rgba(244, 230, 255, 0.5);
  }
  10% {
    color: #f0dcff;
    text-shadow: 0 0 6px rgba(240, 220, 255, 0.5);
  }
  15% {
    color: #ecd2ff;
    text-shadow: 0 0 6px rgba(236, 210, 255, 0.5);
  }
  20% {
    color: #e8c8ff;
    text-shadow: 0 0 6px rgba(232, 200, 255, 0.5);
  }
  25% {
    color: #e4beff;
    text-shadow: 0 0 6px rgba(228, 190, 255, 0.5);
  }
  30% {
    color: #e0b4ff;
    text-shadow: 0 0 6px rgba(224, 180, 255, 0.5);
  }
  35% {
    color: #ffd6f5;
    text-shadow: 0 0 6px rgba(255, 214, 245, 0.5);
  }
  40% {
    color: #ffc8f0;
    text-shadow: 0 0 6px rgba(255, 200, 240, 0.5);
  }
  45% {
    color: #ffbaeb;
    text-shadow: 0 0 6px rgba(255, 186, 235, 0.5);
  }
  50% {
    color: #fface6;
    text-shadow: 0 0 6px rgba(255, 172, 230, 0.5);
  }
  55% {
    color: #ff9ee1;
    text-shadow: 0 0 6px rgba(255, 158, 225, 0.5);
  }
  60% {
    color: #ff90dc;
    text-shadow: 0 0 6px rgba(255, 144, 220, 0.5);
  }
  65% {
    color: #e8c8ff;
    text-shadow: 0 0 6px rgba(232, 200, 255, 0.5);
  }
  70% {
    color: #e4beff;
    text-shadow: 0 0 6px rgba(228, 190, 255, 0.5);
  }
  75% {
    color: #e0b4ff;
    text-shadow: 0 0 6px rgba(224, 180, 255, 0.5);
  }
  80% {
    color: #ecd2ff;
    text-shadow: 0 0 6px rgba(236, 210, 255, 0.5);
  }
  85% {
    color: #f0dcff;
    text-shadow: 0 0 6px rgba(240, 220, 255, 0.5);
  }
  90% {
    color: #f4e6ff;
    text-shadow: 0 0 6px rgba(244, 230, 255, 0.5);
  }
  95% {
    color: #f8f0ff;
    text-shadow: 0 0 6px rgba(248, 240, 255, 0.5);
  }
}

/* Efeito RGB para ícones sociais */
.rgb-effect .social-icon {
  animation: rgbIconCycle 4s linear infinite;
}

@keyframes rgbIconCycle {
  0% {
    filter: brightness(0) saturate(100%) invert(25%) sepia(100%) saturate(5000%) hue-rotate(270deg) brightness(100%) contrast(100%);
  }
  33% {
    filter: brightness(0) saturate(100%) invert(25%) sepia(100%) saturate(5000%) hue-rotate(300deg) brightness(100%) contrast(100%);
  }
  66% {
    filter: brightness(0) saturate(100%) invert(25%) sepia(100%) saturate(5000%) hue-rotate(240deg) brightness(100%) contrast(100%);
  }
  100% {
    filter: brightness(0) saturate(100%) invert(25%) sepia(100%) saturate(5000%) hue-rotate(270deg) brightness(100%) contrast(100%);
  }
}

/* ===== MENU LATERAL ===== */
.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);
}

/* Overlay do menu */
.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;
}

/* Menu lateral */
.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;
}

/* Cabeçalho do menu */
.menu-header {
  padding: 0 var(--space-xl) var(--space-lg);
  border-bottom: 1px solid rgba(176, 0, 255, 0.3);
  margin-bottom: var(--space-lg);
}

.menu-title {
  font-family: 'Dancing Script', cursive;
  font-size: clamp(24px, 5vw, 28px);
  color: var(--text-neon-pink);
  text-align: center;
  margin-bottom: var(--space-sm);
  text-shadow: 0 0 15px rgba(255, 0, 255, 0.6);
}

.menu-subtitle {
  color: var(--text-primary);
  text-align: center;
  font-size: 14px;
  opacity: 0.8;
}

/* Thumbnail do menu */
.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);
}

/* Botão fechar */
.menu-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(13, 0, 19, 0.9);
  border: 1.5px solid var(--border-neon);
  border-radius: var(--radius-md);
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: var(--transition-normal);
  color: var(--neon-purple);
  font-size: 20px;
  z-index: 10;
}

.menu-close:hover {
  transform: rotate(90deg);
  background: rgba(176, 0, 255, 0.2);
  box-shadow: 0 0 15px rgba(176, 0, 255, 0.4);
}

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

/* Navegação do menu */
.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);
}

/* Acordeão do menu */
.menu-accordion {
  padding: 0 var(--space-xl);
  margin-bottom: var(--space-lg);
}

.menu-accordion-header {
  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);
  cursor: pointer;
  transition: var(--transition-normal);
  width: 100%;
  position: relative;
  overflow: hidden;
}

.menu-accordion-header::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-accordion-header:hover::before {
  left: 100%;
}

.menu-accordion-header:hover {
  background: rgba(176, 0, 255, 0.1);
}

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

.menu-accordion-header[aria-expanded="true"] .menu-accordion-arrow {
  transform: rotate(180deg);
}

.menu-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 var(--space-lg);
}

.menu-accordion-header[aria-expanded="true"] + .menu-accordion-content {
  max-height: 200px;
  padding: var(--space-md) var(--space-lg);
}

/* Item do toggle RGB */
.menu-toggle-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) var(--space-lg);
  margin: var(--space-sm) var(--space-xl) 0;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
}

.toggle-label {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex: 1;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 600;
}

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

/* Switch toggle */
.toggle-switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(176, 0, 255, 0.3);
  border: 1.5px solid var(--border-neon);
  border-radius: 24px;
  transition: var(--transition-normal);
}

.toggle-slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 3px;
  bottom: 3px;
  background: var(--neon-purple);
  border-radius: 50%;
  transition: var(--transition-normal);
  box-shadow: 0 0 5px var(--neon-purple);
}

input:checked + .toggle-slider {
  background: rgba(176, 0, 255, 0.6);
}

input:checked + .toggle-slider:before {
  transform: translateX(26px);
  background: var(--neon-pink);
  box-shadow: 0 0 8px var(--neon-pink);
}

/* Rodapé do menu */
.menu-footer {
  margin-top: auto;
  padding: var(--space-xl);
  border-top: 1px solid rgba(176, 0, 255, 0.3);
  text-align: center;
}

.menu-footer-text {
  color: var(--text-primary);
  font-size: 12px;
  opacity: 0.7;
  font-family: 'Poppins', sans-serif;
}

/* ===== EFEITOS RGB PARA O MENU ===== */
.rgb-effect .menu-toggle,
.rgb-effect .side-menu,
.rgb-effect .menu-thumbnail-container,
.rgb-effect .menu-close,
.rgb-effect .menu-item,
.rgb-effect .menu-accordion-header,
.rgb-effect .menu-toggle-item,
.rgb-effect .toggle-slider {
  animation: rgbBorderCycle 4s linear infinite;
}

.rgb-effect .menu-toggle span,
.rgb-effect .menu-item-icon,
.rgb-effect .toggle-icon {
  animation: rgbIconCycle 4s linear infinite;
}

.rgb-effect .menu-item-text,
.rgb-effect .toggle-label,
.rgb-effect .menu-title {
  animation: rgbTextCycle 5s linear infinite;
}

.rgb-effect .menu-item:hover,
.rgb-effect .menu-accordion-header:hover {
  animation-duration: 2s;
}

/* ===== RESPONSIVIDADE DO MENU ===== */
@media (min-width: 768px) {
  .side-menu {
    width: 40%;
  }
  
  .menu-nav,
  .menu-accordion {
    padding: 0 var(--space-2xl);
  }
  
  .menu-toggle-item {
    margin: var(--space-sm) var(--space-2xl) 0;
  }
}

@media (min-width: 1024px) {
  .side-menu {
    width: 30%;
  }
  
  .menu-item,
  .menu-accordion-header {
    padding: var(--space-lg) var(--space-xl);
  }
  
  .menu-toggle-item {
    padding: var(--space-lg) var(--space-xl);
  }
}

@media (min-width: 1440px) {
  .side-menu {
    width: 25%;
  }
}

/* Suporte para telas muito pequenas */
@media (max-width: 360px) {
  .side-menu {
    width: 90%;
    min-width: 250px;
  }
  
  .menu-nav,
  .menu-accordion {
    padding: 0 var(--space-lg);
  }
  
  .menu-toggle-item {
    margin: var(--space-sm) var(--space-lg) 0;
  }
}


