/* 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: 0 0 50px 0;
}

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

.headerLogo {
  top: -100px;
}
.expoLogo {
  top: -360px;
}
.dateImage {
  top: -300px;
}
/* STAGE */
.stage {
  background: #f8b03b;
  padding: 150px 0;
}
.stage img {
  width: 100%;
}

.buy-container1 {
  margin: 0 130px 130px 130px;
}
.buy-container2 {
  margin: 130px;
}

/* .img-container {
  display: flex !important;
  justify-content: center;
  align-items: 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: white;
  color: black;
}

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 {
  color: black;
  font-weight: 600;
}

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

.ub1 {
  background-color: #e92477;
}

.ub2 {
  background-color: #e92477;
}
.ub3 {
  background-color: #21ca60;
}
.ub4 {
  background-color: #21ca60;
}

/* ARTISTS */
.artists {
  background-image: url('../img/background-artists.png');
  background-size: auto;
  background-repeat: no-repeat;
  padding-top: 100px;
}

.img-container {
  position: relative;
  top: 250px;
}

.container-buy {
  bottom: 100px;
}

/* ABOUT */
h2 {
  color: white;
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 10px;
}
.about {
  background: #147fd2;
  padding: 100px 0;
  position: relative;
}

.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: #ff1678;
  padding: 50px 0;
}

.festival img {
  width: 70%;
}

/*INSTAGRAM*/

.instagram {
  background-image: url('../img/instagram-background.png');
  background-size: cover;
  background-repeat: no-repeat;
  padding: 20px 0;
}

/* 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: white;
  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;
  }
}
