/* ==========================================================================
   LASHMENU — LANDING PAGE A (NUDE & CHAMPAGNE EDITORIAL / VOGUE CHIC)
   ========================================================================== */

/* ── 1. Variáveis & Design Tokens ────────────────────────────────────────── */
:root {
  --bg: #f6f0e8;                 /* Warm Nude / Bege Seda Luxo */
  --bg-alt: #ece3d7;             /* Nude Areia Suave */
  --bg-card: #ffffff;            /* Branco Marfim Puro */
  --bg-card-alt: #faf6f0;
  
  --text: #221b16;               /* Preto Espresso Profundo */
  --text-muted: #5e5147;         /* Marrom Acinzentado Sofisticado */
  --text-faint: #8e7f74;
  
  --accent: #9c6c44;             /* Bronze Champagne / Ouro Nobre */
  --accent-light: #b58357;       /* Bronze Claro */
  --accent-dark: #7a502f;        /* Bronze Escuro */
  --accent-soft: rgba(156, 108, 68, 0.12);
  --accent-glow: rgba(156, 108, 68, 0.25);
  
  --border: rgba(34, 27, 22, 0.10);
  --border-gold: rgba(156, 108, 68, 0.35);
  --border-light: rgba(34, 27, 22, 0.06);
  
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-main: 'Jost', system-ui, -apple-system, sans-serif;
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 30px;
  --radius-pill: 9999px;
  
  --shadow-sm: 0 4px 12px rgba(34, 27, 22, 0.05);
  --shadow-md: 0 10px 30px rgba(34, 27, 22, 0.08);
  --shadow-lg: 0 20px 50px rgba(34, 27, 22, 0.12);
  --shadow-bronze: 0 8px 24px rgba(156, 108, 68, 0.28);
  
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── 2. Reset & Base ─────────────────────────────────────────────────────── */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-main);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Background Blobs Sutis */
.bg-blobs {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.45;
  pointer-events: none;
}

.blob--top-right {
  top: -120px;
  right: -100px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(156, 108, 68, 0.12) 0%, transparent 70%);
}

.blob--bottom-left {
  bottom: -100px;
  left: -100px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(156, 108, 68, 0.08) 0%, transparent 70%);
}

/* Containers */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.container--sm { max-width: 800px; }
.container--xs { max-width: 640px; }

/* Tipografia */
h1, h2, h3, h4 {
  color: var(--text);
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.18;
}

.section-header {
  text-align: center;
  margin-bottom: clamp(36px, 5vw, 56px);
}

.section-kicker {
  font-family: var(--font-main);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .25em;
  color: var(--accent);
  margin-bottom: 10px;
  display: block;
}

.section-title {
  font-size: clamp(2rem, 3.8vw, 2.75rem);
  font-weight: 400;
  margin-bottom: 12px;
  color: var(--text);
}

.section-title em {
  font-style: italic;
  color: var(--accent);
}

.section-subtitle {
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.55;
}

.text-gradient {
  background: linear-gradient(135deg, #7a502f 0%, #9c6c44 50%, #b58357 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ── 3. Botões ──────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: .03em;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s var(--ease);
  text-align: center;
}

.btn--primary {
  background: linear-gradient(135deg, #a6744a 0%, #8c5b35 100%);
  color: #ffffff;
  box-shadow: var(--shadow-bronze);
}

.btn--primary:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #b58357 0%, #9c6c44 100%);
  box-shadow: 0 12px 30px rgba(156, 108, 68, 0.40);
}

.btn--primary:active {
  transform: translateY(0);
}

.btn--outline {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
}

.btn--outline:hover {
  background: var(--accent-soft);
  border-color: var(--accent-dark);
  color: var(--accent-dark);
}

.btn--pulsing {
  animation: pulseButton 3s ease-in-out infinite;
}

@keyframes pulseButton {
  0%, 100% {
    box-shadow: 0 4px 18px rgba(156, 108, 68, 0.25);
  }
  50% {
    box-shadow: 0 8px 30px rgba(156, 108, 68, 0.48);
  }
}

.btn--whatsapp {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 26px rgba(37, 211, 102, 0.35);
  font-weight: 800;
  letter-spacing: 0.04em;
  font-size: 0.95rem;
  padding: 16px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn--whatsapp:hover {
  background: linear-gradient(135deg, #20bd5a 0%, #0e7368 100%);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.48);
  transform: translateY(-2px);
}

.btn--whatsapp svg {
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
  flex-shrink: 0;
}

.btn-micro-subtext {
  font-size: 0.78rem;
  color: #71717a;
  text-align: center;
  margin-top: 10px;
  margin-bottom: 0;
  font-weight: 500;
  line-height: 1.3;
}

/* ── 4. Top Announcement Bar ────────────────────────────────────────────── */
.top-announcement-bar {
  background: #241c17;
  color: #ffffff;
  padding: 10px 0;
  font-size: 0.82rem;
  text-align: center;
  position: relative;
  z-index: 20;
  border-bottom: 1px solid rgba(156, 108, 68, 0.25);
}

.announcement-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  line-height: 1.2;
}

.topbar-avatars {
  display: flex;
  align-items: center;
}

.topbar-avatar {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid #241c17;
  margin-left: -7px;
  object-fit: cover;
}

.topbar-avatar:first-child { margin-left: 0; }

.topbar-stars {
  color: #d4a373;
  letter-spacing: 2px;
  font-size: 0.85rem;
}

.announcement-text strong {
  font-weight: 700;
  color: #ffffff;
}

/* ── 5. Hero Section ────────────────────────────────────────────────────── */
.hero-section {
  padding: clamp(48px, 7vw, 90px) 0 clamp(40px, 6vw, 70px);
  position: relative;
}

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

.hero-brand-h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 3.8vw, 3rem);
  font-weight: 300;
  color: var(--text);
  line-height: 1;
  letter-spacing: .04em;
  margin-bottom: 4px;
}

.hero-brand-h1 em {
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
}

.hero-brand-tagline {
  font-size: 0.80rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--accent);
  margin-bottom: 22px;
}

.hero-title {
  font-size: clamp(2.1rem, 3.8vw, 3.1rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 18px;
}

.hero-subtitle {
  font-size: clamp(0.98rem, 1.4vw, 1.12rem);
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.trust-badges {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  font-weight: 500;
}

.trust-item svg {
  color: var(--accent);
}

/* Mockup Hero */
.hero-mockup-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-mockup {
  --phone-w: 240px;
  --phone-h: 495px;
  --screen-w: calc(var(--phone-w) - 14px);
  --screen-h: calc(var(--phone-h) - 14px);
  --base-w: 390px;
  --base-h: 834px;

  width: var(--phone-w);
  height: var(--phone-h);
  background: #14100e;
  border-radius: 38px;
  padding: 7px;
  box-shadow: 
    0 26px 60px -10px rgba(34, 27, 22, 0.35),
    0 8px 20px -4px rgba(0, 0, 0, 0.15),
    0 0 0 1.5px rgba(255, 255, 255, 0.12),
    inset 0 0 0 1px rgba(0, 0, 0, 0.8);
  position: relative;
}

.phone-mockup .phone-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 64px;
  height: 12px;
  background: #14100e;
  border-radius: 6px;
  z-index: 30;
  pointer-events: none;
}

.phone-mockup .phone-screen {
  position: relative;
  border-radius: 31px;
  overflow: hidden;
  background: #0d0b0a;
  width: var(--screen-w);
  height: var(--screen-h);
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  mask-image: radial-gradient(white, black);
  transform: translate3d(0, 0, 0);
  isolation: isolate;
}

.phone-mockup .phone-screen-scaler {
  position: absolute;
  top: 0;
  left: 0;
  width: var(--base-w);
  height: var(--base-h);
  transform: scale(calc(var(--screen-w) / var(--base-w)), calc(var(--screen-h) / var(--base-h)));
  transform-origin: top left;
  overflow: hidden;
  background: #0d0b0a;
}

.phone-mockup .phone-screen-scaler iframe {
  width: var(--base-w);
  height: var(--base-h);
  border: 0;
  display: block;
}

.phone-overlay-badge {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--text);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  border: 1px solid var(--border);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 30;
  pointer-events: none;
}

.dot-pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.6);
  animation: pulseDot 1.8s infinite;
}

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

/* ── 6. Faixa Marquee de Benefícios ─────────────────────────────────────── */
.marquee-ribbon-section {
  background: var(--bg-alt);
  padding: 24px 0;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.marquee-ribbon-wrap {
  display: flex;
  overflow: hidden;
  user-select: none;
}

.marquee-ribbon-track {
  display: flex;
  gap: 20px;
  flex-shrink: 0;
  animation: marqueeScroll 32s linear infinite;
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.marquee-pillar-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 16px 22px;
  min-width: 270px;
  max-width: 290px;
  box-shadow: 0 6px 18px rgba(34, 27, 22, 0.04);
}

.mpc-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.mpc-badge {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--accent);
}

.mpc-icon {
  color: var(--accent);
}

.mpc-title {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--text);
}

.mpc-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.45;
}

/* ── 7. Comparativo VS ──────────────────────────────────────────────────── */
.vs-section {
  padding: clamp(50px, 8vw, 90px) 0;
}

.vs-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  position: relative;
  max-width: 960px;
  margin: 0 auto;
}

.vs-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  border: 1.5px solid var(--border-gold);
  color: var(--accent);
  font-weight: 800;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.vs-card {
  border-radius: var(--radius-xl);
  padding: clamp(24px, 4vw, 36px);
  position: relative;
}

.vs-card--bad {
  background: #f0e7dd;
  border: 1px solid var(--border);
}

.vs-card--good {
  background: #ffffff;
  border: 1.5px solid var(--border-gold);
  box-shadow: 0 16px 45px rgba(34, 27, 22, 0.07);
}

.vs-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}

.vs-card--bad .vs-icon-badge {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(220, 38, 38, 0.12);
  color: #dc2626;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vs-card--good .vs-icon-badge {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.vs-card-title {
  font-size: 1.25rem;
  font-weight: 600;
}

.vs-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.vs-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.vs-card--good .vs-item {
  color: var(--text);
}

.vs-item-icon {
  font-weight: 800;
  font-size: 0.95rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.vs-card--bad .vs-item-icon { color: #dc2626; }
.vs-card--good .vs-item-icon { color: var(--accent); }

.vs-link-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent-soft);
  border: 1px solid var(--border-gold);
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  color: var(--accent);
  font-weight: 600;
  margin-top: 4px;
}

/* ── 8. Benefícios / Features ───────────────────────────────────────────── */
.features-section {
  padding: clamp(50px, 8vw, 90px) 0;
  background: var(--bg-alt);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: clamp(24px, 3.5vw, 32px);
  box-shadow: 0 6px 20px rgba(34, 27, 22, 0.04);
  transition: all 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-gold);
  box-shadow: 0 12px 30px rgba(34, 27, 22, 0.08);
}

.feature-icon-wrap {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.feature-title {
  font-size: 1.25rem;
  margin-bottom: 8px;
  color: var(--text);
}

.feature-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ── 9. Showroom de Modelos (Carrossel Flutuante) ────────────────────────── */
.models-showroom-section {
  padding: clamp(50px, 7vw, 85px) 0;
  position: relative;
}

.models-header-compact {
  text-align: center;
  margin-bottom: clamp(20px, 3vw, 28px);
}

.models-palette-switch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 6px;
}

.models-palette-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .06em;
}

.models-palette-pills {
  display: flex;
  gap: 6px;
}

.models-palette-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--border);
  background: #ffffff;
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.models-palette-btn:hover {
  border-color: var(--accent);
  color: var(--text);
}

.models-palette-btn.is-active {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 700;
}

.color-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}

.color-dot--midnight {
  background: #14100e;
  box-shadow: 0 0 0 1.5px rgba(20, 16, 14, 0.3);
}

.color-dot--rose {
  background: #e598ad;
  box-shadow: 0 0 0 1.5px rgba(229, 152, 173, 0.4);
}

/* Carrossel Flutuante */
.models-carousel-container {
  position: relative;
  max-width: 440px;
  margin: 0 auto;
}

.models-carousel-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 4px 4px 16px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.models-carousel-track::-webkit-scrollbar { display: none; }

.models-slide {
  min-width: 100%;
  max-width: 100%;
  scroll-snap-align: center;
  flex-shrink: 0;
}

.models-slide-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 4px 0 6px;
  gap: 16px;
  width: 100%;
  max-width: 330px;
  margin: 0 auto;
}

.models-slide-preview {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  width: 100%;
}

.showroom-phone {
  --phone-w: 206px;
  --phone-h: 428px;
  --screen-w: calc(var(--phone-w) - 12px);
  --screen-h: calc(var(--phone-h) - 12px);
  --base-w: 390px;
  --base-h: 834px;

  width: var(--phone-w);
  height: var(--phone-h);
  background: #14100e;
  border-radius: 34px;
  padding: 6px;
  box-shadow: 
    0 24px 48px -6px rgba(34, 27, 22, 0.40),
    0 8px 18px -4px rgba(0, 0, 0, 0.18),
    0 0 0 1.5px rgba(255, 255, 255, 0.12),
    inset 0 0 0 1px rgba(0, 0, 0, 0.7);
  position: relative;
  margin: 0 auto;
  flex-shrink: 0;
  overflow: hidden;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  mask-image: radial-gradient(white, black);
  transform: translate3d(0, 0, 0);
  transition: transform 0.25s ease;
}

.showroom-phone:hover {
  transform: translateY(-2px);
}

.showroom-phone .phone-notch {
  position: absolute;
  top: 11px;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 11px;
  background: #14100e;
  border-radius: 6px;
  z-index: 30;
  pointer-events: none;
}

.showroom-phone .phone-screen {
  position: relative;
  border-radius: 27px;
  overflow: hidden;
  background: #0d0b0a;
  width: var(--screen-w);
  height: var(--screen-h);
  pointer-events: none;
  user-select: none;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  mask-image: radial-gradient(white, black);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
  isolation: isolate;
}

.showroom-phone .phone-screen-scaler {
  position: absolute;
  top: 0;
  left: 0;
  width: var(--base-w);
  height: var(--base-h);
  transform: scale(calc(var(--screen-w) / var(--base-w)), calc(var(--screen-h) / var(--base-h)));
  transform-origin: top left;
  overflow: hidden;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  mask-image: radial-gradient(white, black);
  background: #0d0b0a;
}

.showroom-phone .phone-screen-scaler iframe {
  width: var(--base-w);
  height: var(--base-h);
  border: 0;
  display: block;
  background: #0d0b0a;
}

.models-slide-content {
  padding: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 8px;
}

.models-slide-name {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2.1vw, 1.55rem);
  color: var(--accent);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: .01em;
}

.models-slide-tagline {
  margin: 0;
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.38;
}

.models-slide-btn {
  width: 100%;
  justify-content: center;
  padding: 12px 18px;
  font-size: 0.88rem;
  margin-top: 4px;
  box-shadow: none !important;
}

.models-slide-btn:hover {
  box-shadow: none !important;
  transform: translateY(-1px);
}

/* Setas Pulsantes Showroom */
.models-nav-btn {
  position: absolute;
  top: 34%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1.5px solid var(--border-gold);
  box-shadow: 0 4px 14px rgba(34, 27, 22, 0.10);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 30;
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s ease, border-color 0.2s ease;
}

.models-nav-btn:hover {
  background: var(--accent);
  color: #ffffff;
  border-color: var(--accent);
}

.models-nav-btn--prev {
  left: 6px;
  animation: pulseArrowPrev 2.2s infinite ease-in-out;
}

.models-nav-btn--next {
  right: 6px;
  animation: pulseArrowNext 2.2s infinite ease-in-out;
}

.models-nav-btn.is-hidden {
  opacity: 0 !important;
  pointer-events: none !important;
  transform: translateY(-50%) scale(0.6) !important;
  animation: none !important;
}

@keyframes pulseArrowNext {
  0%, 100% {
    transform: translateY(-50%) translateX(0);
    box-shadow: 0 4px 14px rgba(34, 27, 22, 0.10);
    opacity: 0.85;
  }
  50% {
    transform: translateY(-50%) translateX(5px);
    box-shadow: 0 6px 20px rgba(156, 108, 68, 0.35), 0 0 12px rgba(156, 108, 68, 0.20);
    opacity: 1;
    border-color: var(--accent);
  }
}

@keyframes pulseArrowPrev {
  0%, 100% {
    transform: translateY(-50%) translateX(0);
    box-shadow: 0 4px 14px rgba(34, 27, 22, 0.10);
    opacity: 0.85;
  }
  50% {
    transform: translateY(-50%) translateX(-5px);
    box-shadow: 0 6px 20px rgba(156, 108, 68, 0.35), 0 0 12px rgba(156, 108, 68, 0.20);
    opacity: 1;
    border-color: var(--accent);
  }
}

.models-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 6px;
}

.models-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--border);
  cursor: pointer;
  transition: all 0.25s ease;
  padding: 0;
}

.models-dot.is-active {
  width: 22px;
  border-radius: var(--radius-pill);
  background: var(--accent);
}

/* ── 9. Depoimentos de Lash Designers (Prova Social) ──────────────────── */
.testimonials-section {
  padding: clamp(45px, 6vw, 75px) 0;
  position: relative;
  z-index: 2;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
  margin-top: 36px;
}

.testimonial-card {
  background: linear-gradient(135deg, rgba(26, 20, 16, 0.96), rgba(15, 10, 7, 0.98));
  border: 1.5px solid rgba(212, 175, 120, 0.35);
  border-radius: 24px;
  padding: clamp(22px, 3.5vw, 30px);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.5), 0 0 25px rgba(212, 175, 120, 0.1);
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: #e5bf88;
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #e5bf88;
  box-shadow: 0 4px 12px rgba(212, 175, 120, 0.3);
  flex-shrink: 0;
}

.testimonial-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonial-name {
  font-size: 1.05rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
  line-height: 1.2;
}

.testimonial-role {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
}

.testimonial-verified {
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #25d366;
  margin-top: 1px;
}

.testimonial-stars {
  color: #ffb800;
  font-size: 1.05rem;
  letter-spacing: 2px;
  text-shadow: 0 0 10px rgba(255, 184, 0, 0.4);
}

.testimonial-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.25;
  margin: 0;
}

.testimonial-text {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
  margin: 0;
  font-style: italic;
}

/* ── 10. Passos (Como Funciona) ─────────────────────────────────────────── */
.steps-section {
  padding: clamp(50px, 8vw, 90px) 0;
  background: var(--bg-alt);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.step-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: clamp(24px, 3.5vw, 32px);
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(34, 27, 22, 0.04);
}

.step-bg-number {
  position: absolute;
  right: 14px;
  top: 8px;
  font-family: var(--font-serif);
  font-size: 5.5rem;
  font-weight: 700;
  color: rgba(156, 108, 68, 0.10);
  line-height: 1;
  pointer-events: none;
}

.step-number {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 12px;
}

.step-title {
  font-size: 1.25rem;
  margin-bottom: 8px;
  color: var(--text);
}

.step-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ── 11. Planos & Preços (Pricing) ──────────────────────────────────────── */
.pricing-section {
  padding: clamp(50px, 8vw, 90px) 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 860px;
  margin: 0 auto;
}

.pricing-card {
  border-radius: var(--radius-xl);
  padding: clamp(28px, 4.5vw, 40px);
  display: flex;
  flex-direction: column;
  position: relative;
}

.pricing-card--regular {
  background: #ffffff;
  border: 1px solid var(--border);
  box-shadow: 0 10px 30px rgba(34, 27, 22, 0.04);
}

.pricing-card--featured {
  background: #ffffff;
  border: 2px solid var(--accent);
  box-shadow: 0 20px 50px rgba(156, 108, 68, 0.14), 0 0 25px rgba(156, 108, 68, 0.08);
}

.pricing-card-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #a6744a 0%, #8c5b35 100%);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 12px rgba(156, 108, 68, 0.3);
}

.pricing-tag {
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--accent);
  margin-bottom: 6px;
}

.pricing-title {
  font-size: 1.5rem;
  margin-bottom: 16px;
  color: var(--text);
}

.pricing-price-wrap {
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.pricing-installment {
  font-family: var(--font-serif);
  font-size: 2.1rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.1;
}

.pricing-cash {
  font-size: 0.86rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
  flex-grow: 1;
}

.pricing-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.90rem;
  color: var(--text-muted);
}

.pricing-card--featured .pricing-feature-item {
  color: var(--text);
}

.pricing-feature-check {
  color: var(--accent);
  font-weight: 800;
}

.pricing-cta {
  width: 100%;
}

/* ==========================================================================
   REFORMULAÇÃO TOTAL UI/UX — HERO SINGLE OFFER CARD (LPA)
   ========================================================================== */
.pricing-single-wrapper {
  max-width: 680px;
  margin: 0 auto;
}

.pricing-hero-card {
  background: linear-gradient(135deg, #1a1410 0%, #0f0a07 100%);
  border: 1.5px solid rgba(212, 175, 120, 0.5);
  border-radius: 28px;
  padding: clamp(28px, 5vw, 48px) clamp(20px, 4vw, 40px);
  position: relative;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.6), 0 0 40px rgba(212, 175, 120, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  overflow: hidden;
}

.pricing-hero-card::before {
  content: '';
  position: absolute;
  top: -40%;
  left: -20%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(212, 175, 120, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.pricing-hero-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #0d0906;
  border: 1.5px solid #e5bf88;
  color: #e5bf88;
  font-size: clamp(0.68rem, 1.4vw, 0.78rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 8px 18px;
  border-radius: 100px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  margin-bottom: 4px;
}

.pricing-hero-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.pricing-hero-tag {
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #e5bf88;
}

.pricing-hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
  margin: 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.pricing-hero-title span {
  color: #e5bf88;
}

.pricing-hero-price-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px 24px;
  border-radius: 20px;
  width: 100%;
  margin: 4px 0;
}

.pricing-hero-old-price {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: line-through;
  font-weight: 600;
}

.pricing-hero-installment {
  font-size: clamp(2.2rem, 5vw, 3rem);
  font-weight: 900;
  color: #ffffff;
  line-height: 1.05;
  text-shadow: 0 0 25px rgba(212, 175, 120, 0.5);
}

.pricing-hero-installment span {
  color: #e5bf88;
}

.pricing-hero-cash {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}

.pricing-hero-anchor-box {
  background: rgba(229, 191, 136, 0.08);
  border: 1px dashed rgba(229, 191, 136, 0.4);
  border-radius: 16px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: left;
  width: 100%;
}

.pricing-hero-anchor-box .anchor-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.pricing-hero-anchor-box .anchor-text {
  font-size: 0.9rem;
  line-height: 1.55;
  color: #ffffff !important;
  margin: 0;
}

.pricing-hero-anchor-box .anchor-text strong {
  color: #e5bf88 !important;
  font-weight: 700;
}

/* Lista de Benefícios Perfeitamente Alinhada */
.pricing-features-list {
  list-style: none;
  padding: 0;
  margin: 8px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  text-align: left;
}

.pf-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.92rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
}

.pf-check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c49859 0%, #8c6328 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.78rem;
  font-weight: 900;
  margin-top: 1px;
  box-shadow: 0 3px 10px rgba(196, 152, 89, 0.4);
}

.pf-text {
  flex: 1;
}

.pf-text strong {
  color: #ffffff;
  font-weight: 700;
}

.btn--pricing-hero {
  width: 100%;
  background: linear-gradient(135deg, #c49859 0%, #8c6328 100%);
  color: #ffffff !important;
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  font-weight: 800;
  letter-spacing: 0.03em;
  padding: 18px 28px;
  border-radius: 100px;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  box-shadow: 0 14px 40px rgba(196, 152, 89, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  animation: ctaPrimaryPulse 2.8s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

.btn--pricing-hero:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 18px 50px rgba(196, 152, 89, 0.7);
  background: linear-gradient(135deg, #d4a768 0%, #9e7132 100%);
}

.pricing-hero-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 20px;
  margin-top: 4px;
}

.pricing-hero-trust .trust-pill {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
}

/* ── 12. Garantia ───────────────────────────────────────────────────────── */
.guarantee-section {
  padding: 40px 0;
  text-align: center;
}

.guarantee-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.guarantee-title {
  font-size: 1.4rem;
  margin-bottom: 8px;
  color: var(--text);
}

.guarantee-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── 13. FAQ Accordion ──────────────────────────────────────────────────── */
.faq-section {
  padding: clamp(50px, 8vw, 90px) 0;
  background: var(--bg-alt);
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(34, 27, 22, 0.03);
  transition: border-color 0.25s ease;
}

.faq-item.is-open {
  border-color: var(--border-gold);
}

.faq-question-btn {
  width: 100%;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: transparent;
  border: none;
  color: var(--text);
  font-family: var(--font-main);
  font-size: 0.98rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}

.faq-chevron {
  color: var(--accent);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.is-open .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-item.is-open .faq-answer {
  max-height: 300px;
}

.faq-answer-inner {
  padding: 0 22px 20px;
  font-size: 0.90rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── 14. Sticky Mobile CTA ──────────────────────────────────────────────── */
.sticky-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 20px;
  background: rgba(246, 240, 232, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(156, 108, 68, 0.25);
  box-shadow: 0 -4px 16px rgba(34, 27, 22, 0.08);
  z-index: 99;
}

.sticky-mobile-cta .btn {
  width: 100%;
  padding: 13px 20px;
  font-size: 0.95rem;
}

/* ── 15. Scroll Reveal Helpers ──────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}

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

/* ── 16. Responsividade Mobile ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero-actions, .trust-badges {
    justify-content: center;
  }

  .vs-container {
    grid-template-columns: 1fr;
  }

  .vs-badge {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    margin: -14px auto;
  }

  .features-grid, .steps-grid, .pricing-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .models-carousel-container {
    max-width: 320px;
  }

  .models-slide-card {
    padding: 2px 0 6px;
    gap: 12px;
  }

  .showroom-phone {
    --phone-w: 198px;
    --phone-h: 412px;
    border-radius: 32px;
    padding: 6px;
  }

  .showroom-phone .phone-screen {
    border-radius: 25px;
  }

  .showroom-phone .phone-notch {
    width: 52px;
    height: 10px;
    top: 10px;
  }

  .models-nav-btn {
    width: 36px;
    height: 36px;
    top: 34%;
  }

  .models-nav-btn--prev { left: -4px; }
  .models-nav-btn--next { right: -4px; }

  .models-slide-name { font-size: 1.16rem; }
  .models-slide-tagline { font-size: 0.80rem; margin: 0; }
  .models-slide-btn { padding: 11px 16px; font-size: 0.84rem; }
}

@media (max-width: 768px) {
  .sticky-mobile-cta { display: block; }
  body { padding-bottom: 64px; }
}

@media (max-width: 600px) {
  .container { padding: 0 16px; }
  .section-title { font-size: 1.6rem; }
  .hero-section { padding-top: 40px; padding-bottom: 24px; }
}

/* ==========================================================================
   RESPONSIVIDADE DO MODAL DE DETALHES (EVITAR ROLAGEM NO MOBILE)
   ========================================================================== */
@media (max-width: 480px) {
  /* Ajuste no container do modal */
  .modal-detalhe__sheet,
  .detalhe-procedimento__sheet {
    max-height: 94vh !important;
    overflow-y: auto !important;
  }

  /* Altura compacta da foto de capa */
  .modal__foto-wrap,
  .detalhe-procedimento__foto-wrap {
    height: 190px !important;
  }

  /* Padding interno do corpo */
  .modal__corpo,
  .detalhe-procedimento__corpo {
    padding: 0 24px 20px !important;
    margin-top: -12px !important;
  }

  /* Tamanho de fonte do título */
  .modal__titulo,
  .detalhe-procedimento__titulo {
    font-size: 28px !important;
    margin: 4px 0 8px !important;
  }

  /* Margem inferior da descrição */
  .modal__desc,
  .detalhe-procedimento__desc {
    font-size: 13px !important;
    line-height: 1.5 !important;
    margin-bottom: 12px !important;
  }

  /* Espaçamento mais compacto nas especificações */
  .modal__spec,
  .detalhe-procedimento__spec {
    padding: 6px 0 !important;
  }

  /* Espaçamento das ações */
  .modal__specs,
  .detalhe-procedimento__specs {
    margin-bottom: 16px !important;
  }
}

/* ==========================================================================
   SEÇÃO PERSUASIVA DEDICADA — TEST DRIVE AO VIVO (LPA)
   ========================================================================== */
.testdrive-banner-section {
  padding: clamp(32px, 5vw, 55px) 0;
  position: relative;
  z-index: 5;
}

.testdrive-banner-card {
  background: linear-gradient(135deg, #c49859 0%, #8c6328 100%);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  border-radius: 28px;
  padding: clamp(24px, 4vw, 40px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  box-shadow: 0 20px 60px rgba(196, 152, 89, 0.35), 0 10px 30px rgba(0, 0, 0, 0.25);
  position: relative;
  overflow: hidden;
}

.testdrive-banner-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.testdrive-banner-content {
  flex: 1;
  max-width: 620px;
}

.testdrive-banner-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #0f090c;
  border: 1px solid rgba(212, 175, 120, 0.6);
  padding: 7px 16px;
  border-radius: 100px;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #e5bf88;
  margin-bottom: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: #e5bf88;
  border-radius: 50%;
  box-shadow: 0 0 10px #e5bf88;
  animation: testdrivePulseLPA 1.8s infinite;
}

@keyframes testdrivePulseLPA {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(229, 191, 136, 0.8); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(229, 191, 136, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(229, 191, 136, 0); }
}

.testdrive-banner-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.6rem, 3.2vw, 2.25rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.18;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}

.testdrive-banner-text {
  font-family: 'Jost', system-ui, -apple-system, sans-serif;
  font-size: clamp(0.95rem, 1.6vw, 1.05rem);
  font-weight: 500;
  color: #ffffff;
  line-height: 1.6;
  opacity: 1;
}

.testdrive-banner-action {
  flex-shrink: 0;
}

.btn--testdrive {
  background: linear-gradient(135deg, #FAF6F0 0%, #F3ECE4 100%);
  color: #1a120b !important;
  font-size: clamp(0.88rem, 1.5vw, 0.98rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 16px 32px;
  border-radius: 100px;
  border: 1.5px solid rgba(255, 255, 255, 0.8);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.28), 0 0 20px rgba(255, 255, 255, 0.3);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
}

.btn--testdrive:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.38);
  background: #ffffff;
  color: #c49859 !important;
}

.btn--testdrive .btn-icon {
  font-size: 1.15rem;
}

.btn--testdrive .btn-arrow {
  transition: transform 0.2s ease;
}

.btn--testdrive:hover .btn-arrow {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .testdrive-banner-card {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    padding: 24px 20px;
  }
  .testdrive-banner-badge {
    margin-left: auto;
    margin-right: auto;
  }
  .btn--testdrive {
    width: 100%;
    padding: 15px 20px;
  }
}

/* ==========================================================================
   MODAL DE TEST DRIVE INTERATIVO — PALETA CLARA E SCALER (LPA)
   ========================================================================== */
body.testdrive-open {
  overflow: hidden !important;
}

.testdrive-modal {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.testdrive-modal.is-active {
  opacity: 1;
  visibility: visible;
}

.testdrive-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(22, 14, 11, 0.93);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.testdrive-dialog {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 440px;
  max-height: 92vh;
  height: 92vh;
  background: #FAF6F0;
  border: 1.5px solid rgba(212, 175, 120, 0.45);
  border-radius: 28px;
  padding: 16px 16px 18px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.65);
  transform: scale(0.94) translateY(10px);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.testdrive-modal.is-active .testdrive-dialog {
  transform: scale(1) translateY(0);
}

.testdrive-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
  flex-shrink: 0;
}

.testdrive-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #c49859;
  margin-bottom: 2px;
}

.testdrive-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.22rem;
  font-weight: 700;
  color: #1f1712;
  line-height: 1.2;
}

.testdrive-desc {
  font-size: 0.75rem;
  color: #63554b;
  margin-top: 1px;
}

.testdrive-close-btn {
  background: rgba(30, 20, 25, 0.06);
  border: 1px solid rgba(30, 20, 25, 0.14);
  color: #1f1712;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.testdrive-close-btn:hover {
  background: rgba(212, 175, 120, 0.2);
  border-color: #d4af78;
  color: #b88d4d;
  transform: rotate(90deg);
}

.testdrive-device-frame {
  flex: 1;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2px 0;
  width: 100%;
}

/* Authentic Smartphone 19.5:9 Aspect Ratio Frame - Immersive & Large */
.testdrive-phone {
  position: relative;
  height: 100%;
  max-height: 100%;
  aspect-ratio: 9 / 19.2;
  width: auto;
  background: #0d0b0a;
  border: 4px solid #1f1715;
  border-radius: 36px;
  overflow: hidden;
  clip-path: inset(0 round 32px);
  -webkit-clip-path: inset(0 round 32px);
  box-shadow: 0 20px 50px rgba(40, 20, 30, 0.25);
  margin: 0 auto;
}

.testdrive-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 16px;
  background: #000000;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  z-index: 10;
  pointer-events: none;
}

/* Scaler container to force native 390px resolution */
.testdrive-screen-scaler {
  position: absolute;
  top: 0;
  left: 0;
  width: 390px;
  height: 844px;
  transform-origin: top left;
  border-radius: 34px;
  overflow: hidden;
  clip-path: inset(0 round 34px);
  -webkit-clip-path: inset(0 round 34px);
}

.testdrive-screen-scaler iframe {
  width: 390px !important;
  height: 844px !important;
  border: none;
  background: #0d0b0a;
  border-radius: 34px;
  overflow: hidden;
  clip-path: inset(0 round 34px);
  -webkit-clip-path: inset(0 round 34px);
}

@media (max-width: 480px) {
  .testdrive-modal {
    padding: 12px 10px;
  }
  .testdrive-dialog {
    max-height: 90vh;
    height: 90vh;
    padding: 12px 12px 14px;
    border-radius: 24px;
    margin: auto;
  }
  .testdrive-header {
    margin-bottom: 6px;
  }
  .testdrive-badge {
    font-size: 0.62rem;
    margin-bottom: 2px;
  }
  .testdrive-title {
    font-size: 1.05rem;
    line-height: 1.15;
  }
  .testdrive-desc {
    font-size: 0.72rem;
  }
  .testdrive-device-frame {
    flex: 1;
    min-height: 0;
    padding: 2px 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .testdrive-phone {
    width: auto;
    height: 100%;
    max-height: 100%;
    aspect-ratio: 9 / 19.2;
    border-radius: 34px;
    border: 3.5px solid #1f1715;
  }
}

/* ==========================================================================
   SEÇÃO PERSUASIVA WHATSAPP DE SEGURANÇA & PRÉVIA GRATUITA (LPA)
   ========================================================================== */
.whatsapp-safety-section {
  padding: clamp(35px, 5vw, 65px) 0;
  position: relative;
  z-index: 5;
}

.whatsapp-safety-card {
  background: linear-gradient(135deg, #16120e 0%, #0e0a07 100%);
  border: 1.5px solid rgba(37, 211, 102, 0.45);
  border-radius: 28px;
  padding: clamp(28px, 4vw, 45px);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.6), 0 0 35px rgba(37, 211, 102, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 22px;
  position: relative;
  overflow: hidden;
}

.whatsapp-safety-card::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -15%;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(37, 211, 102, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.whatsapp-safety-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #09140c;
  border: 1px solid rgba(37, 211, 102, 0.55);
  padding: 7px 16px;
  border-radius: 100px;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #25d366;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.pulse-dot-green {
  width: 8px;
  height: 8px;
  background: #25d366;
  border-radius: 50%;
  box-shadow: 0 0 10px #25d366;
  animation: testdrivePulseGreen 1.8s infinite;
}

@keyframes testdrivePulseGreen {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.8); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(37, 211, 102, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.whatsapp-safety-header {
  max-width: 680px;
}

.whatsapp-safety-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.65rem, 3.2vw, 2.35rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.18;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.whatsapp-safety-text {
  font-family: 'Jost', system-ui, -apple-system, sans-serif;
  font-size: clamp(0.95rem, 1.6vw, 1.05rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin: 0 auto;
}

.whatsapp-safety-text strong {
  color: #25d366;
  font-weight: 700;
}

.whatsapp-safety-benefits {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px 24px;
  margin: 6px 0;
}

.ws-benefit-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  color: #f3efe9;
}

.ws-benefit-item .ws-icon {
  font-size: 1rem;
}

.btn-whatsapp-svg {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.btn--whatsapp-safety {
  background: linear-gradient(135deg, #25d366 0%, #1da851 100%);
  color: #ffffff !important;
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  font-weight: 800;
  letter-spacing: 0.03em;
  padding: 18px 36px;
  border-radius: 100px;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.45);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  animation: ctaWhatsappPulse 2.4s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

@keyframes ctaWhatsappPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.65), 0 12px 35px rgba(37, 211, 102, 0.45);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 0 12px rgba(37, 211, 102, 0), 0 16px 45px rgba(37, 211, 102, 0.6);
    transform: scale(1.025);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0), 0 12px 35px rgba(37, 211, 102, 0.45);
    transform: scale(1);
  }
}

/* Animação Pulsante Leve nos Demais Botões Principais da Página */
.btn--primary,
.btn--testdrive {
  animation: ctaGeneralPulse 3s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

@keyframes ctaGeneralPulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
  100% {
    transform: scale(1);
  }
}

.btn--whatsapp-safety:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 16px 45px rgba(37, 211, 102, 0.65);
  background: linear-gradient(135deg, #28e16f 0%, #20b859 100%);
}

.btn--whatsapp-safety .btn-arrow {
  transition: transform 0.2s ease;
}

.btn--whatsapp-safety:hover .btn-arrow {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .whatsapp-safety-card {
    padding: 26px 18px;
    gap: 18px;
  }
  .whatsapp-safety-benefits {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .ws-benefit-item {
    justify-content: center;
  }
  .btn--whatsapp-safety {
    width: 100%;
    padding: 16px 20px;
    font-size: 0.88rem;
  }
}

/* ==========================================================================
   MINI CARDS DE DEPOIMENTO NO MARQUEE SLIDANTE (LPA)
   ========================================================================== */
.marquee-review-card {
  width: 290px;
  flex-shrink: 0;
  background: #ffffff;
  border: 1.5px solid rgba(212, 175, 120, 0.35);
  border-radius: 20px;
  padding: 16px 18px;
  box-shadow: 0 8px 25px rgba(34, 27, 22, 0.06);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.marquee-review-card:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 12px 30px rgba(212, 175, 120, 0.2);
}

.mrc-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mrc-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent);
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(212, 175, 120, 0.25);
}

.mrc-user {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.mrc-name {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1.1;
}

.mrc-stars {
  color: #ffb800;
  font-size: 0.82rem;
  letter-spacing: 1px;
}

.mrc-quote {
  font-size: 0.83rem;
  line-height: 1.45;
  color: var(--text-muted);
  margin: 0;
  font-style: italic;
  font-weight: 500;
}

@media (max-width: 600px) {
  .marquee-review-card {
    width: 250px;
    padding: 14px 15px;
    border-radius: 16px;
  }
  .mrc-avatar {
    width: 34px;
    height: 34px;
  }
  .mrc-name {
    font-size: 0.82rem;
  }
  .mrc-quote {
    font-size: 0.78rem;
  }
}

/* ==========================================================================
   NOVA ESTRUTURA ENXUTA & MOCKUP REAL DO LASHMENU (LPA REFINADO)
   ========================================================================== */

/* Top Bar (Barra em Linha Única) */
.top-announcement-bar {
  background: var(--accent);
  color: #ffffff;
  padding: 8px 0;
  box-shadow: 0 3px 14px rgba(212, 175, 120, 0.22);
}

.announcement-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: nowrap;
  white-space: nowrap;
  line-height: 1.2;
}

.topbar-avatars {
  display: inline-flex;
  align-items: center;
}

.topbar-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid #ffffff;
  margin-left: -7px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.topbar-avatar:first-child {
  margin-left: 0;
}

.topbar-stars {
  color: #fcd34d;
  font-size: 0.76rem;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
}

.announcement-text {
  color: #ffffff;
  letter-spacing: -0.01em;
  font-size: 0.8rem;
  font-weight: 500;
}

.announcement-text strong {
  font-weight: 800;
  color: #ffffff;
}

@media (max-width: 600px) {
  .top-announcement-bar {
    padding: 7px 0;
  }
  .announcement-content {
    gap: 6px;
  }
  .topbar-avatar {
    width: 20px;
    height: 20px;
  }
  .topbar-stars {
    font-size: 0.7rem;
  }
  .announcement-text {
    font-size: 0.72rem;
  }
}

.hero-swipe-hint {
  font-size: 0.83rem;
  font-weight: 700;
  color: var(--accent);
  margin-top: 14px;
}

/* ── MOCKUP DO IPHONE NATIVO DE 390px COM SCALER MATEMÁTICO ── */
.hero-phone-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
  width: 100%;
  margin-top: 15px;
}

.testdrive-phone {
  position: relative;
  width: 245px;
  max-width: 65vw;
  height: 530px;
  background: #110e10;
  border-radius: 36px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  margin: 0 auto;
}

.testdrive-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 75px;
  height: 13px;
  background: #000000;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  z-index: 100;
  pointer-events: none;
}

.testdrive-screen-scaler {
  position: absolute;
  top: 0;
  left: 0;
  width: 390px;
  height: 844px;
  transform-origin: 0 0;
  transform: scale(0.6282);
  border-radius: 36px;
  overflow: hidden;
  background: #f2cad5;
}

.testdrive-screen-scaler iframe {
  width: 390px !important;
  height: 844px !important;
  border: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  display: block;
  background: #f2cad5;
}

@media (min-width: 600px) {
  .testdrive-phone {
    width: 310px;
    height: 671px;
  }
  .testdrive-screen-scaler {
    transform: scale(0.7948);
  }
}

/* ── CONTAINER INTERATIVO & INDICADOR DE DESLIZE (TAG + MÃOZINHA + SETA) ── */
.phone-interactive-container {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

/* ── INDICADOR DINÂMICO DE CUSTOMIZAÇÃO E INTERAÇÃO (LADO ESQUERDO DO MOCKUP) ── */
.phone-left-indicator {
  position: absolute;
  top: 50%;
  left: -94px;
  transform: translateY(-50%);
  z-index: 120;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 1;
}

.phone-left-indicator.is-hidden {
  opacity: 0;
  transform: translateY(-50%) scale(0.85);
  pointer-events: none;
}

.left-cue-tag {
  font-family: var(--font-main);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #c84b72;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 3.5px 10px;
  border-radius: 999px;
  border: 1px solid rgba(200, 75, 114, 0.35);
  box-shadow: 0 4px 14px rgba(200, 75, 114, 0.2);
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  animation: tagSoftPulse 2.4s infinite ease-in-out;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.left-cursor-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pointerPointRight 1.8s infinite ease-in-out;
}

.left-arrow-icon {
  filter: drop-shadow(0 2px 8px rgba(200, 75, 114, 0.35));
}

.left-tap-icon {
  filter: drop-shadow(0 4px 12px rgba(200, 75, 114, 0.38));
}

@keyframes pointerPointRight {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(7px);
  }
}

.phone-scroll-indicator {
  position: absolute;
  top: 50%;
  right: -52px;
  transform: translateY(-50%);
  z-index: 120;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.scroll-cue-tag {
  font-family: var(--font-main);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #c84b72;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 3px 8px;
  border-radius: 999px;
  border: 1px solid rgba(200, 75, 114, 0.35);
  box-shadow: 0 4px 12px rgba(200, 75, 114, 0.18);
  line-height: 1;
  text-transform: uppercase;
  animation: tagSoftPulse 2.4s infinite ease-in-out;
}

.scroll-cursor-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  animation: pointerSwipeDown 2.4s infinite cubic-bezier(0.45, 0, 0.25, 1);
}

.touch-pointer-hand-svg {
  filter: drop-shadow(0 4px 10px rgba(200, 75, 114, 0.35));
}

.scroll-cue-arrow-svg {
  filter: drop-shadow(0 2px 6px rgba(200, 75, 114, 0.3));
  animation: arrowBounce 1.2s infinite ease-in-out;
}

@keyframes pointerSwipeDown {
  0% {
    transform: translateY(-12px);
    opacity: 0.2;
  }
  20% {
    opacity: 1;
  }
  75% {
    transform: translateY(18px);
    opacity: 1;
  }
  100% {
    transform: translateY(24px);
    opacity: 0.15;
  }
}

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

@keyframes tagSoftPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 4px 12px rgba(200, 75, 114, 0.18);
  }
  50% {
    transform: scale(1.04);
    box-shadow: 0 6px 16px rgba(200, 75, 114, 0.3);
  }
}

@media (max-width: 480px) {
  .phone-left-indicator {
    left: -72px;
  }
  .left-cue-tag {
    font-size: 0.58rem;
    padding: 2.5px 7px;
  }
  .left-arrow-icon {
    width: 20px;
    height: 20px;
  }
  .left-tap-icon {
    width: 24px;
    height: 24px;
  }
  .phone-scroll-indicator {
    right: -44px;
  }
  .scroll-cue-tag {
    font-size: 0.60rem;
    padding: 2.5px 6.5px;
  }
  .touch-pointer-hand-svg {
    width: 28px;
    height: 28px;
  }
  .scroll-cue-arrow-svg {
    width: 14px;
    height: 14px;
  }
}

/* Seção Comparativa Refinada (Sem Emojis Duplicados) */
.comparison-section {
  padding: 60px 0;
  background: #ffffff;
}

.vs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 36px;
}

@media (max-width: 768px) {
  .vs-grid {
    grid-template-columns: 1fr;
  }
}

.vs-box {
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.03);
}

.vs-box--bad {
  background: #fef2f2;
  border: 1.5px solid #fecaca;
}

.vs-box--good {
  background: #f0fdf4;
  border: 1.5px solid #bbf7d0;
}

.vs-box-head {
  margin-bottom: 20px;
}

.vs-box--bad .vs-box-head h3 {
  color: #dc2626;
  font-size: 1.2rem;
  font-weight: 800;
  margin: 0;
}

.vs-box--good .vs-box-head h3 {
  color: #16a34a;
  font-size: 1.2rem;
  font-weight: 800;
  margin: 0;
}

.vs-bullet-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.vs-bullet-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  line-height: 1.45;
  color: var(--text);
}

.vs-svg-bad {
  color: #dc2626;
  flex-shrink: 0;
  margin-top: 2px;
}

.vs-svg-good {
  color: #16a34a;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── 4. SEÇÃO DE OFERTA COM BACKGROUND ROSA VIBRANTE DA PALETA ── */
.pricing-section {
  background: linear-gradient(145deg, #c84b72 0%, #b03a60 100%);
  padding: clamp(50px, 7vw, 80px) 0;
  position: relative;
  overflow: hidden;
}

.pricing-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 600px;
  height: 250px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.20) 0%, transparent 70%);
  pointer-events: none;
}

/* Card de Preço Limpo & Compacto */
.pricing-clean-card {
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.60);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 36px) clamp(18px, 3.5vw, 28px);
  box-shadow: 0 20px 50px rgba(120, 25, 55, 0.28);
  text-align: center;
  position: relative;
  z-index: 2;
}

.pricing-badge {
  display: inline-block;
  background: var(--accent-light);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 10px;
}

.pricing-card-title {
  font-size: 1.55rem;
  line-height: 1.2;
  margin-bottom: 6px;
}

.pricing-card-title span {
  color: var(--accent);
}

.pricing-card-sub {
  font-size: 0.84rem;
  color: var(--text-muted);
  margin-bottom: 14px;
  line-height: 1.35;
}

/* Cápsula de Preço VIP Berry (Contraste Máximo com o Botão) */
.pricing-price-box {
  background: linear-gradient(135deg, #c84b72 0%, #b03a60 100%);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 20px;
  padding: 16px 14px 15px;
  margin: 14px auto 16px;
  max-width: 330px;
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(200, 75, 114, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.35);
  text-align: center;
}

.price-discount-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.22);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.40);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 6px;
  backdrop-filter: blur(4px);
}

.price-anchor-row {
  margin-bottom: 2px;
}

.price-old {
  font-size: 0.84rem;
  font-weight: 500;
  text-decoration: line-through;
  color: rgba(255, 255, 255, 0.75);
}

.price-main {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin: 2px 0 4px;
}

.price-installment {
  font-size: 1.15rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.90);
}

.price-currency {
  font-size: 1.2rem;
  font-weight: 800;
  color: #ffffff;
}

.price-val {
  font-size: 2.85rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
}

.price-cash-row {
  margin-top: 4px;
}

.price-cash {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.90);
}

.price-cash strong {
  color: #ffffff;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.18);
  padding: 2px 6px;
  border-radius: 6px;
}

.pricing-reframe-pill {
  background: #fffbeb;
  border: 1px solid #fef08a;
  color: #854d0e;
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 16px;
  line-height: 1.35;
}

.pricing-bullets-short {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  text-align: left;
  margin: 0 auto 20px;
  max-width: 325px;
}

.pricing-bullets-short li {
  font-size: 0.88rem;
  font-weight: 700;
  color: #1a0f13;
  display: flex;
  align-items: center;
  gap: 9px;
  line-height: 1.3;
}

.p-check-svg {
  color: #16a34a;
  flex-shrink: 0;
}

.whatsapp-safety-box {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.whatsapp-safety-box p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

.btn-wa-safety {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: #ffffff !important;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.88rem;
  padding: 12px 22px;
  border-radius: 100px;
  animation: waSlowPulse 2.8s infinite ease-in-out;
  transition: transform 0.2s ease;
}

.btn-wa-safety::after {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-25deg);
  animation: shimmerSweep 3.6s infinite ease-in-out 1.2s;
  pointer-events: none;
}

.btn-wa-safety:hover {
  transform: translateY(-2px);
}

/* Pulsação e Feixe de Luz nos Botões Principais de CTA */
.btn--pulsing,
.btn--primary {
  position: relative;
  overflow: hidden;
  animation: slowCtaPulse 3s infinite ease-in-out;
}

.btn--pulsing::after,
.btn--primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-25deg);
  animation: shimmerSweep 3.6s infinite ease-in-out;
  pointer-events: none;
}

@keyframes slowCtaPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 8px 24px rgba(200, 75, 114, 0.35);
  }
  50% {
    transform: scale(1.025);
    box-shadow: 0 12px 34px rgba(200, 75, 114, 0.55), 0 0 15px rgba(200, 75, 114, 0.3);
  }
}

@keyframes waSlowPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.32);
  }
  50% {
    transform: scale(1.03);
    box-shadow: 0 10px 28px rgba(37, 211, 102, 0.55), 0 0 12px rgba(37, 211, 102, 0.3);
  }
}

@keyframes shimmerSweep {
  0%, 45% {
    left: -120%;
  }
  75%, 100% {
    left: 200%;
  }
}

/* ── RODAPÉ OFICIAL (ESTRUTURA DE RODAPÉ ELEGANTE E INTEGRADA) ── */
.site-footer {
  background: #fbf0f3;
  border-top: 1px solid rgba(200, 75, 114, 0.15);
  padding: 24px 20px 28px;
  margin: 0;
  color: #553d46;
  text-align: center;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.footer-logo {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #24141a;
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.footer-logo em {
  font-style: italic;
  color: var(--accent);
}

.footer-tagline {
  font-size: 0.80rem;
  color: #7a5c67;
  letter-spacing: 0.02em;
  font-weight: 500;
  margin: 0;
  line-height: 1.3;
}

.footer-copy {
  font-size: 0.72rem;
  color: #9e7f8a;
  margin-top: 6px;
  letter-spacing: 0.02em;
}

/* ==========================================================================
   PRICING 2-TIER GRID SYSTEM (SOFT LUXURY ROSE & WHITE PALETTE)
   ========================================================================== */
.pricing-header-title {
  margin-bottom: 32px;
  text-align: center;
}

.pricing-header-title .section-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 6px;
}

.pricing-header-title .section-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  font-weight: 400;
}

.pricing-tier-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}

@media (max-width: 768px) {
  .pricing-tier-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}

.pricing-tier-card {
  background: #ffffff;
  border: 1px solid rgba(200, 75, 114, 0.2);
  border-radius: 24px;
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
  color: #1a1412;
}

.pricing-tier-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.18);
}

.pricing-tier-card--vip {
  background: #ffffff;
  border: 2.5px solid #c84b72;
  box-shadow: 0 16px 50px rgba(200, 75, 114, 0.28);
}

.tier-badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.tier-badge--basic {
  background: #fdf2f5;
  color: #c84b72;
  border: 1px solid rgba(200, 75, 114, 0.25);
}

.tier-badge--vip {
  background: linear-gradient(135deg, #c84b72 0%, #a82b54 100%);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(200, 75, 114, 0.3);
}

.tier-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.85rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: #1a1412;
}

.tier-desc {
  font-size: 0.88rem;
  color: #665a5e;
  line-height: 1.48;
  margin-bottom: 20px;
  min-height: 48px;
}

.tier-price-box {
  background: linear-gradient(135deg, #fff0f3 0%, #fce4eb 100%);
  border-radius: 18px;
  padding: 18px 16px;
  text-align: center;
  margin-bottom: 22px;
  border: 1.5px solid rgba(200, 75, 114, 0.35);
  box-shadow: 0 4px 16px rgba(200, 75, 114, 0.08);
  color: #1a1412;
}

.pricing-tier-card--vip .tier-price-box {
  background: linear-gradient(135deg, #c84b72 0%, #b03a60 100%);
  color: #ffffff;
  border: none;
  box-shadow: 0 8px 24px rgba(200, 75, 114, 0.35);
}

.tier-price-old {
  font-size: 0.82rem;
  color: #8c5a68;
  text-decoration: line-through;
  margin-bottom: 2px;
  font-weight: 500;
}

.pricing-tier-card--vip .tier-price-old {
  color: rgba(255, 255, 255, 0.8);
}

.tier-price-main {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  color: #c84b72;
  line-height: 1;
}

.pricing-tier-card--vip .tier-price-main {
  color: #ffffff;
}

.tier-currency {
  font-size: 1.2rem;
  font-weight: 800;
}

.tier-val {
  font-size: 3rem;
  font-weight: 900;
}

.tier-cents {
  font-size: 1.2rem;
  font-weight: 700;
}

.tier-price-sub {
  font-size: 0.78rem;
  color: #6e4652;
  margin-top: 6px;
  font-weight: 600;
}

.pricing-tier-card--vip .tier-price-sub {
  color: rgba(255, 255, 255, 0.9);
}

.tier-bullets {
  list-style: none;
  margin-bottom: 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-grow: 1;
}

.tier-bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: #383033;
  line-height: 1.35;
}

.tier-bullets li svg {
  color: #c84b72;
  flex-shrink: 0;
}

/* Floating Sticky WhatsApp Button for Mobile Conversions */
.sticky-wa-bar {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  width: calc(100% - 32px);
  max-width: 440px;
}

.sticky-wa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #ffffff !important;
  font-weight: 800;
  font-size: 0.9rem;
  padding: 14px 20px;
  border-radius: 100px;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45);
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.3);
  animation: pulseButton 3s ease-in-out infinite;
}
