/* Estilos para el sistema de precios por temporadas */
.pricing-section {
  margin: 0 !important;
  padding: 1.8rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 0 0 16px 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  position: relative;
  overflow: hidden;
  margin-top: -1px !important;
}

/* Conectar las 3 cajas sin espacios */
.modal-title {
  margin-bottom: 0 !important;
}

.modal-features {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.pricing-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
  pointer-events: none;
}

.pricing-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: white;
  margin: 0 0 1.5rem 0;
  text-align: center;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
  position: relative;
  z-index: 1;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.price-item {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  padding: 1.5rem 1rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.price-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  transition: height 0.3s ease;
}

.price-item:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.price-item:hover::before {
  height: 8px;
}

.temporada-baja::before {
  background: linear-gradient(90deg, #28a745, #20c997);
}

.temporada-alta::before {
  background: linear-gradient(90deg, #ffc107, #fd7e14);
}

.fechas-especiales::before {
  background: linear-gradient(90deg, #dc3545, #e83e8c);
}

.season-name {
  font-weight: 700;
  font-size: 1rem;
  color: #2c3e50;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.season-period {
  font-size: 0.8rem;
  color: #6c757d;
  margin-bottom: 1rem;
  line-height: 1.3;
  font-weight: 500;
}

.price {
  font-size: 1.4rem;
  font-weight: 800;
  background: linear-gradient(135deg, #667eea, #764ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-top: 0.5rem;
}

.pricing-note {
  text-align: center;
  color: rgba(255,255,255,0.9);
  font-style: italic;
  font-size: 0.85rem;
  position: relative;
  z-index: 1;
  background: rgba(255,255,255,0.1);
  padding: 0.8rem;
  border-radius: 8px;
  backdrop-filter: blur(5px);
}

/* Responsive */
@media (max-width: 600px) {
  .pricing-section {
    margin: 0 !important;
    margin-top: -1px !important;
    padding: 1.2rem;
    border-radius: 0 0 12px 12px;
  }
  
  .pricing-title {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.2rem;
  }
  
  .price-item {
    padding: 1.2rem 0.8rem;
  }
  
  .price {
    font-size: 1.2rem;
  }
  
  .season-name {
    font-size: 0.9rem;
  }
  
  .pricing-note {
    font-size: 0.8rem;
    padding: 0.6rem;
  }
}

/* Tableta */
@media (min-width: 768px) {
  .pricing-section {
    border-radius: 0 0 16px 16px;
  }
}

/* Escritorio */
@media (min-width: 1024px) {
  .pricing-section {
    border-radius: 0 0 16px 16px;
  }
}