/* ==========================================================================
   Plano Semana Resolvida — Marmita Fit 7D (Mobile-First Stylesheet)
   ========================================================================== */

/* --- CSS Variables & Design Tokens --- */
:root {
  /* Brand Colors */
  --primary: #059669;
  --primary-hover: #047857;
  --primary-light: #ecfdf5;
  --primary-glow: rgba(16, 185, 129, 0.4);
  
  --accent-cta: #ea580c;
  --accent-cta-hover: #c2410c;
  --accent-cta-light: #fff7ed;
  --accent-glow: rgba(234, 88, 12, 0.45);

  --accent-gold: #eab308;
  --accent-gold-dark: #ca8a04;
  --accent-gold-light: #fefce8;

  /* Neutrals & Dark Theme */
  --bg-body: #f8fafc;
  --bg-card: #ffffff;
  --bg-card-alt: #f1f5f9;
  
  --dark-surface: #0f172a;
  --dark-surface-elevated: #1e293b;
  --dark-border: #334155;

  --text-main: #0f172a;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --text-white: #ffffff;

  --border-light: #e2e8f0;
  --border-focus: #10b981;

  /* Typography */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing & Radii */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 12px -2px rgba(0, 0, 0, 0.08), 0 2px 6px -2px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 14px 28px -4px rgba(0, 0, 0, 0.12), 0 8px 12px -4px rgba(0, 0, 0, 0.06);
  --shadow-glow: 0 0 25px var(--accent-glow);

  /* Container */
  --container-max: 1080px;
  --container-narrow: 800px;
}

/* --- Base & Reset --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text-main);
  background-color: var(--bg-body);
  line-height: 1.6;
  overflow-x: hidden;
  padding-bottom: 70px; /* Space for mobile sticky bar */
}

@media (min-width: 768px) {
  body {
    padding-bottom: 0;
  }
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* --- Typography Helpers --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text-main);
  text-wrap: balance;
  overflow-wrap: break-word;
}

.text-white { color: var(--text-white) !important; }
.text-muted { color: var(--text-muted) !important; }
.text-gray { color: #cbd5e1 !important; }
.text-center { text-align: center; }
.mt-5 { margin-top: 2rem; }

.highlight-gradient {
  background: linear-gradient(135deg, #059669 0%, #10b981 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
}

/* --- Containers --- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: 1.25rem;
}

@media (max-width: 480px) {
  .container {
    padding-inline: 1rem;
  }
}

.container--narrow {
  max-width: var(--container-narrow);
}

/* --- Buttons & CTAs --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  width: 100%;
  max-width: 440px;
  min-height: 56px;
  cursor: pointer;
  user-select: none;
  text-decoration: none;
}

.btn--primary {
  background: linear-gradient(135deg, #ea580c 0%, #f97316 100%);
  color: #ffffff;
  box-shadow: 0 8px 18px -3px rgba(234, 88, 12, 0.4), 0 3px 5px -2px rgba(234, 88, 12, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn--primary:hover {
  background: linear-gradient(135deg, #c2410c 0%, #ea580c 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 22px -3px rgba(234, 88, 12, 0.5);
}

.btn--cta-main {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #ffffff;
  box-shadow: 0 10px 20px -4px rgba(16, 185, 129, 0.45);
  border: 2px solid rgba(255, 255, 255, 0.3);
  padding: 0.95rem 1.5rem;
}

.btn--cta-main:hover {
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  transform: translateY(-2px);
  box-shadow: 0 14px 26px -4px rgba(16, 185, 129, 0.6);
}

.btn--pulse {
  animation: pulse-glow 2.5s infinite;
}

@keyframes pulse-glow {
  0% {
    box-shadow: 0 0 0 0 rgba(234, 88, 12, 0.6);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(234, 88, 12, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(234, 88, 12, 0);
  }
}

.btn__icon {
  font-size: 1.25rem;
  flex-shrink: 0;
}

.btn__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  flex: 1;
}

.btn__text strong {
  font-size: clamp(0.92rem, 3.6vw, 1.08rem);
  line-height: 1.25;
  word-break: normal;
}

.btn__text small {
  font-size: clamp(0.72rem, 2.8vw, 0.78rem);
  font-weight: 500;
  opacity: 0.95;
  margin-top: 2px;
  line-height: 1.25;
}

.btn--lg {
  padding: 0.85rem 1.35rem;
}

.btn--xl {
  padding: 1rem 1.6rem;
  max-width: 460px;
}

.btn--sm {
  padding: 0.6rem 1.1rem;
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
  width: auto;
  min-height: 44px;
}

/* --- Top Urgency Bar --- */
.top-bar {
  background-color: var(--dark-surface);
  color: var(--text-white);
  padding: 0.55rem 0.85rem;
  font-size: 0.85rem;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

@media (max-width: 480px) {
  .top-bar {
    padding: 0.45rem 0.6rem;
  }
  .top-bar__content {
    gap: 0.35rem 0.6rem;
  }
  .top-bar__text {
    font-size: 0.78rem;
    line-height: 1.3;
  }
}

.top-bar__content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 1rem;
}

.badge-pulse {
  background-color: #ef4444;
  color: #fff;
  font-weight: 800;
  font-size: 0.72rem;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  letter-spacing: 0.03em;
  animation: pulse-red 2s infinite ease-in-out;
}

@keyframes pulse-red {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.75; }
}

.top-bar__text strong {
  color: #fbbf24;
}

.countdown-timer {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-family: var(--font-heading);
  font-weight: 700;
  color: #fbbf24;
}

.timer-box {
  background-color: var(--dark-surface-elevated);
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  border: 1px solid #334155;
  font-size: 0.85rem;
}

.timer-box small {
  font-size: 0.65rem;
  color: #94a3b8;
  margin-left: 1px;
}

/* --- 1. HERO SECTION --- */
.hero-section {
  padding-top: 2rem;
  padding-bottom: 1.75rem;
  background: radial-gradient(circle at 50% 0%, #ecfdf5 0%, #ffffff 70%);
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  .hero-section {
    padding-top: 1.25rem;
    padding-bottom: 1rem;
  }
}

.hero__tag-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #dcfce7;
  color: #166534;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.45rem 1rem;
  border-radius: var(--radius-full);
  border: 1px solid #bbf7d0;
  text-align: center;
}

.hero__tag .icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Headline Tabs (Switch between A, B, C for testing & demo) */
.headline-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
  background-color: #ffffff;
  padding: 0.35rem 0.5rem;
  border-radius: var(--radius-full);
  width: fit-content;
  margin-inline: auto;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.headline-tabs__label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  padding-left: 0.5rem;
}

.tab-btn {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  color: var(--text-muted);
  transition: all 0.2s ease;
}

.tab-btn.active {
  background-color: var(--primary);
  color: var(--text-white);
  box-shadow: 0 2px 5px rgba(5, 150, 105, 0.3);
}

.hero__headings {
  text-align: center;
  max-width: 860px;
  margin-inline: auto;
  margin-bottom: 2rem;
}

.hero__title {
  font-size: clamp(1.65rem, 4.2vw, 2.75rem);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
  display: none;
}

.hero__title.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

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

.hero__subtitle {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  color: #475569;
  line-height: 1.6;
  max-width: 760px;
  margin-inline: auto;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  margin-top: 1.5rem;
}

@media (min-width: 860px) {
  .hero__grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.hero__action-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: #ffffff;
  padding: 1.25rem 1.25rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}

@media (min-width: 860px) {
  .hero__action-card {
    align-items: flex-start;
    text-align: left;
    padding: 1.75rem 1.5rem;
  }
}

.pricing-pill {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.pricing-pill__old {
  font-size: 0.95rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.pricing-pill__current {
  font-size: 1.15rem;
  color: #0f172a;
}

.pricing-pill__current strong {
  font-size: 1.45rem;
  color: var(--primary);
  font-family: var(--font-heading);
}

.pricing-pill--final {
  background-color: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius-full);
  margin-block: 1rem 1.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  max-width: 100%;
}

.pricing-pill--final .pricing-pill__old {
  color: #fca5a5;
  font-size: clamp(0.95rem, 3.2vw, 1.1rem);
  white-space: nowrap;
}

.pricing-pill__divider {
  color: rgba(255, 255, 255, 0.4);
  font-size: 1rem;
}

.pricing-pill--final .pricing-pill__current {
  color: #ffffff;
  font-size: clamp(0.95rem, 3.2vw, 1.15rem);
  white-space: nowrap;
  display: inline-flex;
  align-items: baseline;
  gap: 0.35rem;
}

.pricing-pill--final .pricing-pill__current strong {
  color: #34d399;
  font-size: clamp(1.35rem, 4.5vw, 1.7rem);
  white-space: nowrap;
}

.hero__trust-badges {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-top: 0.9rem;
  width: 100%;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: #475569;
  font-weight: 500;
}

@media (max-width: 859px) {
  .trust-item {
    justify-content: center;
  }
}

.trust-icon {
  font-size: 1rem;
}

/* Hero Visual Media Frame */
.hero__visual {
  position: relative;
}

.hero__image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
  box-shadow: var(--shadow-lg);
  border: 3px solid #ffffff;
}

.hero__img {
  border-radius: var(--radius-lg);
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.floating-badge {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  padding: 0.6rem 0.9rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  border: 1px solid var(--border-light);
  z-index: 2;
  max-width: 90%;
}

.floating-badge--top {
  top: -12px;
  right: -8px;
}

.floating-badge--bottom {
  bottom: -12px;
  left: -8px;
}

.floating-badge .badge-icon {
  font-size: 1.3rem;
  line-height: 1;
}

.floating-badge .badge-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.floating-badge .badge-text strong {
  font-size: 0.85rem;
  color: var(--text-main);
  line-height: 1.2;
}

.floating-badge .badge-text span {
  font-size: 0.72rem;
  color: var(--text-muted);
}

@media (max-width: 640px) {
  .floating-badge {
    padding: 0.3rem 0.55rem;
    gap: 0.4rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
  }
  .floating-badge--top {
    top: -8px;
    right: -4px;
  }
  .floating-badge--bottom {
    bottom: -8px;
    left: -4px;
  }
  .floating-badge .badge-icon {
    font-size: 0.95rem;
  }
  .floating-badge .badge-text strong {
    font-size: 0.68rem;
    line-height: 1.15;
  }
  .floating-badge .badge-text span {
    font-size: 0.58rem;
    line-height: 1.15;
  }
}

@media (max-width: 400px) {
  .floating-badge {
    padding: 0.22rem 0.45rem;
    gap: 0.3rem;
    border-radius: 6px;
  }
  .floating-badge--top {
    top: -6px;
    right: -2px;
  }
  .floating-badge--bottom {
    bottom: -6px;
    left: -2px;
  }
  .floating-badge .badge-icon {
    font-size: 0.85rem;
  }
  .floating-badge .badge-text strong {
    font-size: 0.62rem;
    line-height: 1.1;
  }
  .floating-badge .badge-text span {
    font-size: 0.52rem;
    line-height: 1.1;
  }
}

/* --- Section Global Structure --- */
.section {
  padding-block: 2.5rem;
}

@media (max-width: 768px) {
  .section {
    padding-block: 1.75rem;
  }
}

.section-header {
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .section-header {
    margin-bottom: 1.25rem;
  }
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  background-color: var(--primary-light);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.75rem;
}

.section-tag--alert {
  color: #dc2626;
  background-color: #fee2e2;
}

.section-tag--light {
  color: #34d399;
  background-color: rgba(52, 211, 153, 0.15);
  border: 1px solid rgba(52, 211, 153, 0.3);
}

.section-tag--gold {
  color: #b45309;
  background-color: #fef3c7;
}

.section-title {
  font-size: clamp(1.5rem, 3.2vw, 2.25rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.section-subtitle {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  color: var(--text-muted);
  max-width: 680px;
  margin-inline: auto;
}

/* --- 2. PAIN SECTION (Ciclo da Dor) --- */
.section--pain {
  background-color: #f8fafc;
}

.pain-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 640px) {
  .pain-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .pain-cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pain-card {
  background-color: var(--bg-card);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pain-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.pain-card--highlight {
  border-color: #fca5a5;
  background: linear-gradient(180deg, #ffffff 0%, #fff1f2 100%);
}

@media (min-width: 640px) and (max-width: 1023px) {
  .pain-card--highlight {
    grid-column: span 2;
  }
}

.pain-card__icon {
  font-size: 1.75rem;
  flex-shrink: 0;
  background-color: #f1f5f9;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pain-card__content h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: #1e293b;
}

.pain-card__content p {
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.5;
}

/* Reality Box */
.reality-box {
  background-color: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-md);
  max-width: 860px;
  margin-inline: auto;
}

@media (min-width: 768px) {
  .reality-box {
    padding: 2.5rem;
  }
}

.reality-box__header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.reality-badge {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  color: #d97706;
  background-color: #fef3c7;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.6rem;
}

.reality-box__header h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  color: #0f172a;
}

.reality-box__body {
  font-size: 1rem;
  color: #334155;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  line-height: 1.7;
}

.reality-box__body .lead-text {
  font-size: 1.15rem;
  color: #0f172a;
}

.comparison-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px dashed var(--border-light);
}

@media (min-width: 768px) {
  .comparison-strip {
    grid-template-columns: 1fr 1fr;
  }
}

.comparison-item {
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.comparison-item--bad {
  background-color: #fee2e2;
  color: #991b1b;
  border-left: 4px solid #ef4444;
}

.comparison-item--good {
  background-color: #dcfce7;
  color: #166534;
  border-left: 4px solid #10b981;
}

.status-indicator {
  font-weight: 800;
  font-size: 0.85rem;
}

/* --- 3. MECHANISM SECTION (Dark & High-Contrast) --- */
.section--mechanism {
  background: linear-gradient(180deg, #0f172a 0%, #022c22 100%);
  color: var(--text-white);
  position: relative;
}

.mechanism-card {
  background-color: rgba(30, 41, 59, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(52, 211, 153, 0.25);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
  max-width: 860px;
  margin-inline: auto;
}

@media (min-width: 768px) {
  .mechanism-card {
    padding: 2.5rem;
  }
}

.mechanism-card__header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
  .mechanism-card__header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.mechanism-title-group {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.key-icon {
  font-size: 2rem;
  background-color: rgba(16, 185, 129, 0.2);
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(16, 185, 129, 0.4);
}

.time-badge {
  background: linear-gradient(135deg, rgba(234, 88, 12, 0.2) 0%, rgba(234, 88, 12, 0.4) 100%);
  color: #fdba74;
  border: 1px solid rgba(234, 88, 12, 0.5);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-full);
  align-self: flex-start;
}

.layers-container {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.layer-block {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  background-color: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.layer-block:hover {
  border-color: rgba(52, 211, 153, 0.4);
  transform: translateX(4px);
}

.layer-badge {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 900;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(16, 185, 129, 0.35);
}

.layer-info h4 {
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
}

.layer-info p {
  color: #94a3b8;
  font-size: 0.9rem;
  line-height: 1.5;
}

.mechanism-highlight {
  display: flex;
  gap: 1rem;
  background-color: rgba(52, 211, 153, 0.1);
  border: 1px solid rgba(52, 211, 153, 0.3);
  padding: 1.25rem;
  border-radius: var(--radius-md);
}

.highlight-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.highlight-text strong {
  color: #34d399;
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
}

.highlight-text p {
  color: #e2e8f0;
  font-size: 0.88rem;
  line-height: 1.5;
}

/* --- 4. DELIVERABLES SECTION (O que você vai receber) --- */
.section--deliverables {
  background-color: #ffffff;
}

.deliverables-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .deliverables-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.deliverable-card {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.75rem 1.75rem;
  position: relative;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
}

.deliverable-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
  border-color: #cbd5e1;
}

.deliverable-card__badge {
  position: absolute;
  top: -12px;
  left: 1.5rem;
  background-color: var(--primary);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-full);
  box-shadow: 0 2px 6px rgba(5, 150, 105, 0.35);
  z-index: 2;
}

.deliverable-card__badge--bonus {
  background-color: #d97706;
  box-shadow: 0 2px 6px rgba(217, 119, 6, 0.35);
}

.deliverable-card__image-box {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.5rem;
  margin-bottom: 1.25rem;
  padding: 0;
  background: transparent;
  height: 160px;
  width: 100%;
}

.deliverable-card__img {
  width: 150px;
  height: 150px;
  max-width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  filter: none;
  transition: transform 0.3s ease;
  display: block;
  margin-inline: auto;
}

.deliverable-card:hover .deliverable-card__img {
  transform: translateY(-4px) scale(1.03);
  filter: none;
}

.deliverable-card__content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.deliverable-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #0f172a;
}

.deliverable-card__desc {
  font-size: 0.92rem;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.deliverable-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-light);
}

.deliverable-card__features li {
  font-size: 0.85rem;
  color: #334155;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.deliverable-card__features li::before {
  content: "✔";
  color: var(--primary);
  font-weight: 900;
  font-size: 0.8rem;
}

/* --- TESTIMONIALS SECTION (Dynamic Left Scrolling Marquee) --- */
.section--testimonials {
  background-color: #f1f5f9;
  padding-inline: 0;
  overflow: hidden;
  position: relative;
}

.marquee-container {
  width: 100%;
  overflow: hidden;
  display: flex;
  margin-top: 1.5rem;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.marquee-track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  animation: scrollLeft 55s linear infinite;
  will-change: transform;
}

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

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

.testimonial-card {
  background-color: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.35rem 1.25rem;
  box-shadow: var(--shadow-sm);
  width: 320px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  user-select: none;
}

@media (min-width: 768px) {
  .testimonial-card {
    width: 360px;
    padding: 1.5rem 1.4rem;
  }
}

.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: #cbd5e1;
}

.testimonial-card__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.testimonial-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #10b981;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.testimonial-user-info {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.testimonial-user-info h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

.testimonial-user-info span {
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.2;
  margin-top: 2px;
}

.verified-badge {
  background-color: #dcfce7;
  color: #15803d;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius-full);
  white-space: nowrap;
  align-self: flex-start;
  border: 1px solid #bbf7d0;
}

.testimonial-stars {
  color: #f59e0b;
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-bottom: 0.6rem;
}

.testimonial-text {
  font-size: 0.88rem;
  color: #334155;
  line-height: 1.55;
}

.testimonials-trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background-color: #ffffff;
  border: 1px solid var(--border-light);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  color: #1e293b;
  box-shadow: var(--shadow-sm);
}

.trust-stars {
  font-size: 0.95rem;
}

/* --- 5. BONUSES SECTION --- */
.section--bonuses {
  background-color: #fefce8;
  border-top: 1px solid #fef08a;
  border-bottom: 1px solid #fef08a;
}

.bonuses-wrapper {
  max-width: 920px;
  margin-inline: auto;
}

.bonuses-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .bonuses-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.bonus-card {
  background-color: #ffffff;
  border: 2px solid #fde047;
  border-radius: var(--radius-lg);
  padding: 2rem 1.35rem 1.35rem;
  box-shadow: 0 4px 6px -1px rgba(245, 158, 11, 0.08), 0 2px 4px -2px rgba(245, 158, 11, 0.05);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

.bonus-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 24px -4px rgba(245, 158, 11, 0.18), 0 6px 10px -4px rgba(245, 158, 11, 0.08);
  border-color: #eab308;
}

.bonus-card__tag {
  position: absolute;
  top: -12px;
  left: 1.25rem;
  background-color: #ca8a04;
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  letter-spacing: 0.05em;
  box-shadow: 0 2px 6px rgba(202, 138, 4, 0.35);
  z-index: 2;
}

.bonus-card__image-box {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.25rem;
  margin-bottom: 1.25rem;
  padding: 0;
  background: transparent;
  height: 150px;
  width: 100%;
}

.bonus-card__img {
  width: 140px;
  height: 140px;
  max-width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  filter: none;
  transition: transform 0.3s ease;
  display: block;
  margin-inline: auto;
}

.bonus-card:hover .bonus-card__img {
  transform: translateY(-4px) scale(1.03);
  filter: none;
}

.bonus-card__header {
  margin-bottom: 1rem;
  text-align: center;
}

.bonus-card__header h3 {
  font-size: 1.12rem;
  line-height: 1.35;
  font-weight: 700;
  color: #0f172a;
}

.bonus-price {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 0.4rem;
}

.price-strikethrough {
  font-size: 0.8rem;
  color: #94a3b8;
  text-decoration: line-through;
}

.price-free {
  font-size: 0.85rem;
  font-weight: 800;
  color: #16a34a;
}

.bonus-card__benefit {
  font-size: 0.85rem;
  color: #475569;
  line-height: 1.5;
  background-color: #f8fafc;
  padding: 0.75rem;
  border-radius: var(--radius-sm);
  border-left: 3px solid #eab308;
  margin-top: auto;
}

.bonus-alert {
  background-color: #fffbeb;
  border: 1px dashed #d97706;
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  font-size: 0.88rem;
  color: #92400e;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.alert-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
}

/* --- 6. OFFER STACK & PRICE SECTION --- */
.section--offer {
  background: radial-gradient(circle at 50% 10%, #f0fdf4 0%, #e2e8f0 100%);
  padding-block: 5rem;
}

.offer-box {
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.18);
  border: 2px solid #10b981;
  overflow: hidden;
  max-width: 880px;
  margin-inline: auto;
}

.offer-box__top {
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  color: #ffffff;
  padding: 2rem 1.5rem;
  text-align: center;
}

.offer-pill {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.4);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}

.offer-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: #ffffff;
}

.offer-box__body {
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 768px) {
  .offer-box__body {
    padding: 3rem 2.5rem;
  }
}

.offer-mockup-wrapper {
  max-width: 580px;
  width: 100%;
  margin-inline: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.5rem;
  background: transparent;
  border: none;
  box-shadow: none;
}

.offer-mockup-img {
  width: 100%;
  height: auto;
  max-width: 540px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.12));
  transition: transform 0.3s ease;
}

.offer-mockup-img:hover {
  transform: translateY(-3px) scale(1.01);
}

.stack-table {
  background-color: #f8fafc;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.stack-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.95rem 1.25rem;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.92rem;
  gap: 1rem;
}

.stack-item__name {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #1e293b;
  font-weight: 500;
  flex: 1;
  min-width: 0;
  line-height: 1.4;
}

.check-icon {
  color: var(--primary);
  font-weight: 900;
  flex-shrink: 0;
}

.stack-item__value {
  font-weight: 700;
  color: #64748b;
  white-space: nowrap;
  flex-shrink: 0;
  text-align: right;
  font-family: var(--font-heading);
}

.stack-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  background-color: #f1f5f9;
  font-weight: 700;
  font-size: 1rem;
  color: #334155;
  gap: 1rem;
}

.stack-total__price {
  white-space: nowrap;
  flex-shrink: 0;
  text-align: right;
}

.stack-total__price del {
  color: #dc2626;
  font-size: 1.15rem;
  font-family: var(--font-heading);
}

.price-display-card {
  text-align: center;
  background: linear-gradient(180deg, #ffffff 0%, #f0fdf4 100%);
  border: 2px solid #bbf7d0;
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.price-badge-deal {
  background-color: #fee2e2;
  color: #b91c1c;
  font-size: 0.8rem;
  font-weight: 800;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.75rem;
}

.price-label {
  font-size: 1.05rem;
  color: #475569;
  margin-bottom: 0.25rem;
}

.main-price {
  font-family: var(--font-heading);
  display: flex;
  align-items: baseline;
  justify-content: center;
  color: #0f172a;
  line-height: 1;
  margin-block: 0.5rem;
}

.main-price .currency {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
  margin-right: 4px;
}

.main-price .amount {
  font-size: clamp(3.5rem, 8vw, 4.8rem);
  font-weight: 900;
  color: #0f172a;
  letter-spacing: -0.04em;
}

.main-price .cents {
  font-size: 2rem;
  font-weight: 800;
  color: #0f172a;
}

.installments-text {
  font-size: 0.95rem;
  color: #475569;
  margin-bottom: 1.75rem;
}

.payment-security {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: #64748b;
}

.security-badges {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.pay-tag {
  background-color: #f1f5f9;
  border: 1px solid var(--border-light);
  font-size: 0.75rem;
  font-weight: 700;
  color: #334155;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}

/* --- 7. GUARANTEE SECTION --- */
.section--guarantee {
  background-color: #ffffff;
}

.guarantee-card {
  background-color: #f8fafc;
  border: 2px solid #e2e8f0;
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.75rem;
  max-width: 860px;
  margin-inline: auto;
}

@media (min-width: 768px) {
  .guarantee-card {
    flex-direction: row;
    text-align: left;
    padding: 2.75rem 2.5rem;
  }
}

.guarantee-badge {
  flex-shrink: 0;
}

.seal-inner {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, #eab308 0%, #ca8a04 100%);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px rgba(202, 138, 4, 0.35);
  border: 4px solid #fef08a;
}

.seal-number {
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1;
  font-family: var(--font-heading);
}

.seal-text {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.seal-bold {
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.guarantee-tag {
  font-size: 0.75rem;
  font-weight: 800;
  color: #15803d;
  background-color: #dcfce7;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  display: inline-block;
  margin-bottom: 0.5rem;
}

.guarantee-title {
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  margin-bottom: 0.75rem;
}

.guarantee-text {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.guarantee-highlight {
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

.guarantee-footer {
  font-size: 0.9rem;
  color: #166534;
}

/* --- 8. CREATOR SECTION --- */
.section--creator {
  background-color: #f8fafc;
}

.creator-card {
  background-color: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 900px;
  margin-inline: auto;
}

@media (min-width: 768px) {
  .creator-card {
    flex-direction: row;
    align-items: center;
    padding: 3rem 2.5rem;
  }
}

.creator-card__image-col {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.creator-avatar-wrap {
  position: relative;
  width: 200px;
  height: 200px;
  max-width: 100%;
  margin-inline: auto;
  border-radius: 50%;
  padding: 6px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  box-shadow: 0 12px 28px -6px rgba(5, 150, 105, 0.35);
}

@media (min-width: 768px) {
  .creator-avatar-wrap {
    width: 240px;
    height: 240px;
    padding: 8px;
  }
}

.creator-img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center center;
  border-radius: 50%;
  border: 4px solid #ffffff;
  display: block;
  background-color: #ffffff;
}

.creator-role-tag {
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--dark-surface);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  white-space: nowrap;
  border: 1px solid #334155;
  box-shadow: var(--shadow-sm);
  z-index: 2;
}

.creator-card__info-col {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.creator-name {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
}

.creator-lead {
  font-size: 1rem;
  color: #1e293b;
  font-weight: 500;
  background-color: #f1f5f9;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--primary);
}

.creator-bio {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.92rem;
  color: #475569;
  line-height: 1.6;
}

.creator-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-top: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-light);
}

@media (max-width: 440px) {
  .creator-stats {
    gap: 0.25rem;
  }
  .stat-item strong {
    font-size: 1rem;
  }
  .stat-item span {
    font-size: 0.65rem;
    line-height: 1.2;
  }
}

.stat-item {
  display: flex;
  flex-direction: column;
  text-align: center;
}

.stat-item strong {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--primary);
  font-weight: 800;
}

.stat-item span {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* --- 9. FAQ ACCORDION --- */
.section--faq {
  background-color: #ffffff;
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.accordion__item {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  background-color: #ffffff;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.accordion__item:hover {
  border-color: #cbd5e1;
}

.accordion__item.active {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.accordion__header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.15rem 1.25rem;
  text-align: left;
  gap: 1rem;
}

.accordion__question {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
}

.accordion__icon {
  width: 20px;
  height: 20px;
  position: relative;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.accordion__icon::before,
.accordion__icon::after {
  content: '';
  position: absolute;
  background-color: var(--primary);
  transition: transform 0.3s ease;
}

.accordion__icon::before {
  top: 9px;
  left: 2px;
  width: 16px;
  height: 2px;
}

.accordion__icon::after {
  top: 2px;
  left: 9px;
  width: 2px;
  height: 16px;
}

.accordion__item.active .accordion__icon {
  transform: rotate(45deg);
}

.accordion__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0, 1, 0, 1);
  background-color: #f8fafc;
}

.accordion__content {
  padding: 1rem 1.25rem 1.25rem;
  font-size: 0.92rem;
  color: #475569;
  line-height: 1.6;
  border-top: 1px solid var(--border-light);
}

/* Final CTA Card */
.final-cta-box {
  margin-top: 3.5rem;
  background: linear-gradient(135deg, #059669 0%, #022c22 100%);
  color: #ffffff;
  padding: 2.5rem 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.final-cta-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.final-cta-sub {
  font-size: 1rem;
  color: #cbd5e1;
  margin-bottom: 1.75rem;
  max-width: 580px;
}

.final-trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.75rem 1.5rem;
  margin-top: 1.5rem;
  width: 100%;
}

.final-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: clamp(0.82rem, 2.6vw, 0.9rem);
  color: #a7f3d0;
  font-weight: 500;
  white-space: nowrap;
}

.trust-badge-icon {
  font-size: 1rem;
  line-height: 1;
}

/* --- Footer --- */
.footer {
  background-color: var(--dark-surface);
  color: #94a3b8;
  padding: 3rem 1.25rem;
  font-size: 0.85rem;
}

.footer__brand {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.footer__links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-block: 1.25rem;
}

.footer__links a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.footer__disclaimer {
  max-width: 600px;
  margin-inline: auto;
  font-size: 0.75rem;
  color: #64748b;
  margin-top: 1.5rem;
}

/* --- Sticky Mobile Bottom Bar --- */
.sticky-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(15, 23, 42, 0.96);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.75rem 1rem;
  padding-bottom: calc(0.75rem + env(safe-area-inset-bottom, 0px));
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.25);
}

.sticky-bottom-bar.visible {
  transform: translateY(0);
}

.sticky-bar__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 600px;
  margin-inline: auto;
  gap: 1rem;
}

.sticky-bar__price {
  display: flex;
  flex-direction: column;
}

.sticky-bar__label {
  font-size: 0.75rem;
  color: #94a3b8;
}

.sticky-bar__val {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: #10b981;
}

.sticky-bar__btn {
  max-width: 200px;
}

@media (min-width: 768px) {
  .sticky-bottom-bar {
    display: none;
  }
}
