/* ==========================================================================
   CONFIGURAÇÃO BASE & DESIGN SYSTEM (PULSAR PRODUTORA)
   Paleta: Vibrant Color Fiesta - Electric Fiesta
   ========================================================================== */

:root {
  /* Electric Fiesta Palette */
  --color-gold: #FFBE0B;
  --color-orange: #FB5607;
  --color-pink: #FF006E;
  --color-purple: #8338EC;
  --color-blue: #3A86FF;
  
  /* System Colors */
  --color-bg-dark: #07050e;
  --color-bg-card: rgba(22, 18, 38, 0.45);
  --color-bg-card-hover: rgba(30, 25, 50, 0.7);
  --color-border: rgba(131, 56, 236, 0.15);
  --color-border-hover: rgba(131, 56, 236, 0.45);
  --color-text-main: #f5f4f8;
  --color-text-muted: #9b97b0;
  
  /* Fonts */
  --font-main: 'Outfit', sans-serif;
  
  /* Layout constraints */
  --max-width: 1200px;
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
}

/* Reset Geral */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background-color: var(--color-bg-dark);
  color: var(--color-text-main);
  overflow-x: hidden;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

ul {
  list-style: none;
}

/* Scrollbar Customizada */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--color-bg-dark);
}
::-webkit-scrollbar-thumb {
  background: var(--color-purple);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-pink);
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.text-gradient {
  background: linear-gradient(135deg, var(--color-pink) 0%, var(--color-orange) 50%, var(--color-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Botões */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.8rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
  gap: 0.5rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-pink) 0%, var(--color-orange) 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(255, 0, 110, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(255, 0, 110, 0.6);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(5px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--color-blue);
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(58, 134, 255, 0.3);
}

.btn-block {
  width: 100%;
}

/* Cabeçalhos de Seções */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-blue);
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* ==========================================================================
   MENU DE NAVEGAÇÃO
   ========================================================================== */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(7, 5, 14, 0.7);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(131, 56, 236, 0.1);
  padding: 1.2rem 0;
  transition: var(--transition-smooth);
}

.navbar.scrolled {
  padding: 0.8rem 0;
  background: rgba(7, 5, 14, 0.9);
  border-bottom: 1px solid rgba(131, 56, 236, 0.25);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: #fff;
  margin-left: -1.5rem;
}

.navbar-logo-img {
  height: 76px;
  width: auto;
  filter: invert(1);
  display: block;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

.footer-logo-img {
  height: 38px;
  width: auto;
  filter: invert(1);
  display: block;
}

/* Animações e cores para o Pulsing Dot */
@keyframes dot-color-change {
  0% { background-color: var(--color-pink); }
  25% { background-color: var(--color-purple); }
  50% { background-color: var(--color-blue); }
  75% { background-color: var(--color-orange); }
  100% { background-color: var(--color-pink); }
}

.logo-pulse {
  width: 10px;
  height: 10px;
  background-color: var(--color-pink);
  border-radius: 50%;
  position: relative;
  animation: dot-color-change 8s infinite linear;
  flex-shrink: 0;
}

.logo-pulse::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: inherit; /* Herda a cor que está mudando via keyframes */
  border-radius: 50%;
  animation: pulse 2.0s infinite ease-in-out;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(2.8);
    opacity: 0;
  }
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text-muted);
  position: relative;
  padding: 0.3rem 0;
}

.nav-link:hover, .nav-link.active {
  color: #fff;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-pink), var(--color-orange));
  transition: var(--transition-fast);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.btn-navbar {
  padding: 0.6rem 1.4rem;
  font-size: 0.85rem;
  background: transparent;
  border: 1px solid var(--color-pink);
  color: #fff;
}

.btn-navbar:hover {
  background: var(--color-pink);
  box-shadow: 0 0 15px rgba(255, 0, 62, 0.4);
  transform: scale(1.03);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero {
  position: relative;
  min-height: 95vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  overflow: hidden;
  z-index: 1;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: -2;
  filter: brightness(0.65);
}

/* Glow Blobs decorativos */
.hero-glow-1 {
  position: absolute;
  top: 20%;
  left: 10%;
  width: 350px;
  height: 350px;
  background: var(--color-purple);
  opacity: 0.35;
  filter: blur(120px);
  border-radius: 50%;
  z-index: -1;
  animation: float-glow 8s infinite alternate ease-in-out;
}

.hero-glow-2 {
  position: absolute;
  bottom: 10%;
  right: 15%;
  width: 400px;
  height: 400px;
  background: var(--color-pink);
  opacity: 0.25;
  filter: blur(140px);
  border-radius: 50%;
  z-index: -1;
  animation: float-glow 12s infinite alternate-reverse ease-in-out;
}

@keyframes float-glow {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(30px, -40px) scale(1.15);
  }
}

.hero-container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 3rem;
  position: relative;
  z-index: 2;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-tag {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-gold);
  border: 1px solid rgba(255, 190, 11, 0.3);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  background: rgba(255, 190, 11, 0.05);
  letter-spacing: 1px;
}

.hero-title {
  font-size: 3.8rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -1.5px;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--color-text-muted);
  margin-bottom: 2.5rem;
  max-width: 580px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.visual-circle {
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, var(--color-purple) 0%, var(--color-pink) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 0 40px rgba(131, 56, 236, 0.6);
  z-index: 2;
  transition: var(--transition-smooth);
}

.visual-circle::after {
  content: '';
  position: absolute;
  width: 180px;
  height: 180px;
  border: 2px dashed rgba(255, 0, 110, 0.3);
  border-radius: 50%;
  animation: spin 20s infinite linear;
}

.visual-circle:hover {
  transform: scale(1.08);
  box-shadow: 0 0 65px rgba(255, 0, 110, 0.8);
}

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

/* Equalizer Bars */
.equalizer-container {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 100px;
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  opacity: 0.8;
}

.eq-bar {
  width: 4px;
  height: 10px;
  background: linear-gradient(180deg, var(--color-pink), var(--color-purple));
  border-radius: 2px;
  animation: equalize 1.2s ease-in-out infinite alternate;
}

/* Delay individual para barras */
.eq-bar:nth-child(1) { height: 30px; animation-delay: -0.1s; }
.eq-bar:nth-child(2) { height: 50px; animation-delay: -0.4s; }
.eq-bar:nth-child(3) { height: 75px; animation-delay: -0.2s; }
.eq-bar:nth-child(4) { height: 40px; animation-delay: -0.7s; }
.eq-bar:nth-child(5) { height: 90px; animation-delay: -0.5s; }
.eq-bar:nth-child(6) { height: 60px; animation-delay: -0.3s; }
.eq-bar:nth-child(7) { height: 80px; animation-delay: -0.8s; }
.eq-bar:nth-child(8) { height: 35px; animation-delay: -0.6s; }
.eq-bar:nth-child(9) { height: 70px; animation-delay: -0.9s; }
.eq-bar:nth-child(10) { height: 45px; animation-delay: -0.15s; }
.eq-bar:nth-child(11) { height: 85px; animation-delay: -0.35s; }
.eq-bar:nth-child(12) { height: 55px; animation-delay: -0.55s; }
.eq-bar:nth-child(13) { height: 65px; animation-delay: -0.75s; }
.eq-bar:nth-child(14) { height: 40px; animation-delay: -0.25s; }
.eq-bar:nth-child(15) { height: 30px; animation-delay: -0.45s; }

@keyframes equalize {
  0% {
    transform: scaleY(0.2);
  }
  100% {
    transform: scaleY(1);
  }
}

/* ==========================================================================
   SEÇÃO DE ARTISTAS
   ========================================================================== */

.artists-section {
  padding: 8rem 0;
  position: relative;
  background: radial-gradient(circle at top right, rgba(131, 56, 236, 0.05) 0%, transparent 40%);
}

.filter-container {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.filter-btn {
  background: rgba(255, 255, 255, 0.03);
  color: var(--color-text-muted);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
}

.filter-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
}

.filter-btn.active {
  background: var(--color-purple);
  color: #fff;
  border-color: var(--color-purple);
  box-shadow: 0 0 15px rgba(131, 56, 236, 0.4);
}

.artists-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2.2rem;
}

.artist-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  overflow: hidden;
  transition: var(--transition-smooth);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
}

.artist-card:hover {
  transform: translateY(-10px);
  border-color: var(--color-border-hover);
  box-shadow: 0 15px 40px rgba(131, 56, 236, 0.25);
}

.artist-img-wrapper {
  position: relative;
  width: 100%;
  padding-top: 125%; /* 4:5 aspect ratio */
  overflow: hidden;
}

.artist-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.artist-card:hover .artist-img {
  transform: scale(1.08);
}

.artist-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 50%, rgba(7, 5, 14, 0.95) 100%);
  opacity: 0.95;
}

.artist-info {
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.artist-genre {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 0.6rem;
}

/* Cores específicas de Tag dependendo do gênero (case-insensitive substring) */
.artist-card[data-genre*="sertanejo" i] .artist-genre { color: var(--color-gold); }
.artist-card[data-genre*="pop" i] .artist-genre { color: var(--color-pink); }
.artist-card[data-genre*="pagode" i] .artist-genre { color: var(--color-orange); }
.artist-card[data-genre*="samba" i] .artist-genre { color: var(--color-gold); }
.artist-card[data-genre*="trap" i] .artist-genre { color: var(--color-orange); }
.artist-card[data-genre*="eletronica" i] .artist-genre { color: var(--color-blue); }

.artist-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: #fff;
}

.artist-desc {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: 1.8rem;
  line-height: 1.5;
  flex-grow: 1;
}

.artist-footer {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 0.8rem;
}

.btn-card {
  padding: 0.6rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 12px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.btn-outline-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  background: rgba(255, 255, 255, 0.02);
}

.btn-outline-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-primary-card {
  background: var(--color-purple);
  color: #fff;
  border: none;
}

.btn-primary-card:hover {
  background: var(--color-pink);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 0, 110, 0.4);
}

/* Ocultar elementos filtrados com suavidade */
.artist-card.hidden {
  display: none;
}

/* ==========================================================================
   SEÇÃO DE AGENDA
   ========================================================================== */

.schedule-section {
  padding: 8rem 0;
  background: rgba(22, 18, 38, 0.2);
  border-top: 1px solid rgba(131, 56, 236, 0.08);
}

.schedule-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  max-width: 900px;
  margin: 0 auto;
}

.schedule-item {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  align-items: center;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 1.5rem 2rem;
  gap: 2rem;
  transition: var(--transition-smooth);
}

.schedule-item:hover {
  border-color: var(--color-border-hover);
  transform: scale(1.02);
  box-shadow: 0 10px 30px rgba(131, 56, 236, 0.15);
  background: var(--color-bg-card-hover);
}

.schedule-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(131, 56, 236, 0.2) 0%, rgba(255, 0, 110, 0.2) 100%);
  border: 1px solid rgba(131, 56, 236, 0.3);
  border-radius: 12px;
  padding: 0.8rem;
  min-width: 76px;
}

.date-day {
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
  color: var(--color-pink);
}

.date-month {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--color-text-main);
  margin-top: 0.2rem;
}

.schedule-details {
  display: flex;
  flex-direction: column;
}

.schedule-artist {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.2rem;
}

.schedule-venue {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.3rem;
}

.schedule-city {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.schedule-city i {
  color: var(--color-blue);
  margin-right: 0.4rem;
}

.btn-ticket {
  background: transparent;
  color: #fff;
  border: 1px solid var(--color-pink);
  padding: 0.7rem 1.4rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
}

.btn-ticket:hover {
  background: var(--color-pink);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 0, 110, 0.4);
}

/* ==========================================================================
   SEÇÃO DE SERVIÇOS
   ========================================================================== */

.services-section {
  padding: 8rem 0;
  background: radial-gradient(circle at bottom left, rgba(58, 134, 255, 0.05) 0%, transparent 40%);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: var(--transition-smooth);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.service-card:hover {
  transform: translateY(-8px);
  background: var(--color-bg-card-hover);
}

/* Glow específico de bordas no hover */
.border-glow-pink:hover { border-color: var(--color-pink); box-shadow: 0 10px 30px rgba(255, 0, 110, 0.2); }
.border-glow-orange:hover { border-color: var(--color-orange); box-shadow: 0 10px 30px rgba(251, 86, 7, 0.2); }
.border-glow-purple:hover { border-color: var(--color-purple); box-shadow: 0 10px 30px rgba(131, 56, 236, 0.2); }
.border-glow-blue:hover { border-color: var(--color-blue); box-shadow: 0 10px 30px rgba(58, 134, 255, 0.2); }

.service-icon {
  width: 70px;
  height: 70px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.8rem;
  font-size: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.color-pink { color: var(--color-pink); }
.color-orange { color: var(--color-orange); }
.color-purple { color: var(--color-purple); }
.color-blue { color: var(--color-blue); }

.service-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
}

.service-desc {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   SEÇÃO EDITORA
   ========================================================================== */

.publishing-section {
  padding: 8rem 0;
  background: rgba(22, 18, 38, 0.15);
  border-top: 1px solid rgba(131, 56, 236, 0.08);
}

.publishing-container {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

.publishing-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.publishing-features {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.publishing-features li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.05rem;
  color: var(--color-text-main);
}

.publishing-features li i {
  font-size: 1.2rem;
}

.publishing-form-box, .contact-form-box {
  background: rgba(22, 18, 38, 0.6);
  border: 1px solid var(--color-border);
  border-radius: 24px;
  padding: 2.8rem;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.form-box-title {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #fff;
}

/* Elementos de Formulário */
.form-group {
  margin-bottom: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--color-text-main);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

input, select, textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.9rem 1.2rem;
  border-radius: 12px;
  color: #fff;
  font-family: var(--font-main);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

select option {
  background-color: #161226;
  color: #fff;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--color-purple);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 12px rgba(131, 56, 236, 0.35);
}

textarea {
  resize: vertical;
}

/* ==========================================================================
   SEÇÃO DE CONTATO / CONTRATO
   ========================================================================== */

.contact-section {
  padding: 8rem 0;
  background: radial-gradient(circle at top left, rgba(255, 0, 110, 0.05) 0%, transparent 40%);
  border-top: 1px solid rgba(131, 56, 236, 0.08);
}

.contact-container {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

.contact-info {
  display: flex;
  flex-direction: column;
}

.contact-details {
  margin: 2.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: rgba(131, 56, 236, 0.1);
  border: 1px solid rgba(131, 56, 236, 0.25);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--color-purple);
  flex-shrink: 0;
}

.contact-item h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.2rem;
}

.contact-item p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--color-text-muted);
  transition: var(--transition-fast);
}

.social-links a:hover {
  background: var(--color-pink);
  border-color: var(--color-pink);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(255, 0, 110, 0.4);
}

/* ==========================================================================
   RODAPÉ
   ========================================================================== */

.main-footer {
  background: #040308;
  border-top: 1px solid rgba(131, 56, 236, 0.1);
  padding: 5rem 0 0;
}

.footer-container {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 4rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: 1.5px;
  color: #fff;
}

.footer-desc {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  max-width: 320px;
}

.footer-nav h4, .footer-contacts h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.5rem;
  position: relative;
}

.footer-nav h4::after, .footer-contacts h4::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--color-pink);
}

.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-nav a {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.footer-nav a:hover {
  color: #fff;
  padding-left: 5px;
}

.footer-contacts p {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--color-text-muted);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.footer-contacts p i {
  color: var(--color-purple);
  font-size: 1rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.8rem 0;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.footer-bottom-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ==========================================================================
   MODAIS & POPUPS
   ========================================================================== */

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(4, 3, 8, 0.85);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

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

.modal-box {
  background: rgba(22, 18, 38, 0.95);
  border: 1px solid rgba(131, 56, 236, 0.3);
  border-radius: 24px;
  width: 90%;
  max-width: 500px;
  padding: 3rem;
  position: relative;
  transform: scale(0.85);
  transition: var(--transition-smooth);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 40px rgba(131, 56, 236, 0.15);
  display: none;
}

.modal-overlay.active .modal-box.active {
  transform: scale(1);
  display: block;
}

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--color-text-muted);
  font-size: 1.3rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.modal-close:hover {
  color: #fff;
  transform: rotate(90deg);
}

.modal-header {
  text-align: center;
  margin-bottom: 2rem;
}

.ticket-icon-glowing {
  font-size: 3.5rem;
  color: var(--color-gold);
  filter: drop-shadow(0 0 15px rgba(255, 190, 11, 0.6));
  margin-bottom: 1rem;
}

.success-icon-glowing {
  font-size: 3.5rem;
  color: var(--color-blue);
  filter: drop-shadow(0 0 15px rgba(58, 134, 255, 0.6));
  margin-bottom: 1rem;
}

.modal-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
}

.modal-body {
  text-align: center;
  color: var(--color-text-muted);
  font-size: 1rem;
  line-height: 1.6;
}

.show-summary-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 1rem;
  margin: 1.5rem 0;
  text-align: left;
}

.show-summary-box p {
  color: var(--color-text-main);
  margin-bottom: 0.3rem;
}

.show-summary-box p:last-child {
  margin-bottom: 0;
}

.loading-spinner-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

.spinner {
  width: 42px;
  height: 42px;
  border: 3px solid rgba(131, 56, 236, 0.2);
  border-top-color: var(--color-pink);
  border-right-color: var(--color-orange);
  border-radius: 50%;
  animation: spin-speedy 0.9s infinite linear;
}

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

/* ==========================================================================
   RESPONSIVIDADE (MEDIA QUERIES)
   ========================================================================== */

@media (max-width: 1024px) {
  .hero-title {
    font-size: 3.2rem;
  }
  .publishing-container, .contact-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .publishing-info, .contact-info {
    align-items: center;
    text-align: center;
  }
  .publishing-features {
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .navbar-logo {
    margin-left: -0.5rem;
  }

  .section-title {
    font-size: 2rem;
  }
  
  .navbar-container {
    position: relative;
  }
  
  .nav-toggle {
    display: block;
  }
  
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(7, 5, 14, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(131, 56, 236, 0.25);
    flex-direction: column;
    padding: 2.5rem 1.5rem;
    gap: 1.8rem;
    align-items: stretch;
    transition: var(--transition-smooth);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px);
  }
  
  .nav-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  
  .btn-navbar {
    text-align: center;
    margin-top: 1rem;
  }
  
  .hero-container {
    grid-template-columns: 1fr;
    gap: 4rem;
    text-align: center;
  }
  
  .hero-content {
    align-items: center;
  }
  
  .hero-title {
    font-size: 2.8rem;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .hero-visual {
    margin-top: 1rem;
  }
  
  .schedule-item {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.2rem;
    justify-items: center;
  }
  
  .schedule-date {
    width: 90px;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .footer-desc {
    max-width: 100%;
  }
  
  .footer-nav h4::after, .footer-contacts h4::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.3rem;
  }
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  .hero-actions .btn {
    width: 100%;
  }
}

/* ==========================================================================
   SEÇÃO DO INSTAGRAM
   ========================================================================== */

.instagram-section {
  padding: 8rem 0;
  background: rgba(22, 18, 38, 0.1);
  border-top: 1px solid rgba(131, 56, 236, 0.08);
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.8rem;
}

.instagram-card {
  position: relative;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

.instagram-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-border-hover);
  box-shadow: 0 10px 25px rgba(255, 0, 110, 0.15);
}

.insta-img-wrapper {
  position: relative;
  width: 100%;
  padding-top: 100%; /* Square post ratio */
  overflow: hidden;
}

.insta-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.instagram-card:hover .insta-img {
  transform: scale(1.05);
}

.insta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(7, 5, 14, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #fff;
  opacity: 0;
  transition: var(--transition-fast);
}

.instagram-card:hover .insta-overlay {
  opacity: 1;
}

.insta-overlay i {
  text-shadow: 0 0 15px rgba(255, 0, 110, 0.8);
}

.insta-info {
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
}

.insta-artist-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.6rem;
}

.insta-artist-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid var(--color-pink);
  object-fit: cover;
}

.insta-artist-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
}

.insta-artist-handle {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

.insta-caption {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.insta-date {
  font-size: 0.7rem;
  color: var(--color-text-muted);
  margin-top: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Badge de Show Status */
.badge-status {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.status-pendente {
  background: rgba(251, 86, 7, 0.15);
  border: 1px solid rgba(251, 86, 7, 0.4);
  color: var(--color-orange);
}

.status-confirmado {
  background: rgba(67, 170, 139, 0.15);
  border: 1px solid rgba(67, 170, 139, 0.4);
  color: #43aa8b;
}

@media (max-width: 768px) {
  .instagram-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.2rem;
  }
}
