/* ═══════════════════════════════════════════════════════
   PROTOCOLO EIXO — Design System v2
   Dark Premium Theme — Full Sales Funnel
   ═══════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@400;500;600;700;800&display=swap');

/* ─── Variables ─── */
:root {
  --bg-primary: #0a0a0f;
  --bg-secondary: #111118;
  --bg-card: #16161f;
  --bg-glass: rgba(22, 22, 31, 0.8);
  --accent: #00d4aa;
  --accent-glow: rgba(0, 212, 170, 0.3);
  --accent-dark: #00a88a;
  --accent-light: #33e0be;
  --danger: #ff4757;
  --warning: #ffa502;
  --gold: #f5c842;
  --text-primary: #f0f0f5;
  --text-secondary: #9898a6;
  --text-muted: #6a6a7a;
  --border: rgba(255, 255, 255, 0.06);
  --border-hover: rgba(0, 212, 170, 0.3);
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  --section-py: clamp(60px, 8vw, 110px);
  --container-max: 1100px;
  --container-px: clamp(16px, 4vw, 40px);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-soft: 0 4px 30px rgba(0, 0, 0, 0.3);
  --shadow-glow: 0 0 40px rgba(0, 212, 170, 0.15);
  --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ─── Reset ─── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

/* ─── Layout ─── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
}

.section {
  padding: var(--section-py) 0;
  position: relative;
}

.section--dark {
  background: var(--bg-secondary);
}

/* ─── Typography ─── */
.heading-xl {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.heading-lg {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  font-weight: 700;
  line-height: 1.2;
}

.heading-md {
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 2vw, 1.6rem);
  font-weight: 600;
  line-height: 1.3;
}

.text-lg {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.8;
}

.text-accent {
  color: var(--accent);
}

.text-danger {
  color: var(--danger);
}

.text-secondary {
  color: var(--text-secondary);
}

.text-center {
  text-align: center;
}

.highlight {
  color: var(--accent);
  font-style: italic;
}

strong {
  color: var(--text-primary);
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header p {
  max-width: 650px;
  margin: 12px auto 0;
}

/* ─── Badge ─── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.badge--accent {
  background: rgba(0, 212, 170, 0.1);
  color: var(--accent);
  border: 1px solid rgba(0, 212, 170, 0.2);
}

.badge--danger {
  background: rgba(255, 71, 87, 0.1);
  color: var(--danger);
  border: 1px solid rgba(255, 71, 87, 0.2);
}

.badge--gold {
  background: rgba(245, 200, 66, 0.1);
  color: var(--gold);
  border: 1px solid rgba(245, 200, 66, 0.2);
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  padding: 20px 44px;
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-align: center;
}

.btn--primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #000;
  box-shadow: 0 4px 20px var(--accent-glow);
}

.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 40px var(--accent-glow), var(--shadow-glow);
}

.btn--large {
  padding: 22px 50px;
  font-size: 1.15rem;
}

.btn__sub {
  font-size: 0.72rem;
  font-weight: 400;
  opacity: 0.8;
  text-transform: none;
  letter-spacing: 0;
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 4px 20px var(--accent-glow);
  }

  50% {
    box-shadow: 0 8px 50px var(--accent-glow), 0 0 60px rgba(0, 212, 170, 0.2);
  }
}

.btn--pulse {
  animation: pulse 2.5s ease-in-out infinite;
}

/* ─── Card ─── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px;
  transition: var(--transition);
}

.card:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-glow);
  transform: translateY(-4px);
}

/* ═══════════════════ HERO ═══════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 100px 0 80px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at 30% 20%, rgba(0, 212, 170, 0.07) 0%, transparent 50%), radial-gradient(ellipse at 70% 80%, rgba(0, 100, 200, 0.04) 0%, transparent 50%);
  animation: heroGlow 8s ease-in-out infinite alternate;
}

@keyframes heroGlow {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(-5%, -3%);
  }
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
}

.hero__badge {
  margin-bottom: 24px;
  animation: fadeInDown 0.6s ease;
}

.hero__title {
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero__subtitle {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto 36px;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.hero__cta {
  animation: fadeInUp 0.8s ease 0.6s both;
}

.hero__proof {
  margin-top: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.8s both;
}

.hero__proof-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
  font-size: 0.85rem;
}

.hero__proof-icon {
  color: var(--accent);
  font-size: 1rem;
}

/* ═══════════════════ PROBLEM ═══════════════════ */
.story-section .story-text {
  max-width: 750px;
  margin: 0 auto;
  font-size: clamp(1rem, 1.3vw, 1.1rem);
  color: var(--text-secondary);
  line-height: 1.9;
}

.story-text p {
  margin-bottom: 20px;
}

.story-text strong {
  color: var(--text-primary);
  font-weight: 600;
}

.story-text em {
  color: var(--accent);
  font-style: normal;
  font-weight: 500;
}

/* ═══════════════════ PERSONAS ═══════════════════ */
.personas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.persona-card {
  text-align: center;
  padding: 35px 25px;
}

.persona-icon {
  font-size: 2.8rem;
  margin-bottom: 16px;
}

.persona-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--accent);
}

.persona-text {
  color: var(--text-secondary);
  font-size: 0.92rem;
}

/* ═══════════════════ VALUE PROPS ═══════════════════ */
.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.value-card {
  display: flex;
  gap: 16px;
  padding: 28px;
}

.value-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}

.value-title {
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: 6px;
  text-transform: uppercase;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
}

.value-text {
  color: var(--text-secondary);
  font-size: 0.92rem;
}

/* ═══════════════════ TESTIMONIALS ═══════════════════ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.testimonial-card {
  padding: 30px;
}

.testimonial-stars {
  color: var(--gold);
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-style: italic;
  color: var(--text-secondary);
  margin-bottom: 18px;
  font-size: 0.95rem;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #000;
  font-size: 0.9rem;
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.9rem;
}

.testimonial-role {
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* ═══════════════════ ORIGIN STORY ═══════════════════ */
.origin-section {
  position: relative;
}

.origin-section::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  border-radius: 3px;
}

.origin-content {
  padding-left: 30px;
}

.origin-content p {
  margin-bottom: 18px;
  color: var(--text-secondary);
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  line-height: 1.85;
}

.origin-content strong {
  color: var(--text-primary);
}

.origin-content em {
  color: var(--accent);
  font-style: normal;
}

/* ═══════════════════ PRODUCT STEPS ═══════════════════ */
.steps-grid {
  display: grid;
  gap: 24px;
}

.step-card {
  display: grid;
  grid-template-columns: 65px 1fr;
  gap: 20px;
  align-items: start;
  padding: 28px;
}

.step-number {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: #000;
  flex-shrink: 0;
}

.step-icon {
  font-size: 1.4rem;
  margin-left: 4px;
}

.step-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.step-text {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* ═══════════════════ PRICING ═══════════════════ */
.pricing-box {
  background: var(--bg-card);
  border: 2px solid var(--border-hover);
  border-radius: var(--radius-lg);
  padding: clamp(35px, 5vw, 55px);
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pricing-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  opacity: 0.3;
  pointer-events: none;
}

.pricing-badge {
  position: absolute;
  top: 20px;
  right: -35px;
  background: var(--accent);
  color: #000;
  padding: 6px 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  transform: rotate(45deg);
  letter-spacing: 0.05em;
}

.pricing-content {
  position: relative;
  z-index: 2;
}

.pricing-includes {
  text-align: left;
  margin: 28px 0;
}

.pricing-includes li {
  padding: 8px 0;
  color: var(--text-secondary);
  font-size: 0.92rem;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.pricing-includes li::before {
  content: '✅';
  flex-shrink: 0;
}

.price-block {
  margin: 28px 0;
}

.price-old {
  font-size: 1.1rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.price-current {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--accent);
  display: block;
  margin: 4px 0;
}

.price-installment {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* ═══════════════════ GUARANTEE ═══════════════════ */
.guarantee-box {
  display: flex;
  gap: 30px;
  align-items: center;
  max-width: 750px;
  margin: 0 auto;
  padding: 35px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.guarantee-shield {
  font-size: 4rem;
  flex-shrink: 0;
}

.guarantee-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--accent);
}

.guarantee-text {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* ═══════════════════ VISION ═══════════════════ */
.vision-content {
  max-width: 750px;
  margin: 0 auto;
}

.vision-positive,
.vision-negative {
  padding: 30px;
  border-radius: var(--radius-lg);
  margin-bottom: 30px;
}

.vision-positive {
  background: rgba(0, 212, 170, 0.05);
  border: 1px solid rgba(0, 212, 170, 0.15);
}

.vision-negative {
  background: rgba(255, 71, 87, 0.05);
  border: 1px solid rgba(255, 71, 87, 0.15);
}

.vision-content p {
  margin-bottom: 14px;
  color: var(--text-secondary);
  font-size: 0.98rem;
  line-height: 1.8;
}

.vision-content strong {
  color: var(--text-primary);
}

.vision-content em {
  color: var(--accent);
  font-style: normal;
}

/* ═══════════════════ OBJECTIONS ═══════════════════ */
.objections-list {
  max-width: 750px;
  margin: 0 auto;
  display: grid;
  gap: 24px;
}

.objection-card {
  padding: 28px;
}

.objection-q {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 14px;
}

.objection-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.objection-question {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-primary);
}

.objection-answer {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.7;
  padding-left: 40px;
}

.objection-answer strong {
  color: var(--text-primary);
}

/* ═══════════════════ FAQ ═══════════════════ */
.faq-list {
  max-width: 750px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  transition: var(--transition);
  gap: 16px;
}

.faq-question:hover {
  color: var(--accent);
}

.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  transition: var(--transition);
  color: var(--accent);
  flex-shrink: 0;
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 400px;
  padding-bottom: 20px;
}

.faq-answer p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.7;
}

.faq-answer strong {
  color: var(--text-primary);
}

/* ═══════════════════ FINAL CTA ═══════════════════ */
.final-cta {
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  opacity: 0.3;
  pointer-events: none;
}

/* ═══════════════════ FOOTER ═══════════════════ */
.footer {
  background: var(--bg-secondary);
  padding: 40px 0;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.82rem;
  border-top: 1px solid var(--border);
}

.footer p+p {
  margin-top: 6px;
}

/* ─── Guarantees bar ─── */
.guarantees-bar {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.guarantee-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
  font-size: 0.82rem;
}

.guarantee-item span:first-child {
  color: var(--accent);
}

/* ─── Divider ─── */
.section-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(to right, var(--accent), transparent);
  margin: 0 auto 30px;
  border-radius: 3px;
}

/* ═══════════════════ HERO AUTHORITY ═══════════════════ */
.hero__authority {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.authority-item {
  font-size: 0.78rem;
  color: var(--text-muted);
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: 50px;
  letter-spacing: 0.02em;
}

/* ═══════════════════ BONUSES GRID ═══════════════════ */
.bonuses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.bonus-card {
  padding: 28px;
}

.bonus-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.bonus-tag {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold);
  background: rgba(245, 200, 66, 0.1);
  padding: 4px 12px;
  border-radius: 4px;
}

.urgency-tag {
  background: rgba(255, 71, 87, 0.15);
  color: var(--danger);
  animation: pulse-danger 2s ease-in-out infinite;
}

@keyframes pulse-danger {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.7;
  }
}

.bonus-val {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: line-through;
}

.bonus-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.bonus-text {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.65;
}

.bonus-urgency {
  margin-top: 12px;
  color: var(--danger);
  font-size: 0.82rem;
  font-weight: 500;
}

/* ═══════════════════ VALUE STACK ═══════════════════ */
.value-stack {
  text-align: left;
  margin: 24px 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.stack-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 18px;
  font-size: 0.88rem;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
}

.stack-item:last-of-type:not(.stack-total) {
  border-bottom: 1px solid var(--border);
}

.bonus-stack {
  background: rgba(245, 200, 66, 0.03);
}

.bonus-stack span:first-child {
  color: var(--text-secondary);
}

.stack-val {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: line-through;
  flex-shrink: 0;
}

.stack-total {
  display: flex;
  justify-content: space-between;
  padding: 14px 18px;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  background: rgba(0, 212, 170, 0.05);
  border-bottom: none;
}

.stack-total span:last-child {
  text-decoration: line-through;
  color: var(--text-muted);
}

/* ─── Price Saving ─── */
.price-saving {
  display: inline-block;
  margin-top: 6px;
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  background: rgba(0, 212, 170, 0.1);
  color: var(--accent);
}

/* ─── Cost of Inaction ─── */
.cost-inaction {
  background: rgba(255, 165, 2, 0.05);
  border: 1px solid rgba(255, 165, 2, 0.15);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin: 20px 0;
  text-align: left;
}

.cost-inaction p {
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.65;
  margin: 0;
}

.cost-inaction strong {
  color: var(--warning);
}

/* ─── Step Value Badge ─── */
.step-value {
  display: inline-block;
  margin-top: 10px;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: line-through;
}


/* ═══════════════════ ANIMATIONS ═══════════════════ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════ RESPONSIVE ═══════════════════ */
@media (max-width: 768px) {
  .hero {
    padding: 80px 0 60px;
    min-height: auto;
  }

  .step-card {
    grid-template-columns: 50px 1fr;
    gap: 14px;
  }

  .step-number {
    width: 42px;
    height: 42px;
    font-size: 1rem;
  }

  .guarantee-box {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .objection-answer {
    padding-left: 0;
  }

  .pricing-badge {
    top: 15px;
    right: -40px;
  }

  .origin-section::before {
    display: none;
  }

  .origin-content {
    padding-left: 0;
  }
}