/* ============================================================
   ACADEMIA DE CRACKS · Tips contextuales (iter7)
   ============================================================ */

.tip-card {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 16px 16px;
  padding: 14px 16px;
  background: linear-gradient(135deg, rgba(255,158,0,0.10) 0%, rgba(255,158,0,0.03) 100%);
  border: 1px solid rgba(255,158,0,0.32);
  border-radius: 14px;
  position: relative;
  overflow: hidden;
  animation: tip-fade-in 0.4s ease-out;
}

.tip-card.empty {
  display: none;
}

.tip-card::before {
  /* Sutil glow naranja del lado izquierdo */
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: 3px;
  height: 100%;
  background: var(--orange);
  box-shadow: 0 0 12px rgba(255,158,0,0.4);
}

.tip-icon {
  font-size: 28px;
  line-height: 1;
  flex-shrink: 0;
  filter: drop-shadow(0 1px 4px rgba(255,158,0,0.3));
}

.tip-body {
  flex: 1;
  min-width: 0;
}

.tip-kicker {
  font-family: 'Chakra Petch', sans-serif;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--orange);
  margin-bottom: 2px;
}

.tip-text {
  font-size: 13px;
  line-height: 1.4;
  color: var(--white);
}

.tip-cta {
  background: var(--orange);
  color: var(--carbon);
  border: none;
  padding: 8px 12px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 11px;
  cursor: pointer;
  font-family: 'Chakra Petch', sans-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  flex-shrink: 0;
  transition: transform 0.1s ease;
}
.tip-cta:hover { transform: translateX(2px); }

@keyframes tip-fade-in {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* iter12: Tu mejor mes (motivador retrospectivo) */
.best-month-card {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 16px 14px;
  padding: 12px 14px;
  background: linear-gradient(135deg, rgba(255,158,0,0.05) 0%, rgba(255,200,0,0.02) 100%);
  border: 1px solid rgba(255,200,0,0.18);
  border-radius: 12px;
}
.best-month-icon {
  font-size: 32px;
  line-height: 1;
  filter: drop-shadow(0 2px 6px rgba(255,200,0,0.3));
  flex-shrink: 0;
}
.best-month-body { flex: 1; min-width: 0; }
.best-month-kicker {
  font-family: 'Chakra Petch', sans-serif;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,200,0,0.85);
  margin-bottom: 2px;
}
.best-month-title {
  font-family: 'Chakra Petch', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 2px;
}
.best-month-sub {
  font-size: 11px;
  color: var(--smoke-dim);
  line-height: 1.3;
}
