html,
body {
  background-color: #121212;
  margin: 0px;
}


header div {
  padding: 25px;
  justify-content: space-between;
  display: flex;
  align-items: center;
}

.home-button {
  font-family: 'Roboto Mono', monospace;
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  text-decoration-line: underline;
  color: #F0E37C;
}

body {
  background-color: #121212;
  color: #f0e37c;
  font-family: "Roboto Mono", monospace;
  padding: 0px;
  margin: 0px;
}

.ticket-info {
  flex: 1;
  padding: 30px;
  border-right: 1px solid #f0e37c;
}

.ticket-info h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
}


.ticket-info ul {
  list-style-type: disc;
  padding-left: 20px;
  margin-bottom: 20px;
}

.price {
  font-weight: 700;
  margin-bottom: 20px;
}

.buy-button {
  display: inline-block;
  background: none;
  border: none;
  text-decoration: underline;
  color: #f0e37c;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
}

/* --- MODAL TICKETS --- */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(18, 18, 18, 0.9);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background-color: #1a1a1a;
  border: 1px solid #f0e37c;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  width: 300px;
  position: relative;
}

.modal-content h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.modal-content p {
  font-size: 14px;
  margin-bottom: 15px;
  color: #ddd;
}

.modal-content select {
  background-color: #121212;
  color: #f0e37c;
  border: 1px solid #f0e37c;
  padding: 8px;
  width: 100%;
  margin-bottom: 15px;
}

.confirm-btn {
  background-color: #f0e37c;
  color: #121212;
  font-weight: 700;
  border: none;
  padding: 8px 12px;
  cursor: pointer;
  width: 100%;
  transition: background 0.3s ease;
}

.confirm-btn:hover {
  background-color: #fff7a3;
}

.close {
  position: absolute;
  top: 10px;
  right: 15px;
  color: #f0e37c;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover {
  color: #fff7a3;
}


.ticket-section {
  display: flex;
  gap: 4rem;
  flex-direction: column;
  align-items: center;
  margin: 80px 40px;
}

.ticket-box {
  border: 1px solid #e7d764;
  color: #e7d764;
  display: flex;
  width: 85rem;
  align-items: stretch;
  position: relative;
}

.ticket-description {
  flex: 0.4;
  display: flex;
  flex-direction: column;
}

.ticket-description> :nth-child(1) {
  flex: 0.15;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid #e7d764;
  border-right: 1px solid #e7d764;
}

.ticket-description> :nth-child(2) {
  padding: 0px 24px;
  flex: 0.70;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #e7d764;
  border-right: 1px solid #e7d764;
  text-wrap: pretty;
}

.ticket-description> :nth-child(3) {
  flex: 0.15;
  display: flex;
  justify-content: center;
  align-items: center;
  border-right: 1px solid #e7d764;
}

.ticket-image {
  flex: 0.6;
  display: flex;
  min-height: 700px;
}

.ticket-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 30px;
  background-color: #F0E37C;
  font-family: 'Roboto Mono', monospace;
  font-weight: normal;
  height: 85px;
}

footer a {
  color: #121212;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

.footer-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-links {
  display: flex;
  gap: 44px;
  padding-top: 35px;
  color: #121212;
  text-decoration: none;
  font-size: 15px;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-right {
  display: flex;
  gap: 44px;
}

.redes {
  width: 30px;
  height: 30px;
}