/* ==========================================================================
   LASHMENU — DESIGN SYSTEM & ESTILO PREMIUM (MOBILE-FIRST & RESPONSIVO)
   Inspirado no design system de alto impacto do LashAgenda
   ========================================================================== */

:root {
  --bg: #faf8f5;
  --bg-subtle: #f4f0ea;
  --card: #ffffff;
  --border: #ede9e3;
  --border-dark: #ddd5cc;
  --accent: #c84b72;
  --accent-light: #fbedf2;
  --accent-dark: #a33a5c;
  --accent-glow: rgba(200, 75, 114, 0.28);
  --text: #1a1220;
  --muted: #7a6b78;
  --faint: #a89aa6;
  
  --font-main: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --radius-pill: 999px;
  
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.08);
  --shadow-accent: 0 10px 32px rgba(200, 75, 114, 0.32);
}

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

html, body {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  position: relative;
  margin: 0;
  padding: 0;
}

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;
}

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

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

.blob--top-right {
  top: -80px;
  right: -80px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(200, 75, 114, 0.12) 0%, transparent 70%);
}

.blob--bottom-left {
  bottom: -80px;
  left: -80px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(200, 75, 114, 0.08) 0%, transparent 70%);
}

/* Containers & Layout */
.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;
}

/* Typography Helpers */
h1, h2, h3, h4 {
  color: var(--text);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.03em;
  word-break: break-word;
}

.text-accent {
  color: var(--accent);
}

.text-gradient {
  background: linear-gradient(135deg, var(--accent), #e88faa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Badge / Pill */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--accent-light);
  border: 1px solid rgba(200, 75, 114, 0.25);
  border-radius: var(--radius-pill);
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 18px;
  max-width: 100%;
  white-space: normal;
  text-align: left;
}

/* Section Kickers & Titles */
.section-header {
  text-align: center;
  margin-bottom: 36px;
}

.section-kicker {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(1.4rem, 4.2vw, 2.5rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
  line-height: 1.2;
  text-wrap: balance;
}

.section-subtitle {
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: var(--radius-md);
  font-family: var(--font-main);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.25s var(--ease);
  text-align: center;
}

.btn--primary {
  background: var(--accent);
  color: #ffffff;
  box-shadow: var(--shadow-accent);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(200, 75, 114, 0.45);
}

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

.btn--white {
  background: #ffffff;
  color: var(--accent);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.btn--white:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.2);
}

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

.btn--outline:hover {
  background: var(--accent-light);
}

.btn--sm {
  padding: 7px 15px;
  font-size: 0.78rem;
  border-radius: var(--radius-pill);
}

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

@keyframes pulseButton {
  0%, 100% {
    box-shadow: 0 6px 24px rgba(200, 75, 114, 0.35);
  }
  50% {
    box-shadow: 0 10px 34px rgba(200, 75, 114, 0.6);
  }
}

.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;
}

/* ==========================================================================
   TOP ANNOUNCEMENT BAR (PROVA SOCIAL NA BARRA ROSA)
   ========================================================================== */
.top-announcement-bar {
  background: var(--accent); /* Rosa escuro / Berry #c04b6b */
  color: #ffffff;
  padding: 11px 0;
  font-size: 0.82rem;
  text-align: center;
  position: relative;
  z-index: 20;
  box-shadow: 0 3px 14px rgba(192, 75, 107, 0.22);
}

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

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

.topbar-avatar {
  width: 25px;
  height: 25px;
  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; /* Dourado/amarelo radiante */
  font-size: 0.78rem;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
}

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

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

@media (max-width: 600px) {
  .top-announcement-bar {
    padding: 9px 0;
    font-size: 0.75rem;
  }
  .announcement-content {
    gap: 8px;
  }
  .topbar-avatar {
    width: 22px;
    height: 22px;
  }
  .announcement-text {
    font-size: 0.74rem;
  }
}

/* ==========================================================================
   HERO BRAND TYPOGRAPHY (H1 LASHMENU + H2 HEADLINE)
   ========================================================================== */

.hero-brand-block {
  margin-bottom: 20px;
  text-align: left;
}

.hero-brand-h1 {
  font-family: var(--font-main);
  font-size: clamp(2.6rem, 5.8vw, 3.8rem);
  font-weight: 800;
  color: #34222c; /* Tom sofisticado vinho/grafite suave, sem a dureza do preto */
  letter-spacing: -0.035em;
  line-height: 1;
  margin: 0 0 6px;
  display: inline-flex;
  align-items: baseline;
}

.hero-brand-h1 em {
  font-style: italic;
  font-weight: 800;
  color: var(--accent);
  margin-left: 1px;
}

.hero-brand-tagline {
  font-family: var(--font-main);
  font-size: clamp(0.74rem, 1.4vw, 0.85rem);
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0;
}

/* ==========================================================================
   HERO ENTRANCE ANIMATIONS (ANIMAÇÃO EM CASCATA SUAVE NO CARREGAMENTO)
   ========================================================================== */
.hero-animate-1 {
  animation: heroFadeUp 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.12s both;
}

.hero-animate-2 {
  animation: heroFadeUp 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.28s both;
}

.hero-animate-3 {
  animation: heroFadeUp 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.44s both;
}

.hero-animate-4 {
  animation: heroFadeUp 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.60s both;
}

.hero-animate-5 {
  animation: heroFadeUp 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.76s both;
}

.hero-animate-mockup {
  animation: heroFadeScale 1.05s cubic-bezier(0.16, 1, 0.3, 1) 0.35s both;
}

@keyframes heroFadeUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroFadeScale {
  0% {
    opacity: 0;
    transform: scale(0.93) translateY(26px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  padding: clamp(26px, 3.8vw, 44px) 0 38px;
  min-height: auto;
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: center;
}

.hero-content {
  text-align: left;
}

.hero-title {
  font-size: clamp(1.6rem, 3.6vw, 2.5rem);
  font-weight: 900;
  line-height: 1.16;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.hero-subtitle {
  font-size: 0.98rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 24px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

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

/* Hero Mockup Frame & Live Screen */
.hero-mockup-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.phone-mockup {
  --phone-w: 256px;
  --phone-h: 546px;
  --screen-w: calc(var(--phone-w) - 18px); /* 238px */
  --screen-h: calc(var(--phone-h) - 18px); /* 528px */
  --base-w: 390px;
  --base-h: 866px;

  width: var(--phone-w);
  height: var(--phone-h);
  background: #110e10;
  border-radius: 38px;
  padding: 9px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24), 0 0 0 1px rgba(255, 255, 255, 0.1);
  position: relative;
  margin: 0 auto;
  flex-shrink: 0;
}

.phone-notch {
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  width: 72px;
  height: 13px;
  background: #110e10;
  border-radius: 8px;
  z-index: 30;
  pointer-events: none;
}

.phone-screen {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background: #0d0b0a;
  width: var(--screen-w);
  height: var(--screen-h);
  pointer-events: none;
  user-select: none;
}

.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;
}

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

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

.dot-pulse {
  width: 7px;
  height: 7px;
  background: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 0 2.5px rgba(16, 185, 129, 0.3);
}

/* ==========================================================================
   MARQUEE RIBBON (CARDS BRANCOS DE ALTO CONTRASTE NO FUNDO ROSA ESCURO)
   ========================================================================== */
.marquee-ribbon-section {
  background: var(--accent); /* Rosa escuro / Berry #c04b6b */
  color: #ffffff;
  padding: clamp(34px, 4.8vw, 50px) 0;
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 30px rgba(192, 75, 107, 0.28);
  z-index: 5;
}

.marquee-ribbon-wrap {
  width: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
  mask-image: linear-gradient(to right, transparent, black 3%, black 97%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 3%, black 97%, transparent);
}

.marquee-ribbon-track {
  display: flex;
  align-items: stretch;
  gap: 22px;
  width: max-content;
  animation: ribbonMarquee 34s linear infinite;
  will-change: transform;
  padding: 8px 0;
}

.marquee-ribbon-track:hover {
  animation-play-state: paused;
}

/* Card Branco Perolado de Alto Contraste */
.marquee-pillar-card {
  width: 265px;
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.9);
  padding: 24px 22px;
  border-radius: 22px;
  color: var(--text);
  display: flex;
  flex-direction: column;
  text-align: left;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.14), 0 2px 6px rgba(0, 0, 0, 0.04);
  flex-shrink: 0;
  white-space: normal;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  position: relative;
}

.marquee-pillar-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.18);
}

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

.mpc-badge {
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: #fdf2f4;
  color: var(--accent);
  padding: 3px 9px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(192, 75, 107, 0.15);
}

.mpc-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #c04b6b 0%, #a13451 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(192, 75, 107, 0.3);
  flex-shrink: 0;
}

.mpc-title {
  font-size: 1.08rem;
  font-weight: 800;
  color: #1a1216;
  margin: 0 0 6px;
  letter-spacing: -0.015em;
  line-height: 1.25;
}

.mpc-desc {
  font-size: 0.86rem;
  color: #584a51;
  line-height: 1.5;
  margin: 0;
  font-weight: 400;
}

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

@media (max-width: 600px) {
  .marquee-ribbon-section {
    padding: 26px 0;
  }
  
  .marquee-ribbon-track {
    gap: 14px;
    animation-duration: 25s;
  }

  .marquee-pillar-card {
    width: 228px;
    padding: 18px 16px;
    border-radius: 18px;
  }
  
  .mpc-icon {
    width: 34px;
    height: 34px;
  }

  .mpc-icon svg {
    width: 17px;
    height: 17px;
  }

  .mpc-title {
    font-size: 0.98rem;
  }
  
  .mpc-desc {
    font-size: 0.80rem;
  }
}

/* ==========================================================================
   COMPARATIVO "VS"
   ========================================================================== */
.vs-section {
  background: var(--bg-subtle);
  padding: clamp(48px, 7vw, 75px) 0;
  position: relative;
  z-index: 1;
}

.vs-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  position: relative;
}

.vs-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #e88faa);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 900;
  font-size: 0.85rem;
  box-shadow: 0 8px 24px rgba(200, 75, 114, 0.45);
  border: 3.5px solid var(--bg-subtle);
  z-index: 10;
}

.vs-card {
  border-radius: var(--radius-md);
  padding: 26px 20px;
  position: relative;
}

.vs-card--bad {
  background: #fff3f3;
  border: 1px solid #ffd5d5;
}

.vs-card--good {
  background: var(--accent-light);
  border: 2px solid var(--accent);
  box-shadow: var(--shadow-sm);
}

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

.vs-icon-badge {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.vs-card--bad .vs-icon-badge {
  background: #fee2e2;
  color: #dc2626;
}

.vs-card--good .vs-icon-badge {
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(200, 75, 114, 0.35);
}

.vs-card-title {
  font-size: 1.05rem;
  font-weight: 800;
}

.vs-card--bad .vs-card-title {
  color: #b91c1c;
}

.vs-card--good .vs-card-title {
  color: var(--accent-dark);
}

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

.vs-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  line-height: 1.45;
}

.vs-card--bad .vs-item {
  color: #881e1e;
}

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

.vs-item-icon {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  font-size: 0.78rem;
  font-weight: 800;
}

.vs-item-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
}

.vs-link-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ffffff;
  border: 1px solid rgba(192, 75, 107, 0.3);
  color: var(--accent);
  font-family: var(--font-main);
  font-size: 0.80rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.vs-link-pill svg {
  color: var(--accent);
}

.vs-card--bad .vs-item-icon {
  background: #fee2e2;
  color: #dc2626;
}

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

/* ==========================================================================
   FEATURES / PILARES
   ========================================================================== */
.features-section {
  background: var(--accent);
  color: #ffffff;
  padding: clamp(48px, 7vw, 75px) 0;
  position: relative;
  z-index: 1;
}

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

.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  box-shadow: var(--shadow-sm);
  color: var(--text);
}

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

.feature-title {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 6px;
}

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

/* ==========================================================================
   ESTILOS DISPONÍVEIS
   ========================================================================== */
.styles-section {
  padding: clamp(48px, 7vw, 75px) 0;
  position: relative;
  z-index: 1;
}

.demo-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.style-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.style-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: #1a1220;
  display: block;
}

.style-card-body {
  padding: 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.style-card-tag {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--accent);
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}

.style-card-title {
  font-size: 1.08rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.style-card-desc {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 14px;
  line-height: 1.5;
  flex: 1;
}

.style-card-link {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ==========================================================================
   SEÇÃO DE DEPOIMENTOS DE LASH DESIGNERS (PROVA SOCIAL DE ALTO IMPACTO)
   ========================================================================== */
.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(28, 18, 23, 0.96), rgba(16, 10, 13, 0.98));
  border: 1.5px solid rgba(230, 80, 115, 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(230, 80, 115, 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: #ff4d73;
}

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

.testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #e65073;
  box-shadow: 0 4px 12px rgba(230, 80, 115, 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: 'Cormorant Garamond', 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: 'Jost', 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;
}

/* ==========================================================================
   COMO FUNCIONA (3 PASSOS)
   ========================================================================== */
.steps-section {
  background: var(--bg-subtle);
  padding: clamp(48px, 7vw, 75px) 0;
  position: relative;
  z-index: 1;
}

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

.step-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 26px 20px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.step-bg-number {
  position: absolute;
  top: 6px;
  right: 12px;
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(200, 75, 114, 0.07);
  line-height: 1;
  user-select: none;
}

.step-number {
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--accent);
  margin-bottom: 10px;
  line-height: 1;
}

.step-title {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 8px;
}

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

/* ==========================================================================
   PACOTES / PRICING
   ========================================================================== */
.pricing-section {
  padding: clamp(48px, 7vw, 75px) 0;
  position: relative;
  z-index: 1;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  max-width: 800px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 22px;
  position: relative;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.pricing-card--featured {
  border: 2px solid var(--accent);
  box-shadow: 0 10px 36px rgba(200, 75, 114, 0.16);
}

.pricing-card-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(200, 75, 114, 0.35);
}

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

.pricing-card--regular .pricing-tag {
  color: var(--muted);
}

.pricing-title {
  font-size: 1.25rem;
  font-weight: 900;
  margin-bottom: 14px;
}

.pricing-price-wrap {
  margin-bottom: 18px;
}

.pricing-installment {
  font-size: 1.65rem;
  font-weight: 900;
  color: var(--text);
  line-height: 1.1;
}

.pricing-card--featured .pricing-installment {
  color: var(--accent);
}

.pricing-cash {
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 600;
  margin-top: 3px;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  padding: 18px 0;
  border-top: 1px solid var(--border);
  margin-bottom: 22px;
  flex: 1;
}

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

.pricing-feature-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.72rem;
  font-weight: 800;
}

.pricing-card--featured .pricing-feature-check {
  background: var(--accent);
  color: #ffffff;
}

.pricing-card--regular .pricing-feature-check {
  background: var(--accent-light);
  color: var(--accent);
}

.pricing-cta {
  width: 100%;
}

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

.pricing-hero-card {
  background: linear-gradient(135deg, #1c1216 0%, #100a0d 100%);
  border: 1.5px solid rgba(230, 80, 115, 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(230, 80, 115, 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(230, 80, 115, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.pricing-hero-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #0f080b;
  border: 1.5px solid #ff4d73;
  color: #ff4d73;
  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: #ff4d73;
}

.pricing-hero-title {
  font-family: 'Cormorant Garamond', 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: #ff4d73;
}

.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(230, 80, 115, 0.5);
}

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

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

.pricing-hero-anchor-box {
  background: rgba(255, 77, 115, 0.08);
  border: 1px dashed rgba(255, 77, 115, 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: #ff4d73 !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, #e65073 0%, #c93b5d 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(230, 80, 115, 0.4);
}

.pf-text {
  flex: 1;
}

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

.btn--pricing-hero {
  width: 100%;
  background: linear-gradient(135deg, #e65073 0%, #c93b5d 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(230, 80, 115, 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(230, 80, 115, 0.7);
  background: linear-gradient(135deg, #ff5980 0%, #d84266 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;
}

/* ==========================================================================
   GARANTIA
   ========================================================================== */
.guarantee-section {
  background: var(--bg-subtle);
  padding: clamp(36px, 5vw, 50px) 0;
  text-align: center;
  position: relative;
  z-index: 1;
}

.guarantee-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  color: #10b981;
}

.guarantee-title {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.guarantee-desc {
  font-size: 0.88rem;
  color: var(--muted);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-section {
  background: var(--accent);
  color: #ffffff;
  padding: clamp(48px, 7vw, 75px) 0;
  position: relative;
  z-index: 1;
}

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

.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

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

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

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

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

.faq-answer-inner {
  padding: 0 18px 16px;
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.65;
}

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



/* ==========================================================================
   STICKY MOBILE CTA
   ========================================================================== */
.sticky-mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 16px;
  padding-bottom: max(10px, env(safe-area-inset-bottom));
  background: rgba(250, 248, 245, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--border);
  z-index: 99;
  display: none;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
}

.sticky-mobile-cta .btn {
  width: 100%;
  padding: 12px 18px;
}

/* ==========================================================================
   SCROLL REVEAL ANIMATIONS
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}

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

/* ==========================================================================
   RESPONSIVIDADE (TABLETS E CELULARES)
   ========================================================================== */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: left;
    gap: 32px;
  }
  
  .hero-content {
    text-align: left;
  }
  
  .hero-subtitle {
    margin-left: 0;
    margin-right: 0;
  }
  
  .hero-actions {
    justify-content: flex-start;
  }
  
  .trust-badges {
    justify-content: flex-start;
  }
  
  .vs-container {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .vs-badge {
    display: none;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .demo-showcase {
    grid-template-columns: 1fr;
  }
  
  .steps-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}

/* ==========================================================================
   COMPARAÇÃO DAS 3 OPÇÕES DE APRESENTAÇÃO DE MODELOS & CORES
   ========================================================================== */

.section-option-showcase {
  padding: clamp(50px, 6.5vw, 84px) 0;
  position: relative;
}

.section-option-showcase--opt1 {
  background: var(--bg);
  border-bottom: 2px dashed rgba(192, 75, 107, 0.18);
}

.section-option-showcase--opt2 {
  background: var(--surface);
  border-bottom: 2px dashed rgba(192, 75, 107, 0.18);
}

/* ==========================================================================
   5. SHOWROOM DE MODELOS AO VIVO (CARROSSEL INTERATIVO + SELETOR DE CORES)
   ========================================================================== */

.models-showroom-section {
  padding: clamp(36px, 5.5vw, 64px) 0;
  background: var(--bg);
  position: relative;
}

.models-header-compact {
  text-align: center;
  margin-bottom: clamp(16px, 2.5vw, 24px);
}

.models-header-compact .section-title {
  margin-bottom: 10px;
}

.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);
}

/* ── Seletor Global de Cores Compacto ───────────────────────────────────── */
.models-palette-switch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 4px;
}

.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: rgba(192, 75, 107, 0.09);
  color: var(--accent);
  font-weight: 700;
}

/* ── Carrossel e Card Compacto ──────────────────────────────────────────── */
/* ── Carrossel e Conteúdo Flutuante 100% Sem Bordas ou Caixas ──────────── */
.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%;
}

/* ── Celular Flutuante com Clipping Perfeito e Sombra 3D ────────────────── */
.showroom-phone {
  --phone-w: 206px;
  --phone-h: 428px;
  --screen-w: calc(var(--phone-w) - 12px); /* 194px */
  --screen-h: calc(var(--phone-h) - 12px); /* 416px */
  --base-w: 390px;
  --base-h: 834px;

  width: var(--phone-w);
  height: var(--phone-h);
  background: #141012;
  border-radius: 34px;
  padding: 6px;
  box-shadow: 
    0 24px 48px -6px rgba(0, 0, 0, 0.40),
    0 8px 18px -4px rgba(0, 0, 0, 0.22),
    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: #141012;
  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;
}

/* ── Conteúdo do Slide ─────────────────────────────────────────────────── */
.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);
}

/* ── Navegação com Setas Pulsantes & Dots ───────────────────────────────── */
.models-nav-btn {
  position: absolute;
  top: 34%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1.5px solid rgba(192, 75, 107, 0.35);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  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(0, 0, 0, 0.12);
    opacity: 0.82;
  }
  50% {
    transform: translateY(-50%) translateX(5px);
    box-shadow: 0 6px 20px rgba(192, 75, 107, 0.35), 0 0 12px rgba(192, 75, 107, 0.25);
    opacity: 1;
    border-color: var(--accent);
  }
}

@keyframes pulseArrowPrev {
  0%, 100% {
    transform: translateY(-50%) translateX(0);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
    opacity: 0.82;
  }
  50% {
    transform: translateY(-50%) translateX(-5px);
    box-shadow: 0 6px 20px rgba(192, 75, 107, 0.35), 0 0 12px rgba(192, 75, 107, 0.25);
    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);
}

/* ── RESPONSIVIDADE MOBILE (CELULAR FLUTUANTE AMPLIADO) ──────────────────── */
@media (max-width: 680px) {
  .models-carousel-container {
    max-width: 320px;
  }

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

  .models-slide-preview {
    padding: 0;
  }

  .showroom-phone {
    --phone-w: 198px;
    --phone-h: 412px;
    border-radius: 32px;
    padding: 6px;
    box-shadow: 
      0 20px 42px -6px rgba(0, 0, 0, 0.38),
      0 6px 14px -3px rgba(0, 0, 0, 0.20),
      0 0 0 1.5px rgba(255, 255, 255, 0.12);
  }

  .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-content {
    gap: 8px;
  }

  .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.48rem;
    line-height: 1.25;
  }
  
  .hero-section {
    padding-top: 50px;
    padding-bottom: 24px;
  }
  
  .hero-title {
    font-size: 1.85rem;
  }
  
  .hero-actions .btn {
    width: 100%;
  }
  
  .phone-mockup {
    --phone-w: 240px;
    --phone-h: 508px;
  }
}

/* ==========================================================================
   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 (LPB)
   ========================================================================== */
.testdrive-banner-section {
  padding: clamp(32px, 5vw, 55px) 0;
  position: relative;
  z-index: 5;
}

.testdrive-banner-card {
  background: linear-gradient(135deg, #e65073 0%, #a82e4b 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(230, 80, 115, 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(255, 77, 115, 0.55);
  padding: 7px 16px;
  border-radius: 100px;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ff4d73;
  margin-bottom: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

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

@keyframes testdrivePulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 77, 115, 0.8); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(255, 77, 115, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 77, 115, 0); }
}

.testdrive-banner-title {
  font-family: 'Cormorant Garamond', 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: #1f1417 !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: #e65073 !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 (LPB)
   ========================================================================== */
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, 11, 16, 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(201, 163, 137, 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: #e65073;
  margin-bottom: 2px;
}

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

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

.testdrive-close-btn {
  background: rgba(30, 20, 25, 0.06);
  border: 1px solid rgba(30, 20, 25, 0.14);
  color: #1f1417;
  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(230, 80, 115, 0.15);
  border-color: #e65073;
  color: #e65073;
  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 (LPB)
   ========================================================================== */
.whatsapp-safety-section {
  padding: clamp(35px, 5vw, 65px) 0;
  position: relative;
  z-index: 5;
}

.whatsapp-safety-card {
  background: linear-gradient(135deg, #181115 0%, #100b0d 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: 'Cormorant Garamond', 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 (LPB)
   ========================================================================== */
.marquee-review-card {
  width: 290px;
  flex-shrink: 0;
  background: #ffffff;
  border: 1.5px solid rgba(230, 80, 115, 0.18);
  border-radius: 20px;
  padding: 16px 18px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  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(230, 80, 115, 0.15);
}

.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(230, 80, 115, 0.25);
}

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

.mrc-name {
  font-size: 0.88rem;
  font-weight: 800;
  color: #1f1417;
  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: #4a3e44;
  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 (LPB REFINADO)
   ========================================================================== */

/* Top Bar (Barra em Linha Única) */
.top-announcement-bar {
  background: var(--accent);
  color: #ffffff;
  padding: 8px 0;
  box-shadow: 0 3px 14px rgba(192, 75, 107, 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(--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(--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;
}
