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

body {
  font-family: "Inter", sans-serif;
  background-color: #1a1a1a;
  color: #ffffff;
  overflow-x: hidden;
  line-height: 1.6;
  padding-top: 80px; /* Espaço para o header fixo */
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Background */
.background-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/Background.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(3px);
  opacity: 0.6;
}

.background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(26, 26, 26, 0.6), rgba(26, 26, 26, 0.8));
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: linear-gradient(to bottom, rgba(26, 26, 26, 0.7), rgba(26, 26, 26, 0.3));
  border-bottom: 0x solid #333333;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  padding: 20px 0;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.livepass-logo {
  height: 34px;
  width: auto;
}

.menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 24px;
  position: relative;
}

.menu-icon {
  display: block;
  width: 30px;
  height: 3px;
  background-color: #ffffff;
  position: relative;
}

.menu-icon::before,
.menu-icon::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 3px;
  background-color: #ffffff;
  transition: all 0.3s ease;
}

.menu-icon::before {
  top: -8px;
}

.menu-icon::after {
  bottom: -8px;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  height: calc(100vh - 80px);
  background: rgba(26, 26, 26, 0.95);
  z-index: 90;
  display: none;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.mobile-menu.active {
  display: flex;
}

.mobile-nav {
  text-align: center;
}

.nav-link {
  display: block;
  color: #ffffff;
  text-decoration: none;
  font-size: 24px;
  margin-bottom: 24px;
  font-weight: 700;
  letter-spacing: 1px;
}

.mobile-social {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-social-icon {
  width: 35px;
  height: 35px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.mobile-social-icon:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

.mobile-social-icon svg {
  width: 20px;
  height: 20px;
}

.social-link {
  width: 40px;
  height: 40px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Main Content */
.main-content {
  position: relative;
  padding: 40px 0 60px;
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
}

/* Event Info */
.event-info {
  margin-bottom: 40px;
  text-align: center;
}

.event-subtitle {
  color: #cccccc;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
  font-weight: 500;
  text-align: center;
}

.event-title-logo {
  margin-bottom: 20px;
  text-align: center;
}

.main-logo {
  max-width: 100%;
  height: auto;
  max-height: 160px;
}

.event-dates {
  margin-bottom: 30px;
  text-align: center;
}

.dates-title {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
  line-height: 1.1;
  text-align: center;
}

.dates-location {
  font-size: 16px;
  color: #cccccc;
  font-weight: 500;
  text-align: center;
}

/* Event Poster */
.event-poster {
  margin-bottom: 60px;
}

.poster-wrapper {
  position: relative;
  max-width: 350px;
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6);
}

.poster-badge {
  display: none;
}

.poster-content {
  background-color: #1a1a1a;
  position: relative;
}

.poster-image {
  width: 100%;
  height: auto;
}

.band-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}

.poster-info {
  padding: 15px;
}

.special-guest {
  text-align: right;
  margin-bottom: 20px;
}

.special-guest span {
  display: block;
  font-size: 12px;
  color: #ff0099;
  margin-bottom: 5px;
}

.special-guest h3 {
  font-size: 18px;
  color: #ffffff;
  font-weight: 700;
}

.venue-info {
  margin-bottom: 15px;
  text-align: center;
}

.venue-name {
  font-size: 16px;
  color: #ff0099;
  font-weight: 700;
  margin-bottom: 4px;
  letter-spacing: 0.5px;
}

.venue-date {
  font-size: 14px;
  color: #ffffff;
  margin-bottom: 2px;
}

.venue-location {
  font-size: 12px;
  color: #cccccc;
}

.poster-footer {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #333333;
}

.sponsors {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sponsor-logo {
  height: 20px;
  width: auto;
}

/* Tickets Section */
.tickets-section {
  background: #1a1a1a;
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.title-line {
  width: 60px;
  height: 3px;
  background: #0096ff;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: #ffffff;
  margin: 0 30px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.section-description {
  color: #cccccc;
  font-size: 18px;
}

.section-logo {
  margin-bottom: 30px;
  text-align: center;
}

.tickets-logo {
  max-width: 200px;
  height: auto;
  max-height: 80px;
}

.tickets-list {
  max-width: 600px;
  margin: 0 auto;
}

.ticket-item {
  border: 1px solid #ffffff;
  padding: 20px 25px;
  margin-bottom: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(26, 26, 26, 0.8);
  text-decoration: none;
  color: inherit;
}

.ticket-item:hover {
  border-color: #0096ff;
  background: rgba(0, 150, 255, 0.1);
}

.ticket-item.ticket-sold-out {
  border-color: #666666;
  background: rgba(102, 102, 102, 0.2);
  cursor: not-allowed;
  opacity: 0.6;
}

.ticket-item.ticket-sold-out:hover {
  border-color: #666666;
  background: rgba(102, 102, 102, 0.2);
}

.ticket-info h4 {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2px;
}

.ticket-info p {
  font-size: 14px;
  color: #cccccc;
  margin: 0;
}

.ticket-status {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
  display: block;
}

.ticket-extra .ticket-status {
  color: #22c55e;
}

.ticket-sold-out .ticket-status {
  color: #ef4444;
}

.ticket-price {
  text-align: right;
}

.price-label {
  display: block;
  font-size: 10px;
  color: #22c55e;
  text-transform: uppercase;
  margin-bottom: 2px;
  font-weight: 600;
}

.sold-out-label {
  color: #ef4444;
  font-weight: 700;
  font-size: 12px;
}

.price-value {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
}

/* About Section */
.about-section {
  background: #1a1a1a;
  padding: 80px 0;
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
}

.about-card {
  background: #2a2a2a;
  border: 1px solid #444444;
  padding: 30px;
  border-radius: 8px;
}

.about-title {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
}

.about-text {
  color: #cccccc;
  margin-bottom: 15px;
  font-size: 16px;
}

.about-description {
  color: #cccccc;
  margin-bottom: 15px;
  line-height: 1.6;
  font-size: 14px;
}

.about-description:last-child {
  margin-bottom: 0;
}

.about-description strong {
  color: #ffffff;
}

/* Footer */
.footer {
  background: #000000;
  padding: 40px 0 30px;
  border-top: 1px solid #333333;
}

.footer .container {
  text-align: center;
}

/* Social Media Icons */
.social-media {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.social-icon {
  width: 50px;
  height: 50px;
  background: #000000;
  border: 2px solid #333333;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: #333333;
  border-color: #555555;
  transform: translateY(-2px);
}

/* App Download Buttons */
.app-downloads {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.app-store-btn,
.google-play-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: #000000;
  border: 2px solid #333333;
  border-radius: 8px;
  color: #ffffff;
  min-width: 160px;
  cursor: default;
}

.app-store-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
}

.app-store-small {
  font-size: 10px;
  color: #cccccc;
}

.app-store-large {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
}

/* Footer Legal */
.footer-legal {
  border-top: 1px solid #333333;
  padding-top: 20px;
}

.legal-text {
  font-size: 12px;
  color: #888888;
  margin-bottom: 10px;
  line-height: 1.4;
}

.copyright {
  font-size: 12px;
  color: #888888;
  margin: 0;
}
