/* Importação da fonte Jura */
@import url('https://fonts.googleapis.com/css2?family=Jura:wght@300;400;500;600;700&display=swap');

/* Reset e estilos globais */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  cursor: none;
  font-family: "Jura", serif;
}

body {
  background-color: #171717;
  color: #ffffff;
  line-height: 1.6;
  padding-top: 60px;
  scroll-behavior: smooth;
  font-family: "Jura", serif;
}

/* Navbar */
nav {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background: rgba(23, 23, 23, 0.9);
  backdrop-filter: blur(10px);
  padding: 1rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  border-bottom: 1px solid #333;
  transition: background 0.3s;
}

/* Menu mobile para Desktop */
.mobile-menu {
  visibility: hidden;
  background: none;
  border: none;
}

.logo img {
  width: 100px;
}

.nav-links a {
  color: #ffffff;
  text-decoration: none;
  margin: 0 1rem;
  font-weight: 500;
  transition: color 0.3s, transform 0.3s;
}

.nav-links a:hover {
  color: #C87905;
  transform: scale(1.1);
}

/* Secção Hero */
#hero {
  padding: 4rem 5%;
  text-align: center;
}

.hero-content {
  max-width: 1000px;
  margin: 0 auto;
}

/* Container para os cartões de serviço */
.services .service-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

/* Cartões de serviço */
.service-card {
  background-color: rgba(200, 121, 5, 0.1);
  border: 1px solid #C87905;
  border-radius: 8px;
  padding: 1rem;
  width: 280px;
  box-shadow: 0 0 10px rgba(200, 121, 5, 0.2);
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: center;
}

/* Ícones nos cartões */
.service-card i {
  font-size: 40px;
  color: #C87905;
  animation: iconGlow 2s ease-in-out infinite;
  transition: transform 0.3s ease, color 0.3s ease;
}

/* Hover nos ícones */
.service-card:hover i {
  transform: scale(1.2) rotate(15deg);
  color: #ffffff;
  animation: iconGlow 1s ease-in-out infinite;
}

@keyframes iconGlow {
  0%, 100% {
    filter: drop-shadow(0 0 5px rgba(200, 121, 5, 0.5));
    transform: rotate(0deg);
  }
  50% {
    filter: drop-shadow(0 0 15px rgba(200, 121, 5, 0.8));
    transform: rotate(5deg);
  }
}

.service-card h4 {
  margin-bottom: 0.5rem;
}

.service-card p {
  font-size: 0.9rem;
  color: #cccccc;
}

/* Animação de entrada para secções */
section {
  padding: 4rem 5%;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

h1, h2 {
  margin-bottom: 0.5rem;
}

h1 {
  font-size: 3rem;
  background: linear-gradient(45deg, #C87905, #ffffff);
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientMove 3s infinite alternate;
}

@keyframes gradientMove {
  from { background-position: left; }
  to { background-position: right; }
}

h2 {
  font-size: 2.5rem;
  color: #C87905;
}

p {
  max-width: 600px;
  margin: 0 auto 1.5rem;
  color: #cccccc;
}

.cta-button {
  padding: 0.75rem 1.5rem;
  background-color: #C87905;
  color: #000000;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.3s, transform 0.3s;
  position: relative;
  top: 70px;
}

.cta-button:hover {
  background-color: #a65f04;
  transform: scale(1.05);
}

.artist-text {
  margin-top: 2rem;
}

/* Grid de artistas */
.artist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.artist-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 1rem;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.artist-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(200, 121, 5, 0.5);
}

.artist-card img {
  width: 100%;
  border-radius: 8px;
  height: auto;
  object-fit: cover;
}

.artist-card h3 {
  margin-top: 0.75rem;
}

/* Pop-ups para artistas */
.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 2000;
}

.popup-content {
  background: rgba(34, 34, 34, 0.9);
  padding: 2rem;
  border-radius: 12px;
  max-width: 400px;
  text-align: center;
  color: #ffffff;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.popup-content img {
  width: 200px;
  height: 200px;
  border-radius: 8px;
  margin-bottom: 1rem;
  object-fit: cover;
}

.close-btn {
  background: #C87905;
  color: #000;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 8px;
  margin-top: 1rem;
  cursor: pointer;
}

footer {
  text-align: center;
  padding: 1rem;
  background-color: #0a0a0a;
  color: #888;
  font-size: 0.9rem;
}

/* Área de destaque na secção de Contacto */
.contact-highlight {
  background-color: rgba(200, 121, 5, 0.2);
  border: 1px solid #C87905;
  border-radius: 8px;
  padding: 1.5rem;
  padding-bottom: 0.5rem;
  margin: 2rem auto;
  margin-bottom: 0.5rem;
  max-width: 600px;
}

/* Cursor customizado */
.light-cursor {
  position: fixed;
  width: 20px;
  height: 20px;
  background-color: white;
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: transform 0.15s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.2s ease;
  z-index: 9999;
}

.light-cursor::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: inherit;
  transform: translate(-50%, -50%) scale(1);
  opacity: 0;
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s ease;
}

.light-cursor::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: inherit;
  transform: translate(-50%, -50%) scale(1);
  opacity: 0;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
}

.light-cursor.clicking {
  transform: translate(-50%, -50%) scale(0.5);
}

.light-cursor.clicking::before {
  transform: translate(-50%, -50%) scale(1.5);
  opacity: 0.3;
}

.light-cursor.clicking::after {
  transform: translate(-50%, -50%) scale(2.5);
  opacity: 0.1;
}

@keyframes pulseOut {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.5;
  }
  100% {
    transform: translate(-50%, -50%) scale(3);
    opacity: 0;
  }
}

.click-ripple {
  position: fixed;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: currentColor;
  pointer-events: none;
  z-index: 9998;
  animation: pulseOut 0.4s cubic-bezier(0, 0, 0.2, 1) forwards;
}

/* Hover nos botões para o cursor customizado */
button:hover ~ .light-cursor,
button:focus ~ .light-cursor {
  background-color: #C87905;
}

.contact-button:hover {
  background-color: #a65f04;
  transform: scale(2);
}

.social-links {
  margin-top: 1rem;
}

.social-links a {
  margin: 0 10px;
  display: inline-block;
}

.social-links img {
  width: 30px;
  transition: transform 0.3s;
}

.social-links img:hover {
  transform: scale(1.2);
}

/* Mobile e responsividade */
@media screen and (max-width: 768px) {
  body {
    padding-top: 60px;
  }

  nav {
    padding: 0.8rem 1rem;
    height: 60px;
    background: rgba(23, 23, 23, 0.98);
  }

  .logo img {
    width: 70px;
    height: auto;
  }

  /* Botão do menu mobile */
  .mobile-menu {
    display: block;
    visibility: visible;
    color: #C87905;
    font-size: 1.5rem;
    padding: 0.5rem;
    margin-left: auto;
    transition: transform 0.3s ease;
    cursor: pointer;
  }

  .mobile-menu:active {
    transform: scale(0.95);
  }

  /* Navegação mobile */
  .nav-links {
    display: none;
  }

  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(23, 23, 23, 0.85);
    backdrop-filter: blur(10px);
    padding: 1rem;
    text-align: center;
    animation: slideDown 0.3s ease-out forwards;
    border-bottom: 1px solid rgba(200, 121, 5, 0.3);
  }

  .nav-links.active a {
    margin: 0.5rem auto;
    padding: 1rem 2rem;
    width: fit-content;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    transition: all 0.3s ease;
  }

  .nav-links.active a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #C87905;
    transform: translateX(-50%);
    transition: width 0.3s ease;
  }

  .nav-links.active a:hover::after {
    width: 80%;
  }

  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Secção Hero mobile */
  #hero {
    padding: 2rem 1rem;
  }

  #hero h1 {
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    padding: 0 1rem;
  }

  .hero-content {
    padding: 0 0.5rem;
  }

  /* Seção de Serviços mobile */
  .services {
    padding: 0 0.5rem;
  }

  .services h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .service-cards {
    gap: 1rem;
    padding: 0 0.5rem;
  }

  .service-card {
    width: 100%;
    max-width: none;
    margin: 0 0 1rem;
    padding: 1.5rem;
  }

  .service-card i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }

  .service-card h4 {
    font-size: 1.2rem;
  }

  /* Botão CTA mobile */
  .cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    width: calc(100% - 2rem);
    max-width: 300px;
    text-align: center;
    margin: 2rem auto;
    position: static;
  }

  /* Seção de Artistas mobile */
  #artists {
    padding: 3rem 1rem;
  }

  .artist-text {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  .artist-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 0.5rem;
  }

  .artist-card {
    margin: 0;
    padding: 1rem;
  }

  .artist-card img {
    aspect-ratio: 1;
    object-fit: cover;
  }

  /* Ajustes para pop-ups mobile */
  .popup-content {
    width: 90%;
    max-width: 350px;
    margin: 1rem;
    padding: 1.5rem;
  }

  .popup-content img {
    width: 200px;
    height: 200px;
  }

  /* Seção de Contacto mobile */
  #contact {
    padding: 3rem 1rem;
  }

  .contact-highlight {
    margin: 1.5rem 1rem;
    padding: 1.5rem;
  }

  /* Otimizações para dispositivos touch */
  @media (hover: none) {
    .light-cursor,
    .click-ripple {
      display: none;
    }

    * {
      cursor: auto;
    }

    .service-card,
    .artist-card,
    .nav-links a,
    .cta-button {
      -webkit-tap-highlight-color: transparent;
    }

    .service-card:active,
    .artist-card:active,
    .cta-button:active {
      transform: scale(0.98);
    }
  }

  /* Smooth Scrolling */
  html {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
  }
}

/* Ajustes para tablets */
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .service-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .artist-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .service-card {
    width: 100%;
  }
}

/* Butões Whatsapp */
<style>
.whatsappbuttons {
    margin: 20px;
}

.whatsappbuttons a {
    background-color: #25D366;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
    margin: 5px;
    transition: all 0.3s;
}

.whatsappbuttons a:hover {
    background-color: #1aae4f;
    cursor: pointer;
}
</style>


/* YOUTUBEPLAYLIST*/
