.elementor-1558 .elementor-element.elementor-element-8898762{--display:flex;}.elementor-1558 .elementor-element.elementor-element-9ea2fc8{--display:flex;}/* Start custom CSS for container, class: .elementor-element-8898762 *//* =========================
   RESET & BASE
========================= */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  padding: 2px;
  font-family: "Inter", system-ui, sans-serif;
  background: #f1f5f9; /* fondo limpio profesional */
}

/* =========================
   DASHBOARD CONTAINER
========================= */
.dashboard {
  max-width: 1200px;
  margin: 0 auto;
}

/* =========================
   GRID RESPONSIVE
========================= */
.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

/* Tablet */
@media (max-width: 1024px) {
  .dashboard-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Mobile */
@media (max-width: 640px) {
  .dashboard-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =========================
   DASHBOARD CARD
========================= */
.dashboard-card {
  background: linear-gradient(135deg, #ffffff, #f8fafc, #eef2ff);
  border-radius: 22px;
  padding: 30px 22px;
  text-decoration: none;
  color: #0f172a;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.15);
  transition: all 0.35s ease;
  position: relative;
}

/* Hover effect */
.dashboard-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 45px rgba(15, 23, 42, 0.22);
}

/* =========================
   ICON
========================= */
.dashboard-card .icon {
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
}


/* Icon animation */
.dashboard-card:hover .icon {
  transform: scale(1.15) rotate(4deg);
}

/* =========================
   TEXT
========================= */
.dashboard-card span {
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  color: #0f172a;
}

/* =========================
   OPTIONAL: SMOOTH LOAD
========================= */
.dashboard-card {
  animation: fadeUp 0.6s ease both;
}

.dashboard-title {
	background: linear-gradient(180deg, #ffffff, #f8fafc);
	 padding: 10px 2px;
  text-align: center;
  text-transform: uppercase;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #150053;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
  margin: 0 auto 10px;
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}/* End custom CSS */