/* Paris 6 — Funil Premium (fluxo COCO + identidade paris6.com.br) */

@import url(https://db.onlinewebfonts.com/c/2b6d84ae2684792084b4f6960404eee5?family=Kessel+205+W00+Bold);

:root {
  --paris-burgundy: #500000;
  --paris-burgundy-dark: #3a0000;
  --paris-burgundy-deep: #260404;
  --paris-burgundy-mid: #7a3824;
  --paris-burgundy-header: #5d0000;
  --paris-gold: #fbb34b;
  --paris-gold-light: #fcd88a;
  --paris-gold-dark: #c38a36;
  --paris-cream: #faf6f0;
  --paris-text: #260404;
  --paris-muted: #8b6b6b;
  --paris-on-dark: #f5efe6;
  --paris-card-bg: rgba(80, 0, 0, 0.88);
  --paris-card-bg-soft: rgba(93, 0, 0, 0.55);
  --paris-card-border: rgba(251, 179, 75, 0.32);
  --paris-card-border-strong: rgba(251, 179, 75, 0.48);
  --font-display: "Kessel 205 W00 Bold", "Kessel 205", Georgia, serif;
  --font-sans: "Roboto", system-ui, -apple-system, sans-serif;
  --radius-lg: 1.35rem;
  --radius-xl: 1.65rem;
  --sticky-h: 4.75rem;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --transition: 0.28s var(--ease-out);
  --shadow-card: 0 1px 0 rgba(255,255,255,.06) inset, 0 24px 60px rgba(0,0,0,.45);
  --shadow-gold: 0 12px 36px rgba(251, 179, 75, 0.38);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
}

html.paris-html { background: var(--paris-burgundy); }

/* BG decorativo */
.paris-bg {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.paris-bg__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
}

.paris-bg__glow--1 {
  width: 320px; height: 320px;
  top: -80px; left: 50%;
  transform: translateX(-50%);
  background: rgba(251, 179, 75, 0.22);
}

.paris-bg__glow--2 {
  width: 240px; height: 240px;
  bottom: 10%; right: -60px;
  background: rgba(122, 56, 36, 0.35);
}

.paris-bg__grain {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

body.landing-page,
body.funnel-page {
  position: relative;
  z-index: 1;
  margin: 0;
  min-height: 100vh;
  min-height: calc(var(--vh, 1vh) * 100);
  font-family: var(--font-sans);
  color: var(--paris-on-dark);
  background: var(--paris-burgundy);
  background-image:
    url("../images/bgred-vermelho.jpg"),
    linear-gradient(178deg, rgba(93,0,0,.92) 0%, rgba(80,0,0,.95) 45%, rgba(58,0,0,.98) 100%);
  background-size: cover, auto;
  background-blend-mode: overlay;
  background-attachment: fixed;
  padding-bottom: calc(5.5rem + env(safe-area-inset-bottom, 0px));
}

/* Landing — mesma base visual do header (moldura + burgundy + ouro) */
body.landing-page {
  background-color: var(--paris-burgundy);
  background-image: linear-gradient(180deg, var(--paris-burgundy-header) 0%, var(--paris-burgundy) 28%, #4a0000 100%);
  background-blend-mode: normal;
  background-attachment: scroll;
}

body.landing-page .paris-bg__glow--1 {
  opacity: 0.22;
  background: rgba(251, 179, 75, 0.18);
}

body.landing-page .paris-bg__glow--2 {
  opacity: 0.2;
  background: rgba(122, 56, 36, 0.28);
}

body.landing-page .paris-bg__grain { opacity: 0.025; }

body.landing-page { opacity: 0; transition: opacity 0.55s ease; }
body.landing-page.landing-ready { opacity: 1; }

body.funnel-page.funnel-exit { pointer-events: none; }

#paris-nav-shield {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--paris-burgundy-dark);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.32s ease, visibility 0.32s ease;
}

html.paris-nav-transition #paris-nav-shield {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.12;
}

.paris-icon {
  width: 1.1rem;
  height: 1.1rem;
  flex-shrink: 0;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.2;
}

.paris-icon--sm { width: 0.9rem; height: 0.9rem; }

/* Reveal scroll */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }

/* Hero top — moldura + logo (igual index.html myHome) */
.paris-hero-top {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: clamp(18rem, 48vw, 26rem);
  margin: 0 0 -0.35rem;
  padding: clamp(3.5rem, 12vw, 6.25rem) 1.25rem clamp(4.5rem, 14vw, 7rem);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--paris-burgundy-header);
  background-image: url("../images/Moldura-1.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.22);
}

@media (max-width: 767px) {
  .paris-hero-top {
    min-height: clamp(15rem, 62vw, 22rem);
    padding: clamp(2.5rem, 10vw, 4rem) 1rem clamp(3.5rem, 12vw, 5.5rem);
    background-image: url("../images/Group-34-3.png");
  }
}

.paris-hero-top__logo {
  display: block;
  line-height: 0;
  text-decoration: none;
  transition: transform var(--transition);
  margin-top: clamp(0.5rem, 3vw, 2rem);
}

.paris-hero-top__logo:hover { transform: scale(1.02); }

.paris-hero-top__logo img {
  display: block;
  width: auto;
  height: auto;
  max-width: clamp(7.5rem, 26vw, 12.5rem);
  filter: drop-shadow(0 6px 24px rgba(0, 0, 0, 0.35));
}

@media (max-width: 767px) {
  .paris-hero-top__logo img {
    max-width: clamp(6.5rem, 39vw, 10rem);
  }
}

.paris-hero-top__badge {
  position: absolute;
  top: max(0.75rem, env(safe-area-inset-top, 0px));
  right: max(0.85rem, env(safe-area-inset-right, 0px));
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--paris-gold);
  background: rgba(38, 4, 4, 0.55);
  border: 1px solid rgba(251, 179, 75, 0.45);
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.paris-hero-top__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--paris-gold);
  box-shadow: 0 0 0 4px rgba(251, 179, 75, 0.25);
  animation: parisPulse 2.2s ease-in-out infinite;
}

/* Header */
.landing-header,
.funnel-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 1.1rem;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border-bottom: 1px solid rgba(251, 179, 75, 0.28);
  box-shadow: 0 6px 28px rgba(80, 0, 0, 0.14);
}

.landing-header__logo,
.funnel-header__logo {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  text-decoration: none;
  transition: transform var(--transition);
}

.landing-header__logo:hover { transform: scale(1.03); }

.landing-header__logo img,
.funnel-header__logo img {
  height: 2.65rem;
  width: auto;
  display: block;
  filter: drop-shadow(0 2px 6px rgba(80,0,0,.12));
}

.landing-header__pill,
.funnel-header__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--paris-burgundy);
  background: linear-gradient(135deg, rgba(251, 179, 75, 0.18), rgba(251, 179, 75, 0.38));
  border: 1px solid rgba(251, 179, 75, 0.5);
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(251, 179, 75, 0.2);
}

.landing-header__pill::before,
.funnel-header__badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--paris-gold);
  box-shadow: 0 0 0 4px rgba(251, 179, 75, 0.25);
  animation: parisPulse 2.2s ease-in-out infinite;
}

@keyframes parisPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.45; transform: scale(0.75); }
}

.landing-main {
  position: relative;
  max-width: 28rem;
  margin: 0 auto;
  padding: 0.75rem 1rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}

/* Card base — moldura dourada sobre burgundy (igual header) */
body.landing-page .paris-card {
  background: var(--paris-card-bg);
  border: 1px solid var(--paris-card-border);
  border-radius: var(--radius-xl);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(251, 179, 75, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* Brand strip */
.paris-brand-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.55rem 0;
  opacity: 0.85;
}

.paris-brand-strip img {
  height: auto;
  max-height: 22px;
  width: auto;
  object-fit: contain;
}

.paris-brand-strip__center {
  max-height: 36px !important;
}

/* Live ticker */
.paris-ticker {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.85rem;
  background: var(--paris-card-bg-soft);
  border: 1px solid var(--paris-card-border);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(245, 239, 230, 0.9);
  overflow: hidden;
}

.paris-ticker__dot {
  flex-shrink: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 8px rgba(74, 222, 128, 0.6);
  animation: parisPulse 1.8s ease-in-out infinite;
}

.paris-ticker__text {
  white-space: nowrap;
  animation: tickerSlide 12s linear infinite;
}

@keyframes tickerSlide {
  0%, 18% { transform: translateX(0); }
  45%, 63% { transform: translateX(-12%); }
  90%, 100% { transform: translateX(0); }
}

/* Hero premium */
.landing-hero {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.28);
  border: 1px solid var(--paris-card-border-strong);
}

.landing-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
}

.landing-hero__frame {
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(251, 179, 75, 0.25);
  border-radius: calc(var(--radius-xl) - 6px);
  pointer-events: none;
  z-index: 2;
}

.landing-hero__img {
  width: 100%;
  height: min(44vh, 260px);
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  animation: heroKen 18s ease-in-out infinite alternate;
}

@keyframes heroKen {
  from { transform: scale(1.02); }
  to { transform: scale(1.08); }
}

.landing-hero__badge-float {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 3;
  font-family: var(--font-display);
  font-size: 0.58rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--paris-burgundy);
  background: linear-gradient(135deg, var(--paris-gold-light), var(--paris-gold));
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(0,0,0,.35);
}

.landing-hero__content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem 1.35rem 1.3rem;
  background: linear-gradient(181deg, transparent 15%, rgba(80,0,0,.35) 45%, rgba(38,4,4,.96) 100%);
}

.landing-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--paris-gold);
  margin: 0 0 0.55rem;
}

.landing-hero__eyebrow::before {
  content: "";
  width: 1.75rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--paris-gold));
}

.landing-hero__title {
  font-size: clamp(1.55rem, 5.8vw, 2rem);
  color: #fff;
  margin: 0 0 0.45rem;
  text-shadow: 0 4px 24px rgba(0,0,0,.5);
}

.landing-hero__sub {
  font-size: 0.86rem;
  font-weight: 500;
  color: rgba(245, 239, 230, 0.88);
  margin: 0;
}

.landing-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.85rem;
}

.landing-hero__chip {
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--paris-gold-light);
  background: rgba(251, 179, 75, 0.12);
  border: 1px solid rgba(251, 179, 75, 0.28);
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
}

/* Stats row */
.paris-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.55rem;
}

.paris-stat {
  text-align: center;
  padding: 0.75rem 0.4rem;
  background: var(--paris-card-bg-soft);
  border: 1px solid var(--paris-card-border);
  border-radius: 1rem;
  backdrop-filter: blur(8px);
}

.paris-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--paris-gold);
  line-height: 1.1;
}

.paris-stat span {
  font-size: 0.62rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: rgba(245,239,230,.6);
}

/* Rating */
.landing-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.65rem 1rem;
  background: var(--paris-card-bg-soft);
  border-radius: 999px;
  border: 1px solid var(--paris-card-border);
  font-size: 0.78rem;
}

.landing-rating__stars { display: flex; gap: 2px; color: var(--paris-gold); }
.landing-rating__stars svg { width: 0.95rem; height: 0.95rem; fill: currentColor; }
.landing-rating__text { margin: 0; color: rgba(245,239,230,.75); }
.landing-rating__text strong { color: var(--paris-gold-light); font-weight: 800; }

/* Offer card — burgundy + ouro (continuação do header) */
.landing-offer {
  position: relative;
  background: linear-gradient(165deg, rgba(93, 0, 0, 0.96) 0%, rgba(80, 0, 0, 0.98) 55%, rgba(58, 0, 0, 0.99) 100%);
  border-radius: var(--radius-xl);
  padding: 2rem 1.45rem 1.65rem;
  border: 1px solid var(--paris-card-border-strong);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(251, 179, 75, 0.14);
}

.landing-offer::before {
  content: "";
  position: absolute;
  top: 0; left: 1.5rem; right: 1.5rem;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--paris-gold), var(--paris-gold-light), var(--paris-gold), transparent);
  border-radius: 999px;
}

.landing-offer__badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 0.64rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--paris-burgundy);
  background: linear-gradient(135deg, var(--paris-gold-light), var(--paris-gold));
  padding: 0.4rem 1rem;
  border-radius: 999px;
  box-shadow: var(--shadow-gold);
  white-space: nowrap;
  animation: badgeFloat 3s ease-in-out infinite;
}

@keyframes badgeFloat {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-3px); }
}

.landing-offer__price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 0.35rem;
}

.landing-offer__from {
  font-size: 0.95rem;
  color: rgba(245, 239, 230, 0.45);
  text-decoration: line-through;
}

.landing-offer__now {
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1;
  background: linear-gradient(135deg, var(--paris-gold-light) 0%, var(--paris-gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.landing-offer__note {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(251, 179, 75, 0.75);
  margin: 0 0 1.15rem;
}

.landing-offer__list {
  list-style: none;
  margin: 0 0 1.15rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(251, 179, 75, 0.18);
  border-bottom: 1px solid rgba(251, 179, 75, 0.18);
}

.landing-offer__list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.48rem 0;
  font-size: 0.93rem;
  font-weight: 500;
  color: var(--paris-on-dark);
}

.landing-offer__list .paris-icon {
  width: 1.65rem;
  height: 1.65rem;
  padding: 0.32rem;
  color: var(--paris-burgundy);
  background: linear-gradient(135deg, var(--paris-gold-light), var(--paris-gold));
  border-radius: 50%;
  border: 1px solid rgba(251, 179, 75, 0.45);
}

.landing-offer__list-bonus {
  font-weight: 700;
  color: var(--paris-gold-light);
  background: rgba(251, 179, 75, 0.1);
  margin: 0.25rem -0.5rem;
  padding: 0.55rem 0.5rem !important;
  border-radius: 0.65rem;
}

.landing-timer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--paris-gold-light);
  margin-bottom: 1.15rem;
  padding: 0.8rem 1rem;
  background: rgba(58, 0, 0, 0.65);
  border-radius: 0.85rem;
  border: 1px solid var(--paris-card-border);
  box-shadow: inset 0 1px 0 rgba(251, 179, 75, 0.08);
}

.landing-timer svg { color: var(--paris-gold); flex-shrink: 0; }

.landing-timer strong {
  color: var(--paris-gold-light);
  font-variant-numeric: tabular-nums;
  font-weight: 800;
  font-size: 0.95rem;
}

/* CTA shine */
.landing-cta,
.btn-paris-primary {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 56px;
  padding: 1.05rem 1.4rem;
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--paris-burgundy);
  background: linear-gradient(135deg, var(--paris-gold-light) 0%, var(--paris-gold) 45%, #e8a030 100%);
  border: none;
  border-radius: 2rem;
  cursor: pointer;
  overflow: hidden;
  box-shadow: var(--shadow-gold), inset 0 1px 0 rgba(255,255,255,.45);
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
}

.landing-cta::after,
.btn-paris-primary::after {
  content: "";
  position: absolute;
  top: 0; left: -120%;
  width: 55%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.55), transparent);
  transform: skewX(-18deg);
  animation: ctaShine 4.2s ease-in-out infinite;
}

@keyframes ctaShine {
  0%, 58%, 100% { left: -120%; }
  72% { left: 130%; }
}

.landing-cta:hover,
.btn-paris-primary:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(251,179,75,.5), inset 0 1px 0 rgba(255,255,255,.45);
}

.landing-cta:active,
.btn-paris-primary:active:not(:disabled) { transform: scale(0.985); }

.landing-cta:disabled,
.btn-paris-primary:disabled { opacity: 0.4; cursor: not-allowed; transform: none; }

.landing-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-top: 1.25rem;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(251, 179, 75, 0.18);
}

.landing-trust span {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.65rem;
  font-weight: 700;
  text-align: center;
  color: rgba(245, 239, 230, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.landing-trust .paris-icon {
  width: 1.35rem;
  height: 1.35rem;
  color: var(--paris-burgundy);
  background: linear-gradient(135deg, var(--paris-gold-light), var(--paris-gold));
  padding: 0.35rem;
  border-radius: 50%;
}

/* Mid CTA banner */
.paris-mid-cta {
  position: relative;
  padding: 1.75rem 1.35rem;
  border-radius: var(--radius-xl);
  text-align: center;
  overflow: hidden;
  border: 1px solid var(--paris-card-border-strong);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.25);
}

.paris-mid-cta__bg {
  position: absolute;
  inset: 0;
  background: url("../images/Moldura-1.png") center/cover no-repeat;
  opacity: 0.55;
}

.paris-mid-cta__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(93, 0, 0, 0.82), rgba(80, 0, 0, 0.9));
}

.paris-mid-cta__content { position: relative; z-index: 1; }

.paris-mid-cta h2 {
  font-size: 1.35rem;
  color: #fff;
  margin: 0 0 0.45rem;
}

.paris-mid-cta p {
  font-size: 0.82rem;
  color: rgba(245,239,230,.75);
  margin: 0 0 1.1rem;
  line-height: 1.45;
}

.paris-mid-cta .landing-cta { max-width: 16rem; margin: 0 auto; }

/* Showcase carousel */
.landing-showcase {
  background: linear-gradient(180deg, rgba(93, 0, 0, 0.92), rgba(80, 0, 0, 0.96));
  border-radius: var(--radius-xl);
  padding: 1.55rem 1.25rem 1.4rem;
  border: 1px solid var(--paris-card-border);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(251, 179, 75, 0.1);
}

.landing-showcase__head { text-align: center; margin-bottom: 1.2rem; }

.landing-showcase__pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.64rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--paris-burgundy);
  background: rgba(251,179,75,.14);
  border: 1px solid rgba(251,179,75,.32);
  padding: 0.38rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 0.55rem;
}

.landing-showcase__head h2 {
  font-size: 1.3rem;
  color: var(--paris-on-dark);
  margin: 0 0 0.35rem;
}

.landing-showcase__head p {
  font-size: 0.82rem;
  color: rgba(245, 239, 230, 0.72);
  margin: 0 auto;
  max-width: 18rem;
  line-height: 1.45;
}

.landing-showcase__scroll {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 0.35rem;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.landing-showcase__scroll::-webkit-scrollbar { display: none; }

.landing-showcase__item {
  flex: 0 0 42%;
  scroll-snap-align: start;
  margin: 0;
  text-align: center;
}

.landing-showcase__photo {
  position: relative;
  aspect-ratio: 3/4;
  padding: 0.45rem;
  background: rgba(58, 0, 0, 0.55);
  border-radius: 1rem;
  border: 1px solid var(--paris-card-border);
  margin-bottom: 0.55rem;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
  transition: transform var(--transition);
}

.landing-showcase__item:hover .landing-showcase__photo { transform: translateY(-4px); }

.landing-showcase__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.7rem;
}

.landing-showcase__tag {
  position: absolute;
  bottom: 0.65rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.58rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #fff;
  background: rgba(80,0,0,.75);
  backdrop-filter: blur(6px);
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  white-space: nowrap;
}

.landing-showcase__item figcaption {
  font-size: 0.74rem;
  font-weight: 700;
  color: rgba(245, 239, 230, 0.85);
}

.landing-showcase__note {
  text-align: center;
  font-size: 0.65rem;
  color: rgba(245, 239, 230, 0.5);
  margin: 1rem 0 0;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(251, 179, 75, 0.15);
}

/* Sections */
.landing-section__eyebrow {
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--paris-gold);
  margin: 0 0 0.25rem;
}

.landing-section__title {
  font-size: 1.55rem;
  color: #fff;
  margin: 0 0 1rem;
}

.landing-section__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.landing-section__head .landing-section__title { margin: 0; }

.landing-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.landing-step {
  position: relative;
  display: flex;
  gap: 0.9rem;
  padding: 1rem 1.05rem;
  background: var(--paris-card-bg-soft);
  border: 1px solid var(--paris-card-border);
  border-radius: 1.1rem;
  margin-bottom: 0.65rem;
}

.landing-step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 1.95rem;
  bottom: -0.65rem;
  width: 2px;
  height: 0.65rem;
  background: linear-gradient(180deg, rgba(251,179,75,.4), transparent);
}

.landing-step__num {
  flex-shrink: 0;
  width: 2.15rem;
  height: 2.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--paris-burgundy);
  background: linear-gradient(135deg, var(--paris-gold-light), var(--paris-gold));
  border-radius: 50%;
  box-shadow: 0 4px 14px rgba(251,179,75,.35);
}

.landing-step__body h3 {
  font-size: 0.95rem;
  color: #fff;
  margin: 0.05rem 0 0.25rem;
}

.landing-step__body p {
  font-size: 0.8rem;
  color: rgba(245,239,230,.72);
  margin: 0;
  line-height: 1.48;
}

.landing-score strong {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--paris-gold-light);
  line-height: 1;
}

.landing-score__stars {
  display: flex;
  gap: 2px;
  justify-content: flex-end;
  color: var(--paris-gold);
  margin-top: 0.2rem;
}

.landing-reviews {
  display: grid;
  gap: 0.75rem;
}

.landing-review {
  position: relative;
  padding: 1.1rem 1.15rem;
  background: var(--paris-card-bg-soft);
  border: 1px solid var(--paris-card-border);
  border-radius: 1.15rem;
}

.landing-review::before {
  content: "\201C";
  position: absolute;
  top: 0.2rem;
  right: 0.9rem;
  font-family: var(--font-display);
  font-size: 2.8rem;
  line-height: 1;
  color: rgba(251,179,75,.18);
}

.landing-review__top {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.55rem;
}

.landing-review__avatar {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.75rem;
  color: var(--paris-burgundy);
  background: linear-gradient(135deg, var(--paris-gold-light), var(--paris-gold));
  border: 2px solid rgba(251,179,75,.35);
}

.landing-review__meta strong {
  display: block;
  font-size: 0.82rem;
  color: #fff;
}

.landing-review__meta span {
  font-size: 0.65rem;
  color: rgba(245,239,230,.55);
}

.landing-review__verified {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.6rem;
  font-weight: 700;
  color: #4ade80;
  margin-left: auto;
}

.landing-review__stars { display: flex; gap: 2px; color: var(--paris-gold); margin-bottom: 0.45rem; }
.landing-review__stars svg { width: 0.9rem; height: 0.9rem; fill: currentColor; }

.landing-review p {
  font-size: 0.86rem;
  color: rgba(245,239,230,.9);
  margin: 0;
  line-height: 1.5;
}

.landing-faq { display: flex; flex-direction: column; gap: 0.55rem; }

.landing-faq__item {
  background: var(--paris-card-bg-soft);
  border: 1px solid var(--paris-card-border);
  border-radius: 1.05rem;
  overflow: hidden;
  transition: border-color var(--transition);
}

.landing-faq__item[open] { border-color: rgba(251,179,75,.28); }

.landing-faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.95rem 1.05rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  list-style: none;
}

.landing-faq__item summary::-webkit-details-marker { display: none; }

.landing-faq__item summary::after {
  content: "+";
  flex-shrink: 0;
  width: 1.45rem;
  height: 1.45rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--paris-gold);
  background: rgba(251,179,75,.14);
  border-radius: 50%;
  transition: transform var(--transition);
}

.landing-faq__item[open] summary::after {
  content: "\2212";
  transform: rotate(180deg);
}

.landing-faq__item p {
  margin: 0;
  padding: 0 1.05rem 1rem;
  font-size: 0.82rem;
  line-height: 1.55;
  color: rgba(245,239,230,.72);
}

.landing-legal {
  text-align: center;
  font-size: 0.68rem;
  letter-spacing: 0.02em;
  color: rgba(245,239,230,.42);
  margin: 0;
}

.landing-footer {
  max-width: 28rem;
  margin: 2rem auto 0;
  padding: 1.75rem 1rem 2rem;
  text-align: center;
  border-top: 1px solid rgba(251,179,75,.12);
}

.landing-footer__logo {
  height: 3.25rem;
  width: auto;
  margin-bottom: 0.85rem;
  opacity: 0.92;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,.2));
}

.landing-footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.1rem;
  margin-bottom: 0.85rem;
}

.landing-footer__nav a {
  font-size: 0.74rem;
  font-weight: 600;
  color: rgba(245,239,230,.7);
  text-decoration: none;
  transition: color var(--transition);
}

.landing-footer__nav a:hover { color: var(--paris-gold-light); }

.landing-footer__note,
.landing-footer__copy {
  font-size: 0.67rem;
  color: rgba(245,239,230,.42);
  line-height: 1.5;
  margin: 0.35rem 0;
}

/* Sticky bar — burgundy do header */
.landing-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 60;
  padding: 0.7rem 1rem calc(0.7rem + env(safe-area-inset-bottom, 0px));
  background: rgba(80, 0, 0, 0.96);
  backdrop-filter: blur(18px) saturate(150%);
  border-top: 1px solid var(--paris-card-border-strong);
  box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.35);
}

.landing-bar__inner {
  max-width: 28rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.landing-bar__price small {
  display: block;
  font-size: 0.65rem;
  color: rgba(245,239,230,.5);
  text-decoration: line-through;
}

.landing-bar__price strong {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--paris-gold-light);
}

.landing-bar__btn {
  flex-shrink: 0;
  min-width: 7.5rem;
  min-height: 46px;
  padding: 0.7rem 1.35rem;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--paris-burgundy);
  background: linear-gradient(135deg, var(--paris-gold-light), var(--paris-gold));
  border: none;
  border-radius: 2rem;
  cursor: pointer;
  box-shadow: var(--shadow-gold);
  transition: transform var(--transition);
}

.landing-bar__btn:active { transform: scale(0.96); }

/* ========== FUNIL ========== */
.funnel-main {
  max-width: 28rem;
  margin: 0 auto;
  padding: 1.15rem 1rem 2.5rem;
}

.funnel-step-enter {
  animation: stepIn 0.45s var(--ease-out) both;
}

@keyframes stepIn {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Step pills */
.funnel-steps-nav {
  display: flex;
  gap: 0.35rem;
  margin-bottom: 1rem;
  overflow-x: auto;
  padding-bottom: 0.25rem;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.funnel-steps-nav::-webkit-scrollbar { display: none; }

.funnel-steps-nav__pill {
  flex-shrink: 0;
  font-size: 0.58rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  color: rgba(245,239,230,.45);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
  transition: all var(--transition);
}

.funnel-steps-nav__pill.is-done {
  color: var(--paris-gold-light);
  border-color: rgba(251,179,75,.25);
}

.funnel-steps-nav__pill.is-active {
  color: var(--paris-burgundy);
  background: linear-gradient(135deg, var(--paris-gold-light), var(--paris-gold));
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(251,179,75,.3);
}

.funnel-progress { margin-bottom: 0.85rem; }

.funnel-progress__top {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(245,239,230,.72);
  margin-bottom: 0.45rem;
}

.funnel-progress__bar {
  height: 5px;
  background: rgba(255,255,255,.1);
  border-radius: 999px;
  overflow: hidden;
}

.funnel-progress__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--paris-gold-dark), var(--paris-gold-light));
  border-radius: 999px;
  transition: width 0.5s var(--ease-out);
  box-shadow: 0 0 12px rgba(251,179,75,.45);
}

.funnel-card {
  position: relative;
  background: linear-gradient(165deg, #fff 0%, #fdfaf4 100%);
  border-radius: var(--radius-xl);
  padding: 1.55rem 1.3rem;
  border: 1px solid rgba(251,179,75,.25);
  box-shadow: var(--shadow-card);
  color: var(--paris-text);
  overflow: hidden;
}

.funnel-card::before {
  content: "";
  position: absolute;
  top: 0; left: 1.25rem; right: 1.25rem;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--paris-gold), transparent);
}

.funnel-card__head h1 {
  font-size: 1.4rem;
  color: var(--paris-burgundy);
  margin: 0 0 0.35rem;
}

.funnel-card__head p {
  font-size: 0.85rem;
  color: var(--paris-muted);
  margin: 0 0 1.25rem;
  line-height: 1.48;
}

.quiz-q-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--paris-burgundy);
  margin: 0 0 1rem;
  line-height: 1.3;
}

.quiz-meter {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.15rem;
  padding: 0.65rem 0.85rem;
  background: rgba(251,179,75,.08);
  border-radius: 0.85rem;
  border: 1px solid rgba(251,179,75,.18);
}

.quiz-meter__bar {
  flex: 1;
  height: 4px;
  background: rgba(80,0,0,.08);
  border-radius: 999px;
  overflow: hidden;
}

.quiz-meter__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--paris-burgundy), var(--paris-gold));
  border-radius: 999px;
  transition: width 0.4s var(--ease-out);
}

.quiz-meter__label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--paris-burgundy-mid);
  white-space: nowrap;
}

.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.25rem;
}

.quiz-option {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  width: 100%;
  padding: 0.95rem 1rem;
  text-align: left;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--paris-text);
  background: #faf8f5;
  border: 2px solid transparent;
  border-radius: 1rem;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 2px 8px rgba(80,0,0,.04);
}

.quiz-option:hover {
  border-color: rgba(251,179,75,.45);
  transform: translateX(3px);
}

.quiz-option.is-selected {
  border-color: var(--paris-gold);
  background: linear-gradient(135deg, rgba(251,179,75,.16), rgba(251,179,75,.06));
  box-shadow: 0 6px 20px rgba(251,179,75,.2);
}

.quiz-option__emoji {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  background: #fff;
  border-radius: 0.65rem;
  border: 1px solid rgba(80,0,0,.06);
}

.quiz-option__thumb {
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.65rem;
  overflow: hidden;
  border: 1px solid rgba(251, 179, 75, 0.35);
  background: #fff;
}

.quiz-option__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.quiz-option__label {
  flex: 1;
  min-width: 0;
  line-height: 1.3;
}

.quiz-option__radio {
  width: 1.15rem;
  height: 1.15rem;
  border: 2px solid var(--paris-muted);
  border-radius: 50%;
  flex-shrink: 0;
  margin-left: auto;
  position: relative;
  transition: border-color var(--transition);
}

.quiz-option.is-selected .quiz-option__radio {
  border-color: var(--paris-burgundy);
}

.quiz-option.is-selected .quiz-option__radio::after {
  content: "";
  position: absolute;
  inset: 3px;
  background: var(--paris-burgundy);
  border-radius: 50%;
}

.funnel-hint {
  text-align: center;
  font-size: 0.74rem;
  color: var(--paris-muted);
  margin-top: 0.85rem;
}

/* Loading premium */
.funnel-loading { text-align: center; padding: 1.5rem 0.5rem; }

.funnel-loading__ring {
  position: relative;
  width: 4.5rem;
  height: 4.5rem;
  margin: 0 auto 1.35rem;
}

.funnel-loading__ring svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.funnel-loading__ring-bg {
  fill: none;
  stroke: rgba(251,179,75,.18);
  stroke-width: 4;
}

.funnel-loading__ring-fill {
  fill: none;
  stroke: url(#parisGrad);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-dasharray: 126;
  stroke-dashoffset: 126;
  animation: ringFill 2.8s var(--ease-out) forwards;
}

@keyframes ringFill {
  to { stroke-dashoffset: 0; }
}

.funnel-loading h2 {
  font-size: 1.3rem;
  color: var(--paris-burgundy);
  margin: 0 0 0.5rem;
}

.funnel-loading p {
  font-size: 0.85rem;
  color: var(--paris-muted);
  margin: 0 0 1.25rem;
}

.funnel-loading__steps {
  text-align: left;
  max-width: 16rem;
  margin: 0 auto;
}

.funnel-loading__step {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.45rem 0;
  font-size: 0.78rem;
  color: var(--paris-muted);
  opacity: 0.35;
  transition: opacity 0.4s ease, color 0.4s ease;
}

.funnel-loading__step.is-active {
  opacity: 1;
  color: var(--paris-burgundy);
  font-weight: 600;
}

.funnel-loading__step.is-done { opacity: 0.65; color: var(--paris-burgundy-mid); }

.funnel-loading__step-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(251,179,75,.3);
  flex-shrink: 0;
}

.funnel-loading__step.is-active .funnel-loading__step-dot {
  background: var(--paris-gold);
  box-shadow: 0 0 8px rgba(251,179,75,.6);
  animation: parisPulse 1s ease-in-out infinite;
}

.funnel-loading__step.is-done .funnel-loading__step-dot { background: var(--paris-burgundy-mid); }

/* Cupom ticket */
.coupon-ticket {
  position: relative;
  margin-bottom: 1.25rem;
  padding: 1.35rem 1.25rem;
  background: linear-gradient(135deg, var(--paris-burgundy) 0%, var(--paris-burgundy-mid) 100%);
  border-radius: 1.1rem;
  color: #fff;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(80,0,0,.35);
}

.coupon-ticket::before,
.coupon-ticket::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 18px;
  height: 18px;
  background: #fdfaf4;
  border-radius: 50%;
  transform: translateY(-50%);
}

.coupon-ticket::before { left: -9px; }
.coupon-ticket::after { right: -9px; }

.coupon-ticket__shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,.08) 50%, transparent 60%);
  animation: ticketShine 3s ease-in-out infinite;
}

@keyframes ticketShine {
  0%, 100% { transform: translateX(-100%); }
  50% { transform: translateX(100%); }
}

.coupon-ticket__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.85rem;
  position: relative;
}

.coupon-ticket__logo { height: 1.75rem; width: auto; opacity: 0.95; }

.coupon-ticket__status {
  font-size: 0.58rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--paris-burgundy);
  background: var(--paris-gold);
  padding: 0.3rem 0.55rem;
  border-radius: 999px;
}

.coupon-ticket__code {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.12em;
  color: var(--paris-gold-light);
  margin: 0 0 0.35rem;
  position: relative;
}

.coupon-ticket__sub {
  font-size: 0.75rem;
  opacity: 0.8;
  margin: 0;
  position: relative;
}

.coupon-ticket__divider {
  margin: 0.85rem 0;
  border: none;
  border-top: 1px dashed rgba(251,179,75,.35);
  position: relative;
}

.coupon-ticket__benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  position: relative;
}

.coupon-ticket__chip {
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.28rem 0.55rem;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(251,179,75,.25);
  border-radius: 999px;
}

.funnel-success { text-align: center; }

.funnel-success__icon {
  width: 4.25rem;
  height: 4.25rem;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(251,179,75,.25), rgba(251,179,75,.08));
  border-radius: 50%;
  color: var(--paris-burgundy);
  animation: successPop 0.6s var(--ease-out);
}

@keyframes successPop {
  0% { transform: scale(0.5); opacity: 0; }
  70% { transform: scale(1.08); }
  100% { transform: scale(1); opacity: 1; }
}

.funnel-success__icon svg {
  width: 2rem;
  height: 2rem;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
}

.funnel-success h1 {
  font-size: 1.35rem;
  color: var(--paris-burgundy);
  margin: 0 0 0.45rem;
}

.funnel-success p {
  font-size: 0.85rem;
  color: var(--paris-muted);
  margin: 0 0 1.25rem;
  line-height: 1.45;
}

/* Form */
.funnel-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 0.25rem;
}

.funnel-field { position: relative; }

.funnel-field label {
  display: block;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--paris-burgundy);
  margin-bottom: 0.4rem;
}

.funnel-field input {
  width: 100%;
  padding: 0.95rem 1rem 0.95rem 2.75rem;
  font-size: 1rem;
  font-family: inherit;
  color: var(--paris-text);
  background: #faf8f5;
  border: 2px solid rgba(80,0,0,.08);
  border-radius: 0.85rem;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.funnel-field input:focus {
  border-color: var(--paris-gold);
  box-shadow: 0 0 0 4px rgba(251,179,75,.15);
}

.funnel-field__icon {
  position: absolute;
  left: 0.95rem;
  bottom: 0.95rem;
  width: 1.1rem;
  height: 1.1rem;
  color: var(--paris-muted);
  pointer-events: none;
}

.funnel-trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 1rem;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--paris-muted);
}

/* Summary */
.funnel-summary {
  background: #faf8f5;
  border-radius: 1rem;
  padding: 1.1rem;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(80,0,0,.06);
}

.funnel-summary__header {
  display: flex;
  gap: 0.85rem;
  align-items: center;
  padding-bottom: 0.85rem;
  margin-bottom: 0.85rem;
  border-bottom: 1px solid rgba(80,0,0,.08);
}

.funnel-summary__thumb {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  object-fit: cover;
  border: 2px solid rgba(251,179,75,.3);
}

.funnel-summary__header h3 {
  font-size: 0.92rem;
  color: var(--paris-burgundy);
  margin: 0 0 0.15rem;
}

.funnel-summary__header p {
  font-size: 0.72rem;
  color: var(--paris-muted);
  margin: 0;
}

.funnel-summary__row {
  display: flex;
  justify-content: space-between;
  font-size: 0.86rem;
  padding: 0.38rem 0;
  color: var(--paris-text);
}

.funnel-summary__row span:last-child { font-weight: 600; }

.funnel-summary__row--bonus span:last-child { color: var(--paris-burgundy-mid); }

.funnel-summary__row--total {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--paris-burgundy);
  border-top: 2px dashed rgba(251,179,75,.35);
  margin-top: 0.45rem;
  padding-top: 0.75rem;
}

.funnel-summary__row--total span:last-child {
  font-size: 1.25rem;
  color: var(--paris-burgundy-mid);
}

/* Order bumps */
.orderbump-block {
  margin: 1.15rem 0 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.orderbump-block__title {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--paris-muted);
  margin: 0 0 0.15rem;
}

.orderbump-card {
  position: relative;
  display: block;
  width: 100%;
  text-align: left;
  padding: 0;
  border: 1px solid rgba(80,0,0,.1);
  border-radius: var(--radius-lg);
  background: #fff;
  cursor: pointer;
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition), transform 0.15s ease;
}

.orderbump-card:hover {
  border-color: rgba(251,179,75,.45);
  box-shadow: 0 6px 20px rgba(251,179,75,.12);
}

.orderbump-card.is-selected {
  border-color: var(--paris-gold);
  background: linear-gradient(105deg, #fffdf6, #fff8e6 48%, #fff);
  box-shadow: 0 0 0 1px rgba(251,179,75,.35);
}

.orderbump-card__accent {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: transparent;
}

.orderbump-card.is-selected .orderbump-card__accent {
  background: linear-gradient(180deg, var(--paris-gold-light), var(--paris-gold-dark));
}

.orderbump-card input { position: absolute; opacity: 0; pointer-events: none; }

.orderbump-card__check {
  position: absolute;
  top: 0.55rem;
  right: 0.55rem;
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 50%;
  border: 2px solid rgba(80,0,0,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: transparent;
}

.orderbump-card.is-selected .orderbump-card__check {
  background: var(--paris-gold);
  border-color: var(--paris-gold);
  color: var(--paris-burgundy);
  font-weight: 800;
}

.orderbump-card__inner {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.75rem 2rem 0.75rem 0.85rem;
}

.orderbump-card__thumb {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(251,179,75,.15);
  color: var(--paris-gold-dark);
  font-weight: 800;
  font-size: 1.1rem;
}

.orderbump-card__thumb--photo {
  padding: 0;
  overflow: hidden;
  background: #fff;
}

.orderbump-card__thumb--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.orderbump-card.is-selected .orderbump-card__thumb:not(.orderbump-card__thumb--photo) {
  background: linear-gradient(145deg, var(--paris-gold), var(--paris-gold-dark));
  color: #fff;
}

.orderbump-card.is-selected .orderbump-card__thumb--photo {
  box-shadow: 0 0 0 2px var(--paris-gold);
}

.orderbump-card__content { flex: 1; min-width: 0; }

.orderbump-card__tag {
  display: none;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--paris-burgundy);
  background: rgba(251,179,75,.25);
  padding: 0.15rem 0.45rem;
  border-radius: 999px;
  margin-bottom: 0.2rem;
}

.orderbump-card.is-selected .orderbump-card__tag { display: inline-block; }

.orderbump-card__title {
  font-size: 0.86rem;
  font-weight: 800;
  color: var(--paris-burgundy);
  margin: 0;
  line-height: 1.25;
}

.orderbump-card__desc {
  font-size: 0.68rem;
  color: var(--paris-muted);
  margin: 0.15rem 0 0;
  line-height: 1.35;
}

.orderbump-card__meta { flex-shrink: 0; text-align: right; }

.orderbump-card__price {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--paris-burgundy-mid);
}

/* PIX */
.funnel-card--pix {
  padding-bottom: 1.1rem;
}

.funnel-card__head--compact {
  margin-bottom: 0.65rem;
}

.funnel-card__head--compact h1 {
  margin-bottom: 0.25rem;
}

.funnel-card__head--compact p {
  margin: 0;
}

.pix-summary {
  width: 100%;
  margin-bottom: 0.75rem;
  padding: 0.75rem 0.85rem;
  background: rgba(251, 179, 75, 0.07);
  border: 1px solid rgba(251, 179, 75, 0.2);
  border-radius: 0.85rem;
}

.pix-summary__title {
  margin: 0 0 0.55rem;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--paris-muted);
}

.pix-summary__product {
  margin-bottom: 0.45rem;
  padding-bottom: 0.45rem;
  border-bottom: 1px solid rgba(80, 0, 0, 0.06);
}

.pix-summary .funnel-summary__row {
  padding: 0.28rem 0;
  font-size: 0.74rem;
}

.pix-pay-block {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.65rem;
  align-items: center;
  margin-bottom: 0.65rem;
}

.pix-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.85rem;
}

.pix-amount {
  text-align: center;
  width: 100%;
  padding: 0.7rem 0.75rem;
  background: rgba(251,179,75,.1);
  border-radius: 0.85rem;
  border: 1px solid rgba(251,179,75,.22);
}

.pix-amount small {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--paris-muted);
  margin-bottom: 0.15rem;
}

.pix-amount strong {
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--paris-burgundy);
}

.pix-qr {
  position: relative;
  width: 168px;
  height: 168px;
  padding: 0.5rem;
  background: #fff;
  border-radius: 1rem;
  border: 2px solid rgba(251,179,75,.35);
  box-shadow: 0 8px 28px rgba(80,0,0,.12);
  flex-shrink: 0;
}

.pix-qr__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 0.35rem;
}

.pix-qr__img--fallback[hidden] {
  display: none !important;
}

.pix-qr__logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1.75rem !important;
  height: 1.75rem !important;
  max-width: 1.75rem;
  max-height: 1.75rem;
  object-fit: contain;
  background: #fff;
  border-radius: 0.35rem;
  padding: 0.15rem;
  box-shadow: 0 2px 8px rgba(0,0,0,.1);
  pointer-events: none;
  z-index: 2;
}

.pix-box {
  width: 100%;
  background: #faf8f5;
  border: 1px dashed rgba(251,179,75,.45);
  border-radius: 0.85rem;
  padding: 0.85rem 1rem;
  word-break: break-all;
  font-size: 0.68rem;
  font-family: ui-monospace, monospace;
  color: var(--paris-text);
  line-height: 1.55;
  max-height: 4.5rem;
  overflow: hidden;
  position: relative;
}

.pix-box::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1.5rem;
  background: linear-gradient(transparent, #faf8f5);
}

.pix-timer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  width: 100%;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--paris-burgundy-mid);
  padding: 0.5rem 0.6rem;
  margin-bottom: 0.55rem;
  background: rgba(251,179,75,.08);
  border-radius: 0.65rem;
}

@media (max-width: 380px) {
  .pix-pay-block {
    grid-template-columns: 1fr;
    justify-items: center;
  }
}

.btn-paris-secondary {
  width: 100%;
  padding: 0.9rem;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--paris-burgundy);
  background: transparent;
  border: 2px solid var(--paris-gold);
  border-radius: 2rem;
  cursor: pointer;
  margin-top: 0.55rem;
  transition: background var(--transition);
}

.btn-paris-secondary:hover { background: rgba(251,179,75,.08); }

.offer-strip {
  margin-top: 1.15rem;
  padding: 1.1rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(251,179,75,.15);
  border-radius: 1.1rem;
  text-align: center;
  backdrop-filter: blur(8px);
}

.offer-strip__compare {
  font-size: 0.85rem;
  color: rgba(245,239,230,.5);
  text-decoration: line-through;
  margin-right: 0.5rem;
}

.offer-strip__price {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--paris-gold-light);
}

.offer-strip__tagline {
  font-size: 0.72rem;
  color: rgba(245,239,230,.65);
  margin: 0.4rem 0 0;
}

.offer-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem;
  margin-top: 0.65rem;
}

.offer-chip {
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.28rem 0.55rem;
  color: var(--paris-gold-light);
  background: rgba(251,179,75,.1);
  border: 1px solid rgba(251,179,75,.2);
  border-radius: 999px;
}

.funnel-step { display: none; }
.funnel-step.is-active { display: block; }

@media (min-width: 768px) {
  .landing-main, .funnel-main, .landing-footer, .landing-bar__inner { max-width: 34rem; }
  .landing-hero__img { height: 280px; }
  .landing-reviews { grid-template-columns: 1fr 1fr; }
  body.landing-page { padding-bottom: 2rem; }
  .landing-bar { display: none; }
  .landing-showcase__item { flex: 0 0 30%; }
}

@media (prefers-reduced-motion: reduce) {
  .landing-cta::after, .btn-paris-primary::after,
  .landing-header__pill::before, .landing-hero__img,
  .coupon-ticket__shine, .landing-offer__badge { animation: none; }
  .reveal { opacity: 1; transform: none; }
}
