/* TapMeGo — Premium Gold CTA palette (no button borders) */
:root {
  --brand: #CDA431;
  --brand-600: #A87E18;
  --brand-700: #8F6E14;
  --brand-50: #F4EBD0;
  --brand-100: #FBEFB8;
  --accent: #CDA431;
  --accent-600: #8A6A12;
  --accent-50: #F4EBD0;
  --accent-100: #FBEFB8;
  --green: #2D8A4E;
  --amber: #CDA431;
  --rose: #CDA431;
  --violet: #8F6E14;
  --line-brand: rgba(205, 164, 49, .28);
  --shadow-brand: 0 16px 32px -14px rgba(150, 110, 20, .6), inset 0 1px 0 rgba(255, 255, 255, .55);
  --shadow-accent: 0 12px 24px -10px rgba(120, 85, 10, .5), inset 0 1px 0 rgba(255, 255, 255, .9);
  --gold-grad: linear-gradient(135deg, #FBEFB8 0%, #E7C75A 18%, #CDA431 40%, #B08A22 60%, #9A7619 74%, #C29B34 90%, #EAD27A 100%);
  --gold-grad-btn: linear-gradient(135deg, #FBEFB8 0%, #E7C75A 16%, #CDA431 40%, #A87E18 64%, #8F6E14 82%, #BE9730 100%);
  --gold-shine: linear-gradient(120deg, rgba(255, 255, 255, .5) 0%, rgba(255, 255, 255, 0) 28%, rgba(255, 255, 255, 0) 70%, rgba(255, 255, 255, .16) 86%, rgba(255, 255, 255, 0) 100%);
  --gold-grad-soft: linear-gradient(180deg, #FAF7EF 0%, #F4EFE2 100%);
  --shadow-gold: 0 16px 32px -14px rgba(150, 110, 20, .6), inset 0 1px 0 rgba(255, 255, 255, .55);
  --shadow-gold-sm: 0 12px 24px -10px rgba(120, 85, 10, .5), inset 0 1px 0 rgba(255, 255, 255, .9);
  --shadow-card: 0 30px 60px -20px rgba(150, 110, 20, .55), inset 0 1px 0 rgba(255, 255, 255, .5);
}

body { background: #F4EFE2; }

.page-hero {
  background: var(--gold-grad-soft) !important;
  text-align: left !important;
  padding: 32px 0 72px !important;
}

.tapmego-header {
  position: sticky;
  top: 0;
  z-index: 9998;
  background: rgba(250, 247, 239, .96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: none;
  box-shadow: 0 1px 0 rgba(205, 164, 49, .12);
  padding: 14px clamp(16px, 4vw, 32px);
}

.tapmego-header-inner {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding-right: 72px;
}

.tapmego-logo-link { display: flex; justify-content: center; align-items: center; }

.tapmego-logo {
  height: clamp(36px, 5vw, 48px);
  width: auto;
  display: block;
  border-radius: 10px;
}

.tapmego-header-inner .lang-toggle {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.page-hero::before {
  background:
    radial-gradient(55% 45% at 85% 15%, rgba(205, 164, 49, .12), transparent 65%),
    radial-gradient(40% 35% at 10% 80%, rgba(143, 110, 20, .07), transparent 60%) !important;
}

.page-hero > .container { max-width: 1180px; }

.hero-split {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.hero-copy { text-align: left; }
.hero-visual { position: relative; }

.hero-main-img {
  width: 100%;
  border-radius: 20px;
  border: none;
  box-shadow: 0 24px 64px rgba(150, 110, 20, .18);
  aspect-ratio: 4/3;
  object-fit: cover;
}

.hero-float {
  position: absolute;
  bottom: -18px;
  left: -18px;
  width: 42%;
  border-radius: 14px;
  border: none;
  box-shadow: 0 16px 40px rgba(150, 110, 20, .22);
  aspect-ratio: 4/3;
  object-fit: cover;
}

.hero-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(12px);
  border: none;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #8A6A12;
  box-shadow: var(--shadow-gold-sm);
}

.text-grad-accent,
.text-grad-gold {
  background: var(--gold-grad) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
}

.ai { color: var(--brand) !important; }
.eyebrow, .eyebrow.coral { color: #8A6A12 !important; }
.eyebrow .dot, .eyebrow.coral .dot { background: var(--accent) !important; }

/* —— Buttons: no borders —— */
.btn { border: none !important; }

.btn-accent,
.btn-primary,
.btn-gold {
  position: relative !important;
  overflow: hidden !important;
  background: var(--gold-grad-btn) !important;
  color: #fff !important;
  border: none !important;
  box-shadow: var(--shadow-gold) !important;
  text-shadow: 0 1px 2px rgba(120, 85, 10, .35);
}

.btn-accent::before,
.btn-primary::before,
.btn-gold::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gold-shine);
  pointer-events: none;
}

.btn-accent:hover,
.btn-primary:hover,
.btn-gold:hover {
  filter: brightness(1.05);
  box-shadow: 0 18px 36px -12px rgba(150, 110, 20, .65), inset 0 1px 0 rgba(255, 255, 255, .55) !important;
}

.btn-ghost,
.btn-soft-white {
  background: #fff !important;
  color: #8A6A12 !important;
  border: none !important;
  box-shadow: var(--shadow-gold-sm) !important;
}

.btn-ghost:hover,
.btn-soft-white:hover { background: #FAF7EF !important; }

.chip, .chip.accent {
  background: var(--accent-50) !important;
  color: #8A6A12 !important;
  border: none !important;
}

.testi-stars { color: #BE9730 !important; }

.cta-box,
.cta-box.coral,
.cta-box.gold {
  position: relative !important;
  overflow: hidden !important;
  background: var(--gold-grad) !important;
  border: none !important;
  color: #fff !important;
  box-shadow: var(--shadow-card) !important;
}

.cta-box::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gold-shine);
  pointer-events: none;
}

.cta-box h2,
.cta-box p,
.cta-box .eyebrow {
  color: #fff !important;
  position: relative;
  z-index: 1;
}

.cta-box .eyebrow .dot { background: #fff !important; }
.cta-btns { position: relative; z-index: 1; }

.cta-btns .btn-primary {
  background: #fff !important;
  color: #8A6A12 !important;
  border: none !important;
  box-shadow: var(--shadow-gold-sm) !important;
  text-shadow: none !important;
}

.cta-btns .btn-primary::before { display: none !important; }
.cta-btns .btn-primary:hover { background: #FAF7EF !important; }

.cta-btns .btn-ghost {
  background: rgba(255, 255, 255, .22) !important;
  color: #fff !important;
  border: none !important;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .3) !important;
  text-shadow: 0 1px 2px rgba(120, 85, 10, .35);
}

.cta-btns .btn-ghost::before { display: none !important; }
.cta-btns .btn-ghost:hover { background: rgba(255, 255, 255, .32) !important; }

.stat-gold {
  background: var(--gold-grad) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
}

.val-strip {
  background: var(--gold-grad-soft) !important;
  border-block: none;
}

.gallery-section { background: #FAF7EF; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
  margin-top: 40px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  border: none;
  box-shadow: 0 8px 28px rgba(150, 110, 20, .08);
  background: #f8f8f8;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .45s cubic-bezier(.16, 1, .3, 1);
}

.gallery-item:hover img { transform: scale(1.04); }
.gallery-item--hero { grid-column: span 7; grid-row: span 2; min-height: 320px; }
.gallery-item--tall { grid-column: span 5; min-height: 280px; }
.gallery-item--wide { grid-column: span 4; min-height: 200px; }
.gallery-item--sm { grid-column: span 4; min-height: 200px; }

.gallery-caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 14px 16px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .62));
  color: #fff;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .02em;
}

.video-section { background: var(--gold-grad-soft); }

.video-wrap {
  margin: 36px auto 0;
  border-radius: 20px;
  overflow: hidden;
  border: none;
  box-shadow: 0 20px 56px rgba(150, 110, 20, .14);
  background: #000;
  aspect-ratio: 9/16;
  max-width: min(380px, 88vw);
  width: 100%;
  position: relative;
}

.video-wrap video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: #000;
  border-radius: 20px;
}

.video-note {
  text-align: center;
  margin-top: 16px;
  font-size: .82rem;
  color: #8A6A12;
  font-weight: 600;
}

.feat-row .fb-list li::before {
  background: var(--accent-50) !important;
  box-shadow: none !important;
  border: none !important;
}

.art-card {
  border: none !important;
  box-shadow: 0 8px 28px rgba(150, 110, 20, .08) !important;
}

.art-card .art-dot { background: var(--accent) !important; }

/* Lang toggle */
.lang-toggle {
  background: #fff;
  color: #8A6A12;
  border: none;
  border-radius: 999px;
  font-weight: 800;
  font-size: .78rem;
  letter-spacing: .05em;
  padding: 8px 13px;
  cursor: pointer;
  font-family: inherit;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background .15s, filter .15s;
  box-shadow: var(--shadow-gold-sm);
}

.lang-toggle:hover { background: #FAF7EF; filter: brightness(1.02); }
.lang-toggle svg { width: 14px; height: 14px; opacity: .7; }

/* Sticky bottom bar */
#cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(244, 239, 226, .96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: none;
  box-shadow: 0 -4px 24px rgba(150, 110, 20, .1);
  padding: 7px 12px calc(7px + env(safe-area-inset-bottom));
  display: flex;
  gap: 10px;
}

#cta-bar .cta-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 7px 6px;
  border-radius: 999px;
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: all .18s;
  cursor: pointer;
  border: none;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  font-family: inherit;
}

#cta-bar .cta-btn.whatsapp {
  background: #fff;
  color: #8A6A12;
  box-shadow: var(--shadow-gold-sm);
}

#cta-bar .cta-btn.whatsapp:hover { background: #FAF7EF; }

#cta-bar .cta-btn.order {
  background: var(--gold-grad-btn);
  color: #fff;
  box-shadow: var(--shadow-gold);
  text-shadow: 0 1px 2px rgba(120, 85, 10, .35);
}

#cta-bar .cta-btn.order:hover { filter: brightness(1.05); }

#cta-bar .cta-btn.call {
  background: #fff;
  color: #8A6A12;
  box-shadow: var(--shadow-gold-sm);
}

#cta-bar .cta-btn.call:hover { background: #FAF7EF; }

#cta-bar .cta-btn svg { flex-shrink: 0; }

@media (max-width: 900px) {
  .page-hero { text-align: center !important; }
  .hero-split { grid-template-columns: 1fr; gap: 32px; }
  .hero-copy { text-align: center; }
  .hero-ctas { justify-content: center !important; }
  .hero-float { display: none; }
  .gallery-item--hero,
  .gallery-item--tall,
  .gallery-item--wide,
  .gallery-item--sm {
    grid-column: span 12;
    min-height: 220px;
  }
}
