/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Apr 03 2026 | 01:24:04 */
body {
    background-color: #0e0e14;
    color: #f4f4f5;
    -webkit-font-smoothing: antialiased;
  }

/* ============================================================
   PONTO 0 — LP Sections CSS
   Para uso no Elementor via "Simple Custom CSS and JS"
   Prefixo: .p0-
   Paleta: #0e0e14 (fundo escuro) | #13131c (fundo alt) |
           #18182a (cards) | #f4f4f5 (texto) |
           #a1a1aa (texto secundário) | #c8a96e (ouro)
   ============================================================ */

/* ── VARIÁVEIS GLOBAIS ──────────────────────────────────────── */
:root {
  --p0-bg-dark:       #0e0e14;
  --p0-bg-alt:        #13131c;
  --p0-bg-card:       #18182a;
  --p0-text:          #f4f4f5;
  --p0-text-muted:    #a1a1aa;
  --p0-text-faint:    #71717a;
  --p0-gold:          #c8a96e;
  --p0-gold-10:       rgba(200, 169, 110, 0.10);
  --p0-gold-20:       rgba(200, 169, 110, 0.20);
  --p0-gold-30:       rgba(200, 169, 110, 0.30);
  --p0-surface-1:     rgba(255, 255, 255, 0.04);
  --p0-surface-2:     rgba(255, 255, 255, 0.06);
  --p0-radius-sm:     8px;
  --p0-radius:        12px;
  --p0-radius-lg:     16px;
  --p0-radius-xl:     20px;
  --p0-padding-sec:   clamp(40px, 8vw, 80px) 24px;
}

/* ── NAV / HEADER FLUTUANTE (.p0-nav) ───────────────────────── */
/* Transparente no topo, escurece ao rolar (requer .p0-nav--scrolled via JS) */
.p0-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
}

.p0-nav--scrolled {
  background: rgba(14, 14, 20, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.p0-nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.p0-nav__logo img {
  height: 32px;
  width: auto;
  object-fit: contain;
}

.p0-nav__btn {
  display: inline-flex;
  align-items: center;
  padding: 8px 20px;
  border-radius: 8px;
  border: 1px solid rgba(200, 169, 110, 0.5);
  color: var(--p0-gold);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
  background: transparent;
}

.p0-nav__btn:hover {
  border-color: var(--p0-gold);
  background: rgba(200, 169, 110, 0.08);
  color: var(--p0-gold);
}

/* Hero com padding-top para não ficar atrás do nav fixo */
.p0-hero--with-nav {
  padding-top: clamp(88px, 10vw, 120px);
}

/* ── BASE — reset geral das seções p0 ───────────────────────── */
.p0-section {
  font-family: inherit;
  box-sizing: border-box;
  padding: var(--p0-padding-sec);
  width: 100%;
}

.p0-section *,
.p0-section *::before,
.p0-section *::after {
  box-sizing: border-box;
}

/* ── UTILITÁRIOS ─────────────────────────────────────────────── */
.p0-container        { max-width: 1200px; margin: 0 auto; }
.p0-container-md     { max-width: 900px; margin: 0 auto; }
.p0-container-sm     { max-width: 640px; margin: 0 auto; }
.p0-center           { text-align: center; }

.p0-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--p0-gold);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.p0-h1 {
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--p0-text);
  margin-bottom: 24px;
}

.p0-h2 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--p0-text);
  margin-bottom: 20px;
}

.p0-h3 {
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 600;
  color: var(--p0-text);
  margin-bottom: 8px;
}

.p0-subheadline {
  font-size: clamp(16px, 2.5vw, 20px);
  color: var(--p0-text-muted);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 40px;
}

.p0-body {
  font-size: 16px;
  color: var(--p0-text-muted);
  line-height: 1.8;
  margin-bottom: 24px;
}

/* ── BOTÕES ──────────────────────────────────────────────────── */
.p0-btn-primary,
.elementor-button.p0-btn-primary,
.elementor-widget-button .elementor-button.p0-btn-primary {
  display: inline-block !important;
  background: #c8a96e !important;
  color: #0e0e14 !important;
  font-weight: 700 !important;
  font-size: 16px !important;
  padding: 14px 32px !important;
  border-radius: 8px !important;
  text-decoration: none !important;
  transition: opacity 0.2s !important;
  cursor: pointer !important;
  border: none !important;
  box-shadow: none !important;
}
.p0-btn-primary:hover,
.elementor-button.p0-btn-primary:hover,
.elementor-widget-button .elementor-button.p0-btn-primary:hover {
  opacity: 0.9 !important;
  background: #c8a96e !important;
  color: #0e0e14 !important;
}

.p0-btn-primary-lg,
.elementor-button.p0-btn-primary-lg,
.elementor-widget-button .elementor-button.p0-btn-primary-lg {
  display: inline-block !important;
  background: #c8a96e !important;
  color: #0e0e14 !important;
  font-weight: 700 !important;
  font-size: 18px !important;
  padding: 18px 48px !important;
  border-radius: 8px !important;
  text-decoration: none !important;
  transition: opacity 0.2s !important;
  cursor: pointer !important;
  border: none !important;
  box-shadow: none !important;
}
.p0-btn-primary-lg:hover,
.elementor-button.p0-btn-primary-lg:hover,
.elementor-widget-button .elementor-button.p0-btn-primary-lg:hover {
  opacity: 0.9 !important;
  background: #c8a96e !important;
  color: #0e0e14 !important;
}

.p0-btn-secondary {
  display: inline-block;
  border: 1px solid var(--p0-gold-30);
  color: var(--p0-gold);
  font-weight: 600;
  font-size: 16px;
  padding: 14px 32px;
  border-radius: var(--p0-radius-sm);
  text-decoration: none;
  transition: border-color 0.2s;
  cursor: pointer;
  background: transparent;
}
.p0-btn-secondary:hover { border-color: var(--p0-gold); }

.p0-btn-full,
.elementor-button.p0-btn-full,
.elementor-widget-button .elementor-button.p0-btn-full {
  display: block !important;
  width: 100% !important;
  background: #c8a96e !important;
  color: #0e0e14 !important;
  font-weight: 700 !important;
  font-size: 18px !important;
  padding: 18px 24px !important;
  border-radius: 12px !important;
  text-decoration: none !important;
  text-align: center !important;
  transition: opacity 0.2s !important;
  cursor: pointer !important;
  border: none !important;
  box-shadow: none !important;
}
.p0-btn-full:hover,
.elementor-button.p0-btn-full:hover,
.elementor-widget-button .elementor-button.p0-btn-full:hover {
  opacity: 0.9 !important;
  background: #c8a96e !important;
  color: #0e0e14 !important;
}

/* ── BADGE / PILL ────────────────────────────────────────────── */
.p0-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--p0-gold-10);
  border: 1px solid var(--p0-gold-30);
  border-radius: 999px;
  padding: 8px 20px;
  font-size: 13px;
  color: var(--p0-gold);
  font-weight: 600;
  margin-bottom: 28px;
}

.p0-badge::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--p0-gold);
  flex-shrink: 0;
}

.p0-tag {
  display: inline-block;
  background: var(--p0-gold-10);
  border: 1px solid var(--p0-gold-20);
  border-radius: var(--p0-radius-sm);
  padding: 8px 16px;
  font-size: 13px;
  color: var(--p0-gold);
  font-weight: 600;
}

/* ── CARDS ───────────────────────────────────────────────────── */
.p0-card {
  background: var(--p0-bg-card);
  border-radius: var(--p0-radius-lg);
  padding: 28px;
}

.p0-card-bordered {
  background: var(--p0-surface-1);
  border: 1px solid var(--p0-surface-2);
  border-radius: var(--p0-radius-lg);
  padding: 24px;
}

.p0-card-gold {
  background: var(--p0-bg-card);
  border: 1px solid var(--p0-gold-20);
  border-radius: var(--p0-radius-lg);
  padding: 28px;
}

/* ── GRID RESPONSIVO ─────────────────────────────────────────── */
.p0-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

.p0-grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.p0-grid-4 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

@media (min-width: 768px) {
  .p0-grid-2 { grid-template-columns: repeat(2, 1fr); }
  .p0-grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* ── DIVIDER ─────────────────────────────────────────────────── */
.p0-divider {
  border: none;
  border-top: 1px solid var(--p0-surface-2);
  margin: 24px 0;
}

/* ============================================================
   1. HERO SECTION (.p0-hero)
   ============================================================ */
.p0-hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(64px, 10vw, 120px) 24px;
  position: relative;
  overflow: hidden;
  text-align: center;
  background: var(--p0-bg-dark);
}

/* Glow dourado — nasce acima do topo (at 50% -10%) */
.p0-hero::before {
  content: '';
  pointer-events: none;
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% -10%,
    rgba(200, 169, 110, 0.12) 0%, transparent 70%);
  z-index: 0;
}

/* Grid de pontos brancos */
/*.p0-hero::after {
  content: '';
  pointer-events: none;
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(200,169,110,0.15) 1px, transparent 1px);
  background-size: 32px 32px;
  z-index: 0;
}*/

.p0-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
}

.p0-hero__headline {
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  color: var(--p0-text);
}

.p0-hero__subheadline {
  font-size: clamp(16px, 2.5vw, 20px);
  color: var(--p0-text-muted);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 40px;
}

.p0-hero__buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   2. URGENCY BAR (.p0-urgency)
   ============================================================ */
.p0-urgency {
  position: sticky;
  top: 0;
  z-index: 999;
  width: 100%;
  background: var(--p0-gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 16px;
}

@media (min-width: 768px) {
  .p0-urgency {
    height: 56px;
    flex-direction: row;
    gap: 24px;
  }
}

.p0-urgency__message {
  font-size: 13px;
  font-weight: 600;
  color: var(--p0-bg-dark);
}

@media (min-width: 768px) {
  .p0-urgency__message { font-size: 14px; }
}

.p0-urgency__countdown {
  font-family: monospace;
  font-size: 13px;
  font-weight: 700;
  color: var(--p0-bg-dark);
}

@media (min-width: 768px) {
  .p0-urgency__countdown { font-size: 14px; }
}

.p0-urgency__cta {
  font-size: 12px;
  font-weight: 700;
  color: var(--p0-bg-dark);
  background: rgba(14, 14, 20, 0.20);
  border-radius: 6px;
  padding: 4px 12px;
  text-decoration: none;
  transition: background 0.2s;
  border: none;
  cursor: pointer;
}
.p0-urgency__cta:hover { background: rgba(14, 14, 20, 0.30); }

/* ============================================================
   3. PROBLEM SECTION (.p0-problem)
   ============================================================ */
.p0-problem {
  padding: var(--p0-padding-sec);
  background: var(--p0-bg-alt);
  text-align: center;
}

.p0-problem__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  text-align: left;
}

.p0-problem__card {
  background: var(--p0-bg-card);
  border-radius: var(--p0-radius-lg);
  padding: 28px;
}

.p0-problem__icon {
  font-size: 32px;
  margin-bottom: 16px;
  line-height: 1;
}

.p0-problem__title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--p0-text);
}

.p0-problem__desc {
  font-size: 14px;
  color: var(--p0-text-faint);
  line-height: 1.6;
}

/* ============================================================
   4. SOLUTION SECTION (.p0-solution)
   ============================================================ */
.p0-solution {
  padding: var(--p0-padding-sec);
  background: var(--p0-bg-dark);
}

.p0-solution__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.p0-solution__label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--p0-gold);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.p0-solution__headline {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--p0-text);
}

.p0-solution__body {
  font-size: 16px;
  color: var(--p0-text-muted);
  line-height: 1.8;
  margin-bottom: 24px;
}

.p0-solution__image {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--p0-radius-lg);
  overflow: hidden;
  border: 1px solid var(--p0-gold-20);
}

.p0-solution__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================================
   5. VIDEO SECTION (.p0-video)
   ============================================================ */
.p0-video {
  padding: var(--p0-padding-sec);
  background: var(--p0-bg-alt);
  text-align: center;
}

.p0-video__container {
  max-width: 860px;
  margin: 0 auto;
}

.p0-video__wrapper {
  border-radius: var(--p0-radius);
  overflow: hidden;
  border: 1px solid var(--p0-gold-20);
  box-shadow: 0 0 60px rgba(200, 169, 110, 0.08);
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}

.p0-video__wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.p0-video__caption {
  text-align: center;
  font-size: 13px;
  color: var(--p0-text-faint);
  margin-top: 16px;
}

/* ============================================================
   6. FEATURES SECTION (.p0-features)
   ============================================================ */
.p0-features {
  padding: var(--p0-padding-sec);
  background: var(--p0-bg-alt);
  text-align: center;
}

.p0-features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  text-align: left;
}

.p0-features__card {
  background: var(--p0-bg-card);
  border-radius: var(--p0-radius-lg);
  padding: 28px;
}

.p0-features__number {
  font-size: 48px;
  font-weight: 900;
  color: var(--p0-gold);
  opacity: 0.30;
  line-height: 1;
  margin-bottom: 12px;
}

.p0-features__icon {
  font-size: 32px;
  margin-bottom: 16px;
  line-height: 1;
}

.p0-features__title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--p0-text);
}

.p0-features__desc {
  font-size: 14px;
  color: var(--p0-text-faint);
  line-height: 1.6;
}

/* ============================================================
   7. FRAMEWORK SECTION (.p0-framework)
   ============================================================ */
.p0-framework {
  padding: var(--p0-padding-sec);
  background: var(--p0-bg-dark);
}

.p0-framework__inner {
  max-width: 640px;
  margin: 0 auto;
}

.p0-framework__steps {
  list-style: none;
  padding: 0;
  margin: 0;
}

.p0-framework__step {
  display: flex;
  gap: 24px;
  padding-bottom: 40px;
  position: relative;
}

/* linha conectora */
.p0-framework__step:not(:last-child) .p0-framework__connector::after {
  content: '';
  display: block;
  width: 2px;
  flex: 1;
  background: var(--p0-surface-2);
  min-height: 24px;
  margin: 0 auto;
}

.p0-framework__col-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.p0-framework__connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}

.p0-framework__number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--p0-gold);
  color: var(--p0-bg-dark);
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .p0-framework__number { width: 48px; height: 48px; font-size: 18px; }
}

.p0-framework__content { flex: 1; padding-bottom: 10px; }

.p0-framework__step-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 600;
  color: var(--p0-text);
  margin-bottom: 8px;
}

.p0-framework__step-desc {
  font-size: 14px;
  color: var(--p0-text-muted);
  line-height: 1.7;
}

/* ============================================================
   8. METRICS SECTION (.p0-metrics)
   ============================================================ */
.p0-metrics {
  padding: var(--p0-padding-sec);
  background: var(--p0-bg-dark);
  text-align: center;
}

.p0-metrics__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .p0-metrics__grid { grid-template-columns: repeat(4, 1fr); }
}

.p0-metrics__card {
  background: var(--p0-surface-1);
  border: 1px solid var(--p0-surface-2);
  border-radius: var(--p0-radius-lg);
  padding: 24px;
  text-align: center;
}

@media (min-width: 768px) { .p0-metrics__card { padding: 32px; } }

.p0-metrics__icon {
  font-size: 28px;
  margin-bottom: 12px;
  line-height: 1;
}

.p0-metrics__value {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: var(--p0-gold);
  line-height: 1;
  margin-bottom: 8px;
}

.p0-metrics__label {
  font-size: 14px;
  color: var(--p0-text-muted);
}

/* ============================================================
   9. TESTIMONIALS SECTION (.p0-testimonials)
   ============================================================ */
.p0-testimonials {
  padding: var(--p0-padding-sec);
  background: var(--p0-bg-dark);
  text-align: center;
}

.p0-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  text-align: left;
}

.p0-testimonials__card {
  background: var(--p0-bg-alt);
  border-radius: var(--p0-radius-lg);
  padding: 32px;
}

.p0-testimonials__quote {
  font-size: 32px;
  color: var(--p0-gold);
  line-height: 1;
  margin-bottom: 8px;
}

.p0-testimonials__text {
  font-size: 15px;
  color: var(--p0-text-muted);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
}

.p0-testimonials__highlight {
  display: inline-block;
  background: var(--p0-gold-10);
  border: 1px solid var(--p0-gold-20);
  border-radius: var(--p0-radius-sm);
  padding: 8px 14px;
  font-size: 15px;
  font-weight: 700;
  color: var(--p0-gold);
  margin-bottom: 16px;
}

.p0-testimonials__author-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.p0-testimonials__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--p0-gold-10);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--p0-gold);
}

.p0-testimonials__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p0-testimonials__author {
  font-size: 14px;
  font-weight: 600;
  color: var(--p0-text);
}

.p0-testimonials__role {
  font-size: 13px;
  color: var(--p0-text-faint);
}

/* ============================================================
   10. AUTHORITY SECTION (.p0-authority)
   ============================================================ */
.p0-authority {
  padding: var(--p0-padding-sec);
  background: var(--p0-bg-dark);
}

.p0-authority__inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

@media (min-width: 768px) {
  .p0-authority__inner { flex-direction: row; align-items: flex-start; }
}

.p0-authority__photo-wrap {
  flex-shrink: 0;
  width: 100%;
  max-width: 220px;
}

@media (min-width: 768px) { .p0-authority__photo-wrap { width: 33%; } }

.p0-authority__photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: var(--p0-radius-xl);
  overflow: hidden;
}

.p0-authority__photo img { width: 100%; height: 100%; object-fit: cover; }

.p0-authority__content { flex: 1; }

.p0-authority__name {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  color: var(--p0-text);
  margin-bottom: 8px;
}

.p0-authority__title {
  font-size: 16px;
  font-weight: 500;
  color: var(--p0-gold);
  margin-bottom: 20px;
}

.p0-authority__quote {
  border-left: 4px solid var(--p0-gold);
  padding-left: 16px;
  font-size: 18px;
  font-style: italic;
  line-height: 1.7;
  color: var(--p0-text-muted);
  margin-bottom: 20px;
}

.p0-authority__bio {
  font-size: 16px;
  color: var(--p0-text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.p0-authority__credentials {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.p0-authority__credential-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: var(--p0-text-muted);
}

.p0-authority__credential-item::before {
  content: '✓';
  color: var(--p0-gold);
  font-weight: 700;
  flex-shrink: 0;
}

/* ============================================================
   11. STORY SECTION (.p0-story)
   ============================================================ */
.p0-story {
  padding: var(--p0-padding-sec);
  background: var(--p0-bg-alt);
}

.p0-separador {
  background: var(--p0-bg-alt);
}

.p0-story__inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 48px;
}

@media (min-width: 768px) {
  .p0-story__inner { flex-direction: row; }
  .p0-story__inner--reverse { flex-direction: row-reverse; }
}

.p0-story__photo-wrap {
  flex-shrink: 0;
  width: 100%;
}

@media (min-width: 768px) { .p0-story__photo-wrap { width: 40%; } }

.p0-story__photo {
  position: relative;
  width: 100%;
  height: 288px;
  border-radius: var(--p0-radius-xl);
  overflow: hidden;
}

@media (min-width: 768px) { .p0-story__photo { height: 384px; } }

.p0-story__photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; }

.p0-story__content { flex: 1; }

.p0-story__pre {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--p0-gold);
  margin-bottom: 16px;
}

.p0-story__headline {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  color: var(--p0-text);
  margin-bottom: 20px;
}

.p0-story__body {
  font-size: 16px;
  color: var(--p0-text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.p0-story__signature {
  border-top: 1px solid var(--p0-surface-2);
  padding-top: 16px;
  margin-top: 16px;
}

.p0-story__sig-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--p0-text);
}

.p0-story__sig-role {
  font-size: 14px;
  color: var(--p0-text-faint);
}

/* ============================================================
   12. MOCKUP SECTION (.p0-mockup)
   ============================================================ */
.p0-mockup {
  padding: var(--p0-padding-sec);
  background: var(--p0-bg-dark);
}

.p0-mockup__inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

@media (min-width: 768px) {
  .p0-mockup__inner { flex-direction: row; }
}

.p0-mockup__visual {
  flex-shrink: 0;
  width: 100%;
  position: relative;
}

@media (min-width: 768px) { .p0-mockup__visual { width: 50%; } }

.p0-mockup__image {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--p0-radius-xl);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
}

.p0-mockup__image img { width: 100%; height: 100%; object-fit: cover; }

.p0-mockup__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--p0-gold);
  color: var(--p0-bg-dark);
  font-size: 13px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 999px;
}

.p0-mockup__content { flex: 1; }

.p0-mockup__headline {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  color: var(--p0-text);
  margin-bottom: 16px;
}

.p0-mockup__caption {
  font-size: 16px;
  color: var(--p0-text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.p0-mockup__features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.p0-mockup__feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--p0-text);
}

.p0-mockup__feature::before {
  content: '✓';
  color: var(--p0-gold);
  font-weight: 700;
  flex-shrink: 0;
}

/* ============================================================
   13. OBJECTIONS SECTION (.p0-objections)
   ============================================================ */
.p0-objections {
  padding: var(--p0-padding-sec);
  background: var(--p0-bg-dark);
}

.p0-objections__inner {
  max-width: 760px;
  margin: 0 auto;
}

.p0-objections__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.p0-objections__item {
  background: var(--p0-surface-1);
  border: 1px solid var(--p0-surface-2);
  border-left: 4px solid var(--p0-gold);
  border-radius: var(--p0-radius-lg);
  padding: 24px;
}

.p0-objections__question {
  font-size: 16px;
  font-weight: 600;
  color: var(--p0-text);
  margin-bottom: 12px;
}

.p0-objections__answer {
  font-size: 16px;
  color: var(--p0-text-muted);
  line-height: 1.7;
}

/* ============================================================
   14. FAQ SECTION (.p0-faq)
   ============================================================ */
.p0-faq {
  padding: var(--p0-padding-sec);
  background: var(--p0-bg-alt);
  text-align: center;
}

.p0-faq__inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: left;
}

.p0-faq__item {
  border-bottom: 1px solid var(--p0-surface-2);
}

.p0-faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--p0-text);
  font-size: 16px;
  font-weight: 500;
  text-align: left;
  gap: 16px;
}

.p0-faq__icon {
  color: var(--p0-gold);
  font-size: 20px;
  flex-shrink: 0;
}

.p0-faq__answer {
  padding-bottom: 20px;
  font-size: 14px;
  color: var(--p0-text-muted);
  line-height: 1.7;
}

/* ============================================================
   15. COMPARISON SECTION (.p0-comparison)
   ============================================================ */
.p0-comparison {
  padding: var(--p0-padding-sec);
  background: var(--p0-bg-dark);
  text-align: center;
}

.p0-comparison__inner {
  max-width: 860px;
  margin: 0 auto;
}

.p0-comparison__table-wrap { overflow-x: auto; width: 100%; }

.p0-comparison__table {
  width: 100%;
  border-collapse: collapse;
}

.p0-comparison__th {
  padding: 12px 16px;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  color: var(--p0-gold);
  background: var(--p0-surface-1);
  border-bottom: 1px solid var(--p0-surface-2);
}

.p0-comparison__th--label {
  text-align: left;
  color: var(--p0-text-faint);
  font-size: 14px;
  font-weight: 400;
}

.p0-comparison__td {
  padding: 16px;
  text-align: center;
  font-size: 14px;
  color: var(--p0-text-muted);
  border-top: 1px solid var(--p0-surface-2);
}

.p0-comparison__td--label {
  text-align: left;
  font-size: 14px;
  font-weight: 500;
  color: var(--p0-text-muted);
  padding: 12px;
}

.p0-comparison__td--highlight {
  background: var(--p0-surface-1);
}

.p0-comparison__check  { color: var(--p0-gold); font-size: 18px; }
.p0-comparison__cross  { color: var(--p0-text-faint); font-size: 18px; }

/* ============================================================
   16. AGENDA SECTION (.p0-agenda)
   ============================================================ */
.p0-agenda {
  padding: var(--p0-padding-sec);
  background: var(--p0-bg-dark);
}

.p0-agenda__inner {
  max-width: 640px;
  margin: 0 auto;
}

.p0-agenda__list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--p0-surface-2);
}

.p0-agenda__item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 20px 0;
  border-bottom: 1px solid var(--p0-surface-2);
}

@media (min-width: 768px) {
  .p0-agenda__item { flex-direction: row; gap: 24px; }
}

.p0-agenda__time {
  font-family: monospace;
  font-size: 14px;
  font-weight: 700;
  color: var(--p0-gold);
  flex-shrink: 0;
  min-width: 80px;
}

.p0-agenda__content { flex: 1; }

.p0-agenda__title-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.p0-agenda__title {
  font-size: 16px;
  font-weight: 600;
  color: var(--p0-text);
}

.p0-agenda__desc {
  font-size: 14px;
  color: var(--p0-text-muted);
  line-height: 1.6;
}

/* ============================================================
   17. PRICE STACK SECTION (.p0-price-stack)
   ============================================================ */
    
.p0-price-stack { padding: var(--p0-padding-sec); background: var(--p0-bg-dark); }
.p0-price-stack__inner { max-width: 560px; }
.p0-price-stack__label {
  font-size: 13px; font-weight: 700; letter-spacing: 0.12em;
  color: var(--p0-gold); text-transform: uppercase; margin-bottom: 16px; text-align: center;
}

.p0-price-stack__title {
  font-size: clamp(28px,4vw,42px); font-weight: 800; line-height: 1.1;
  color: var(--p0-text); margin-bottom: 12px; text-align: center;
}

.p0-price-stack__sub {
  font-size: 16px; color: var(--p0-text-muted); text-align: center; margin-bottom: 40px; line-height: 1.6;
}
.p0-stack-section-title {
  font-size: 11px; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--p0-text-faint); margin-bottom: 16px;
}
.p0-price-stack__items { list-style: none; display: flex; flex-direction: column; gap: 0; }
.p0-price-stack__item {
  display: flex; align-items: flex-start; justify-content: space-between;
  padding: 16px 0; border-bottom: 1px solid var(--p0-surface-2); gap: 16px;
}
.p0-price-stack__item:last-child { border-bottom: none; }
.p0-item-info { flex: 1; }
.p0-item-name { font-size: 15px; font-weight: 600; color: var(--p0-text); margin-bottom: 4px; }
.p0-item-desc { font-size: 13px; color: var(--p0-text-faint); line-height: 1.5; }
.p0-price-stack__item-price {
  font-size: 14px; color: var(--p0-text-faint); text-decoration: line-through;
  flex-shrink: 0; padding-top: 2px;
}
.p0-price-stack__divider { border: none; border-top: 1px solid var(--p0-surface-2); margin: 24px 0; }
.p0-price-stack__totals { text-align: right; }
.p0-price-stack__original {
  font-size: 18px; color: var(--p0-text-faint); text-decoration: line-through; margin-bottom: 6px;
}
.p0-price-stack__price {
  font-size: clamp(36px,5vw,52px); font-weight: 700; color: var(--p0-gold); line-height: 1;
}
.p0-price-stack__installments { font-size: 14px; color: var(--p0-text-muted); margin-top: 8px; }
.p0-btn-full {
  display: block; width: 100%; background: #c8a96e; color: #0e0e14;
  font-weight: 700; font-size: 18px; padding: 18px 24px; border-radius: 12px;
  text-decoration: none; text-align: center; transition: opacity .2s;
  cursor: pointer; border: none; margin-top: 28px;
}
.p0-btn-full:hover { opacity: 0.9; }
.p0-price-stack__note { font-size: 13px; color: var(--p0-text-faint); text-align: center; margin-top: 14px; }
.p0-bonus-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--p0-gold-10); border: 1px solid var(--p0-gold-30);
  border-radius: 6px; padding: 6px 14px;
  font-size: 12px; color: var(--p0-gold); font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px;
}

/* ============================================================
   18. CTA SECTION (.p0-cta)
   ============================================================ */
.p0-cta {
  padding: var(--p0-padding-sec);
  background: var(--p0-bg-alt);
  border-top: 1px solid var(--p0-gold-20);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.p0-cta::before {
  content: '';
  pointer-events: none;
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 100%,
    rgba(200, 169, 110, 0.08) 0%, transparent 70%);
}

.p0-cta__inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}

.p0-cta__headline {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: var(--p0-text);
  margin-bottom: 12px;
}

.p0-cta__sub {
  font-size: 16px;
  color: var(--p0-text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}

.p0-cta__price-original {
  font-size: 18px;
  color: var(--p0-text-faint);
  text-decoration: line-through;
  margin-right: 8px;
}

.p0-cta__price {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  color: var(--p0-gold);
  line-height: 1;
  margin-top: 4px;
}

.p0-cta__installments {
  font-size: 15px;
  color: var(--p0-text-muted);
  margin-top: 8px;
  margin-bottom: 32px;
}

.p0-cta__note {
  display: inline-block;
  background: var(--p0-gold-10);
  border: 1px solid var(--p0-gold-20);
  border-radius: var(--p0-radius-sm);
  padding: 8px 16px;
  font-size: 13px;
  color: var(--p0-gold);
  margin-top: 16px;
}

/* ============================================================
   19. FINAL OFFER SECTION (.p0-final-offer)
   ============================================================ */
.p0-final-offer {
  padding: var(--p0-padding-sec);
  background: var(--p0-bg-dark);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.p0-final-offer::before {
  content: '';
  pointer-events: none;
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 100%,
    rgba(200, 169, 110, 0.10) 0%, transparent 70%);
}

.p0-final-offer__inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}

.p0-final-offer__inclusions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  text-align: left;
  margin: 32px 0;
}

@media (min-width: 768px) {
  .p0-final-offer__inclusions { grid-template-columns: repeat(2, 1fr); }
}

.p0-final-offer__inclusion {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: var(--p0-text-muted);
}

.p0-final-offer__inclusion::before {
  content: '✓';
  color: var(--p0-gold);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.p0-final-offer__price {
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 700;
  color: var(--p0-gold);
  line-height: 1;
}

.p0-final-offer__installments {
  font-size: 14px;
  color: var(--p0-text-faint);
  margin-top: 8px;
  margin-bottom: 8px;
}

.p0-final-offer__countdown {
  font-size: 14px;
  color: var(--p0-text-muted);
  margin-bottom: 28px;
}

.p0-final-offer__note {
  font-size: 12px;
  color: var(--p0-text-faint);
  margin-top: 16px;
}

/* ============================================================
	Footer SECTION
	=========================================================== */
 
.p0-footer {
  border-top: 0px solid rgba(200,169,110,0.15);
  padding: 24px;
  text-align: center;
}

.p0-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.p0-footer__links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.p0-footer__link {
  font-size: 13px;
  color: var(--p0-text-faint);
  text-decoration: none;
  transition: color .2s;
}

.p0-footer__link:hover { color: var(--p0-gold); }

.p0-footer__sep { color: var(--p0-surface-2); font-size: 13px; }

.p0-footer__copy {
  font-size: 12px;
  color: var(--p0-text-faint);
}

/* ============================================================
   20. GUARANTEE SECTION (.p0-guarantee)
   ============================================================ */
.p0-guarantee {
  padding: var(--p0-padding-sec);
  background: var(--p0-bg-dark);
}

.p0-guarantee__inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.p0-guarantee__box {
  border: 1px solid var(--p0-gold-20);
  border-radius: var(--p0-radius-xl);
  padding: 48px 32px;
}

.p0-guarantee__icon {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

.p0-guarantee__shield {
  width: 64px;
  height: 64px;
  color: var(--p0-gold);
}

.p0-guarantee__headline {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  color: var(--p0-text);
  margin-bottom: 16px;
}

.p0-guarantee__body {
  font-size: 16px;
  color: var(--p0-text-muted);
  line-height: 1.8;
  max-width: 480px;
  margin: 0 auto 28px;
}

.p0-guarantee__days {
  display: inline-block;
  border: 2px solid var(--p0-gold);
  border-radius: 999px;
  padding: 8px 24px;
  font-size: clamp(18px, 2.5vw, 22px);
  font-weight: 700;
  color: var(--p0-gold);
  margin-bottom: 16px;
}

.p0-guarantee__note {
  font-size: 12px;
  color: var(--p0-text-faint);
}

/* ============================================================
   21. CUSTOM HTML SECTION (.p0-custom-html)
   ============================================================ */
.p0-custom-html {
  padding: 48px 24px;
  background: var(--p0-bg-dark);
}

.p0-custom-html__inner {
  max-width: 900px;
  margin: 0 auto;
}

/* ============================================================
   SEÇÕES CLARAS — CANVAS (#F5F4F0)
   Seções 2 (O Sistema), 4 (O que é o Ponto 0), 6 (O Mentor)
   ============================================================ */

/* ── BASE LIGHT ─────────────────────────────────────────────── */
.p0-light {
    padding: var(--p0-padding-sec) !important;
    background: #f5f4f0 !important;
}

/* Container principal — padding lateral impede overflow no mobile */
.p0-light__inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 48px;
}

@media (min-width: 768px) {
  .p0-light__inner { padding: 0 24px; }
}

/* Container estreito (texto centralizado) */
.p0-light__inner--sm {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
  text-align: center;
}

@media (min-width: 768px) {
  .p0-light__inner--sm { padding: 0 24px; }
}

/* ── TIPOGRAFIA LIGHT ────────────────────────────────────────── */
.p0-light__label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #c8a96e;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.p0-light__headline {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  color: #1a1a1a;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.p0-light__subheadline {
  font-size: clamp(15px, 2vw, 18px);
  color: #3a3a3a;
  line-height: 1.7;
  margin-bottom: 16px;
}

.p0-light__body {
  font-size: 16px;
  color: #3a3a3a;
  line-height: 1.8;
  margin-bottom: 24px;
}

.p0-light__quote {
  font-size: clamp(15px, 2vw, 18px);
  font-style: italic;
  color: #3a3a3a;
  line-height: 1.7;
  border-left: 3px solid #c8a96e;
  padding-left: 20px;
  margin: 24px 0;
}

/* ── GRID DE CARDS (pilares, features) ──────────────────────── */
.p0-light__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 40px;
}

@media (min-width: 560px) {
  .p0-light__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  .p0-light__grid { grid-template-columns: repeat(4, 1fr); }
}

.p0-light__card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.07);
  padding: 24px;
  box-sizing: border-box;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05), 0 4px 12px rgba(0, 0, 0, 0.04);
}

.p0-light__card-icon {
  font-size: 20px;
  color: #c8a96e;
  margin-bottom: 12px;
  line-height: 1;
}

.p0-light__card-title {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
  line-height: 1.3;
}

.p0-light__card-desc {
  font-size: 14px;
  color: #71717a;
  line-height: 1.6;
}

/* ── BOTÃO LIGHT (mesmo ouro, fundo claro) ──────────────────── */
.p0-light__btn,
.elementor-button.p0-light__btn,
.elementor-widget-button .elementor-button.p0-light__btn {
  display: inline-block !important;
  background: #c8a96e !important;
  color: #0e0e14 !important;
  font-weight: 700 !important;
  font-size: 16px !important;
  padding: 14px 32px !important;
  border-radius: 8px !important;
  text-decoration: none !important;
  transition: opacity 0.2s !important;
  border: none !important;
  box-shadow: none !important;
  cursor: pointer !important;
}

.p0-light__btn:hover,
.elementor-button.p0-light__btn:hover,
.elementor-widget-button .elementor-button.p0-light__btn:hover {
  opacity: 0.9 !important;
  background: #c8a96e !important;
  color: #0e0e14 !important;
}

/* ── LAYOUT MENTOR (Seção 6 — foto + texto) ─────────────────── */
.p0-light__mentor {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .p0-light__mentor { flex-direction: row; gap: 64px; align-items: flex-start; }
}

.p0-light__mentor-photo {
  width: 100%;
  flex-shrink: 0;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .p0-light__mentor-photo { width: 33%; }
}

.p0-light__mentor-photo img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 20px;
  display: block;
}

.p0-light__mentor-content {
  flex: 1;
  min-width: 0; /* impede overflow do flex item */
}

/* ── RESPONSIVIDADE MOBILE LIGHT ────────────────────────────── */
@media (max-width: 767px) {
  .p0-light { padding: 48px 0; }
  .p0-light__mentor { flex-direction: column; }
  .p0-light__mentor-photo { width: 100%; max-width: 280px; }
  .p0-light__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   RESPONSIVIDADE GLOBAL
   ============================================================ */
@media (max-width: 767px) {
  .p0-section { padding: 48px 20px; }
  .p0-hero     { padding: 64px 20px; }
  .p0-solution__grid { gap: 32px; }
  .p0-authority__inner { flex-direction: column; }
  .p0-mockup__inner    { flex-direction: column; }
  .p0-story__inner     { flex-direction: column; }
}

/* ── NESTED ACCORDION ── */
.e-n-accordion-item {
  border: none !important;
  border-bottom: 1px solid var(--p0-gold-30) !important;
  border-radius: 0 !important;
  background: transparent !important;
  margin-bottom: 0 !important;
}

.e-n-accordion-item-title {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 20px 0 !important;
  cursor: pointer !important;
}

.e-n-accordion-item-title-text {
  color: var(--p0-text) !important;
  font-weight: 600 !important;
  font-size: 16px !important;
  order: 1 !important;
}

/* Ícone direita, dourado, rotaciona ao abrir */
.e-n-accordion-item-title-icon {
  order: 2 !important;
  margin-left: auto !important;
  padding-left: 16px !important;
}

.e-n-accordion-item .e-n-accordion-item-title-icon .e-opened {
  display: none !important;
}

.e-n-accordion-item .e-n-accordion-item-title-icon .e-closed {
  display: flex !important;
  transition: transform 0.25s ease !important;
}

.e-n-accordion-item[open] .e-n-accordion-item-title-icon .e-closed {
  transform: rotate(45deg) !important;
}

.e-n-accordion-item-title-icon svg {
  fill: var(--p0-gold) !important;
  width: 18px !important;
  height: 18px !important;
  transition: transform 0.25s ease !important;
}

/* Conteúdo */
.e-n-accordion-item[open] .e-con {
  border-top: 1px solid rgba(255,255,255,0.06) !important;
  padding: 16px 0 20px !important;
}

.e-n-accordion-item[open] .e-con p {
  color: var(--p0-text-muted) !important;
  font-size: 15px !important;
  line-height: 1.7 !important;
}

/* Imagem */ 

.p0-imagem-wrapper img {
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    black 0%,
    black 50%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    black 0%,
    black 50%,
    transparent 100%
  );
}