@import "variables.css";

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.container {
  margin: auto;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  gap: 50px;
  color: var(--white);
}

.card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--purple-lighter);
  backdrop-filter: blur(6px);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  overflow: hidden;
  box-sizing: border-box;
  transition: all 0.3s ease;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.45);
}

.card-body {
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 1rem;
  /* background-color: rgba(255, 255, 255, 0.08); */
}
.event-header {
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 10px;
}
.event-body {
  width: 94%;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
}

.list-start {
  align-items: flex-start;
}

.programa-header {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: auto;
  padding: 50px 0px 0px 0px;
  width: 100%;
  display: flex;
  justify-content: center;
  color: var(--white);
  font-size: 4rem;
  font-weight: 800;
  text-transform: uppercase;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.45);
}

.programa {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  padding: 0 20px 40px 20px;
  line-height: 1.6;
}

.column {
  flex: 1 1 calc(50% - 20px);
  min-width: 350px;
  background-color: rgba(255, 255, 255, 0.08);
}

h2 {
  font-size: 1.9rem;
  font-weight: 700;
  margin-bottom: 22px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.4);
  padding-bottom: 6px;
}

@media (max-width: 768px) {
  .container {
    width: 100%;
    gap: 1rem;
  }
  .programa {
    padding: 0rem 0.5rem 1.5rem 0.5rem;
  }
  .card {
    padding: 0.85rem;
  }
  .event-header {
    text-align: justify;
    padding-bottom: 0.5rem;
    text-align-last: center;
  }
  .programa-header {
    padding-top: 1rem;
    font-size: 3rem;
  }
}
@media (min-width: 1080px) {
  .container {
    width: 90%;
    max-width: 1400px;
  }
}
@media (min-width: 2560px) {
  .container {
    width: 80%;
    max-width: 2000px;
  }
}
