:root {
  color-scheme: light;
  --card: #fafafa;
  --ring: #2e6aff;
  --input: #cccccc;
  --muted: #ffffff;
  --accent: #ffffff;
  --border: #e7e4e4;
  --chart-1: #2e67ff;
  --chart-2: #00cdcc;
  --chart-3: #f9ff40;
  --chart-4: #00eeba;
  --chart-5: #ff2822;
  --popover: #ffffff;
  --primary: #2e67ff;
  --sidebar: #fafafa;
  --secondary: #0e142b;
  --background: #fcfcfc;
  --foreground: #0e142b;
  --destructive: #ff6c35;
  --sidebar-ring: #2e6aff;
  --sidebar-accent: #ffffff;
  --sidebar-border: #ffffff;
  --card-foreground: #0e142b;
  --sidebar-primary: #2e67ff;
  --muted-foreground: #0e142b;
  --accent-foreground: #2e67ff;
  --popover-foreground: #0e142b;
  --primary-foreground: #ffffff;
  --sidebar-foreground: #0e142b;
  --secondary-foreground: #ffffff;
  --destructive-foreground: #ffffff;
  --sidebar-accent-foreground: #2e67ff;
  --sidebar-primary-foreground: #ffffff;
  --primary-soft: #eef2ff;
  --ease-out: cubic-bezier(.16, 1, .3, 1);
}
.dark {
  color-scheme: dark;
  --card: #0f0f0f;
  --ring: #2e6aff;
  --input: #162151;
  --muted: #181818;
  --accent: #000e39;
  --border: #26272e;
  --popover: #000000;
  --primary: #2b65ff;
  --sidebar: #0f0f0f;
  --secondary: #ffffff;
  --background: #000000;
  --foreground: #ffffff;
  --destructive: #ff6c35;
  --sidebar-ring: #2e6aff;
  --sidebar-accent: #000e39;
  --sidebar-border: #323e62;
  --card-foreground: #d9d9d9;
  --sidebar-primary: #2e6aff;
  --muted-foreground: #7b7e8c;
  --accent-foreground: #2b65ff;
  --popover-foreground: #ffffff;
  --primary-foreground: #ffffff;
  --sidebar-foreground: #d9d9d9;
  --secondary-foreground: #0e142b;
  --destructive-foreground: #ffffff;
  --sidebar-accent-foreground: #2b65ff;
  --sidebar-primary-foreground: #ffffff;
  --primary-soft: #000e39;
}
* { box-sizing: border-box; }
html { scroll-padding-top: 5.5rem; }
body { min-width: 320px; }
a, button, input, select, textarea { -webkit-tap-highlight-color: transparent; touch-action: manipulation; }
a { text-underline-offset: 4px; }
:focus-visible { outline: 3px solid var(--ring); outline-offset: 3px; }
::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--background); }
::-webkit-scrollbar-thumb { border: 3px solid var(--background); border-radius: 999px; background: var(--primary); }
.skip-link { position: fixed; left: 1rem; top: .5rem; z-index: 100; transform: translateY(-180%); border-radius: .75rem; background: var(--secondary); padding: .75rem 1rem; color: var(--secondary-foreground); font-weight: 700; transition: transform .2s; }
.skip-link:focus { transform: translateY(0); }
.header-scrolled { border-color: var(--border) !important; background: rgba(255,255,255,.96); box-shadow: 0 10px 30px -22px rgba(14,20,43,.45); }
.hero-pattern-bg {
  background-color: #fff;
  background-image: radial-gradient(100% 55% at 50% 0%, rgba(46,103,255,.14) 0%, rgba(46,103,255,.055) 42%, rgba(46,103,255,0) 78%);
}
.nav-link { position: relative; padding: .75rem 0; color: var(--foreground); font-size: .875rem; font-weight: 700; transition: color .2s; }
.nav-link::after { content: ''; position: absolute; right: 0; bottom: .4rem; left: 0; height: 2px; transform: scaleX(0); transform-origin: right; background: var(--primary); transition: transform .25s var(--ease-out); }
.nav-link:hover, .nav-link.is-active { color: var(--primary); }
.nav-link:hover::after, .nav-link.is-active::after { transform: scaleX(1); transform-origin: left; }
.menu-toggle-button { width: 44px; height: 44px; flex: none; cursor: pointer; place-items: center; border: 1px solid var(--input); border-radius: .65rem; background: var(--background); color: var(--foreground); box-shadow: 0 2px 6px rgba(14,20,43,.05); outline: none; transition: border-color .2s ease, background-color .2s ease, color .2s ease, box-shadow .2s ease, transform .15s var(--ease-out); }
.menu-toggle-button:hover { border-color: rgba(46,103,255,.42); background: var(--primary-soft); color: var(--primary); }
.menu-toggle-button:active { transform: scale(.96); }
.menu-toggle-button:focus-visible { outline: 2px solid rgba(46,103,255,.72); outline-offset: 3px; }
.menu-toggle-button svg { width: 20px; height: 20px; overflow: visible; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.menu-toggle-line { transform-box: fill-box; transform-origin: center; transition: transform .3s cubic-bezier(.5,.85,.25,1.1); }
.menu-toggle-line--top { transform: translateY(-7px); }
.menu-toggle-line--middle { transition-timing-function: cubic-bezier(.5,.85,.25,1.8); }
.menu-toggle-line--bottom { transform: translateY(7px); }
.menu-toggle-button[aria-expanded="true"] .menu-toggle-line--top { transform: translateY(0) rotate(315deg); }
.menu-toggle-button[aria-expanded="true"] .menu-toggle-line--middle { transform: rotate(45deg); }
.menu-toggle-button[aria-expanded="true"] .menu-toggle-line--bottom { transform: translateY(0) rotate(135deg); }
.mobile-link { min-height: 44px; border-radius: .75rem; padding: .75rem 1rem; color: var(--foreground); font-weight: 700; }
.mobile-link:hover { background: var(--primary-soft); color: var(--primary); }
.menu-open { visibility: visible !important; transform: translateY(0) !important; opacity: 1 !important; }
.btn-primary, .btn-secondary, .btn-light { display: inline-flex; min-height: 48px; cursor: pointer; align-items: center; gap: .65rem; border-radius: .875rem; padding: .8rem 1.15rem; font-weight: 800; transition: transform .18s var(--ease-out), background .18s, color .18s, box-shadow .18s; }
.btn-primary { background: var(--primary); color: var(--primary-foreground); box-shadow: 0 10px 24px -14px rgba(46,103,255,.7); }
.btn-primary:hover { transform: translateY(-2px); background: var(--secondary); box-shadow: 0 16px 30px -16px rgba(14,20,43,.72); }
.btn-secondary { border: 1px solid var(--primary); background: transparent; color: var(--primary); }
.btn-secondary:hover { transform: translateY(-2px); background: var(--primary-soft); color: var(--primary); }
.btn-light { background: var(--primary-foreground); color: var(--secondary); }
.btn-light:hover { transform: translateY(-2px); background: var(--border); }
.origin-fill-button { --origin-x: 50%; --origin-y: 50%; --origin-size: 0px; position: relative; display: inline-flex; min-height: 48px; max-width: 100%; cursor: pointer; touch-action: manipulation; user-select: none; align-items: center; justify-content: center; overflow: hidden; border: .5px solid var(--border); border-radius: .75rem; background: var(--card); padding: .8rem 2rem; color: var(--card-foreground); font-size: .9375rem; font-weight: 600; line-height: 1.25; letter-spacing: -.02em; text-align: center; transition: color .3s var(--ease-out), border-color .3s var(--ease-out), box-shadow .3s ease, transform .12s var(--ease-out); }
.origin-fill-button__surface { position: absolute; left: var(--origin-x); top: var(--origin-y); width: var(--origin-size); height: var(--origin-size); transform: translate(-50%,-50%) scale(0); border-radius: 50%; background: var(--secondary); pointer-events: none; transition: transform .5s var(--ease-out); }
.origin-fill-button__label { position: relative; z-index: 1; }
.origin-fill-button:is(:hover, :focus-visible, :active, [data-pressed="true"]) { border-color: var(--secondary); color: var(--secondary-foreground); }
.origin-fill-button:is(:hover, :focus-visible, :active, [data-pressed="true"]) .origin-fill-button__surface { transform: translate(-50%,-50%) scale(1); }
.origin-fill-button[data-pressed="true"] { transform: scale(.985); }
.origin-fill-button--brand { border-color: var(--primary); background: var(--primary); color: var(--primary-foreground); box-shadow: 0 10px 24px -14px rgba(46,103,255,.7); }
.origin-fill-button--brand:is(:hover, :focus-visible, :active, [data-pressed="true"]) { border-color: var(--secondary); color: var(--secondary-foreground); box-shadow: 0 16px 30px -16px rgba(14,20,43,.68); }
.arrow-fill-button { --arrow-button-duration: 450ms; --arrow-button-icon: 2.5rem; --arrow-button-inset: .25rem; --arrow-button-bg: var(--primary); --arrow-button-text: var(--primary-foreground); --arrow-button-fill: var(--primary-foreground); --arrow-button-fill-text: var(--primary); --arrow-button-arrow: var(--primary); position: relative; display: inline-flex; min-height: 52px; align-items: center; justify-content: center; overflow: hidden; border: 1px solid var(--arrow-button-bg); border-radius: 999px; background: var(--arrow-button-bg); padding: .9rem calc(var(--arrow-button-icon) + 1.05rem) .9rem 1.25rem; color: var(--arrow-button-text); font-weight: 800; line-height: 1; white-space: nowrap; box-shadow: 0 10px 24px -14px rgba(46,103,255,.7); }
.arrow-fill-button--light { --arrow-button-bg: var(--primary-foreground); --arrow-button-text: var(--secondary); --arrow-button-fill: var(--primary); --arrow-button-fill-text: var(--primary-foreground); --arrow-button-arrow: var(--primary-foreground); box-shadow: none; }
.arrow-fill-button__label { position: relative; z-index: 1; }
.arrow-fill-button__fill { position: absolute; z-index: 2; inset: var(--arrow-button-inset) var(--arrow-button-inset) var(--arrow-button-inset) calc(100% - var(--arrow-button-icon) - var(--arrow-button-inset)); border-radius: 999px; background: var(--arrow-button-fill); pointer-events: none; transition: inset var(--arrow-button-duration) cubic-bezier(.785,.135,.15,.86); }
.arrow-fill-button__fill-content { position: absolute; z-index: 2; inset: 0; display: flex; align-items: center; justify-content: center; padding: .9rem calc(var(--arrow-button-icon) + 1.05rem) .9rem 1.25rem; color: var(--arrow-button-fill-text); clip-path: inset(var(--arrow-button-inset) var(--arrow-button-inset) var(--arrow-button-inset) calc(100% - var(--arrow-button-icon) - var(--arrow-button-inset)) round 999px); pointer-events: none; transition: clip-path var(--arrow-button-duration) cubic-bezier(.785,.135,.15,.86); }
.arrow-fill-button__icon { position: absolute; z-index: 3; right: var(--arrow-button-inset); top: 50%; display: grid; height: var(--arrow-button-icon); width: var(--arrow-button-icon); transform: translateY(-50%); place-items: center; overflow: hidden; border-radius: 50%; background: var(--arrow-button-fill); color: var(--arrow-button-arrow); pointer-events: none; }
.arrow-fill-button__arrow { position: absolute; left: 50%; top: 50%; height: 1.15rem; width: 1.15rem; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; transition: transform var(--arrow-button-duration) cubic-bezier(.785,.135,.15,.86); }
.arrow-fill-button__arrow--incoming { transform: translate(-170%,-50%) scale(0); }
.arrow-fill-button__arrow--outgoing { transform: translate(-50%,-50%); }
.arrow-fill-button:is(:hover, :focus-visible, [data-pressed="true"]) .arrow-fill-button__fill { inset: 0; }
.arrow-fill-button:is(:hover, :focus-visible, [data-pressed="true"]) .arrow-fill-button__fill-content { clip-path: inset(0 round 999px); }
.arrow-fill-button:is(:hover, :focus-visible, [data-pressed="true"]) .arrow-fill-button__arrow--incoming { transform: translate(-50%,-50%) scale(1); }
.arrow-fill-button:is(:hover, :focus-visible, [data-pressed="true"]) .arrow-fill-button__arrow--outgoing { transform: translate(70%,-50%) scale(0); }
.arrow-fill-button--hero .arrow-fill-button__fill { transition: inset var(--arrow-button-duration) cubic-bezier(.785,.135,.15,.86), background-color .18s ease; }
.arrow-fill-button--hero .arrow-fill-button__fill-content { transition: clip-path var(--arrow-button-duration) cubic-bezier(.785,.135,.15,.86), color .18s ease; }
.arrow-fill-button--hero .arrow-fill-button__icon { transition: background-color .18s ease, color .18s ease; }
.arrow-fill-button--hero:is(:hover, :focus-visible, [data-pressed="true"]) .arrow-fill-button__fill,
.arrow-fill-button--hero:is(:hover, :focus-visible, [data-pressed="true"]) .arrow-fill-button__icon { background: var(--secondary); }
.arrow-fill-button--hero:is(:hover, :focus-visible, [data-pressed="true"]) .arrow-fill-button__fill-content,
.arrow-fill-button--hero:is(:hover, :focus-visible, [data-pressed="true"]) .arrow-fill-button__icon { color: var(--secondary-foreground); }
.section-space { padding-top: clamp(5rem, 9vw, 8rem); padding-bottom: clamp(5rem, 9vw, 8rem); }
.section-title { max-width: 18ch; text-wrap: balance; font-size: clamp(2.4rem, 5vw, 4.25rem); font-weight: 900; line-height: .98; letter-spacing: -.035em; }
.section-copy { max-width: 65ch; color: var(--foreground); font-size: 1.075rem; line-height: 1.75; }
.icon-box { display: grid; height: 2.75rem; width: 2.75rem; flex: none; place-items: center; border-radius: .8rem; background: var(--primary-soft); color: var(--primary); }
.icon-box svg, .plan-icon svg, .social-link svg { height: 1.35rem; width: 1.35rem; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.whatsapp-icon { display: block; width: 1.35rem; height: 1.35rem; flex: none; object-fit: contain; }
.feature-line { display: flex; align-items: center; gap: .8rem; }
.feature-line strong, .feature-line small { display: block; }
.feature-line strong { font-size: .95rem; }
.feature-line small { color: var(--foreground); font-size: .8rem; }
@property --hero-beam-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}
.hero-image-beam, .factory-image-beam, .owner-image-beam, .loyalty-image-beam { position: relative; isolation: isolate; box-shadow: 0 18px 44px -28px rgba(14,20,43,.2); }
.hero-image-beam { border-radius: 2rem; }
.factory-image-beam { border-radius: 1.5rem; }
.owner-image-beam, .loyalty-image-beam { border-radius: 2rem; }
.hero-image-beam::after, .factory-image-beam::after, .owner-image-beam::after, .loyalty-image-beam::after {
  position: absolute;
  inset: -1px;
  z-index: 2;
  border-radius: inherit;
  background: conic-gradient(from var(--hero-beam-angle), transparent 0deg 285deg, rgba(46,103,255,.08) 300deg, rgba(46,103,255,.74) 326deg, #2e67ff 342deg, rgba(130,169,255,.7) 350deg, transparent 360deg);
  padding: 3px;
  pointer-events: none;
  content: '';
  filter: drop-shadow(0 0 7px rgba(46,103,255,.48));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  animation: hero-border-beam 7s linear infinite;
}
@keyframes hero-border-beam { to { --hero-beam-angle: 360deg; } }
.hero-welcome-card {
  --card-pointer-x: 50%;
  --card-pointer-y: 50%;
  --card-rotate-x: 0deg;
  --card-rotate-y: 0deg;
  overflow: hidden;
  transform: perspective(900px) rotateX(var(--card-rotate-x)) rotateY(var(--card-rotate-y));
  transform-style: preserve-3d;
  transform-origin: center;
  border: 1px solid rgba(255,255,255,.62);
  background: linear-gradient(145deg, rgba(255,255,255,.28), rgba(255,255,255,.11));
  box-shadow: 0 22px 48px -20px rgba(14,20,43,.38);
  -webkit-backdrop-filter: blur(20px) saturate(135%);
  backdrop-filter: blur(20px) saturate(135%);
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out);
  backface-visibility: hidden;
}
.hero-welcome-card::before {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(170px circle at var(--card-pointer-x) var(--card-pointer-y), rgba(46,103,255,.24), rgba(46,103,255,.06) 38%, transparent 72%), linear-gradient(135deg, rgba(255,255,255,.28), transparent 44%);
  content: '';
  opacity: .5;
  pointer-events: none;
  transition: opacity .3s var(--ease-out);
}
.hero-welcome-card::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
  box-shadow: inset 1px 1px 1px rgba(255,255,255,.72), inset -1px -1px 1px rgba(255,255,255,.28);
  content: '';
  pointer-events: none;
}
.hero-welcome-card[data-interacting="true"] {
  box-shadow: 0 28px 58px -22px rgba(14,20,43,.46);
  transition-duration: .08s;
  will-change: transform;
}
.hero-welcome-card[data-interacting="true"]::before { opacity: .72; }
.hero-welcome-card__content { position: relative; z-index: 1; transform: translateZ(22px); }
@supports not ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) { .hero-welcome-card { background: rgba(255,255,255,.9); } }
.hero-marquee { overflow: hidden; padding-block: 1rem; -webkit-mask-image: linear-gradient(to right, transparent, black 25%, black 75%, transparent); mask-image: linear-gradient(to right, transparent, black 25%, black 75%, transparent); }
.hero-marquee-track { display: flex; width: max-content; will-change: transform; animation: hero-marquee-reverse 80s linear infinite; }
.hero-marquee-track.is-js-marquee { animation: none; }
.hero-marquee-track.is-paused { animation-play-state: paused; }
.hero-marquee-group { display: flex; min-width: 100vw; flex: 0 0 auto; align-items: center; justify-content: space-around; gap: 2.625rem; padding-inline: 1.3125rem; white-space: nowrap; color: var(--foreground); font-size: .875rem; font-weight: 600; }
.hero-marquee-group [aria-hidden="true"], .hero-marquee-group > span:nth-child(even) { color: var(--primary); }
@keyframes hero-marquee-reverse { from { transform: translateX(-50%); } to { transform: translateX(0); } }
.product-card-grid { display: grid; width: 100%; grid-template-columns: 1fr; gap: 1rem; list-style: none; }
.product-card-item { min-width: 0; }
.product-card { position: relative; display: block; width: 100%; aspect-ratio: 408 / 320; cursor: pointer; overflow: hidden; border-radius: .75rem; background: var(--primary); color: white; box-shadow: 0 16px 34px -22px rgba(14,20,43,.85); transition: transform .5s ease-in-out, opacity .5s ease-in-out, filter .5s ease-in-out, box-shadow .5s ease-in-out; }
.product-card:hover { text-decoration: none; }
.product-card::after { content: ''; position: absolute; inset: 0; z-index: 1; background: linear-gradient(to top, rgba(14,20,43,.96), rgba(14,20,43,.4) 42%, transparent 72%); pointer-events: none; }
.product-card-media { position: absolute; inset: 0; display: block; }
.product-card-media img { display: block; height: 100%; width: 100%; object-fit: cover; }
.product-card-content { position: absolute; right: 0; bottom: 0; left: 0; z-index: 2; padding: 1.5rem; color: white; }
.product-card h3 { text-wrap: balance; font-size: 1.35rem; font-weight: 800; line-height: 1.1; }
.product-card p { margin-top: .65rem; color: var(--border); font-size: .95rem; line-height: 1.5; }
.product-card:focus-visible { z-index: 3; transform: scale(1.025); opacity: 1; filter: none; outline: 2px solid var(--primary-foreground); outline-offset: 4px; box-shadow: 0 24px 48px -20px rgba(14,20,43,.95); }
@media (hover: hover) and (pointer: fine) {
  .product-card-grid:hover .product-card { transform: scale(.97); opacity: .6; filter: blur(2px); }
  .product-card-grid .product-card:hover { z-index: 3; transform: scale(1.05); opacity: 1; filter: none; box-shadow: 0 24px 48px -20px rgba(14,20,43,.95); }
}
.benefit { display: grid; grid-template-columns: 3rem 1fr; gap: 1rem; border-top: 1px solid var(--border); padding-top: 1.5rem; }
.benefit > span { font-size: .75rem; font-weight: 900; letter-spacing: .12em; color: var(--primary); }
.benefit h3 { font-size: 1.15rem; font-weight: 800; }
.benefit p { margin-top: .35rem; color: var(--foreground); line-height: 1.55; }
.plan-card { position: relative; overflow: hidden; border: 1px solid var(--border); border-radius: 1rem; background: white; padding: 1.5rem; box-shadow: 0 14px 34px -30px rgba(14,20,43,.4); transition: transform .3s var(--ease-out), border-color .3s ease, box-shadow .3s ease; }
.plan-card[data-plan-card="comodato"] { background: white; }
.plan-card[data-plan-card="locacao"] { border-color: rgba(46,103,255,.25); background: #f1f5ff; }
.plan-card.is-selected { transform: translateY(-3px); border-color: var(--primary); box-shadow: 0 22px 48px -24px rgba(14,20,43,.3); }
.plan-badge { display: inline-flex; border-radius: 999px; background: var(--primary-soft); padding: .45rem .7rem; color: var(--primary); font-size: .75rem; font-weight: 900; letter-spacing: .04em; text-transform: uppercase; }
.plan-icon { display: grid; height: 3rem; width: 3rem; flex: none; place-items: center; border-radius: .9rem; background: var(--primary); color: var(--primary-foreground); }
.plan-list { margin-top: 2rem; display: grid; gap: 0; border-top: 1px solid var(--border); }
.plan-list li { position: relative; border-bottom: 1px solid var(--border); padding: .85rem 0 .85rem 1.7rem; line-height: 1.45; }
.plan-list li::before { content: ''; position: absolute; left: .1rem; top: 1.1rem; height: .55rem; width: .85rem; transform: rotate(-45deg); border-bottom: 2px solid var(--primary); border-left: 2px solid var(--primary); }
.plan-select { margin-top: 1.5rem; min-height: 48px; width: 100%; padding: .8rem 1rem; font-weight: 800; }
@media (hover: hover) and (pointer: fine) {
  .plan-card:hover, .plan-card:focus-within { transform: translateY(-7px) scale(1.008); border-color: var(--primary); box-shadow: 0 26px 52px -26px rgba(14,20,43,.38); }
  .plan-card:hover .plan-icon, .plan-card:focus-within .plan-icon { transform: translateY(-3px); }
}
.plan-icon { transition: transform .3s var(--ease-out), box-shadow .3s ease; }
.comparison-tab { min-height: 44px; cursor: pointer; border-radius: .75rem; padding: .65rem 1rem; color: var(--foreground); font-weight: 800; }
.comparison-tab.is-active { background: var(--popover); color: var(--primary); box-shadow: 0 6px 18px -12px rgba(14,20,43,.5); }
.comparison-row { display: grid; grid-template-columns: 1.15fr .85fr .85fr; align-items: center; gap: .5rem; border-top: 1px solid var(--border); padding: 1rem; font-size: .78rem; }
.comparison-row span { color: var(--foreground); }
.comparison-row strong { color: var(--foreground); font-weight: 800; }
.weekly-stepper { display: grid; grid-template-columns: minmax(0,1fr); width: 100%; max-width: 36rem; list-style: none; }
.weekly-stepper__item { position: relative; display: grid; grid-template-columns: 44px minmax(0,1fr); column-gap: 1rem; min-width: 0; min-height: 92px; text-align: left; }
.weekly-stepper__item:last-child { min-height: 44px; }
.weekly-stepper__trigger { position: relative; z-index: 1; display: grid; width: 44px; height: 44px; cursor: pointer; place-items: center; border: 2px solid rgba(255,255,255,.24); border-radius: 50%; background: rgba(255,255,255,.1); color: rgba(255,255,255,.72); font-size: .82rem; font-weight: 900; transition: border-color .22s ease, background-color .22s ease, color .22s ease, transform .22s var(--ease-out), box-shadow .22s ease; }
.weekly-stepper__trigger:hover { border-color: rgba(255,255,255,.7); color: white; transform: translateY(-2px); }
.weekly-stepper__trigger:focus-visible { outline: 3px solid white; outline-offset: 4px; }
.weekly-stepper__trigger[data-state="current"] { border-color: var(--secondary); background: var(--secondary); color: white; box-shadow: 0 9px 22px -12px rgba(14,20,43,.9); }
.weekly-stepper__trigger[data-state="complete"] { border-color: white; background: white; color: var(--primary); }
.weekly-stepper__separator { position: absolute; left: 21px; top: 54px; bottom: 10px; width: 2px; background: rgba(255,255,255,.24); transition: background-color .25s ease; }
.weekly-stepper__separator[data-state="complete"] { background: white; }
.weekly-stepper__panel { grid-column: 2; grid-row: 1; min-width: 0; padding: .2rem 0 1.5rem; animation: weekly-step-content-in .32s var(--ease-out) both; }
.weekly-stepper__panel[hidden] { display: none; }
.weekly-stepper__panel h3 { font-size: 1.12rem; font-weight: 900; }
.weekly-stepper__panel p { margin-top: .35rem; color: rgba(255,255,255,.82); font-size: .9rem; line-height: 1.45; }
.weekly-stepper__item:last-child .weekly-stepper__panel { position: absolute; left: 60px; right: 0; top: 0; grid-column: auto; grid-row: auto; padding-bottom: 0; }
@keyframes weekly-step-content-in { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.loyalty-step { border-top: 2px solid var(--primary); padding-top: 1.25rem; }
.loyalty-step span { font-size: .75rem; font-weight: 900; letter-spacing: .1em; color: var(--primary); }
.loyalty-step h3 { margin-top: .5rem; font-size: 1.3rem; font-weight: 900; }
.loyalty-step p { margin-top: .35rem; color: var(--foreground); font-size: .9rem; }
.loyalty-points-block { margin-top: clamp(4rem, 7vw, 6.5rem); border-top: 1px solid rgba(14,20,43,.14); padding-top: clamp(3rem, 6vw, 5rem); }
.loyalty-points-heading { max-width: 46rem; }
.loyalty-points-heading h3 { max-width: 15ch; text-wrap: balance; font-size: clamp(2.1rem, 4.5vw, 3.75rem); font-weight: 900; line-height: .98; letter-spacing: -.035em; }
.loyalty-points-heading p { max-width: 65ch; margin-top: 1.25rem; color: var(--foreground); font-size: 1.075rem; line-height: 1.7; }
.loyalty-points-grid { display: grid; gap: 1.5rem; margin-top: clamp(2.5rem, 5vw, 4rem); }
.loyalty-points-card { position: relative; isolation: isolate; display: block; width: 100%; aspect-ratio: 1; overflow: hidden; border: 4px solid #fff; border-radius: 1.5rem; background: #2e67ff; color: #fff; box-shadow: 0 4px 24px rgba(14,20,43,.2); transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out); }
.loyalty-points-card__media { position: absolute; inset: 0; z-index: 0; background: #2e67ff; transform: scale(1); transition: transform .7s var(--ease-out); }
.loyalty-points-card__media img { display: block; width: 100%; height: 100%; object-fit: cover; }
.loyalty-points-card__blur { position: absolute; right: 0; bottom: 0; left: 0; z-index: 1; height: 40%; border-radius: 0 0 1rem 1rem; -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); -webkit-mask-image: linear-gradient(to top, #000 0%, #000 60%, rgba(0,0,0,.95) 65%, rgba(0,0,0,.9) 70%, rgba(0,0,0,.8) 75%, rgba(0,0,0,.6) 80%, rgba(0,0,0,.4) 85%, rgba(0,0,0,.2) 90%, rgba(0,0,0,.1) 95%, transparent 100%); mask-image: linear-gradient(to top, #000 0%, #000 60%, rgba(0,0,0,.95) 65%, rgba(0,0,0,.9) 70%, rgba(0,0,0,.8) 75%, rgba(0,0,0,.6) 80%, rgba(0,0,0,.4) 85%, rgba(0,0,0,.2) 90%, rgba(0,0,0,.1) 95%, transparent 100%); }
.loyalty-points-card__shade { position: absolute; right: 0; bottom: 0; left: 0; z-index: 2; height: 52%; background: linear-gradient(to top, rgba(14,20,43,.86), rgba(14,20,43,0)); transition: opacity .3s ease; }
.loyalty-points-card__content { position: absolute; right: 0; bottom: 0; left: 0; z-index: 3; display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; padding: clamp(1.25rem, 4vw, 1.75rem); }
.loyalty-points-card__copy { display: flex; min-width: 0; flex-direction: column; transform-origin: left bottom; transition: transform .3s var(--ease-out); }
.loyalty-points-card__copy strong { font-size: clamp(1.15rem, 2vw, 1.45rem); font-weight: 900; line-height: 1.15; letter-spacing: -.02em; }
.loyalty-points-card__copy small { margin-top: .4rem; color: rgba(255,255,255,.88); font-size: clamp(.9rem, 1.5vw, 1.05rem); line-height: 1.35; }
.loyalty-points-card__arrow { display: grid; width: 2.75rem; height: 2.75rem; flex: 0 0 2.75rem; place-items: center; border-radius: 50%; background: #fff; color: #0e142b; box-shadow: 0 8px 20px rgba(14,20,43,.2); transition: transform .3s var(--ease-out), background-color .3s ease, box-shadow .3s ease; }
.loyalty-points-card__arrow svg { width: 1.25rem; height: 1.25rem; transition: transform .3s var(--ease-out), color .3s ease; }
.loyalty-points-card:focus-visible { outline: 3px solid var(--ring); outline-offset: 5px; transform: scale(1.02); box-shadow: 0 8px 40px rgba(14,20,43,.3); }
.loyalty-points-card:focus-visible .loyalty-points-card__media { transform: scale(1.05); }
.loyalty-points-card:focus-visible .loyalty-points-card__copy { transform: translateY(-2px) scale(1.03); }
@media (hover: hover) and (pointer: fine) {
  .loyalty-points-card:hover { transform: scale(1.02); box-shadow: 0 8px 40px rgba(14,20,43,.3); }
  .loyalty-points-card:hover .loyalty-points-card__media { transform: scale(1.05); }
  .loyalty-points-card:hover .loyalty-points-card__copy { transform: translateY(-2px) scale(1.03); }
  .loyalty-points-card__arrow:hover { transform: scale(1.1) rotate(12deg); background: #f5f7ff; box-shadow: 0 12px 24px rgba(14,20,43,.28); }
  .loyalty-points-card__arrow:hover svg { transform: translateX(.125rem); color: #2e67ff; }
}
.loyalty-rewards-block { margin-top: clamp(4rem, 7vw, 6.5rem); border-top: 1px solid rgba(14,20,43,.14); padding-top: clamp(3rem, 6vw, 5rem); }
.loyalty-rewards-heading { max-width: 46rem; }
.loyalty-rewards-heading h3 { max-width: 15ch; text-wrap: balance; font-size: clamp(2.1rem, 4.5vw, 3.75rem); font-weight: 900; line-height: .98; letter-spacing: -.035em; }
.loyalty-rewards-heading p { max-width: 65ch; margin-top: 1.25rem; color: var(--foreground); font-size: 1.075rem; line-height: 1.7; }
.loyalty-reward-choice { display: grid; width: min(100%, 26rem); gap: 1rem; margin: clamp(2.5rem, 5vw, 4rem) auto 0; }
.loyalty-reward-card { position: relative; isolation: isolate; width: 100%; aspect-ratio: 1; overflow: hidden; border: 4px solid #fff; border-radius: 1.5rem; background: #2e67ff; color: #fff; box-shadow: 0 4px 24px rgba(14,20,43,.2); transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out); }
.loyalty-reward-card__media { position: absolute; inset: 0; z-index: 0; background: #2e67ff; transform: scale(1); transition: transform .7s var(--ease-out); }
.loyalty-reward-card__media img, .loyalty-grand-prize-card__media img { display: block; width: 100%; height: 100%; object-fit: cover; }
.loyalty-grand-prize-card__media picture { display: block; width: 100%; height: 100%; }
.loyalty-reward-card__shade { position: absolute; right: 0; bottom: 0; left: 0; z-index: 1; height: 54%; background: linear-gradient(to top, rgba(14,20,43,.9), rgba(14,20,43,0)); }
.loyalty-reward-card__content { position: absolute; inset: 0; z-index: 2; display: flex; flex-direction: column; justify-content: flex-end; padding: clamp(1.25rem, 4vw, 1.75rem); }
.loyalty-reward-card__points, .loyalty-grand-prize-card__points { position: absolute; top: clamp(1rem, 3vw, 1.5rem); left: clamp(1rem, 3vw, 1.5rem); border: 1px solid rgba(255,255,255,.55); border-radius: 999px; background: rgba(14,20,43,.72); padding: .45rem .8rem; color: #fff; font-size: .75rem; font-weight: 900; line-height: 1; letter-spacing: .08em; text-transform: uppercase; }
.loyalty-reward-card h4 { max-width: 13ch; text-wrap: balance; font-size: clamp(1.3rem, 2.4vw, 1.8rem); font-weight: 900; line-height: 1.08; letter-spacing: -.025em; }
.loyalty-reward-or { display: grid; width: 2.75rem; height: 2.75rem; place-self: center; place-items: center; border: 1px solid rgba(14,20,43,.16); border-radius: 50%; background: #fff; color: #2e67ff; font-size: .75rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.loyalty-reward-note { max-width: 60ch; margin: 1.75rem auto 0; color: rgba(14,20,43,.72); font-size: .9rem; line-height: 1.6; text-align: center; }
.loyalty-reward-continue { display: flex; align-items: center; gap: 1rem; margin: clamp(3rem, 6vw, 5rem) 0 clamp(2rem, 4vw, 3rem); color: #2e67ff; font-size: .75rem; font-weight: 900; letter-spacing: .12em; text-align: center; text-transform: uppercase; }
.loyalty-reward-continue::before, .loyalty-reward-continue::after { height: 1px; flex: 1; background: rgba(46,103,255,.32); content: ""; }
.loyalty-reward-continue span { flex: 0 1 auto; }
.loyalty-grand-prize-card { position: relative; isolation: isolate; width: min(100%, 50rem); aspect-ratio: 1; overflow: hidden; margin-inline: auto; border: 4px solid #fff; border-radius: 1.5rem; background: #0e142b; color: #fff; box-shadow: 0 8px 32px rgba(14,20,43,.28); transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out); }
.loyalty-grand-prize-card__media { position: absolute; inset: 0; z-index: 0; background: #0e142b; transform: scale(1); transition: transform .7s var(--ease-out); }
.loyalty-grand-prize-card__shade { position: absolute; right: 0; bottom: 0; left: 0; z-index: 1; height: 68%; background: linear-gradient(to top, rgba(3,7,20,.94), rgba(3,7,20,0)); }
.loyalty-grand-prize-card__content { position: absolute; inset: 0; z-index: 2; display: flex; flex-direction: column; justify-content: flex-end; padding: clamp(1.5rem, 5vw, 2.5rem); }
.loyalty-grand-prize-card h4 { max-width: 15ch; text-wrap: balance; font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 900; line-height: 1; letter-spacing: -.035em; }
.loyalty-grand-prize-card p { max-width: 42ch; margin-top: .75rem; color: rgba(255,255,255,.82); font-size: clamp(.95rem, 1.8vw, 1.1rem); line-height: 1.55; }
@media (hover: hover) and (pointer: fine) {
  .loyalty-reward-card:hover, .loyalty-grand-prize-card:hover { transform: scale(1.02); box-shadow: 0 10px 38px rgba(14,20,43,.3); }
  .loyalty-reward-card:hover .loyalty-reward-card__media, .loyalty-grand-prize-card:hover .loyalty-grand-prize-card__media { transform: scale(1.05); }
}
.loyalty-qr-panel { display: grid; align-items: center; gap: clamp(2rem, 6vw, 5rem); margin-top: clamp(4rem, 7vw, 6.5rem); border-top: 1px solid rgba(14,20,43,.14); padding-top: clamp(3rem, 6vw, 5rem); }
.loyalty-qr-visual { display: block; width: min(100%, 18rem); justify-self: center; border-radius: 1rem; background: white; padding: 1rem; box-shadow: 0 18px 42px -26px rgba(14,20,43,.38); transition: transform .25s var(--ease-out), box-shadow .25s ease; }
.loyalty-qr-visual img { display: block; width: 100%; height: auto; }
.loyalty-qr-visual:focus-visible { outline: 3px solid var(--ring); outline-offset: 5px; }
.loyalty-qr-copy { max-width: 38rem; }
.loyalty-qr-copy h2 { max-width: 15ch; text-wrap: balance; font-size: clamp(2.1rem, 4.5vw, 3.75rem); font-weight: 900; line-height: .98; letter-spacing: -.035em; }
.loyalty-qr-copy p { max-width: 58ch; margin-top: 1.25rem; color: var(--foreground); font-size: 1.075rem; line-height: 1.7; }
.loyalty-qr-copy .btn-primary { margin-top: 2rem; }
@media (hover: hover) and (pointer: fine) { .loyalty-qr-visual:hover { transform: translateY(-3px); box-shadow: 0 24px 48px -24px rgba(14,20,43,.44); } }
.world-map { position: relative; width: 100%; aspect-ratio: 2 / 1; overflow: hidden; border-radius: .75rem; background: var(--secondary); font-family: Urbanist, sans-serif; }
.world-map svg { position: absolute; inset: 0; height: 100%; width: 100%; user-select: none; }
.world-map-dot { fill: var(--border); opacity: .27; }
.world-route { fill: none; stroke: url(#path-gradient); stroke-width: 1.15; stroke-linecap: round; stroke-dasharray: 1; stroke-dashoffset: 1; animation: map-route-cycle 4.6s ease-in-out infinite; }
.world-route.route-two { animation-delay: .3s; }
.route-orb { filter: url(#map-glow); }
.map-location { cursor: pointer; transform-box: fill-box; transform-origin: center; transition: transform .3s cubic-bezier(.16,1,.3,1); }
.map-location:hover, .map-location:focus { transform: scale(1.2); outline: none; }
.map-location:focus-visible circle:first-of-type { stroke: #fff; stroke-width: 2; }
.map-label { display: flex; height: 100%; align-items: center; justify-content: center; border: 1px solid var(--primary); border-radius: .375rem; background: rgba(14,20,43,.95); padding: .125rem .5rem; color: white; font-size: 12px; font-weight: 600; line-height: 1; box-shadow: 0 3px 8px rgba(0,0,0,.22); }
.map-mobile-tooltip { position: absolute; bottom: 1rem; left: 1rem; visibility: hidden; transform: translateY(10px); border: 1px solid var(--primary); border-radius: .5rem; background: rgba(14,20,43,.94); padding: .5rem .75rem; color: white; font-size: .875rem; font-weight: 600; opacity: 0; transition: opacity .2s, transform .2s, visibility .2s; }
.map-mobile-tooltip.is-visible { visibility: visible; transform: translateY(0); opacity: 1; }
@keyframes map-route-cycle { 0% { stroke-dashoffset: 1; } 44% { stroke-dashoffset: 0; } 50% { stroke-dashoffset: 0; } 100% { stroke-dashoffset: 1; } }
.sponsor-marquee { width: 100%; overflow: hidden; border: 1px solid var(--border); border-radius: .5rem; background: var(--background); color: var(--foreground); }
.sponsor-marquee__header { padding: 1.5rem; }
.sponsor-marquee__heading { display: grid; grid-template-columns: minmax(0,1fr); gap: 1.5rem; border-bottom: 1px solid var(--border); padding-bottom: 1.5rem; }
.sponsor-marquee__title { text-wrap: balance; font-size: 1.875rem; font-weight: 600; line-height: 1.1; letter-spacing: -.025em; }
.sponsor-marquee__description { max-width: 34rem; align-self: start; color: rgba(14,20,43,.68); line-height: 1.55; text-wrap: balance; }
.sponsor-marquee__viewport { width: 100%; overflow: hidden; -webkit-mask-image: linear-gradient(to right,transparent,black 10%,black 90%,transparent); mask-image: linear-gradient(to right,transparent,black 10%,black 90%,transparent); }
.sponsor-marquee__track { display: flex; width: max-content; align-items: center; padding-block: 1rem; will-change: transform; animation: sponsor-logo-marquee 40s linear infinite; }
.sponsor-marquee__viewport:hover .sponsor-marquee__track, .sponsor-marquee.is-offscreen .sponsor-marquee__track { animation-play-state: paused; }
.sponsor-marquee__group { display: flex; flex: none; align-items: center; gap: 1rem; padding-right: 1rem; }
.sponsor-logo-card { position: relative; display: flex; width: 10rem; height: 6rem; flex: none; align-items: center; justify-content: center; overflow: hidden; border-radius: .5rem; background: rgba(231,228,228,.45); }
.sponsor-logo-card::before { position: absolute; inset: 0; transform: scale(1.5); background: linear-gradient(135deg,var(--logo-from),var(--logo-via),var(--logo-to)); content: ''; opacity: 0; transition: opacity .7s ease-out, transform .7s var(--ease-out); }
.sponsor-logo-card:hover::before { transform: scale(1); opacity: 1; }
.sponsor-logo-card img { position: relative; z-index: 1; display: block; width: auto; max-width: 88%; height: 75%; object-fit: contain; mix-blend-mode: multiply; }
@keyframes sponsor-logo-marquee { from { transform: translateX(0); } to { transform: translateX(var(--sponsor-loop-distance,-880px)); } }
.faq-search { position: relative; margin-bottom: 2rem; }
.faq-search svg { position: absolute; left: 1rem; top: 50%; width: 1.25rem; height: 1.25rem; pointer-events: none; transform: translateY(-50%); fill: none; stroke: var(--foreground); stroke-width: 1.8; stroke-linecap: round; opacity: .52; }
.faq-search input { width: 100%; min-height: 58px; border: 1px solid var(--border); border-radius: 1rem; background: var(--background); padding: .9rem 1rem .9rem 3rem; color: var(--foreground); outline: none; transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease; }
.faq-search input::placeholder { color: rgba(14,20,43,.52); }
.faq-search input:focus { border-color: var(--primary); background: white; box-shadow: 0 0 0 3px rgba(46,103,255,.16); }
.faq-list { display: grid; gap: .9rem; }
.faq-item { overflow: hidden; border: 1px solid var(--border); border-radius: 1rem; background: var(--background); transition: border-color .2s ease, background-color .2s ease, box-shadow .2s ease; }
.faq-item:hover, .faq-item.is-open { border-color: var(--primary); }
.faq-item.is-open { background: white; box-shadow: 0 12px 30px -24px rgba(46,103,255,.78); }
.faq-item[hidden] { display: none; }
.faq-question { display: flex; width: 100%; min-height: 64px; cursor: pointer; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.1rem 1.2rem; text-align: left; }
.faq-question span { color: var(--foreground); font-weight: 800; line-height: 1.35; }
.faq-question svg { width: 1.2rem; height: 1.2rem; flex: none; fill: none; stroke: var(--foreground); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; opacity: .64; transition: color .22s ease, transform .22s var(--ease-out), opacity .22s ease; }
.faq-question:focus-visible { outline: 3px solid var(--ring); outline-offset: -3px; }
.faq-item.is-open .faq-question svg { transform: rotate(180deg); color: var(--primary); opacity: 1; }
.faq-answer { overflow: hidden; }
.faq-answer[hidden] { display: none; }
.faq-answer > div { padding: 0 1.2rem 1.25rem; }
.faq-answer p { max-width: 70ch; color: rgba(14,20,43,.78); line-height: 1.7; }
.faq-empty { border: 1px solid var(--border); border-radius: 1rem; background: var(--background); padding: 2.5rem 1.25rem; text-align: center; color: var(--foreground); }
.faq-empty[hidden] { display: none; }
.contact-link { display: flex; min-height: 68px; align-items: center; gap: .9rem; border-radius: 1rem; padding: .65rem; transition: background .2s, transform .2s var(--ease-out); }
.contact-link:hover { transform: translateX(4px); background: white; }
.contact-link strong, .contact-link small { display: block; }
.contact-link small { margin-top: .2rem; color: var(--foreground); }
.field-group label { display: block; margin-bottom: .45rem; font-size: .875rem; font-weight: 800; }
.field-group input, .field-group select, .field-group textarea { width: 100%; min-height: 48px; border-radius: .8rem; border: 1px solid var(--input); background: var(--background); padding: .8rem .9rem; color: var(--foreground); outline: none; transition: border-color .2s, box-shadow .2s, background .2s; }
.field-group textarea { resize: vertical; }
.field-group input:focus, .field-group select:focus, .field-group textarea:focus { border-color: var(--ring); background: var(--popover); box-shadow: 0 0 0 3px rgba(46,106,255,.18); }
.field-group [aria-invalid="true"] { border-color: var(--destructive); box-shadow: 0 0 0 2px rgba(255,108,53,.18); }
.field-error { min-height: 1.25rem; padding-top: .25rem; color: var(--foreground); font-size: .75rem; font-weight: 700; }
.location-section { padding: 0 0 clamp(4.5rem,8vw,8rem); scroll-margin-top: 6rem; }
.location-panel { display: grid; overflow: hidden; border: 1px solid rgba(14,20,43,.08); border-radius: clamp(1.5rem,3vw,2.5rem); background: #0e142b; color: white; box-shadow: 0 30px 70px -42px rgba(14,20,43,.72); }
.location-panel__content { display: flex; min-height: 25rem; flex-direction: column; justify-content: center; padding: clamp(2rem,5vw,4.5rem); }
.location-panel__content h2 { max-width: 10ch; font-size: clamp(2.4rem,5vw,4.8rem); font-weight: 900; line-height: .96; letter-spacing: -.045em; text-wrap: balance; }
.location-address { margin-top: clamp(1.75rem,3vw,2.5rem); font-style: normal; }
.location-address strong, .location-address span { display: block; }
.location-address strong { color: white; font-size: clamp(1rem,1.5vw,1.15rem); font-weight: 800; }
.location-address span { margin-top: .3rem; color: rgba(255,255,255,.72); font-size: .95rem; }
.location-panel__content p { max-width: 31rem; margin-top: 1.25rem; color: rgba(255,255,255,.68); line-height: 1.65; }
.location-route-button { display: inline-flex; width: fit-content; min-height: 52px; align-items: center; justify-content: center; gap: .7rem; margin-top: 1.75rem; border-radius: 999px; background: #2e67ff; padding: .85rem 1.35rem; color: white; font-size: .92rem; font-weight: 800; box-shadow: 0 14px 30px -18px rgba(46,103,255,.95); transition: background-color .2s ease, transform .2s var(--ease-out), box-shadow .2s ease; }
.location-route-button svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: transform .2s var(--ease-out); }
.location-route-button:hover { transform: translateY(-2px); background: #fff; color: #0e142b; box-shadow: 0 18px 34px -18px rgba(46,103,255,.85); text-decoration: none; }
.location-route-button:hover svg { transform: translateX(3px); }
.location-route-button:focus-visible { outline: 3px solid rgba(255,255,255,.88); outline-offset: 4px; }
.location-panel__map { min-height: 21rem; background: #dce5ee; }
.location-panel__map iframe { display: block; width: 100%; height: 100%; min-height: inherit; border: 0; }
.site-footer { position: relative; overflow: hidden; }
.footer-grid { display: grid; gap: 2.75rem 2rem; }
.footer-brand { max-width: 22rem; }
.footer-logo { display: inline-flex; min-height: 48px; align-items: center; gap: .8rem; color: white; }
.footer-logo:hover { text-decoration: none; }
.site-logo-mark img { display: block; height: auto; max-height: 76%; width: 78%; object-fit: contain; }
.footer-logo-mark img { display: block; width: 100%; height: 100%; max-height: none; border-radius: inherit; object-fit: cover; }
.footer-logo-mark { display: grid; height: 48px; width: 48px; flex: 0 0 auto; place-items: center; overflow: hidden; border-radius: .9rem; background: #fff; box-shadow: 0 10px 24px -14px rgba(46,103,255,.9); }
.footer-logo strong { display: block; font-size: .98rem; font-weight: 900; letter-spacing: .13em; }
.footer-logo small { display: block; margin-top: .25rem; color: var(--primary-foreground); font-size: .7rem; font-weight: 700; letter-spacing: .38em; }
.footer-description { margin-top: 1.15rem; color: var(--border); font-size: .9rem; line-height: 1.7; }
.footer-title { margin-bottom: 1.15rem; color: white; font-size: .75rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.footer-links { display: grid; gap: .65rem; }
.footer-links a { width: fit-content; color: var(--border); font-size: .9rem; line-height: 1.45; transition: color .2s, transform .2s; }
.footer-links a:hover { transform: translateX(3px); color: white; text-decoration: none; }
.footer-socials { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.3rem; }
.social-link { display: grid; height: 44px; width: 44px; flex: 0 0 auto; place-items: center; border: 1px solid rgba(231,228,228,.32); border-radius: .75rem; background: rgba(255,255,255,.04); color: white; cursor: pointer; transition: border-color .3s, background .3s, transform .3s var(--ease-out); }
.social-link img { display: block; height: 20px; width: 20px; }
.social-link .whatsapp-icon { width: 20px; height: 20px; }
.social-link:hover { transform: scale(1.2); border-color: var(--primary); background: var(--primary); text-decoration: none; }
.social-link:active { transform: scale(1.06); }
.footer-contact { display: grid; gap: 1rem; }
.footer-contact a { display: grid; grid-template-columns: 24px minmax(0,1fr); gap: .75rem; align-items: start; color: var(--border); }
.footer-contact a:hover { color: white; text-decoration: none; }
.footer-contact svg { height: 20px; width: 20px; margin-top: .1rem; fill: none; stroke: var(--primary); stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.7; }
.footer-contact .whatsapp-icon { width: 20px; height: 20px; margin-top: .1rem; }
.footer-contact strong, .footer-contact small { display: block; }
.footer-contact strong { color: white; font-size: .88rem; font-weight: 700; }
.footer-contact small { margin-top: .15rem; color: var(--border); font-size: .8rem; line-height: 1.45; overflow-wrap: anywhere; }
.footer-service-copy { max-width: 18rem; color: var(--border); font-size: .9rem; line-height: 1.65; }
.footer-service-link { display: inline-flex; min-height: 44px; align-items: center; gap: .55rem; margin-top: 1.15rem; border-bottom: 1px solid var(--primary); color: white; font-size: .88rem; font-weight: 800; transition: color .2s, border-color .2s; }
.footer-service-link svg { height: 17px; width: 17px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; transition: transform .2s; }
.footer-service-link:hover { border-color: var(--primary); color: white; text-decoration: none; }
.footer-service-link:hover svg { transform: translateX(3px); }
.footer-bottom { display: flex; flex-direction: column; gap: .65rem; margin-top: 3.5rem; border-top: 1px solid rgba(231,228,228,.18); padding-top: 1.4rem; color: rgba(231,228,228,.78); font-size: .73rem; line-height: 1.5; }
.site-footer a:focus-visible { border-radius: .25rem; outline: 2px solid var(--ring); outline-offset: 4px; }
.whatsapp-float { position: fixed; right: 1rem; bottom: 1rem; z-index: 40; isolation: isolate; display: grid; width: 58px; height: 58px; place-items: center; border-radius: 50%; background: #25d366; color: white; box-shadow: 0 14px 32px -12px rgba(14,20,43,.65); transition: background-color .2s ease, transform .2s var(--ease-out), box-shadow .2s ease; }
.whatsapp-float::before { position: absolute; inset: 0; z-index: -1; border-radius: inherit; background: rgba(37,211,102,.32); content: ""; animation: whatsapp-pulse 2.4s cubic-bezier(.16,1,.3,1) infinite; }
.whatsapp-float .whatsapp-icon { width: 30px; height: 30px; }
.whatsapp-float:hover { background: #1fbd5b; transform: translateY(-2px); box-shadow: 0 18px 36px -13px rgba(14,20,43,.72); }
.whatsapp-float:focus-visible { outline: 3px solid var(--ring); outline-offset: 4px; }
.whatsapp-float.is-animation-paused::before { animation-play-state: paused; }
.reveal { opacity: 0; transform: translateY(22px); filter: blur(4px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out), filter .7s var(--ease-out); }
.reveal.is-visible { opacity: 1; transform: translateY(0); filter: blur(0); }
@keyframes whatsapp-pulse { 0% { opacity: .72; transform: scale(1); } 72%, 100% { opacity: 0; transform: scale(1.5); } }
@media (min-width: 640px) { .comparison-row { padding: 1rem 1.5rem; font-size: .95rem; } .plan-card { padding: 2rem; } .weekly-stepper { grid-template-columns: repeat(5,minmax(0,1fr)); max-width: none; } .weekly-stepper__item, .weekly-stepper__item:last-child { display: block; min-height: 0; text-align: center; } .weekly-stepper__trigger { margin-inline: auto; } .weekly-stepper__separator { left: calc(50% + 32px); right: calc(-50% + 32px); top: 21px; bottom: auto; width: auto; height: 2px; } .weekly-stepper__panel, .weekly-stepper__item:last-child .weekly-stepper__panel { position: static; min-height: 6rem; margin-top: 1.35rem; padding: 0 .75rem; text-align: center; } .map-mobile-tooltip { display: none; } .footer-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } .footer-bottom { flex-direction: row; align-items: center; justify-content: space-between; } }
@media (min-width: 640px) { .product-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 768px) { .loyalty-points-grid { grid-template-columns: repeat(3, minmax(0,1fr)); } .loyalty-qr-panel { grid-template-columns: minmax(15rem,.72fr) minmax(0,1.28fr); } .loyalty-qr-visual { justify-self: start; } .world-map { aspect-ratio: 2.5 / 1; } .sponsor-marquee__header { padding: 2rem; } .sponsor-marquee__heading { padding-bottom: 2rem; } .sponsor-marquee__title { font-size: 2.25rem; } }
@media (min-width: 1024px) { .loyalty-reward-choice { width: 100%; grid-template-columns: minmax(0,1fr) 2.75rem minmax(0,1fr) 2.75rem minmax(0,1fr); align-items: center; } .loyalty-grand-prize-card { aspect-ratio: 2 / 1; } .world-map { aspect-ratio: 2 / 1; } .product-card-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } .product-card { aspect-ratio: 292 / 320; } .footer-grid { grid-template-columns: 1.35fr .72fr 1.12fr .95fr; gap: 2.5rem; } }
@media (min-width: 1024px) { .location-panel { grid-template-columns: minmax(0,.88fr) minmax(0,1.12fr); } .location-panel__map { min-height: 34rem; } }
@media (min-width: 1024px) { .sponsor-marquee__header { padding: 2.5rem; } .sponsor-marquee__heading { grid-template-columns: 3fr 2fr; gap: 2rem; } .sponsor-marquee__description { justify-self: end; } }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; } .reveal { opacity: 1; transform: none; filter: none; } .world-route { stroke-dashoffset: 0; } .route-orb, .location-pulse, .whatsapp-float::before { display: none; } .hero-marquee { overflow: visible; -webkit-mask-image: none; mask-image: none; } .hero-marquee-track { width: 100%; transform: none; } .hero-marquee-group { min-width: 0; width: 100%; flex-wrap: wrap; justify-content: center; row-gap: .5rem; white-space: normal; } .hero-marquee-group[aria-hidden="true"] { display: none; } .sponsor-marquee__viewport { overflow-x: auto; -webkit-mask-image: none; mask-image: none; } .sponsor-marquee__track { animation: none; transform: none; } .sponsor-marquee__group[aria-hidden="true"] { display: none; } .product-card, .product-card:focus-visible, .product-card-grid:hover .product-card, .product-card-grid .product-card:hover, .plan-card, .plan-card.is-selected, .plan-card:hover, .plan-card:focus-within, .plan-icon, .loyalty-points-card, .loyalty-points-card:hover, .loyalty-points-card:focus-visible, .loyalty-points-card__media, .loyalty-points-card__copy, .loyalty-points-card__arrow, .loyalty-reward-card, .loyalty-reward-card__media, .loyalty-grand-prize-card, .loyalty-grand-prize-card__media { transform: none; filter: none; } }
@media (prefers-reduced-motion: reduce), (hover: none), (pointer: coarse) { .hero-welcome-card { transform: none !important; } .hero-welcome-card__content { transform: none; } }
