.elementor-52 .elementor-element.elementor-element-b01cff7{--display:flex;}/* Start custom CSS for html, class: .elementor-element-f3e456e *//* =========================
   EVENT DETAIL PAGE
========================= */

.event-detail-page {
  font-family: 'Inter', sans-serif;
  background: #f9fafb;
  color: #111;
}

/* =========================
   HERO / BANNER
========================= */

.event-banner {
  position: relative;
  width: 100%;
  height: 80vh;
  overflow: hidden;
}

.event-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.event-banner-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 2rem;
  background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0));
  color: #fff;
}

.event-banner-overlay h1 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  line-height: 1.2;
}

.event-banner-overlay p {
  font-size: 1rem;
  margin-bottom: 20px;
}

/* =========================
   BOTONES – BRANDING OFICIAL
========================= */

.btn-primary {
  background: linear-gradient(135deg, #00BEFA, #0062EB);
  color: #000; /* Texto negro por defecto */
  padding: 12px 22px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #0062EB, #004bb5);
  color: #ffffff; /* Texto blanco en hover */
  transform: translateY(-2px);
}

.btn-primary:active {
  transform: translateY(0);
}

.buy-btn {
  width: 100%;
  margin-top: 15px;
  text-align: center;
}

/* =========================
   CONTENIDO
========================= */

.event-content {
  display: flex;
  flex-direction: column;
  padding: 2rem 1rem;
  gap: 2rem;
  max-width: 1200px;
  margin: auto;
}

.event-info h2,
.event-info h3 {
  margin-top: 1.5rem;
  font-weight: 600;
}

.event-info p {
  line-height: 1.7;
  margin-top: 10px;
  color: #333;
}

.event-info ul {
  margin-top: 10px;
  padding-left: 1rem;
}

.event-info ul li {
  margin-bottom: 8px;
}

/* Blockquote */
blockquote {
  margin: 20px 0;
  padding: 15px;
  background: #eaf7ff;
  border-left: 4px solid #00BEFA;
  font-style: italic;
  color: #222;
}

/* =========================
   SIDEBAR
========================= */

.ticket-card {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  text-align: center;
}

.ticket-card h3 {
  margin-bottom: 10px;
}

.ticket-card p {
  font-size: .95rem;
  color: #555;
}

/* =========================
   RESPONSIVE
========================= */

/* Tablet */
@media (min-width: 768px) {

  .event-banner-overlay h1 {
    font-size: 2.2rem;
  }

  .event-content {
    padding: 3rem 2rem;
  }
}

/* Desktop */
@media (min-width: 992px) {

  .event-content {
    flex-direction: row;
    align-items: flex-start;
  }

  .event-info {
    flex: 2;
  }

  .event-sidebar {
    flex: 1;
    position: sticky;
    top: 100px;
  }

  .event-banner-overlay h1 {
    font-size: 2.6rem;
  }
}

/* Mobile extra optimización */
@media (max-width: 480px) {

  .event-banner {
    height: 70vh;
  }

  .event-banner-overlay {
    padding: 1.5rem;
  }

  .btn-primary {
    width: 100%;
    text-align: center;
  }
}/* End custom CSS */