/* ============================================
   GENERAL STYLES
   ============================================ */

a {
  text-decoration: none !important;
}

.fs-1 {
  font-size: 1rem !important;
}

.gap-2 {
  gap: .5rem !important;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   EVENT HOME PAGE - inicio.php (Metodología BEM)
   ============================================ */

/* Event Hero Section */
.event-hero {
  min-height: 90vh;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f8fafc 100%);
  padding: 100px 0 80px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.event-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 20%, rgba(79, 70, 229, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.event-hero__container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.event-hero__badge {
  display: inline-block;
  background: linear-gradient(135deg, #4f46e5 0%, #6366f1 100%);
  color: white;
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
  animation: fadeInUp 0.6s ease-out;
}

.event-hero__title {
  font-size: 4rem;
  font-weight: 900;
  color: #0f172a;
  margin-bottom: 16px;
  letter-spacing: -2px;
  line-height: 1.1;
  animation: fadeInUp 0.6s ease-out 0.1s both;
}

.event-hero__subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  color: #64748b;
  margin-bottom: 32px;
  line-height: 1.5;
  animation: fadeInUp 0.6s ease-out 0.2s both;
}

.event-hero__cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  animation: fadeInUp 0.6s ease-out 0.5s both;
}

.event-hero__cta {
  display: inline-block;
  padding: 18px 40px;
  border-radius: 50px;
  font-size: 1.0625rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.event-hero__cta--primary {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: white;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.3);
}

.event-hero__cta--primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.event-hero__cta--primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.4);
  color: white;
}

.event-hero__cta--primary:hover::before {
  left: 100%;
}

.event-hero__cta--secondary {
  background: white;
  color: #0f172a;
  border: 2px solid #e2e8f0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.event-hero__cta--secondary:hover {
  background: #f8fafc;
  border-color: #cbd5e1;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  color: #0f172a;
}

/* Event Highlights Section */
.event-highlights {
  background: white;
  padding: 100px 0;
}

.event-highlights__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.event-highlights__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
  animation: fadeInUp 0.6s ease-out;
}

.event-highlights__title {
  font-size: 3rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.event-highlights__description {
  font-size: 1.25rem;
  color: #64748b;
  line-height: 1.6;
}

.event-highlights__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.highlight-card {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 36px 28px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  animation: fadeInUp 0.6s ease-out both;
}

.highlight-card:nth-child(1) { animation-delay: 0.1s; }
.highlight-card:nth-child(2) { animation-delay: 0.2s; }
.highlight-card:nth-child(3) { animation-delay: 0.3s; }
.highlight-card:nth-child(4) { animation-delay: 0.4s; }
.highlight-card:nth-child(5) { animation-delay: 0.5s; }
.highlight-card:nth-child(6) { animation-delay: 0.6s; }

.highlight-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom, #4f46e5, #6366f1);
  border-radius: 20px 0 0 20px;
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.highlight-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(79, 70, 229, 0.15);
  border-color: #cbd5e1;
}

.highlight-card:hover::before {
  transform: scaleY(1);
}

.highlight-card__icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: block;
}

.highlight-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
  line-height: 1.3;
}

.highlight-card__text {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.7;
  margin: 0;
}

/* Event Info Section */
.event-info {
  background: linear-gradient(to bottom, #ffffff 0%, #f8fafc 100%);
  padding: 100px 0;
}

.event-info__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.event-info__visual {
  position: relative;
  animation: fadeInUp 0.8s ease-out;
}

.event-info__image {
  width: 100%;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
  display: block;
}

.event-info__content {
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.event-info__title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 40px;
  letter-spacing: -1px;
}

.event-info__details {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 40px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.info-item__icon {
  font-size: 2.5rem;
  flex-shrink: 0;
  line-height: 1;
}

.info-item__content {
  flex: 1;
}

.info-item__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 6px;
}

.info-item__text {
  font-size: 1rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

.event-info__cta {
  display: inline-block;
  background: linear-gradient(135deg, #4f46e5 0%, #6366f1 100%);
  color: white;
  padding: 18px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.0625rem;
  box-shadow: 0 8px 24px rgba(79, 70, 229, 0.3);
  transition: all 0.3s ease;
}

.event-info__cta:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(79, 70, 229, 0.4);
  color: white;
}

/* Responsive Design - Event Pages */
@media (max-width: 1024px) {
  .event-hero__title {
    font-size: 3rem;
  }

  .event-highlights__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .event-info__container {
    gap: 60px;
  }

  .event-info__title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .event-hero {
    padding: 80px 0 60px;
    min-height: auto;
  }

  .event-hero__title {
    font-size: 2.25rem;
    letter-spacing: -1px;
  }

  .event-hero__subtitle {
    font-size: 1.125rem;
  }

  .event-hero__cta {
    padding: 16px 32px;
    font-size: 1rem;
  }

  .event-hero__cta-group {
    gap: 16px;
  }

  .event-highlights {
    padding: 80px 0;
  }

  .event-highlights__title {
    font-size: 2rem;
  }

  .event-highlights__description {
    font-size: 1.0625rem;
  }

  .event-highlights__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .highlight-card {
    padding: 28px 24px;
  }

  .highlight-card__icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
  }

  .highlight-card__title {
    font-size: 1.125rem;
  }

  .event-info {
    padding: 80px 0;
  }

  .event-info__container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .event-info__visual {
    order: -1;
  }

  .event-info__title {
    font-size: 1.75rem;
  }

  .info-item {
    gap: 16px;
  }

  .info-item__icon {
    font-size: 2rem;
  }

  .info-item__title {
    font-size: 1rem;
  }

  .info-item__text {
    font-size: 0.9375rem;
  }

  .event-info__cta {
    padding: 16px 32px;
    font-size: 1rem;
    width: 100%;
    text-align: center;
  }
}

/* ============================================
   PRICING SECTION - categorias.php (Metodología BEM)
   ============================================ */

.pricing {
  background: linear-gradient(to bottom, #ffffff 0%, #f8fafc 50%, #ffffff 100%);
  padding: 80px 0;
}

.pricing__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.pricing-initial {
  display: flex;
  align-content: center;
  align-items: center;
  gap: .25rem;
}

/* Header */
.pricing__header {
  text-align: center;
  margin-bottom: 60px;
  animation: fadeInUp 0.8s ease-out;
}

.pricing__title {
  font-size: 3rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.pricing__subtitle {
  font-size: 1.125rem;
  color: #64748b;
  margin-bottom: 32px;
  line-height: 1.6;
}

.pricing__cta {
  display: inline-block;
  background: #0f172a;
  color: white;
  padding: 16px 48px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.2);
}

.pricing__cta:hover {
  background: #1e293b;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.3);
  color: white;
}

.pricing__cta--secondary {
  background: white;
  color: #0f172a;
  border: 2px solid #0f172a;
}

.pricing__cta--secondary:hover {
  background: #0f172a;
  color: white;
}

/* Period Cards */
.pricing__periods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.pricing__period-card {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  transition: all 0.3s ease;
}

.pricing__period-card:hover {
  border-color: #cbd5e1;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.pricing__period-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.pricing__period-title {
  font-size: 1rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 12px;
  line-height: 1.4;
}

.pricing__period-badge {
  display: inline-block;
  padding: 6px 14px;
  background: #f1f5f9;
  color: #475569;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.pricing__period-badge--best {
  background: #dcfce7;
  color: #166534;
}

/* Section Titles */
.pricing__section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 32px;
  text-align: center;
}

/* Extension Notice */
.pricing__extension-notice {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  border: 2px solid #fbbf24;
  border-radius: 16px;
  padding: 24px 32px;
  margin-bottom: 48px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  box-shadow: 0 8px 24px rgba(251, 191, 36, 0.2);
  animation: fadeInUp 0.8s ease-out 0.3s both;
}

.pricing__extension-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
  line-height: 1;
}

.pricing__extension-content {
  flex: 1;
}

.pricing__extension-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #92400e;
  margin: 0 0 8px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing__extension-text {
  font-size: 1rem;
  color: #78350f;
  line-height: 1.7;
  margin: 0;
}

.pricing__extension-text strong {
  font-weight: 700;
  color: #92400e;
}

/* Featured Packages */
.pricing__featured {
  margin-bottom: 60px;
}

/* Pricing Cards */
.pricing-card {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 32px;
  margin-bottom: 20px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  display: block;
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: #0f172a;
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.pricing-card:hover {
  border-color: #0f172a;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.pricing-card:hover::before {
  transform: scaleY(1);
}

.pricing-card--featured {
  border: 2px solid #4f46e5;
  background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
}

.pricing-card--featured::before {
  background: #4f46e5;
}

.pricing-card__badge {
  display: inline-block;
  background: #4f46e5;
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.pricing-card__header {
  margin-bottom: 24px;
}

.pricing-card__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
  line-height: 1.3;
}

.pricing-card__subtitle {
  font-size: 1rem;
  color: #64748b;
  margin: 0;
}

.pricing-card__note {
  display: inline;
  color: #94a3b8;
  font-size: 0.875rem;
  margin-left: 4px;
}

/* Benefits */
.pricing-card__benefits {
  background: #f8fafc;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 24px;
}

.pricing-card__benefit-title {
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 12px;
  font-size: 0.9375rem;
}

.pricing-card__benefit-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-card__benefit-item {
  color: #475569;
  padding: 8px 0;
  font-size: 0.9375rem;
  line-height: 1.6;
}

.pricing-card__benefit-item--highlight {
  color: #0f172a;
  font-weight: 500;
}

.pricing-card__benefit-item strong {
  color: #16a34a;
  font-weight: 700;
}

/* Prices */
.pricing-card__prices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.pricing-card__price {
  text-align: center;
  padding: 16px;
  background: #f8fafc;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.pricing-card__price--active {
  background: #0f172a;
  color: white;
}

.pricing-card__price--disabled {
  opacity: 0.5;
}

.pricing-card__amount {
  font-size: 1.75rem;
  font-weight: 800;
  color: inherit;
  line-height: 1;
  margin-bottom: 4px;
}

.pricing-card__price--active .pricing-card__amount {
  color: white;
}

.pricing-card__currency {
  font-size: 0.875rem;
  font-weight: 500;
  color: inherit;
  opacity: 0.8;
}

.pricing-card__label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #94a3b8;
}

/* Standard Grid */
.pricing__standard {
  margin-bottom: 60px;
}

/* Dates Header */
.pricing__dates-header {
  display: grid;
  grid-template-columns: 7fr 1fr 1fr 1fr;
  gap: 16px;
  align-items: center;
  margin-bottom: 24px;
  padding: 0 20px;
}

.pricing__dates-label {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
  padding-left: 12px;
}

.pricing__dates-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  background: white;
  border-radius: 12px;
  border: 2px solid #e2e8f0;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}

.pricing__dates-item--clickable:hover {
  border-color: #4f46e5;
  background: #f8fafc;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.15);
}

.pricing__dates-item--clickable.active {
  border-color: #4f46e5;
  background: linear-gradient(135deg, #4f46e5 0%, #6366f1 100%);
  color: white;
  box-shadow: 0 6px 16px rgba(79, 70, 229, 0.3);
}

.pricing__dates-item.active .pricing__dates-text,
.pricing__dates-item.active .pricing__dates-badge {
  color: white;
}

.pricing__dates-icon {
  font-size: 1.5rem;
}

.pricing__dates-text {
  font-size: 0.8125rem;
  font-weight: 700;
  color: #475569;
  white-space: nowrap;
  text-align: center;
}

.pricing__dates-badge {
  display: inline-block;
  padding: 4px 10px;
  background: #dcfce7;
  color: #166534;
  border-radius: 12px;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing__dates-item.active .pricing__dates-badge {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

/* Compact Card Styles */
.pricing-card--compact {
  padding: 20px 24px;
  margin-bottom: 0;
}

.pricing-card__header-compact {
  margin-bottom: 16px;
}

.pricing-card__title-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.pricing-card__title-compact {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
  margin: 0;
  line-height: 1.4;
  flex: 1;
}

.pricing-card__title-compact sup {
  color: #4f46e5;
  font-weight: 700;
  font-size: 0.875rem;
  margin-right: 4px;
}

.pricing-card__base-price-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.pricing-card__current-label {
  font-size: 0.75rem;
  font-weight: bold;
  color: #16a34a;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: center;
  width: 100%;
}

.pricing-card__base-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  padding: 8px 16px;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: white;
  border-radius: 8px;
  font-size: 1.5rem;
  font-weight: 800;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.25);
}

.pricing-card__base-price span {
  font-size: 0.75rem;
  font-weight: 600;
  opacity: 0.9;
}

.pricing-card__prices-compact {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.pricing-card__price-compact {
  text-align: center;
  padding: 12px 8px;
  background: #f8fafc;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.pricing-card__price-compact--selectable:hover {
  border-color: #cbd5e1;
  background: #f1f5f9;
  transform: scale(1.05);
}

.pricing-card__price-compact.active {
  border-color: #4f46e5;
  background: linear-gradient(135deg, #4f46e5 0%, #6366f1 100%);
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

.pricing-card__price-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  transition: color 0.3s ease;
}

.pricing-card__price-compact.active .pricing-card__price-value {
  color: white;
}

.pricing-card__price-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: #64748b;
  margin-top: 2px;
  transition: color 0.3s ease;
}

.pricing-card__price-compact.active .pricing-card__price-label {
  color: rgba(255, 255, 255, 0.9);
}

.pricing-card__price-date {
  font-size: .75rem;
  font-weight: 800;
  color: #94a3b8;
  margin-top: 6px;
  padding-top: 6px;
  border-top: 1px solid #e2e8f0;
  text-align: center;
  line-height: 1.3;
  transition: all 0.3s ease;
}

.pricing-card__price-compact.active .pricing-card__price-date {
  color: rgba(255, 255, 255, 0.85);
  border-top-color: rgba(255, 255, 255, 0.2);
}

/* Notes */
.pricing__notes {
  background: #f8fafc;
  border-left: 4px solid #4f46e5;
  border-radius: 8px;
  padding: 24px 28px;
  margin-top: 32px;
}

.pricing__note-item {
  color: #475569;
  font-size: 0.9375rem;
  line-height: 1.8;
  margin: 0;
  padding: 4px 0;
}

.pricing__note-item sup {
  color: #4f46e5;
  font-weight: 700;
  margin-right: 4px;
}

/* Included Section */
.pricing__included {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 48px;
  text-align: center;
}

.pricing__included-title {
  font-size: 2rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 40px;
}

.pricing__included-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 40px;
}

.pricing__included-item {
  text-align: center;
}

.pricing__included-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.pricing__included-text {
  font-size: 1rem;
  color: #475569;
  font-weight: 500;
  line-height: 1.5;
}

.pricing__footer-cta {
  margin-top: 32px;
}

/* Responsive Design - Pricing */
@media (max-width: 1024px) {
  .pricing__periods {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .pricing__grid {
    grid-template-columns: 1fr;
  }

  .pricing__dates-header {
    display: none;
  }

  .pricing__included-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .pricing {
    padding: 60px 0;
  }

  .pricing__title {
    font-size: 2.25rem;
  }

  .pricing__section-title {
    font-size: 1.75rem;
  }

  .pricing__extension-notice {
    flex-direction: column;
    padding: 20px 24px;
    gap: 12px;
    text-align: center;
  }

  .pricing__extension-icon {
    font-size: 2rem;
  }

  .pricing__extension-title {
    font-size: 1.125rem;
  }

  .pricing__extension-text {
    font-size: 0.9375rem;
  }

  .pricing-card {
    padding: 24px;
  }

  .pricing-card__title {
    font-size: 1.25rem;
  }

  .pricing-card__prices {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .pricing-card--compact {
    padding: 16px 20px;
  }

  .pricing-card__title-compact {
    font-size: 1rem;
  }

  .pricing-card__prices-compact {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .pricing-card__title-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .pricing-card__base-price {
    font-size: 1.25rem;
    padding: 6px 12px;
  }

  .pricing__included {
    padding: 32px 20px;
  }

  .pricing__included-title {
    font-size: 1.75rem;
  }

  .pricing__cta {
    padding: 14px 32px;
    font-size: 0.9375rem;
  }
}


/* ============================================
   ACCOMMODATION SECTION - hospedaje.php (Metodología BEM)
   ============================================ */

.accommodation {
  background: #f8fafc;
  padding: 80px 0;
  padding-bottom: 7.8rem;
}

.accommodation__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 50px;
  animation: fadeInUp 0.6s ease-out;
}

.accommodation__title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 8px;
  letter-spacing: -1px;
}

.accommodation__subtitle {
  font-size: 1.0625rem;
  color: #64748b;
  font-weight: 500;
}

.accommodation__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hotel Card - Layout Horizontal Mejorado */
.hotel {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 400px 1fr;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  animation: fadeInUp 0.6s ease-out both;
  border: 1px solid #e2e8f0;
}

.hotel:nth-child(2) {
  animation-delay: 0.15s;
}

.hotel:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  transform: translateY(-6px);
  border-color: #cbd5e1;
}

.hotel__image {
  position: relative;
  width: 400px;
  overflow: hidden;
  flex-shrink: 0;
}

.hotel__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
  display: block;
}

.hotel:hover .hotel__image img {
  transform: scale(1.1);
}

.hotel__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  padding: 6px 14px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #0f172a;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.hotel__badge svg {
  color: #fbbf24;
  width: 16px;
  height: 16px;
}

.hotel__content {
  padding: 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hotel__header {
  border-bottom: 1px solid #e2e8f0;
  padding-bottom: 16px;
}

.hotel__name {
  font-size: 1.625rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 8px 0;
  letter-spacing: -0.5px;
}

.hotel__location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9375rem;
  color: #64748b;
  margin: 0;
}

.hotel__location svg {
  color: #4f46e5;
  flex-shrink: 0;
}

.hotel__pricing {
  background: #f8fafc;
  border-radius: 12px;
  padding: 20px;
}

.hotel__pricing-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: #0f172a;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 16px 0;
}

.hotel__rates {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.rate-item {
  background: white;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: all 0.3s ease;
}

.rate-item:hover {
  border-color: #4f46e5;
  transform: translateY(-2px);
}

.rate-item__type {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.rate-item__price {
  font-size: 1.5rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1;
}

.rate-item__price small {
  font-size: 0.75rem;
  font-weight: 600;
  color: #94a3b8;
  margin-left: 4px;
}

.hotel__perks {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.perk {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #16a34a;
  padding: 6px 14px;
  background: #f0fdf4;
  border-radius: 50px;
  border: 1px solid #bbf7d0;
}

.perk svg {
  flex-shrink: 0;
  color: #16a34a;
}

.hotel__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #4f46e5 0%, #6366f1 100%);
  color: white;
  padding: 14px 32px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 6px 16px rgba(79, 70, 229, 0.3);
  transition: all 0.3s ease;
  align-self: flex-start;
}

.hotel__cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(79, 70, 229, 0.4);
  color: white;
}

.hotel__cta svg {
  transition: transform 0.3s ease;
}

.hotel__cta:hover svg {
  transform: translateX(4px);
}

/* Responsive Design - Accommodation */
@media (max-width: 968px) {
  .hotel {
    grid-template-columns: 1fr;
  }

  .hotel__image {
    width: 100%;
  }

  .hotel__content {
    padding: 28px 24px;
  }
}

@media (max-width: 768px) {
  .accommodation {
    padding: 60px 0;
  }

  .accommodation__title {
    font-size: 2rem;
  }

  .accommodation__subtitle {
    font-size: 1rem;
  }

  .accommodation__grid {
    gap: 24px;
  }

  .hotel__image {
    width: 100%;
  }

  .hotel__content {
    padding: 24px 20px;
    gap: 20px;
  }

  .hotel__name {
    font-size: 1.375rem;
  }

  .hotel__location {
    font-size: 0.875rem;
  }

  .hotel__pricing {
    padding: 16px;
  }

  .hotel__rates {
    grid-template-columns: 1fr;
  }

  .rate-item__price {
    font-size: 1.25rem;
  }

  .hotel__cta {
    width: 100%;
    padding: 12px 24px;
  }
}