/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Open Sans', Arial, sans-serif;
  line-height: 1.6;
}

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

/* MAIN */

.main {
  position: relative;
  background: #54a3b4;
  z-index: -1;
  padding: 50px 0;
}

.main > .container::before {
  content: '';
  background-image: url('../img/background.png');
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0.3;
  z-index: 1;
}
.main .container img {
  z-index: 2;
  position: relative;
}
/* STAGE */
.stage {
  padding: 50px 0;
}
.stage img {
  width: 100%;
}

.img-container {
  display: flex !important;
  justify-content: center;
  align-items: center;
}

.buyHere {
  cursor: pointer;
  background-color: #a73e20;
  padding: 10px;
}

.buyHere h1 {
  font-weight: bold;
  color: white;
  text-transform: uppercase;
  font-size: 2.5rem;
  text-align: center;
}

/* PRICING */

.info span {
  text-align: right;
  font-size: 14px !important;
  font-style: italic;
  display: block;
  font-weight: 900;
}

table td {
  padding: 7px 7px !important;
}

table tr {
  border-bottom: 4px;
  border-bottom-width: 2px !important;
}

table thead tr {
  background: black;
  color: white;
}

th:first-child {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  padding: 10px;
}
th:last-child {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  /* padding: 0 10px; */
}

table tbody tr td {
  font-weight: 600;
}

.circle {
  display: inline-block;
  width: 16px;
  height: 16px;
  border-radius: 16px;
}

.ub1 {
  background-color: #f69232;
}

.ub2 {
  background-color: #de7800;
}
.ub3 {
  background-color: #e40025;
}
.ub4 {
  background-color: #1e01f4;
}
.ub5 {
  background-color: #416828;
}
.ub6 {
  background-color: #6aa700;
}
.ub7 {
  background-color: #5b800d;
}
.ub8 {
  background-color: #9700fc;
}
.ub9 {
  background-color: #f5ec20;
}

/* ABOUT */
h2 {
  color: white;
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 10px;
}
.about {
  background: #f16745;
  background: linear-gradient(
    180deg,
    rgba(241, 103, 69, 1) 0%,
    rgba(237, 177, 43, 1) 100%
  );
  padding: 50px 0;
}

.about p,
.tickets p {
  color: white;
  font-weight: 200;
  text-align: justify;
}

/* FESTIVAL */

.video-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 50px;
}

.festival {
  background: #54a3b4;
  padding: 50px 0;
}

.festival img {
  width: 70%;
}

/* ENTRADAS */

.tickets {
  background-color: #000204;
  padding: 50px 0;
}

/* GRIDS */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.card {
  background: #fff;
  padding: 30px;
  border-radius: 6px;
  text-align: center;
}

.image-placeholder {
  background: #ddd;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* CTA */
.cta {
  background: #222;
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

/* FOOTER */
.footer {
  background: #000;
  color: #aaa;
  text-align: center;
  padding: 20px 0;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 50px 0;
  }
}
