/* Oraculo de las Flores V2 -------------------------------------------------
   Capa visual completamente aislada. Contrato de estados del motor:
   - raiz: data-state="garden|ceremony|result"
   - capullo: data-state="closed|chosen" y aria-pressed="false|true"
   - lamina: data-state="waiting|opening|revealed"; clases is-opening,
     is-emerging e is-revealed durante la ceremonia
   Las ilustraciones se inyectan en cada soporte mediante --fv2-image.
*/

/* El contenedor anfitrion normal mide 780px. La clase se añade solamente a
   esta app y permite que el invernadero aproveche el ancho premium previsto. */
.oapp.oapp-flores-v2-enabled {
  max-width: 960px;
}

.oapp-fv2 {
  --fv2-forest-950: #0b201a;
  --fv2-forest-900: #102a22;
  --fv2-forest-800: #173a30;
  --fv2-forest-700: #245044;
  --fv2-sage: #8da68a;
  --fv2-sage-light: #bdc9ad;
  --fv2-cream: #f7efd9;
  --fv2-cream-soft: #e8ddc2;
  --fv2-terracotta: #b65f45;
  --fv2-terracotta-dark: #713d33;
  --fv2-gold: #c5a45c;
  --fv2-gold-light: #ebd08f;
  --fv2-dawn: #e7b78f;
  --fv2-line: rgba(215, 184, 117, .3);
  position: relative;
  isolation: isolate;
  width: 100%;
  max-width: 960px;
  min-height: 42rem;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(213, 181, 112, .38);
  border-radius: clamp(1.1rem, 3vw, 2rem);
  color: var(--fv2-cream);
  background:
    radial-gradient(circle at 14% 3%, rgba(190, 118, 83, .24), transparent 24rem),
    radial-gradient(circle at 88% 4%, rgba(159, 181, 141, .17), transparent 22rem),
    radial-gradient(circle at 50% 115%, rgba(71, 116, 87, .3), transparent 32rem),
    linear-gradient(145deg, #102d25 0%, #10271f 46%, #231e19 100%);
  box-shadow:
    0 30px 70px rgba(21, 27, 20, .28),
    inset 0 1px 0 rgba(255, 255, 255, .07),
    inset 0 0 90px rgba(4, 17, 13, .18);
  font-family: inherit;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.oapp-fv2 *,
.oapp-fv2 *::before,
.oapp-fv2 *::after {
  box-sizing: border-box;
}

.oapp-fv2 [hidden] {
  display: none !important;
}

.oapp-fv2 button {
  font: inherit;
}

.oapp-fv2 button:focus:not(:focus-visible) {
  outline: none;
}

.oapp-fv2 button:focus-visible {
  outline: 3px solid var(--fv2-gold-light);
  outline-offset: 4px;
}

.oapp-fv2-result-head h2:focus {
  outline: none;
}

.oapp-fv2-visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* Luz del invernadero ---------------------------------------------------- */
.oapp-fv2-atmosphere,
.oapp-fv2-atmosphere::before,
.oapp-fv2-atmosphere::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.oapp-fv2-atmosphere {
  overflow: hidden;
  background:
    linear-gradient(112deg, transparent 0 12%, rgba(247, 229, 188, .035) 12.2% 12.8%, transparent 13% 31%, rgba(247, 229, 188, .03) 31.2% 31.8%, transparent 32%),
    repeating-linear-gradient(90deg, transparent 0 12.3rem, rgba(218, 194, 139, .045) 12.35rem 12.42rem);
  opacity: .9;
}

.oapp-fv2-atmosphere::before {
  content: '';
  left: 50%;
  bottom: auto;
  width: 44rem;
  height: 23rem;
  border: 1px solid rgba(226, 202, 146, .085);
  border-bottom: 0;
  border-radius: 50% 50% 0 0;
  box-shadow: inset 0 0 5rem rgba(231, 190, 137, .025), 0 0 0 3.8rem rgba(224, 199, 143, .018);
  transform: translate(-50%, -67%);
}

.oapp-fv2-atmosphere::after {
  content: '';
  top: auto;
  height: 14rem;
  background:
    radial-gradient(ellipse at 12% 100%, rgba(89, 123, 84, .2), transparent 32%),
    radial-gradient(ellipse at 84% 100%, rgba(97, 126, 84, .18), transparent 34%);
}

.oapp-fv2-atmosphere > span {
  position: absolute;
  display: block;
  width: .22rem;
  height: .22rem;
  border-radius: 50%;
  background: rgba(242, 215, 153, .9);
  box-shadow: 0 0 .75rem rgba(237, 201, 127, .65);
  animation: fv2-mote 6s ease-in-out infinite;
}

.oapp-fv2-atmosphere > span:nth-child(1) { left: 9%; top: 18%; }
.oapp-fv2-atmosphere > span:nth-child(2) { left: 27%; top: 38%; animation-delay: -2.1s; }
.oapp-fv2-atmosphere > span:nth-child(3) { right: 12%; top: 21%; animation-delay: -4.2s; }
.oapp-fv2-atmosphere > span:nth-child(4) { right: 28%; top: 48%; animation-delay: -1.2s; }
.oapp-fv2-atmosphere > span:nth-child(5) { left: 52%; top: 12%; animation-delay: -3.2s; }

.oapp-fv2-step {
  position: relative;
  z-index: 1;
  min-height: 42rem;
  padding: clamp(1.2rem, 4vw, 2.8rem);
}

.oapp-fv2-eyebrow {
  margin: 0 0 .5rem;
  color: var(--fv2-gold-light);
  font: 800 .68rem/1.35 system-ui, sans-serif;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.oapp-fv2-intro,
.oapp-fv2-result-head {
  position: relative;
  z-index: 2;
  width: min(100%, 670px);
  margin: 0 auto;
  text-align: center;
}

.oapp-fv2-intro h2,
.oapp-fv2-ceremony-head h2,
.oapp-fv2-result-head h2 {
  margin: 0;
  color: #fff8e8;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.85rem, 5vw, 3.25rem);
  font-weight: 500;
  line-height: 1.08;
  text-wrap: balance;
  text-shadow: 0 2px 20px rgba(9, 25, 19, .34);
}

.oapp-fv2-lead,
.oapp-fv2-result-head > p:last-child {
  max-width: 620px;
  margin: .85rem auto 0;
  color: rgba(246, 240, 220, .82);
  font-size: clamp(.94rem, 2vw, 1.04rem);
  line-height: 1.68;
  text-wrap: pretty;
}

.oapp-fv2-sunmark,
.oapp-fv2-result-mark {
  position: relative;
  display: grid;
  width: 4.8rem;
  height: 4.8rem;
  margin: 0 auto .8rem;
  place-items: center;
  border: 1px solid rgba(232, 204, 139, .42);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(231, 192, 122, .18), rgba(49, 86, 64, .12) 56%, transparent 58%);
  box-shadow: 0 0 2rem rgba(231, 186, 110, .12);
}

.oapp-fv2-sunmark::before,
.oapp-fv2-sunmark::after,
.oapp-fv2-result-mark::before,
.oapp-fv2-result-mark::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 2.5rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, #d8b970, transparent);
  transform: translate(-50%, -50%);
}

.oapp-fv2-sunmark::after,
.oapp-fv2-result-mark::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.oapp-fv2-sunmark i,
.oapp-fv2-result-mark i {
  display: block;
  width: 1.2rem;
  height: 1.2rem;
  border: 1px solid #e4c77f;
  border-radius: 50% 50% 46% 54%;
  background: radial-gradient(circle at 37% 33%, #f2dda3, #bd9143 68%, #775f32);
  transform: rotate(45deg);
  box-shadow: 0 0 .8rem rgba(234, 202, 124, .4);
}

/* Jardin de nueve capullos ----------------------------------------------- */
.oapp-fv2-garden {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.oapp-fv2-garden::before,
.oapp-fv2-garden::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.oapp-fv2-garden::before {
  background-image: var(--fv2-hero, none);
  background-repeat: no-repeat;
  background-position: center 42%;
  background-size: cover;
  opacity: .8;
  filter: saturate(.83) contrast(1.02);
  transform: scale(1.018);
}

.oapp-fv2-garden::after {
  background:
    radial-gradient(ellipse at 50% 18%, rgba(20, 45, 35, .16), rgba(12, 34, 27, .48) 53%, rgba(10, 27, 22, .94) 100%),
    linear-gradient(180deg, rgba(12, 33, 26, .52) 0%, rgba(14, 37, 29, .62) 44%, rgba(13, 31, 25, .96) 100%);
}

.oapp-fv2-buds {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .65rem 1.05rem;
  width: min(100%, 710px);
  margin: 1.45rem auto 0;
  padding: .65rem 1rem .5rem;
}

.oapp-fv2-bud {
  --fv2-petal: hsl(calc(12 + var(--fv2-i) * 4), calc(45% + var(--fv2-i) * 1%), calc(48% + var(--fv2-i) * .8%));
  position: relative;
  display: block;
  flex: 0 1 112px;
  width: 112px;
  aspect-ratio: .82;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(222, 194, 132, .18);
  border-radius: 5.5rem 5.5rem 1rem 1rem;
  color: var(--fv2-cream);
  background:
    radial-gradient(circle at 50% 28%, rgba(231, 201, 135, .1), transparent 42%),
    linear-gradient(180deg, rgba(20, 56, 43, .45), rgba(9, 29, 23, .68));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .04), 0 .65rem 1.3rem rgba(5, 20, 15, .14);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: transform .25s ease, border-color .25s ease, background .25s ease, box-shadow .25s ease;
}

.oapp-fv2-bud:hover {
  border-color: rgba(232, 204, 142, .48);
  background:
    radial-gradient(circle at 50% 28%, rgba(238, 205, 138, .16), transparent 44%),
    linear-gradient(180deg, rgba(31, 77, 59, .54), rgba(11, 35, 27, .73));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .07), 0 .9rem 1.8rem rgba(5, 20, 15, .22), 0 0 1.3rem rgba(220, 180, 102, .08);
  transform: translateY(-.35rem);
}

.oapp-fv2-bud:active {
  transform: translateY(-.1rem) scale(.985);
}

.oapp-fv2-bud.is-dimmed {
  opacity: .28;
  filter: grayscale(.45);
  transform: scale(.96);
}

.oapp-fv2-bud:disabled {
  cursor: default;
}

.oapp-fv2-bud[aria-pressed="true"],
.oapp-fv2-bud[data-state="chosen"] {
  border-color: rgba(239, 211, 149, .82);
  background: linear-gradient(180deg, rgba(59, 100, 70, .62), rgba(18, 49, 36, .8));
  box-shadow: 0 0 0 3px rgba(218, 181, 102, .12), 0 1rem 2.2rem rgba(4, 17, 12, .25);
  transform: translateY(-.45rem) scale(1.03);
}

.oapp-fv2-bud-aura {
  position: absolute;
  left: 50%;
  top: 14%;
  width: 4.2rem;
  height: 4.2rem;
  border: 1px solid rgba(227, 198, 135, .1);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(231, 192, 116, .12), transparent 68%);
  transform: translateX(-50%) scale(.86);
  transition: opacity .25s ease, transform .35s ease;
}

.oapp-fv2-bud:hover .oapp-fv2-bud-aura,
.oapp-fv2-bud[aria-pressed="true"] .oapp-fv2-bud-aura,
.oapp-fv2-bud[data-state="chosen"] .oapp-fv2-bud-aura {
  opacity: 1;
  transform: translateX(-50%) scale(1.18);
}

.oapp-fv2-bud-stem {
  position: absolute;
  left: 50%;
  bottom: 1rem;
  width: .24rem;
  height: 4rem;
  border-radius: 1rem;
  background: linear-gradient(90deg, #34583a, #79926b 45%, #284731);
  box-shadow: 0 0 .4rem rgba(7, 25, 15, .3);
  transform: translateX(-50%) rotate(calc((var(--fv2-i) - 4) * .35deg));
  transform-origin: bottom;
}

.oapp-fv2-bud-stem i,
.oapp-fv2-bud-stem b {
  position: absolute;
  width: 1.45rem;
  height: .68rem;
  border: 1px solid rgba(169, 188, 132, .27);
  background: linear-gradient(145deg, #6f8f62, #294e38);
  box-shadow: inset 0 1px rgba(255, 255, 255, .08);
}

.oapp-fv2-bud-stem i {
  left: -.05rem;
  top: 1.55rem;
  border-radius: 90% 8% 90% 8%;
  transform: rotate(-26deg);
  transform-origin: left center;
}

.oapp-fv2-bud-stem b {
  right: -.08rem;
  top: 2.35rem;
  border-radius: 8% 90% 8% 90%;
  transform: rotate(28deg);
  transform-origin: right center;
}

.oapp-fv2-bud-head {
  position: absolute;
  left: 50%;
  top: 1.28rem;
  z-index: 2;
  width: 2.15rem;
  height: 2.8rem;
  border: 1px solid rgba(255, 225, 184, .45);
  border-radius: 66% 66% 52% 52% / 78% 78% 40% 40%;
  background:
    radial-gradient(circle at 38% 28%, rgba(255, 236, 201, .45), transparent 18%),
    linear-gradient(135deg, color-mix(in srgb, var(--fv2-petal), #f4d2a2 18%), var(--fv2-petal) 48%, color-mix(in srgb, var(--fv2-petal), #512a27 42%));
  box-shadow: inset -.4rem -.5rem .65rem rgba(87, 39, 33, .22), 0 .28rem .7rem rgba(3, 20, 13, .3);
  transform: translateX(-50%) rotate(calc((var(--fv2-i) - 4) * 1deg));
  transform-origin: 50% 90%;
  transition: width .3s ease, transform .3s ease, border-radius .3s ease, filter .3s ease;
}

.oapp-fv2-bud-head::before,
.oapp-fv2-bud-head::after,
.oapp-fv2-bud-head i,
.oapp-fv2-bud-head b,
.oapp-fv2-bud-head em {
  content: '';
  position: absolute;
  display: block;
  border: 1px solid rgba(255, 229, 193, .24);
  background: linear-gradient(160deg, color-mix(in srgb, var(--fv2-petal), #f3d9af 14%), color-mix(in srgb, var(--fv2-petal), #5c3029 22%));
  box-shadow: inset -.18rem -.22rem .35rem rgba(78, 34, 31, .18);
  transition: transform .32s ease;
}

.oapp-fv2-bud-head::before {
  left: -.45rem;
  bottom: -.08rem;
  width: 1.18rem;
  height: 2.05rem;
  border-radius: 80% 25% 60% 35%;
  transform: rotate(11deg);
}

.oapp-fv2-bud-head::after {
  right: -.45rem;
  bottom: -.08rem;
  width: 1.18rem;
  height: 2.05rem;
  border-radius: 25% 80% 35% 60%;
  transform: rotate(-11deg);
}

.oapp-fv2-bud-head i {
  left: 50%;
  top: -.38rem;
  width: 1rem;
  height: 1.85rem;
  border-radius: 80% 20% 70% 30%;
  transform: translateX(-76%) rotate(-19deg);
}

.oapp-fv2-bud-head b {
  left: 50%;
  top: -.38rem;
  width: 1rem;
  height: 1.85rem;
  border-radius: 20% 80% 30% 70%;
  transform: translateX(-24%) rotate(19deg);
}

.oapp-fv2-bud-head em {
  left: 50%;
  top: -.62rem;
  width: .88rem;
  height: 2rem;
  border-radius: 70% 70% 45% 45%;
  transform: translateX(-50%);
}

.oapp-fv2-bud:hover .oapp-fv2-bud-head,
.oapp-fv2-bud[aria-pressed="true"] .oapp-fv2-bud-head,
.oapp-fv2-bud[data-state="chosen"] .oapp-fv2-bud-head {
  width: 2.5rem;
  border-radius: 70% 70% 48% 48% / 84% 84% 36% 36%;
  filter: saturate(1.08) brightness(1.08);
  transform: translateX(-50%) translateY(-.18rem) rotate(calc((var(--fv2-i) - 4) * .7deg));
}

.oapp-fv2-bud:hover .oapp-fv2-bud-head::before,
.oapp-fv2-bud[aria-pressed="true"] .oapp-fv2-bud-head::before,
.oapp-fv2-bud[data-state="chosen"] .oapp-fv2-bud-head::before { transform: translate(-.12rem, .08rem) rotate(28deg); }

.oapp-fv2-bud:hover .oapp-fv2-bud-head::after,
.oapp-fv2-bud[aria-pressed="true"] .oapp-fv2-bud-head::after,
.oapp-fv2-bud[data-state="chosen"] .oapp-fv2-bud-head::after { transform: translate(.12rem, .08rem) rotate(-28deg); }

.oapp-fv2-bud-number {
  position: absolute;
  right: .46rem;
  bottom: .36rem;
  color: rgba(235, 213, 164, .54);
  font: 750 .58rem/1 system-ui, sans-serif;
  letter-spacing: .09em;
}

.oapp-fv2-hint {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .46rem;
  margin: .85rem auto 0;
  color: rgba(238, 230, 207, .68);
  font-size: .82rem;
  text-align: center;
}

.oapp-fv2-hint > span {
  color: var(--fv2-gold-light);
  font-size: .7rem;
}

/* Ceremonia -------------------------------------------------------------- */
.oapp-fv2-ceremony {
  background:
    radial-gradient(circle at 50% 0%, rgba(215, 169, 111, .13), transparent 30rem),
    linear-gradient(155deg, rgba(18, 54, 42, .48), rgba(24, 39, 29, .25));
}

.oapp-fv2-ceremony-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.2rem;
  width: min(100%, 820px);
  margin: 0 auto;
  padding-bottom: 1.15rem;
  border-bottom: 1px solid var(--fv2-line);
}

.oapp-fv2-ceremony-head > div {
  max-width: 620px;
}

.oapp-fv2-ceremony-head h2 {
  font-size: clamp(1.65rem, 4vw, 2.45rem);
}

.oapp-fv2-ceremony-head > div > p:last-child {
  margin: .55rem 0 0;
  color: rgba(236, 232, 213, .7);
  line-height: 1.6;
}

.oapp-fv2-skip {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: .46rem;
  min-height: 2.7rem;
  padding: .62rem .95rem;
  border: 1px solid rgba(222, 194, 132, .38);
  border-radius: 999px;
  color: var(--fv2-cream);
  background: rgba(18, 48, 37, .65);
  box-shadow: inset 0 1px rgba(255, 255, 255, .05);
  cursor: pointer;
  font-weight: 750;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

.oapp-fv2-skip:hover {
  border-color: rgba(235, 207, 146, .7);
  background: rgba(42, 72, 49, .78);
  transform: translateY(-2px);
}

.oapp-fv2-progress {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: .8rem;
  width: min(100%, 820px);
  margin: 1rem auto 0;
}

.oapp-fv2-progress-track {
  display: block;
  height: .32rem;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(7, 26, 19, .65);
  box-shadow: inset 0 0 0 1px rgba(220, 192, 129, .12);
}

.oapp-fv2-progress-track i {
  display: block;
  width: calc(var(--fv2-progress, 0) * 100%);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--fv2-terracotta), var(--fv2-gold-light));
  box-shadow: 0 0 .8rem rgba(230, 194, 122, .4);
  transition: width .55s cubic-bezier(.22, .72, .2, 1);
}

.oapp-fv2-progress-count {
  min-width: 2.8rem;
  color: rgba(241, 224, 185, .74);
  font: 700 .73rem/1 system-ui, sans-serif;
  text-align: right;
}

.oapp-fv2-progress-count b {
  color: var(--fv2-gold-light);
  font-size: .9rem;
}

.oapp-fv2-progress-count i {
  margin: 0 .15rem;
  font-style: normal;
}

.oapp-fv2-slots {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(.8rem, 2.4vw, 1.25rem);
  width: min(100%, 820px);
  margin: 1.45rem auto 0;
  padding: 0;
  list-style: none;
  counter-reset: fv2-slot;
}

.oapp-fv2-slot {
  position: relative;
  min-width: 0;
  padding: .7rem;
  overflow: hidden;
  border: 1px solid rgba(219, 190, 128, .23);
  border-radius: 1.15rem;
  background:
    radial-gradient(circle at 50% 8%, rgba(223, 190, 124, .09), transparent 45%),
    rgba(9, 34, 25, .56);
  box-shadow: inset 0 1px rgba(255, 255, 255, .035), 0 1rem 2.2rem rgba(5, 18, 13, .14);
  counter-increment: fv2-slot;
  transition: border-color .35s ease, transform .45s ease, background .35s ease;
}

.oapp-fv2-slot-index::before {
  content: '0' counter(fv2-slot);
  position: absolute;
  right: .72rem;
  top: .65rem;
  z-index: 3;
  color: rgba(237, 213, 163, .42);
  font: 750 .58rem/1 system-ui, sans-serif;
  letter-spacing: .08em;
}

.oapp-fv2-slot-plate {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid rgba(234, 211, 164, .42);
  border-radius: .8rem .8rem 3rem 3rem;
  background:
    linear-gradient(155deg, rgba(244, 230, 199, .08), rgba(9, 34, 25, .18)),
    repeating-linear-gradient(135deg, #254d3b 0 8px, #17372b 8px 16px);
  box-shadow: inset 0 0 1.2rem rgba(6, 26, 18, .42), 0 .65rem 1.4rem rgba(4, 18, 12, .2);
}

.oapp-fv2-slot-glass,
.oapp-fv2-slot-art {
  position: absolute;
  inset: 0;
}

.oapp-fv2-slot-glass {
  z-index: 2;
  background:
    linear-gradient(117deg, rgba(255, 255, 255, .12), transparent 22% 78%, rgba(255, 247, 219, .05)),
    radial-gradient(circle at 48% 14%, rgba(244, 216, 160, .12), transparent 38%);
  pointer-events: none;
}

.oapp-fv2-slot-art {
  background-image:
    linear-gradient(180deg, rgba(20, 49, 37, .04), rgba(10, 28, 22, .24)),
    var(--fv2-image, radial-gradient(circle at 50% 36%, #aa7354 0 13%, transparent 14%), linear-gradient(145deg, #667c5c, #183a2d));
  background-position: center;
  background-size: cover;
  filter: saturate(.7) brightness(.55);
  opacity: .18;
  transform: scale(1.04);
  transition: opacity .6s ease, filter .6s ease, transform .8s cubic-bezier(.18, .75, .2, 1);
}

.oapp-fv2-slot-seal {
  position: absolute;
  left: 50%;
  bottom: .75rem;
  z-index: 3;
  display: grid;
  width: 2.9rem;
  height: 2.9rem;
  place-items: center;
  border: 1px solid rgba(235, 211, 160, .54);
  border-radius: 50%;
  background: rgba(16, 52, 37, .78);
  box-shadow: 0 .35rem .8rem rgba(5, 20, 14, .3), inset 0 1px rgba(255, 255, 255, .06);
  transform: translateX(-50%);
}

.oapp-fv2-slot-seal i {
  width: .85rem;
  height: 1.25rem;
  border-radius: 70% 30% 70% 30%;
  background: linear-gradient(145deg, #d6bd78, #947237);
  transform: rotate(38deg);
}

.oapp-fv2-slot-copy {
  min-height: 3.6rem;
  padding: .72rem .25rem .2rem;
  text-align: center;
}

.oapp-fv2-slot-copy small,
.oapp-fv2-slot-copy strong {
  display: block;
}

.oapp-fv2-slot-copy small {
  color: var(--fv2-gold-light);
  font: 800 .61rem/1.35 system-ui, sans-serif;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.oapp-fv2-slot-copy strong {
  margin-top: .28rem;
  overflow: hidden;
  color: rgba(246, 239, 218, .7);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.02rem;
  font-weight: 500;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.oapp-fv2-slot[data-state="opening"],
.oapp-fv2-slot.is-opening,
.oapp-fv2-slot.is-emerging {
  border-color: rgba(231, 204, 143, .7);
  transform: translateY(-.35rem);
}

.oapp-fv2-slot[data-state="opening"] .oapp-fv2-slot-plate,
.oapp-fv2-slot.is-opening .oapp-fv2-slot-plate {
  animation: fv2-plate-reveal .9s cubic-bezier(.2, .74, .2, 1) both;
}

.oapp-fv2-slot.is-emerging .oapp-fv2-slot-seal {
  border-color: rgba(245, 219, 158, .9);
  box-shadow: 0 0 1.1rem rgba(228, 189, 111, .3), 0 .35rem .8rem rgba(5, 20, 14, .3);
}

.oapp-fv2-slot[data-state="revealed"],
.oapp-fv2-slot.is-revealed {
  border-color: rgba(215, 183, 113, .45);
  background: linear-gradient(155deg, rgba(52, 80, 52, .55), rgba(14, 42, 30, .7));
}

.oapp-fv2-slot[data-state="revealed"] .oapp-fv2-slot-art,
.oapp-fv2-slot.is-revealed .oapp-fv2-slot-art,
.oapp-fv2-slot[data-state="opening"] .oapp-fv2-slot-art,
.oapp-fv2-slot.is-opening .oapp-fv2-slot-art,
.oapp-fv2-slot.is-emerging .oapp-fv2-slot-art {
  opacity: 1;
  filter: saturate(.97) brightness(1);
  transform: scale(1);
}

.oapp-fv2-slot[data-state="revealed"] .oapp-fv2-slot-copy strong,
.oapp-fv2-slot.is-revealed .oapp-fv2-slot-copy strong {
  color: #fff5df;
}

.oapp-fv2-live {
  min-height: 1.2rem;
  margin: .85rem auto 0;
  color: rgba(236, 220, 181, .68);
  font-size: .78rem;
  text-align: center;
}

/* Resultado y ramo ------------------------------------------------------- */
.oapp-fv2-result {
  background:
    radial-gradient(circle at 50% 5%, rgba(213, 165, 105, .13), transparent 30rem),
    linear-gradient(160deg, rgba(15, 50, 38, .44), rgba(31, 39, 27, .22));
  padding-bottom: clamp(1.8rem, 5vw, 3.4rem);
}

.oapp-fv2-result-mark {
  width: 4rem;
  height: 4rem;
}

.oapp-fv2-result-head h2 {
  font-size: clamp(1.8rem, 4.7vw, 2.85rem);
}

.oapp-fv2-bouquet-wrap {
  width: min(100%, 760px);
  margin: 1.35rem auto 0;
}

.oapp-fv2-bouquet {
  position: relative;
  height: 25rem;
  overflow: hidden;
  border: 1px solid rgba(221, 191, 127, .26);
  border-radius: 50% 50% 1.4rem 1.4rem / 13% 13% 1.4rem 1.4rem;
  background:
    radial-gradient(ellipse at 50% 96%, rgba(131, 88, 55, .27), transparent 30%),
    radial-gradient(circle at 50% 20%, rgba(241, 216, 166, .09), transparent 37%),
    linear-gradient(155deg, rgba(31, 69, 51, .66), rgba(13, 38, 29, .8));
  box-shadow: inset 0 1px rgba(255, 255, 255, .045), 0 1rem 2.5rem rgba(4, 17, 12, .17);
}

.oapp-fv2-bouquet::before,
.oapp-fv2-bouquet::after {
  content: '';
  position: absolute;
  pointer-events: none;
}

.oapp-fv2-bouquet::before {
  inset: 0;
  background:
    linear-gradient(112deg, transparent 0 19%, rgba(244, 226, 186, .045) 19.2% 19.8%, transparent 20% 48%, rgba(244, 226, 186, .035) 48.2% 48.8%, transparent 49%),
    radial-gradient(circle at 50% 112%, rgba(230, 187, 120, .13), transparent 33%);
}

.oapp-fv2-bouquet::after {
  left: 50%;
  bottom: 1.2rem;
  width: 12rem;
  height: 3.8rem;
  border-radius: 50%;
  background: rgba(4, 20, 14, .23);
  filter: blur(.5rem);
  transform: translateX(-50%);
}

.oapp-fv2-bouquet-flower {
  --fv2-tilt: 0deg;
  position: absolute;
  top: 1.9rem;
  left: 50%;
  z-index: 3;
  width: 12.2rem;
  margin: 0;
  transform: translateX(-50%) rotate(var(--fv2-tilt));
  transform-origin: 50% 84%;
}

.oapp-fv2-bouquet-flower[data-bouquet-position="raiz"] {
  --fv2-tilt: -9deg;
  left: 29%;
  top: 7.2rem;
  z-index: 2;
}

.oapp-fv2-bouquet-flower[data-bouquet-position="flor"] {
  left: 50%;
  top: 1.25rem;
  z-index: 4;
}

.oapp-fv2-bouquet-flower[data-bouquet-position="semilla"] {
  --fv2-tilt: 9deg;
  left: 71%;
  top: 7.2rem;
  z-index: 2;
}

.oapp-fv2-bouquet.is-forming .oapp-fv2-bouquet-flower.is-placed {
  animation: fv2-bouquet-place .9s cubic-bezier(.18, .76, .2, 1) both;
  animation-delay: calc(var(--fv2-order, 0) * .16s);
}

.oapp-fv2-bouquet-stem {
  position: absolute;
  left: 50%;
  top: 9.4rem;
  width: .32rem;
  height: 12rem;
  border-radius: 999px;
  background: linear-gradient(90deg, #37553b, #8ca073 48%, #2e4a34);
  box-shadow: 0 .2rem .5rem rgba(5, 20, 13, .25);
  transform: translateX(-50%);
}

.oapp-fv2-bouquet-art {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  border: .42rem solid rgba(238, 221, 181, .88);
  border-radius: 50%;
  background-image:
    linear-gradient(145deg, rgba(255, 246, 221, .08), rgba(22, 51, 36, .1)),
    var(--fv2-image, radial-gradient(circle at 50% 44%, #bd755a 0 20%, #e2c09a 21% 31%, #5f7a54 32% 60%, #233f31 61%));
  background-position: center;
  background-size: cover;
  box-shadow:
    0 0 0 1px rgba(198, 158, 82, .75),
    0 1rem 1.8rem rgba(5, 20, 14, .3),
    inset 0 0 1rem rgba(39, 38, 22, .12);
}

.oapp-fv2-bouquet-art::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(120deg, rgba(255, 255, 255, .12), transparent 28% 72%, rgba(255, 242, 210, .06));
}

.oapp-fv2-bouquet-copy {
  position: relative;
  display: block;
  width: calc(100% - 1rem);
  margin: -.75rem auto 0;
  padding: .55rem .45rem .48rem;
  border: 1px solid rgba(215, 181, 110, .52);
  border-radius: .65rem;
  color: var(--fv2-cream);
  background: rgba(16, 49, 36, .9);
  box-shadow: 0 .45rem .9rem rgba(4, 17, 12, .22);
  text-align: center;
}

.oapp-fv2-bouquet-copy small,
.oapp-fv2-bouquet-copy strong {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.oapp-fv2-bouquet-copy small {
  color: var(--fv2-gold-light);
  font: 800 .57rem/1.2 system-ui, sans-serif;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.oapp-fv2-bouquet-copy strong {
  margin-top: .18rem;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: .92rem;
  font-weight: 500;
}

.oapp-fv2-bouquet-ribbon {
  position: absolute;
  left: 50%;
  bottom: 2.05rem;
  z-index: 6;
  width: 4.8rem;
  height: 2.05rem;
  border-radius: 48% 52% 42% 58%;
  background: linear-gradient(145deg, #bd765a, #7d493d);
  box-shadow: inset 0 1px rgba(255, 235, 209, .23), 0 .35rem .7rem rgba(5, 18, 12, .25);
  transform: translateX(-50%) rotate(-2deg);
}

.oapp-fv2-bouquet-ribbon::before,
.oapp-fv2-bouquet-ribbon::after {
  content: '';
  position: absolute;
  top: .35rem;
  width: 3.3rem;
  height: 1.35rem;
  border: 1px solid rgba(238, 191, 151, .2);
  background: linear-gradient(145deg, #a85f4b, #673b34);
}

.oapp-fv2-bouquet-ribbon::before {
  right: 3.65rem;
  border-radius: 70% 20% 65% 25%;
  transform: rotate(11deg);
}

.oapp-fv2-bouquet-ribbon::after {
  left: 3.65rem;
  border-radius: 20% 70% 25% 65%;
  transform: rotate(-11deg);
}

.oapp-fv2-bouquet-ribbon i {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  background: #c39059;
  box-shadow: inset 0 0 0 1px rgba(255, 225, 170, .3);
  transform: translate(-50%, -50%);
}

.oapp-fv2-section-heading {
  display: grid;
  grid-template-columns: minmax(1rem, 1fr) auto minmax(1rem, 1fr);
  align-items: center;
  gap: .75rem;
  margin-bottom: .85rem;
}

.oapp-fv2-section-heading h3 {
  margin: 0;
  color: #fff5df;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.12rem, 2.6vw, 1.4rem);
  font-weight: 500;
  text-align: center;
}

.oapp-fv2-section-heading > span {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(222, 188, 116, .36));
}

.oapp-fv2-section-heading > span:last-child {
  transform: scaleX(-1);
}

.oapp-fv2-sequence-wrap,
.oapp-fv2-readings-wrap {
  width: min(100%, 760px);
  margin: 1.35rem auto 0;
}

.oapp-fv2-sequence {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .7rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.oapp-fv2-sequence > li {
  min-width: 0;
  padding: .75rem .8rem;
  border: 1px solid rgba(218, 184, 113, .27);
  border-radius: .8rem;
  color: rgba(245, 238, 217, .82);
  background: linear-gradient(145deg, rgba(40, 76, 51, .56), rgba(19, 49, 37, .67));
  box-shadow: inset 0 1px rgba(255, 255, 255, .035);
  text-align: center;
}

.oapp-fv2-sequence > li small,
.oapp-fv2-sequence > li strong {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.oapp-fv2-sequence > li small {
  color: var(--fv2-gold-light);
  font: 800 .59rem/1.2 system-ui, sans-serif;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.oapp-fv2-sequence > li strong {
  margin-top: .24rem;
  color: #fff6e2;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.02rem;
  font-weight: 500;
}

.oapp-fv2-synthesis {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1rem;
  width: min(100%, 760px);
  margin: 1rem auto 0;
  padding: clamp(1rem, 3vw, 1.4rem);
  overflow: hidden;
  border: 1px solid rgba(220, 187, 118, .28);
  border-radius: 1rem;
  background:
    radial-gradient(circle at 6% 20%, rgba(194, 107, 70, .12), transparent 28%),
    linear-gradient(125deg, rgba(28, 65, 46, .72), rgba(39, 47, 30, .68));
  box-shadow: inset 0 1px rgba(255, 255, 255, .04), 0 .9rem 2rem rgba(5, 19, 13, .13);
}

.oapp-fv2-synthesis::after {
  content: '';
  position: absolute;
  right: -4rem;
  top: -4rem;
  width: 11rem;
  height: 11rem;
  border: 1px solid rgba(229, 199, 133, .09);
  border-radius: 50%;
  box-shadow: 0 0 0 1.8rem rgba(229, 199, 133, .018);
}

.oapp-fv2-synthesis-emblem {
  position: relative;
  display: grid;
  width: 3.55rem;
  height: 3.55rem;
  place-items: center;
  border: 1px solid rgba(229, 201, 137, .48);
  border-radius: 50%;
  background: rgba(20, 54, 39, .7);
}

.oapp-fv2-synthesis-emblem::before,
.oapp-fv2-synthesis-emblem::after,
.oapp-fv2-synthesis-emblem i {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: .75rem;
  height: 1.2rem;
  border: 1px solid rgba(238, 211, 152, .7);
  border-radius: 70% 30% 70% 30%;
  background: rgba(191, 112, 74, .42);
  transform-origin: 0 0;
}

.oapp-fv2-synthesis-emblem::before { transform: rotate(0deg) translate(-50%, -85%); }
.oapp-fv2-synthesis-emblem::after { transform: rotate(120deg) translate(-50%, -85%); }
.oapp-fv2-synthesis-emblem i { transform: rotate(240deg) translate(-50%, -85%); }

.oapp-fv2-synthesis .oapp-fv2-eyebrow {
  margin: .05rem 0 .23rem;
  font-size: .59rem;
}

.oapp-fv2-synthesis h3 {
  margin: 0;
  color: #fff5df;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.25rem;
  font-weight: 500;
}

.oapp-fv2-synthesis p:last-child {
  margin: .45rem 0 0;
  color: rgba(237, 235, 215, .8);
  line-height: 1.67;
}

/* Laminas de interpretacion --------------------------------------------- */
.oapp-fv2-readings {
  display: grid;
  gap: .8rem;
}

.oapp-fv2-empty {
  margin: 0;
  padding: 1.1rem;
  border: 1px dashed rgba(220, 188, 119, .24);
  border-radius: .85rem;
  color: rgba(233, 228, 205, .56);
  text-align: center;
}

.oapp-fv2-reading {
  display: grid;
  grid-template-columns: 12rem minmax(0, 1fr);
  gap: 1.1rem;
  padding: .8rem;
  overflow: hidden;
  border: 1px solid rgba(219, 185, 114, .28);
  border-radius: 1rem;
  background: linear-gradient(145deg, rgba(35, 70, 48, .58), rgba(14, 42, 31, .7));
  box-shadow: inset 0 1px rgba(255, 255, 255, .04), 0 .65rem 1.6rem rgba(4, 17, 12, .11);
}

.oapp-fv2-reading-plate {
  position: relative;
  min-height: 14rem;
  overflow: hidden;
  border: .36rem solid rgba(239, 226, 195, .88);
  border-radius: .65rem;
  background: #d8cfb8;
  box-shadow: 0 0 0 1px rgba(187, 146, 69, .72), 0 .7rem 1.4rem rgba(5, 20, 13, .22);
}

.oapp-fv2-reading-art {
  position: absolute;
  inset: 0;
  display: block;
  background-image:
    linear-gradient(145deg, rgba(255, 248, 226, .03), rgba(25, 56, 39, .1)),
    var(--fv2-image, radial-gradient(circle at 50% 40%, #bc7357 0 18%, #dfbd94 19% 30%, #607c55 31% 60%, #294835 61%));
  background-position: center;
  background-size: cover;
}

.oapp-fv2-reading-art::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(255, 255, 255, .1), transparent 28% 74%, rgba(255, 240, 205, .05));
}

.oapp-fv2-reading-number {
  position: absolute;
  right: .55rem;
  bottom: .5rem;
  display: grid;
  min-width: 2rem;
  height: 2rem;
  padding: 0 .42rem;
  place-items: center;
  border: 1px solid rgba(237, 211, 153, .6);
  border-radius: 50%;
  color: #f3d999;
  background: rgba(16, 51, 36, .84);
  box-shadow: 0 .3rem .6rem rgba(4, 18, 12, .24);
  font: 800 .69rem/1 system-ui, sans-serif;
}

.oapp-fv2-reading-copy {
  min-width: 0;
  padding: .3rem .35rem .35rem 0;
}

.oapp-fv2-reading-position {
  margin: 0;
  color: var(--fv2-gold-light);
  font: 800 .62rem/1.3 system-ui, sans-serif;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.oapp-fv2-reading-copy h4 {
  margin: .28rem 0 0;
  color: #fff5df;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.35rem, 3vw, 1.72rem);
  font-weight: 500;
  line-height: 1.15;
}

.oapp-fv2-reading-keyword {
  margin: .36rem 0 .72rem;
  color: rgba(228, 220, 195, .68);
  font-style: italic;
}

.oapp-fv2-reading-copy dl,
.oapp-fv2-reading-copy dl > div {
  margin: 0;
}

.oapp-fv2-reading-copy dl {
  display: grid;
  gap: .58rem;
}

.oapp-fv2-reading-copy dl > div {
  padding: .58rem .68rem;
  border-left: 2px solid rgba(198, 162, 87, .5);
  border-radius: 0 .5rem .5rem 0;
  background: rgba(8, 29, 21, .27);
}

.oapp-fv2-reading-copy dt {
  margin: 0 0 .18rem;
  color: #e3c57e;
  font: 800 .64rem/1.3 system-ui, sans-serif;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.oapp-fv2-reading-copy dd {
  margin: 0;
  color: rgba(239, 235, 216, .78);
  font-size: .89rem;
  line-height: 1.58;
}

.oapp-fv2-reading-question {
  margin: .7rem 0 0;
  padding: .68rem .76rem;
  border: 1px solid rgba(220, 187, 118, .2);
  border-radius: .58rem;
  color: rgba(244, 231, 199, .82);
  background: rgba(119, 66, 47, .18);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: .91rem;
  font-style: italic;
  line-height: 1.52;
}

.oapp-fv2-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .7rem;
  width: min(100%, 760px);
  margin: 1.5rem auto 0;
}

.oapp-fv2-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  min-height: 3.05rem;
  padding: .76rem 1.2rem;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  line-height: 1.2;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}

.oapp-fv2-button:hover { transform: translateY(-2px); }
.oapp-fv2-button:active { transform: translateY(0); }

.oapp-fv2-share {
  border: 1px solid #e0c57e;
  color: #193027;
  background: linear-gradient(135deg, #ecd493, #c59c4e);
  box-shadow: 0 .65rem 1.5rem rgba(179, 135, 59, .17), inset 0 1px rgba(255, 255, 255, .48);
}

.oapp-fv2-share:hover {
  box-shadow: 0 .85rem 1.8rem rgba(179, 135, 59, .25), inset 0 1px rgba(255, 255, 255, .48);
}

.oapp-fv2-again {
  border: 1px solid rgba(219, 188, 120, .34);
  color: rgba(249, 241, 220, .86);
  background: rgba(17, 49, 37, .62);
}

.oapp-fv2-again:hover {
  border-color: rgba(233, 205, 143, .62);
  background: rgba(49, 74, 46, .72);
}

.oapp-fv2-share-status {
  min-height: 1.25rem;
  margin: .55rem 0 0;
  color: rgba(220, 224, 198, .7);
  font-size: .78rem;
  text-align: center;
}

/* Animacion -------------------------------------------------------------- */
@keyframes fv2-mote {
  0%, 100% { opacity: .24; transform: translate(0, .4rem) scale(.8); }
  45% { opacity: .9; transform: translate(.18rem, -.7rem) scale(1.1); }
  70% { opacity: .48; transform: translate(-.12rem, -.35rem) scale(.92); }
}

@keyframes fv2-plate-reveal {
  0% { opacity: .3; transform: translateY(1rem) rotateY(70deg) scale(.9); filter: blur(4px); }
  62% { opacity: 1; transform: translateY(-.2rem) rotateY(-4deg) scale(1.02); filter: blur(0); }
  100% { opacity: 1; transform: translateY(0) rotateY(0) scale(1); filter: blur(0); }
}

@keyframes fv2-bouquet-place {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(2.2rem) rotate(var(--fv2-tilt)) scale(.8);
    filter: blur(3px);
  }
  68% {
    opacity: 1;
    transform: translateX(-50%) translateY(-.18rem) rotate(var(--fv2-tilt)) scale(1.025);
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: translateX(-50%) translateY(0) rotate(var(--fv2-tilt)) scale(1);
    filter: blur(0);
  }
}

/* Tablet ----------------------------------------------------------------- */
@media (max-width: 760px) {
  .oapp-fv2,
  .oapp-fv2-step {
    min-height: 38rem;
  }

  .oapp-fv2-garden::before {
    background-position: center 30%;
  }

  .oapp-fv2-buds {
    width: min(100%, 560px);
    gap: .55rem .7rem;
    padding-inline: .2rem;
  }

  .oapp-fv2-bud {
    flex-basis: 94px;
    width: 94px;
  }

  .oapp-fv2-bud-head {
    top: 1.02rem;
    transform: translateX(-50%) scale(.88) rotate(calc((var(--fv2-i) - 4) * 1deg));
  }

  .oapp-fv2-bud:hover .oapp-fv2-bud-head,
  .oapp-fv2-bud[aria-pressed="true"] .oapp-fv2-bud-head,
  .oapp-fv2-bud[data-state="chosen"] .oapp-fv2-bud-head {
    transform: translateX(-50%) translateY(-.12rem) scale(.9) rotate(calc((var(--fv2-i) - 4) * .7deg));
  }

  .oapp-fv2-slots {
    gap: .65rem;
  }

  .oapp-fv2-slot {
    padding: .5rem;
  }

  .oapp-fv2-slot-copy strong {
    font-size: .9rem;
  }

  .oapp-fv2-bouquet {
    height: 22rem;
  }

  .oapp-fv2-bouquet-flower {
    width: 10.4rem;
  }

  .oapp-fv2-bouquet-flower[data-bouquet-position="raiz"] { top: 6.5rem; left: 27%; }
  .oapp-fv2-bouquet-flower[data-bouquet-position="flor"] { top: 1.1rem; }
  .oapp-fv2-bouquet-flower[data-bouquet-position="semilla"] { top: 6.5rem; left: 73%; }

  .oapp-fv2-bouquet-stem {
    top: 8.2rem;
    height: 10rem;
  }

  .oapp-fv2-reading {
    grid-template-columns: 9.2rem minmax(0, 1fr);
  }

  .oapp-fv2-reading-plate {
    min-height: 12rem;
  }
}

/* Movil ------------------------------------------------------------------ */
@media (max-width: 520px) {
  .oapp-fv2 {
    border-radius: 1.15rem;
  }

  .oapp-fv2-step {
    min-height: 36rem;
    padding: 1rem;
  }

  .oapp-fv2-garden {
    padding-top: 1.4rem;
    padding-bottom: 1.35rem;
  }

  .oapp-fv2-garden::before {
    background-position: center top;
    opacity: .72;
  }

  .oapp-fv2-sunmark {
    width: 4rem;
    height: 4rem;
    margin-bottom: .65rem;
  }

  .oapp-fv2-lead,
  .oapp-fv2-result-head > p:last-child {
    line-height: 1.55;
  }

  .oapp-fv2-buds {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .45rem;
    width: 100%;
    margin-top: 1.05rem;
    padding: .25rem 0;
  }

  .oapp-fv2-bud {
    width: 100%;
    min-width: 0;
    aspect-ratio: .9;
    border-radius: 4rem 4rem .7rem .7rem;
  }

  .oapp-fv2-bud-head {
    top: .78rem;
    transform: translateX(-50%) scale(.72) rotate(calc((var(--fv2-i) - 4) * 1deg));
  }

  .oapp-fv2-bud:hover .oapp-fv2-bud-head,
  .oapp-fv2-bud[aria-pressed="true"] .oapp-fv2-bud-head,
  .oapp-fv2-bud[data-state="chosen"] .oapp-fv2-bud-head {
    transform: translateX(-50%) translateY(-.1rem) scale(.76) rotate(calc((var(--fv2-i) - 4) * .7deg));
  }

  .oapp-fv2-bud-stem {
    bottom: .72rem;
    height: 3.35rem;
    transform: translateX(-50%) scale(.82) rotate(calc((var(--fv2-i) - 4) * .35deg));
    transform-origin: bottom;
  }

  .oapp-fv2-bud-number {
    right: .3rem;
    bottom: .25rem;
    font-size: .5rem;
  }

  .oapp-fv2-hint {
    margin-top: .7rem;
    line-height: 1.42;
  }

  .oapp-fv2-ceremony-head {
    display: block;
  }

  .oapp-fv2-skip {
    margin-top: .8rem;
  }

  .oapp-fv2-slots {
    grid-template-columns: 1fr;
    gap: .7rem;
  }

  .oapp-fv2-slot {
    display: grid;
    grid-template-columns: 5.2rem minmax(0, 1fr);
    align-items: center;
    gap: .7rem;
    min-height: 6.6rem;
    padding: .55rem;
  }

  .oapp-fv2-slot-plate {
    width: 5.2rem;
    aspect-ratio: 4 / 5;
    border-radius: .58rem .58rem 1.8rem 1.8rem;
  }

  .oapp-fv2-slot-seal {
    bottom: .35rem;
    width: 1.9rem;
    height: 1.9rem;
  }

  .oapp-fv2-slot-seal i {
    width: .58rem;
    height: .85rem;
  }

  .oapp-fv2-slot-copy {
    min-width: 0;
    min-height: 0;
    padding: 0 .8rem 0 0;
    text-align: left;
  }

  .oapp-fv2-slot-index::before {
    top: .6rem;
    right: .58rem;
  }

  .oapp-fv2-bouquet {
    height: 18.4rem;
    border-radius: 42% 42% 1rem 1rem / 10% 10% 1rem 1rem;
  }

  .oapp-fv2-bouquet-flower {
    width: 7.7rem;
  }

  .oapp-fv2-bouquet-flower[data-bouquet-position="raiz"] { top: 5.7rem; left: 25%; }
  .oapp-fv2-bouquet-flower[data-bouquet-position="flor"] { top: 1rem; }
  .oapp-fv2-bouquet-flower[data-bouquet-position="semilla"] { top: 5.7rem; left: 75%; }

  .oapp-fv2-bouquet-art {
    border-width: .28rem;
  }

  .oapp-fv2-bouquet-stem {
    top: 6rem;
    height: 9rem;
  }

  .oapp-fv2-bouquet-copy {
    width: calc(100% - .35rem);
    padding: .4rem .25rem .36rem;
  }

  .oapp-fv2-bouquet-copy small {
    font-size: .49rem;
  }

  .oapp-fv2-bouquet-copy strong {
    font-size: .74rem;
  }

  .oapp-fv2-bouquet-ribbon {
    bottom: 1.2rem;
    transform: translateX(-50%) rotate(-2deg) scale(.82);
  }

  .oapp-fv2-sequence {
    grid-template-columns: 1fr;
    gap: .5rem;
  }

  .oapp-fv2-sequence > li {
    padding: .62rem .72rem;
  }

  .oapp-fv2-synthesis {
    grid-template-columns: 1fr;
    gap: .7rem;
  }

  .oapp-fv2-synthesis-emblem {
    width: 3rem;
    height: 3rem;
  }

  .oapp-fv2-reading {
    grid-template-columns: 1fr;
    gap: .8rem;
    padding: .65rem;
  }

  .oapp-fv2-reading-plate {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .oapp-fv2-reading-copy {
    padding: .15rem .2rem .25rem;
  }

  .oapp-fv2-reading-copy dl > div {
    padding: .52rem .58rem;
  }

  .oapp-fv2-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .oapp-fv2-button {
    width: 100%;
  }
}

/* Accesibilidad del sistema --------------------------------------------- */
@media (forced-colors: active) {
  .oapp-fv2-bud,
  .oapp-fv2-skip,
  .oapp-fv2-button,
  .oapp-fv2-slot,
  .oapp-fv2-reading {
    forced-color-adjust: auto;
  }

  .oapp-fv2-bud[aria-pressed="true"],
  .oapp-fv2-bud[data-state="chosen"],
  .oapp-fv2-slot[data-state="revealed"],
  .oapp-fv2-slot.is-revealed {
    border: 3px solid Highlight;
  }

  .oapp-fv2-progress-track i {
    background: Highlight;
  }
}

@media (prefers-reduced-motion: reduce) {
  .oapp-fv2 *,
  .oapp-fv2 *::before,
  .oapp-fv2 *::after {
    scroll-behavior: auto !important;
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    transition-delay: 0s !important;
  }

  .oapp-fv2-garden::before {
    transform: none;
  }

  .oapp-fv2-bud:hover,
  .oapp-fv2-bud[aria-pressed="true"],
  .oapp-fv2-bud[data-state="chosen"] {
    transform: none;
  }

  .oapp-fv2-slot[data-state="opening"],
  .oapp-fv2-slot.is-opening,
  .oapp-fv2-slot.is-emerging {
    transform: none;
  }

  .oapp-fv2-slot[data-state="opening"] .oapp-fv2-slot-plate,
  .oapp-fv2-slot.is-opening .oapp-fv2-slot-plate {
    opacity: 1;
    transform: none;
    filter: none;
  }
}
