/* === Estilos mejorados solo para el calendario en este contenedor === */
.elementor-element-bc34faf .calendario-eventos {
  max-width: 800px;
  margin: 2rem auto;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  overflow: hidden;
  font-family: 'Segoe UI', Tahoma, sans-serif;
  background: #fff;
}

/* Encabezado */
.elementor-element-bc34faf .calendario-header {
  background: linear-gradient(135deg, #4f46e5, #6366f1);
  color: #fff;
  padding: 1rem;
  text-align: center;
  font-size: 1.3rem;
  font-weight: bold;
  letter-spacing: 1px;
}

/* Tabla */
.elementor-element-bc34faf table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
}

/* Encabezado días */
.elementor-element-bc34faf th {
  background: #f9fafb;
  color: #374151;
  padding: 0.8rem;
  font-weight: 600;
  border-bottom: 1px solid #e5e7eb;
}

/* Celdas */
.elementor-element-bc34faf td {
  padding: 1rem;
  border: 1px solid #f1f1f1;
  transition: background 0.3s, transform 0.2s;
  cursor: pointer;
  position: relative;
}

/* Hover */
.elementor-element-bc34faf td:hover {
  background: #eef2ff;
  transform: scale(1.05);
  z-index: 1;
}

/* Día actual */
.elementor-element-bc34faf .hoy {
  background: #6366f1;
  color: white !important;
  border-radius: 50%;
  font-weight: bold;
  padding: 0.5rem;
  display: inline-block;
}

/* Eventos */
.elementor-element-bc34faf .evento {
  background: #fcd34d;
  border-radius: 8px;
  padding: 4px 6px;
  font-size: 0.8rem;
  display: inline-block;
  margin-top: 6px;
  color: #92400e;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 600px) {
  .elementor-element-bc34faf table,
  .elementor-element-bc34faf thead,
  .elementor-element-bc34faf tbody,
  .elementor-element-bc34faf th,
  .elementor-element-bc34faf td,
  .elementor-element-bc34faf tr {
    display: block;
  }

  .elementor-element-bc34faf th {
    display: none;
  }

  .elementor-element-bc34faf td {
    border: none;
    border-bottom: 1px solid #e5e7eb;
    padding: 1rem;
    text-align: left;
  }
}