/* Estilos específicos para a página Workshop */
.workshop-hero {
  padding: 4rem 1rem 3rem;
  text-align: center;
  background: linear-gradient(135deg, rgba(169, 0, 255, 0.08) 0%, rgba(255, 0, 255, 0.08) 100%);
  border-bottom: 1px solid rgba(169, 0, 255, 0.2);
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
}

.workshop-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #a900ff, transparent);
}

.workshop-title {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, #d47aff, #a900ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
  position: relative;
  display: inline-block;
}

.workshop-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 25%;
  width: 50%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #a900ff, transparent);
}

.workshop-subtitle {
  font-family: 'Crimson Text', serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin: 1.5rem auto 0;
  line-height: 1.5;
  font-style: italic;
}

.workshop-container {
  padding: 2rem 1rem 4rem;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 60vh;
}

.workshop-content {
  background: rgba(25, 25, 35, 0.8);
  border-radius: 16px;
  padding: 3rem 2.5rem;
  border: 1px solid rgba(169, 0, 255, 0.25);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(5px);
  width: 100%;
  position: relative;
  overflow: hidden;
}

.workshop-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #a900ff, #ff00ff, transparent);
}

.workshop-header {
  text-align: center;
  margin-bottom: 2.5rem;
  position: relative;
}

.workshop-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-5px); }
}

.workshop-content-title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 600;
  color: #d47aff;
  margin-bottom: 0.5rem;
  line-height: 1.3;
  position: relative;
  display: inline-block;
}

.workshop-content-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 10%;
  width: 80%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #d47aff, transparent);
  border-radius: 2px;
}

.workshop-text {
  margin-bottom: 2.5rem;
}

.workshop-paragraph {
  font-family: 'Crimson Text', serif;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  text-align: center;
  position: relative;
  padding: 0 1rem;
}

.workshop-paragraph:last-of-type {
  margin-bottom: 0;
}

.workshop-details {
  background: rgba(40, 40, 50, 0.6);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2.5rem;
  border: 1px solid rgba(169, 0, 255, 0.2);
  position: relative;
}

.workshop-details::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 20%;
  right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #a900ff, transparent);
}

.detail-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  padding: 0.5rem 0;
}

.detail-item:last-child {
  margin-bottom: 0;
}

.detail-icon {
  font-size: 1.5rem;
  margin-right: 1rem;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.detail-content {
  flex: 1;
}

.detail-label {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  color: #d47aff;
  display: block;
  margin-bottom: 0.3rem;
  font-size: 1rem;
}

.detail-text {
  font-family: 'Crimson Text', serif;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
  font-size: 1.1rem;
}

.workshop-cta {
  text-align: center;
  padding-top: 1rem;
}

.workshop-button {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: linear-gradient(135deg, #a900ff, #ff00ff);
  color: white;
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 1.2rem;
  transition: all 0.4s ease;
  box-shadow: 0 5px 20px rgba(169, 0, 255, 0.4);
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
}

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

.workshop-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(169, 0, 255, 0.6);
  background: linear-gradient(135deg, #ff00ff, #a900ff);
}

.workshop-button:hover::before {
  left: 100%;
}

.workshop-button:active {
  transform: translateY(-1px);
}

.button-text {
  position: relative;
  z-index: 1;
}

.button-arrow {
  font-size: 1.4rem;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1;
}

.workshop-button:hover .button-arrow {
  transform: translateX(5px);
}

.workshop-note {
  font-family: 'Crimson Text', serif;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
  font-style: italic;
}

/* Animações */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.workshop-content {
  animation: fadeInUp 0.8s ease-out;
}

.workshop-header {
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.workshop-text {
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.workshop-details {
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.workshop-cta {
  animation: fadeInUp 0.8s ease-out 0.8s both;
}

/* Responsividade */
@media (max-width: 768px) {
  .workshop-hero {
    padding: 3rem 1rem 2rem;
  }
  
  .workshop-title {
    font-size: 2.2rem;
  }
  
  .workshop-subtitle {
    font-size: 1.2rem;
  }
  
  .workshop-container {
    padding: 1rem 1rem 3rem;
  }
  
  .workshop-content {
    padding: 2rem 1.5rem;
  }
  
  .workshop-content-title {
    font-size: 1.6rem;
  }
  
  .workshop-paragraph {
    font-size: 1.1rem;
    padding: 0;
  }
  
  .workshop-details {
    padding: 1.5rem;
  }
  
  .detail-item {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
  
  .detail-icon {
    margin-right: 0;
    margin-bottom: 0.5rem;
  }
  
  .workshop-button {
    padding: 1rem 2rem;
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .workshop-title {
    font-size: 1.8rem;
  }
  
  .workshop-subtitle {
    font-size: 1.1rem;
  }
  
  .workshop-content {
    padding: 1.5rem 1rem;
  }
  
  .workshop-content-title {
    font-size: 1.4rem;
  }
  
  .workshop-paragraph {
    font-size: 1rem;
  }
  
  .workshop-button {
    width: 100%;
    justify-content: center;
  }
}

/* CSS para ícones do menu */
.menu-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.menu-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1); /* Torna os ícones brancos */
  transition: all 0.3s ease;
}

.menu-item:hover .menu-icon img {
  filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(200deg); /* Efeito hover azul */
}

/* Responsividade para diferentes telas */
@media (max-width: 768px) {
  .menu-icon {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 480px) {
  .menu-icon {
    width: 18px;
    height: 18px;
  }
}

/* Para telas muito pequenas */
@media (max-width: 320px) {
  .menu-icon {
    width: 16px;
    height: 16px;
  }
}

/* Para telas grandes com alta densidade de pixels */
@media (min-width: 1200px) and (-webkit-min-device-pixel-ratio: 2),
       (min-width: 1200px) and (min-resolution: 192dpi) {
  .menu-icon img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}

/* Garantir qualidade de imagem em diferentes dispositivos */
.menu-icon img {
  image-rendering: auto;
}

/* Ajustes para o ícone de emoji (RGB) */
.menu-toggle-item .menu-icon {
  font-size: 18px;
  width: auto;
  height: auto;
}

/* Estados de foco para acessibilidade */
.menu-item:focus .menu-icon img,
.menu-accordion-header:focus .menu-icon img {
  filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(200deg);
}

/* Transições suaves */
.menu-icon, .menu-icon img {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}