/* ═══════════════════════════════════════════════════════════════════════════
   EVENTOS.CSS — Estilos de la página de eventos Opulence
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─── Hero con video ────────────────────────────────────────────────────────── */
.ev-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0d0d0d;
}

.ev-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.ev-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.15) 100%);
  z-index: 1;
}

.ev-hero__content {
  position: relative;
  z-index: 2;
  padding: 10px 60px 80px;
  max-width: 720px;
}

.ev-hero__kicker {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #c9a96e;
  border: 1px solid rgba(201,169,110,0.5);
  padding: 7px 16px;
  margin-bottom: 28px;
}

.ev-hero__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(38px, 6vw, 76px);
  font-weight: 700;
  color: #fff;
  line-height: 1.12;
  margin-bottom: 16px;
}

.ev-hero__date {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 40px;
  font-weight: 300;
  letter-spacing: 0.04em;
}

.ev-hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #1a1a1a;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 18px 44px;
  border: 2px solid #fff;
  transition: background 0.3s, color 0.3s;
}

.ev-hero__btn:hover {
  background: #fff;
  color: #1a1a1a;
}

.ev-hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.4);
  font-size: 22px;
  animation: bounce 2s infinite;
}

/* Controles de video del hero */
.ev-hero__controls {
  position: absolute;
  bottom: 36px;
  right: 40px;
  display: flex;
  gap: 10px;
  z-index: 10;
}

.ev-hero__ctrl-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.35);
  background: rgba(0,0,0,0.5);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
}

.ev-hero__ctrl-btn:hover {
  background: rgba(201,169,110,0.25);
  border-color: #c9a96e;
  transform: scale(1.08);
}


@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ─── Detalles del evento ────────────────────────────────────────────────────── */
.ev-details {
  background: #f9f7f4;
  padding: 90px 0;
}

.ev-details__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}

.ev-details__label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #c9a96e;
  margin-bottom: 14px;
}

.ev-details__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 44px);
  color: #1a1a1a;
  margin-bottom: 50px;
}

.ev-details__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-bottom: 50px;
}

.ev-details__card {
  background: #fff;
  border: 1px solid #e8e4de;
  padding: 32px 28px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  transition: box-shadow 0.2s;
}

.ev-details__card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

.ev-details__card--highlight {
  background: #1a1a1a;
  border-color: #1a1a1a;
  color: #fff;
}

.ev-details__card--highlight strong,
.ev-details__card--highlight p,
.ev-details__card--highlight small {
  color: #fff;
}

.ev-details__icon {
  font-size: 28px;
  line-height: 1;
  flex-shrink: 0;
}

.ev-details__card strong {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 8px;
}

.ev-details__card--highlight strong {
  color: #c9a96e;
}

.ev-details__card p {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #1a1a1a;
  line-height: 1.6;
  margin: 0;
}

.ev-details__card small {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: #999;
  margin-top: 6px;
  display: block;
}

.ev-details__price {
  font-family: 'Playfair Display', serif;
  font-size: 26px !important;
  font-weight: 700;
  color: #c9a96e !important;
}

.ev-details__cta {
  text-align: center;
  margin-top: 20px;
}

.ev-details__btn {
  display: inline-block;
  background: #1a1a1a;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 48px;
  transition: background 0.3s;
}

.ev-details__btn:hover {
  background: #333;
}

/* ─── Sección de registro ────────────────────────────────────────────────────── */
.ev-register {
  background: #1a1a1a;
  padding: 90px 0;
}

.ev-register__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: start;
}

.ev-register__form-wrap {
  background: #fff;
  padding: 50px 44px;
}

.ev-register__title {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.ev-register__sub {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #666;
  margin-bottom: 36px;
  line-height: 1.6;
}

/* ─── Formulario ─────────────────────────────────────────────────────────────── */
.ev-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.ev-form__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ev-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.ev-form__field label {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #444;
}

.ev-form__field input[type="text"],
.ev-form__field input[type="tel"],
.ev-form__field input[type="email"] {
  border: 1px solid #ddd;
  border-radius: 0;
  padding: 14px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #1a1a1a;
  background: #fafafa;
  transition: border-color 0.2s;
  width: 100%;
  box-sizing: border-box;
}

.ev-form__field input:focus {
  outline: none;
  border-color: #1a1a1a;
  background: #fff;
}

.ev-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ev-options--inline {
  flex-direction: row;
  gap: 14px;
}

.ev-option {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}

.ev-option input[type="radio"] {
  appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid #ccc;
  border-radius: 50%;
  margin-top: 2px;
  flex-shrink: 0;
  transition: border-color 0.2s, background 0.2s;
  cursor: pointer;
}

.ev-option input[type="radio"]:checked {
  border-color: #1a1a1a;
  background: #1a1a1a;
  box-shadow: inset 0 0 0 3px #fff;
}

.ev-option > span {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #333;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
}

.ev-option > span strong {
  font-weight: 600;
  color: #1a1a1a;
  font-size: 14px;
}

.ev-options--inline .ev-option > span {
  flex-direction: row;
  align-items: center;
}

.ev-form__btn {
  background: #1a1a1a;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  padding: 18px;
  cursor: pointer;
  transition: background 0.3s;
  margin-top: 6px;
}

/* Precio por boleto en el formulario */
.ev-form__price-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f9f7f4;
  border: 1px solid #e8e4de;
  padding: 14px 18px;
}

.ev-form__price-label {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #888;
}

.ev-form__price-value {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
}

/* Selector de cantidad de boletos */
.ev-qty {
  display: flex;
  align-items: center;
  gap: 0;
  width: fit-content;
  border: 1px solid #ddd;
}

.ev-qty__btn {
  width: 44px;
  height: 44px;
  background: #f0ede8;
  border: none;
  font-size: 22px;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  color: #1a1a1a;
  cursor: pointer;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ev-qty__btn:hover {
  background: #e0dbd3;
}

.ev-qty__input {
  width: 64px;
  height: 44px;
  text-align: center;
  border: none;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  background: #fff;
  -moz-appearance: textfield;
}

.ev-qty__input::-webkit-outer-spin-button,
.ev-qty__input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

/* Campos de asistentes */
.ev-attendee-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 10px;
}

.ev-attendee-field:last-child {
  margin-bottom: 0;
}

.ev-attendee-field label {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #666;
}

.ev-attendee-field input {
  border: 1px solid #ddd;
  padding: 12px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #1a1a1a;
  background: #fafafa;
  transition: border-color 0.2s;
  width: 100%;
  box-sizing: border-box;
}

.ev-attendee-field input:focus {
  outline: none;
  border-color: #1a1a1a;
  background: #fff;
}

/* Resumen de costo total */
.ev-cost-summary {
  background: #1a1a1a;
  padding: 16px 20px;
  display: flex;
  align-items: center;
}

.ev-cost-summary__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
}

.ev-cost-summary__total {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: #c9a96e;
}


.ev-form__btn:hover:not(:disabled) {
  background: #333;
}

.ev-form__btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.ev-form-alert {
  background: #fff3f3;
  border: 1px solid #f5c6cb;
  color: #721c24;
  padding: 12px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  border-radius: 2px;
}

/* ─── Pantalla de éxito ──────────────────────────────────────────────────────── */
.ev-success {
  text-align: center;
  padding: 20px 0;
}

.ev-success__icon {
  width: 72px;
  height: 72px;
  background: #1a1a1a;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 28px;
}

.ev-success h2 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: #1a1a1a;
  margin-bottom: 32px;
}

.ev-success__details {
  background: #f9f7f4;
  padding: 28px 24px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.ev-success__item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ev-success__label {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: #888;
}

.ev-success__item strong {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #1a1a1a;
  font-weight: 600;
}

.ev-success__tip {
  background: #1a1a1a;
  color: #c9a96e;
  padding: 14px 18px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  border-radius: 2px;
  margin-top: 8px;
}

.ev-success__note {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #888;
  margin-bottom: 24px;
}

.ev-success__back {
  display: inline-block;
  border: 2px solid #1a1a1a;
  color: #1a1a1a;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 12px 32px;
  transition: background 0.3s, color 0.3s;
}

.ev-success__back:hover {
  background: #1a1a1a;
  color: #fff;
}

/* ─── Sidebar de info ─────────────────────────────────────────────────────────── */
.ev-register__info {
  padding-top: 10px;
}

.ev-register__info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: #fff;
  margin-bottom: 28px;
}

.ev-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ev-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
}

.ev-benefits li span {
  font-size: 20px;
  flex-shrink: 0;
}

.ev-register__badge {
  background: rgba(201,169,110,0.12);
  border: 1px solid rgba(201,169,110,0.4);
  padding: 24px 28px;
}

.ev-register__badge span {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #c9a96e;
  margin-bottom: 6px;
}

.ev-register__badge p {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  margin: 0;
}

/* ─── Responsive ─────────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .ev-hero__content { padding: 110px 24px 60px; }
  .ev-details__inner { padding: 0 24px; }
  .ev-register__inner { grid-template-columns: 1fr; padding: 0 24px; gap: 40px; }
  .ev-register__form-wrap { padding: 36px 24px; }
  .ev-form__row { grid-template-columns: 1fr; }
  .ev-register__info { order: -1; }
  .ev-hero__content {
    
}

@media (max-width: 600px) {
  .ev-details__grid { grid-template-columns: 1fr; }
  .ev-register { padding: 60px 0; }
  .ev-details { padding: 60px 0; }
  .ev-options--inline { flex-direction: column; }

  .ev-hero {
    min-height: 75vh;
  }

  .ev-hero__content {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 0px 20px 36px;
    max-width: 100%;
    box-sizing: border-box;
  }

  .ev-hero__title {
    font-size: 26px;
    line-height: 1.2;
    margin-bottom: 10px;
  }

  .ev-hero__kicker {
    margin-bottom: 14px;
  }

  .ev-hero__date {
    font-size: 13px;
    margin-top: auto;
margin-bottom: 16px;

  }

  .ev-hero__btn {
  align-self: flex-start;
  width: 50%;
  text-align: center;
  justify-content: center;
  padding: 14px 0;
}

/* ─── Sold out ───────────────────────────────────────────────────────────────── */
.ev-soldout-badge {
  display: inline-block;
  background: transparent;
  color: #c0392b;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0;
  margin-left: 8px;
  vertical-align: middle;
}


.ev-option--soldout {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.ev-option--soldout input[type="radio"] {
  cursor: not-allowed;
}

.ev-option > span strong .ev-soldout-badge {
  color: #c0392b;
}



}

