/* ========================================
   WELRY SETE CORDAS - STYLE
   ======================================== */

/* RESET & BASE */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --color-bg: #0a0a0a;
  --color-surface: #141414;
  --color-surface-light: #1e1e1e;
  --color-gold: #d4a843;
  --color-gold-light: #e8c86a;
  --color-gold-dark: #b08930;
  --color-text: #f0ebe3;
  --color-text-muted: #9a9590;
  --color-accent: #c9a84c;
  --color-white: #ffffff;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
}

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

/* ========================================
   NAVBAR
   ======================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 2rem;
  transition: var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  padding: 0.7rem 2rem;
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-white);
  text-decoration: none;
  letter-spacing: 1px;
}

.nav-logo span {
  color: var(--color-gold);
  font-weight: 400;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--color-text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-gold);
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--color-white);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--color-white);
  transition: var(--transition);
}

/* ========================================
   HERO
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../assets/images/background.webp') center/cover no-repeat;
  filter: brightness(0.3);
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  0% { transform: scale(1.05); }
  100% { transform: scale(1.12); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 10, 10, 0.85) 0%,
    rgba(10, 10, 10, 0.6) 50%,
    rgba(10, 10, 10, 0.8) 100%
  );
}

.hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 8rem 2rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

/* LADO ESQUERDO - IMAGEM */
.hero-image-side {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 100%;
}

.hero-image {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  position: relative;
  z-index: 1;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

/* frame removido - usando imagem direta */

.hero-image-caption {
  text-align: center;
}

.hero-title {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 900;
  color: var(--color-white);
  line-height: 1;
  letter-spacing: 3px;
}

.hero-subtitle {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--color-gold);
  font-weight: 400;
  letter-spacing: 6px;
  text-transform: uppercase;
  margin-top: 0.3rem;
}

/* LADO DIREITO - AGENDA */
.hero-schedule-side {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  overflow: hidden;
}

.schedule-header h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--color-white);
  margin-bottom: 0.5rem;
}

.schedule-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-gold), transparent);
  border-radius: 2px;
}

/* NEXT SHOW CAROUSEL */
.next-show-carousel {
  position: relative;
}

.next-show-viewport {
  overflow: hidden;
  border-radius: 16px;
}

.next-show-track {
  display: flex;
  gap: 12px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 4px 0;
}

.ns-slide {
  flex: 0 0 calc(100% - 9rem);
  min-width: 0;
}

.next-show-card {
  width: 100%;
  background: rgba(212, 168, 67, 0.08);
  border: 1px solid rgba(212, 168, 67, 0.2);
  border-radius: 16px;
  padding: 1.8rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  transition: var(--transition);
  cursor: default;
  min-height: 160px;
}

.next-show-card:hover {
  background: rgba(212, 168, 67, 0.12);
  border-color: rgba(212, 168, 67, 0.35);
}

.next-show-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 80px;
  padding: 1rem;
  background: var(--color-gold);
  border-radius: 12px;
  color: var(--color-bg);
  flex-shrink: 0;
}

.ns-day {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
}

.ns-month {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.next-show-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.4rem;
  min-width: 0;
}

.ns-event {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--color-white);
}

.ns-location {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.ns-time {
  color: var(--color-gold);
  font-size: 0.9rem;
  font-weight: 600;
}

/* NEXT SHOW NAV */
.next-show-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 0.8rem;
}

.ns-nav-btn {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--color-text-muted);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.ns-nav-btn:hover {
  background: rgba(212, 168, 67, 0.15);
  color: var(--color-gold);
  border-color: rgba(212, 168, 67, 0.3);
}

.next-show-dots {
  display: flex;
  gap: 0.4rem;
}

.ns-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.ns-dot.active {
  background: var(--color-gold);
  width: 22px;
  border-radius: 4px;
}

/* SHOWS STATIC LIST - HORIZONTAL DATE PILLS */
.shows-static-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.static-show-card {
  background: var(--color-surface);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  padding: 0.4rem 0.7rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: var(--transition);
  opacity: 0.4;
  transform: scale(0.95);
  cursor: pointer;
}

.static-show-card:hover {
  background: var(--color-surface-light);
  border-color: rgba(212, 168, 67, 0.25);
  opacity: 0.8;
  transform: scale(1);
}

.static-show-card.highlighted {
  border-color: var(--color-gold);
  background: rgba(212, 168, 67, 0.1);
  opacity: 1;
  transform: scale(1);
}

.ssc-date {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ssc-day {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-gold);
  line-height: 1;
}

.ssc-month {
  font-size: 0.55rem;
  color: var(--color-gold-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ssc-info {
  display: none;
}

/* CTA */
.hero-cta {
  text-align: center;
  padding-top: 1rem;
}

.cta-phrase {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  margin-bottom: 1.2rem;
  font-style: italic;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
  color: var(--color-bg);
  border: none;
  padding: 1rem 2.2rem;
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--font-body);
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 25px rgba(212, 168, 67, 0.35);
}

.cta-button:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 35px rgba(212, 168, 67, 0.5);
}

.cta-button:active {
  transform: translateY(-1px) scale(0.99);
}

/* ========================================
   MODAL
   ======================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal {
  background: var(--color-surface);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 2.5rem;
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(30px) scale(0.95);
  transition: transform 0.3s ease;
}

.modal-overlay.active .modal {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: none;
  color: var(--color-text-muted);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
}

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

.modal-header h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--color-white);
  margin-bottom: 0.5rem;
}

.modal-header p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

/* FORM */
.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--color-surface-light);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(212, 168, 67, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%239a9590' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-group select option {
  background: var(--color-surface);
  color: var(--color-white);
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.form-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: #25D366;
  color: var(--color-white);
  border: none;
  padding: 1rem;
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--font-body);
  border-radius: 12px;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 0.5rem;
}

.form-submit:hover {
  background: #20bd5a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: var(--color-surface);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 2rem;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-white);
}

.footer-brand span {
  color: var(--color-gold);
  font-weight: 400;
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-top: 0.3rem;
}

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

.footer-links a {
  color: var(--color-text-muted);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

.footer-links a:hover {
  color: var(--color-gold);
  background: rgba(212, 168, 67, 0.1);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding-top: 7rem;
  }

  .hero-image-wrapper {
    max-width: 350px;
  }

  .hero-title {
    font-size: 3rem;
  }

  .ns-slide {
    flex: 0 0 100%;
  }

  .shows-static-list {
    flex-wrap: wrap;
    gap: 0.4rem;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 10, 0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    font-size: 1.3rem;
  }

  .nav-toggle {
    display: flex;
    z-index: 1001;
  }

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

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

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

  .hero-container {
    padding: 6rem 1.5rem 3rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1rem;
    letter-spacing: 4px;
  }

  .ns-slide {
    flex: 0 0 100%;
  }

  .footer-container {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .modal {
    padding: 2rem 1.5rem;
    margin: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .schedule-header h2 {
    font-size: 1.5rem;
  }

  .cta-button {
    padding: 0.9rem 1.8rem;
    font-size: 0.9rem;
  }
}

/* SCROLLBAR */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--color-bg);
}

::-webkit-scrollbar-thumb {
  background: var(--color-gold-dark);
  border-radius: 3px;
}

/* ANIMAÇÕES DE ENTRADA */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-image-side {
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-schedule-side {
  animation: fadeInUp 0.8s ease 0.4s both;
}
