/* Reset e Base */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --color-primary: #2dd4bf;
  --color-primary-dark: #14b8a6;
  --color-background: #0a0a0a;
  --color-foreground: #ffffff;
  --color-muted: rgba(255, 255, 255, 0.7);
  --color-border: rgba(255, 255, 255, 0.3);
  --font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  background-color: var(--color-background);
  color: var(--color-foreground);
  line-height: 1.6;
  min-height: 100vh;
}

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

a {
  text-decoration: none;
  color: inherit;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, transparent 30%, rgba(0, 0, 0, 0.9) 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 1rem 0;
  text-align: center;
}

/* ELO Logo */
.elo-logo {
  margin-bottom: 1rem;
}

.elo-text {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-foreground);
  letter-spacing: 0.1em;
}

.elo-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-top: 0.25rem;
}

/* Event Titles */
.artist-name {
  color: var(--color-foreground);
  font-size: 1.25rem;
  letter-spacing: 0.4em;
  font-weight: 300;
  margin-bottom: 0.5rem;
}

.event-title {
  color: var(--color-foreground);
  font-size: 2.5rem;
  letter-spacing: 0.2em;
  font-weight: 300;
  line-height: 1.2;
}

.event-location {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.875rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-top: 1rem;
}

/* Luan Image */
.luan-image {
  position: relative;
  z-index: 10;
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
  margin-top: auto;
  padding: 0 1rem;
}

.luan-image img {
  max-width: 400px;
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* Event Info */
.event-info {
  position: relative;
  z-index: 10;
  width: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.95) 50%, transparent 100%);
  padding: 2rem 1rem 3rem;
  text-align: center;
}

.venue {
  color: var(--color-foreground);
  font-size: 0.875rem;
  letter-spacing: 0.15em;
  margin-bottom: 0.25rem;
}

.date {
  color: var(--color-foreground);
  font-size: 0.875rem;
  letter-spacing: 0.15em;
  margin-bottom: 1.5rem;
}

.vip-info {
  margin-bottom: 0.25rem;
}

.vip-label {
  color: var(--color-primary);
  font-weight: 700;
  letter-spacing: 0.1em;
}

.vip-text {
  color: var(--color-foreground);
}

.vip-subtext {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

.btn-vip {
  display: inline-block;
  background-color: var(--color-primary);
  color: var(--color-background);
  font-weight: 700;
  font-size: 0.875rem;
  padding: 1rem 2rem;
  border-radius: 9999px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-vip:hover {
  background-color: var(--color-primary-dark);
  transform: scale(1.05);
}

/* Sales Section */
.sales-section {
  padding: 4rem 1rem;
  background-color: var(--color-background);
}

.section-title {
  color: var(--color-primary);
  text-align: center;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.sales-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
}

.sales-card {
  border: 1px solid var(--color-border);
  border-radius: 0.5rem;
  padding: 1.5rem;
  text-align: center;
  transition: border-color 0.3s ease;
  display: block;
  text-decoration: none;
  color: inherit;
}

.sales-card:hover {
  border-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
}

.sales-card h3 {
  color: var(--color-foreground);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.sale-date {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.5rem;
}

.sale-vip {
  color: var(--color-primary);
  font-weight: 500;
}

.sale-status {
  color: var(--color-primary);
  font-weight: 500;
  margin-top: 0.5rem;
}

.sale-status.sold-out {
  color: #ef4444;
  font-weight: 600;
}

/* Videos Section */
.videos-section {
  padding: 4rem 1rem;
  background-color: var(--color-background);
}

.videos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Novos estilos para vídeos com thumbnail clicável */
.video-card {
  position: relative;
  border-radius: 0.5rem;
  overflow: hidden;
  background-color: #000;
  cursor: pointer;
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* Proporção 16:9 */
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-thumbnail {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.video-card:hover .video-thumbnail {
  transform: scale(1.05);
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.play-button:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

.play-button svg {
  width: 68px;
  height: 48px;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
}

.video-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 3rem 1rem 1rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
  z-index: 5;
}

.video-info h3 {
  color: var(--color-foreground);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.video-info p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Estado quando o vídeo está carregado */
.video-card.video-loaded .video-thumbnail,
.video-card.video-loaded .play-button,
.video-card.video-loaded .video-info {
  display: none;
}

/* Footer */
.footer {
  position: relative;
  padding: 3rem 1rem;
}

.footer-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.footer-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
  opacity: 0.3;
}

.footer-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.95) 50%, rgba(0, 0, 0, 0.8) 100%);
}

.footer-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
  margin: 0 auto;
}

.partners {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.partner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.partner-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.partner-logo {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.nenety {
  flex-direction: column;
  gap: 0;
}

.nenety-text {
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-foreground);
}

.nenety-subtitle {
  font-size: 0.625rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.copyright {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.copyright p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
}

/* Media Queries */
@media (min-width: 768px) {
  .elo-text {
    font-size: 2.5rem;
  }

  .artist-name {
    font-size: 1.5rem;
  }

  .event-title {
    font-size: 4rem;
  }

  .event-location {
    font-size: 1rem;
  }

  .luan-image img {
    max-width: 500px;
  }

  .venue,
  .date {
    font-size: 1rem;
  }

  .btn-vip {
    font-size: 1rem;
    padding: 1.25rem 2.5rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .sales-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .videos-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .partners {
    flex-direction: row;
    gap: 4rem;
  }

  .nenety-text {
    font-size: 2rem;
  }
}

@media (min-width: 1024px) {
  .hero-content {
    padding-top: 3rem;
  }

  .event-title {
    font-size: 5rem;
  }

  .luan-image img {
    max-width: 600px;
  }
}
