/* Metodo 7 — Effects: shadows, rings, text-shadow, motion.
   No gradients. Soft diffuse shadows only. */
:root {
  /* Elevation (soft, diffuse) */
  --shadow-card:       0 12px 30px rgba(16, 24, 40, .06);
  --shadow-card-hover: 0 18px 40px rgba(16, 24, 40, .10);
  --shadow-tile:       0 6px 16px rgba(16, 24, 40, .06);
  --shadow-cta:        0 12px 28px rgba(254, 139, 92, .45);
  --shadow-cta-hover:  0 16px 34px rgba(254, 139, 92, .50);
  --shadow-inverse-hover: 0 0 24px rgba(255, 255, 255, .65), 0 10px 26px rgba(16, 24, 40, .12);

  /* Rings */
  --ring-focus: 0 0 0 4px rgba(0, 107, 97, .15);

  /* Text shadow — for white text on orange (soft, diffuse — NOT a hard shadow) */
  --text-shadow-on-accent: 0 1px 6px rgba(0, 0, 0, .28);

  /* Motion */
  --ease:       cubic-bezier(.2, .7, .3, 1); /* @kind other */
  --dur-fast:   .2s;  /* @kind other */
  --dur-enter:  .6s;  /* @kind other */
  --lift:       -2px;   /* @kind other */
  --lift-sm:    -1px;   /* @kind other */
}
