:root {
  --primary: #0b192c;
  --primary-light: #183454;
  --accent: #5aa3ff;
  --highlight: #e2b258;
  --highlight-dark: #cf9b3c;
  --bg-light: #f8fafc;
  --bg-soft: #eef4fb;
  --bg-dark: #111c2d;
  --border: #dbe6f2;
  --text-main: #334155;
  --text-dark: #0f172a;
  --text-light: #f1f5f9;
  --text-muted: #64748b;
  --success: #10b981;
  --warning: #d97706;

  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;

  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 10px 24px rgba(15, 23, 42, 0.1);
  --shadow-lg: 0 20px 40px rgba(15, 23, 42, 0.14);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --transition: all 0.28s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-main);
  line-height: 1.6;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

body.modal-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  line-height: 1.15;
}

.container {
  width: min(92%, 1200px);
  margin: 0 auto;
}

.section-padding {
  padding: 84px 0;
}

.bg-light {
  background: var(--bg-light);
}

.bg-dark {
  background: linear-gradient(180deg, var(--primary), var(--bg-dark));
}

.text-white {
  color: #fff !important;
}

.text-gold {
  color: var(--highlight);
}

.text-center {
  text-align: center;
}

.relative {
  position: relative;
}

.margin-top-large {
  margin-top: 36px;
}

.narrow {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.left {
  text-align: left;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border: 0;
  border-radius: var(--radius-sm);
  padding: 16px 28px;
  font-size: 17px;
  font-weight: 800;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.btn-primary {
  background: var(--highlight);
  color: #1d1603;
  box-shadow: 0 12px 28px rgba(226, 178, 88, 0.28);
}

.btn-primary:hover {
  background: var(--highlight-dark);
  transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(226, 178, 88, 0.34);
}

.btn-secondary {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.34);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.62);
}

.btn-large {
  font-size: 19px;
  padding: 18px 36px;
}

.btn-small {
  font-size: 15px;
  padding: 14px 20px;
}

@media (min-width: 768px) {
  .btn {
    width: auto;
  }
}

.top-banner {
  background: #07111c;
  color: #fff;
  text-align: center;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 600;
}

.top-banner strong {
  color: var(--highlight);
}

.top-banner .divider {
  display: none;
  margin: 0 8px;
  color: var(--highlight);
}

.hero-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: #fff;
  padding: 64px 0 78px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 42px;
  align-items: center;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--highlight);
  margin-bottom: 18px;
  font-size: 13px;
}

.headline {
  color: #fff;
  font-size: 34px;
  margin-bottom: 18px;
}

.headline .highlight {
  color: var(--accent);
}

.subheadline {
  color: #dbe7f5;
  font-size: 18px;
  margin-bottom: 26px;
}

.hero-bullets {
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
}

.hero-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #edf3fb;
  font-size: 16px;
}

.hero-bullets .icon {
  width: 22px;
  height: 22px;
  color: var(--highlight);
  flex-shrink: 0;
  margin-top: 2px;
}

.hero-pricing {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.08);
  border-left: 4px solid var(--highlight);
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  margin-bottom: 28px;
  width: 100%;
}

.price-old {
  color: #9fb2c8;
  text-decoration: line-through;
  font-size: 15px;
}

.price-current {
  color: #fff;
  font-size: 22px;
}

.price-installments {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.installments-prefix {
  font-size: 16px;
  color: #dce5ef;
  font-weight: 600;
}

.installments-line {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}

.installments-count {
  font-size: 15px;
  font-weight: 700;
  color: #dce5ef;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.price-value {
  color: var(--highlight);
  font-size: 48px;
  font-weight: 800;
  line-height: 0.95;
}

.price-note {
  color: #dce5ef;
  font-size: 14px;
  font-weight: 600;
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 18px;
}

.trust-microtexts {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: #bfd0e3;
  font-size: 13px;
  margin-bottom: 14px;
}

.trust-microtexts span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.trust-microtexts svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
}

.hero-method-note {
  color: #c8d8ea;
  font-size: 14px;
  max-width: 620px;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.mockup-container {
  position: relative;
  width: min(100%, 470px);
}

.hero-main-img {
  filter: drop-shadow(0 20px 34px rgba(0,0,0,0.38));
  animation: float 6s ease-in-out infinite;
}

.hero-badge-card {
  position: absolute;
  right: -6px;
  bottom: 14px;
  background: rgba(7,17,28,0.92);
  color: #fff;
  padding: 14px 16px;
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255,255,255,0.08);
}

.hero-badge-card strong {
  display: block;
  color: var(--highlight);
  margin-bottom: 4px;
  font-size: 14px;
}

.hero-badge-card span {
  font-size: 13px;
  color: #d5e0ee;
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.hero-badge-card span small {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #9fb2c8;
}
.offer-seal {
  position: absolute;
  top: -18px;
  right: -10px;
  width: 92px;
  height: 92px;
  border-radius: 999px;
  background: var(--highlight);
  color: #1d1603;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transform: rotate(12deg);
  box-shadow: var(--shadow-md);
}

.offer-seal span {
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
}

.offer-seal strong {
  font-size: 14px;
  letter-spacing: 0.02em;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.trust-strip {
  background: #fff;
  border-bottom: 1px solid var(--border);
}

.trust-strip-grid {
  display: grid;
  grid-template-columns: 1fr;
}

.trust-strip-item {
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}

.trust-strip-item strong {
  display: block;
  color: var(--primary);
  margin-bottom: 4px;
  font-size: 16px;
}

.trust-strip-item span {
  color: var(--text-muted);
  font-size: 14px;
}

.section-title {
  font-size: 29px;
  margin-bottom: 22px;
  text-align: center;
}

.section-title span {
  color: var(--accent);
}

.section-subtitle,
.section-intro {
  font-size: 17px;
  color: var(--text-main);
  margin: 0 auto 44px;
  max-width: 850px;
}

.section-header {
  margin-bottom: 44px;
}

.target-grid,
.pain-grid,
.ebooks-grid,
.diff-grid,
.samples-grid,
.method-grid,
.clarity-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.target-card,
.method-card,
.clarity-card,
.info-box {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.target-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: var(--transition);
}

.target-card:hover,
.ebook-card:hover,
.method-card:hover,
.clarity-card:hover,
.info-box:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.icon-wrapper {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: #e8f1fe;
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-wrapper svg {
  width: 22px;
  height: 22px;
}

.center-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.methodology-lead {
  display: grid;
  gap: 16px;
  max-width: 920px;
  margin: 0 auto 36px;
}

.method-card h3,
.clarity-card h3,
.info-box h3,
.ebook-info h3,
.diff-block h3,
.sample-card h3,
.footer-column h4 {
  font-size: 19px;
  margin-bottom: 10px;
  color: var(--primary);
}

.pain-section {
  background: linear-gradient(to bottom, #fff, #fbfdff);
}

.pain-card {
  background: #fff;
  border: 1px solid var(--border);
  border-left: 4px solid var(--warning);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  gap: 14px;
  box-shadow: var(--shadow-sm);
}

.pain-icon {
  color: var(--warning);
  font-weight: 800;
  font-size: 22px;
  line-height: 1;
  margin-top: 2px;
}

.ebooks-grid {
  gap: 28px;
}

.ebook-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.ebook-img {
  background: var(--bg-light);
  padding: 28px;
  display: flex;
  justify-content: center;
  border-bottom: 1px solid var(--border);
}

.ebook-img img {
  height: 208px;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(15, 23, 42, 0.14));
}

.ebook-info {
  padding: 22px;
}

.micro-benefits {
  display: grid;
  gap: 10px;
}

.micro-benefits li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
}

.micro-benefits li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--success);
  font-weight: 800;
}

.package-note,
.package-economy,
.samples-transparency,
.cta-support-text {
  text-align: center;
}

.package-note {
  margin: 34px auto 12px;
  max-width: 850px;
}

.package-economy {
  color: var(--primary);
  font-weight: 700;
}

.diff-grid {
  gap: 18px;
}

.diff-block {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 26px 20px;
  color: #fff;
  text-align: center;
}

.diff-block h3 {
  color: #fff;
}

.diff-block p {
  color: #d7e4f2;
  font-size: 14px;
}

.diff-icon {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(226,178,88,0.16);
  border: 1px solid rgba(226,178,88,0.3);
  color: var(--highlight);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  margin-bottom: 14px;
}

.sample-card {
  text-align: center;
}

.sample-thumb {
  position: relative;
  overflow: hidden;
  background: var(--bg-light);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  padding: 20px;
  margin-bottom: 14px;
}

.sample-thumb img {
  height: 248px;
  object-fit: contain;
  margin: 0 auto;
  transition: transform 0.4s ease;
}

.sample-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(11,25,44,0.8);
  opacity: 0;
  transition: opacity 0.28s ease;
}

.sample-thumb:hover .sample-overlay {
  opacity: 1;
}

.sample-thumb:hover img {
  transform: scale(1.05);
}

.btn-sample {
  border: none;
  background: #fff;
  color: var(--primary);
  font-weight: 800;
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.sample-caption {
  color: var(--text-muted);
  font-size: 14px;
}

.samples-transparency {
  max-width: 760px;
  margin: 32px auto 0;
  color: var(--text-muted);
}

.cta-support-text {
  color: var(--text-muted);
  font-size: 14px;
}

.benefits-list {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

.benefits-list li {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
}

.benefits-list svg {
  width: 24px;
  height: 24px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.benefits-list strong {
  display: block;
  color: var(--primary);
  margin-bottom: 4px;
}

.clarity-grid {
  gap: 24px;
}

.offer-section {
  background: linear-gradient(to bottom, #fff, #eff6ff);
}

.offer-box {
  max-width: 860px;
  margin: 0 auto;
  background: #fff;
  border: 4px solid var(--primary);
  border-radius: var(--radius-lg);
  padding: 34px 20px;
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.offer-title {
  font-size: 30px;
  margin-bottom: 14px;
}

.offer-title span {
  display: block;
  color: var(--accent);
}

.offer-support {
  max-width: 740px;
  margin: 0 auto 28px;
}

.offer-checklist {
  max-width: 460px;
  margin: 0 auto 24px;
  text-align: left;
  display: grid;
  gap: 10px;
}

.offer-checklist li {
  position: relative;
  padding-left: 18px;
  font-size: 17px;
}

.offer-checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--success);
  font-weight: 800;
}

.mini-value-box {
  display: inline-block;
  margin-bottom: 18px;
  background: #fff7e5;
  border: 1px solid #f1d596;
  color: #7a5612;
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 700;
  font-size: 14px;
}

.price-container {
  margin-bottom: 26px;
}

.price-regular {
  color: var(--text-muted);
  font-size: 18px;
}

.price-offer {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  font-size: 58px;
  line-height: 1;
  font-weight: 800;
  color: var(--text-dark);
  margin: 8px 0;
  flex-wrap: wrap;
}

.price-offer .installments-count {
  font-size: 18px;
  color: var(--text-muted);
}

.price-offer strong {
  color: var(--highlight);
}

.price-condition,
.security-text {
  color: var(--text-muted);
}

.security-text {
  margin-top: 16px;
  font-size: 13px;
}

.offer-support-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 28px;
  text-align: left;
}

.info-box small {
  display: block;
  margin-top: 10px;
  color: var(--text-muted);
}

.contact-box a {
  display: inline-block;
  margin-top: 10px;
  color: var(--accent);
  font-weight: 700;
  word-break: break-word;
}

.scarcity-alert {
  max-width: 860px;
  margin: 20px auto 0;
  background: #fff6dd;
  border: 1px solid #f3d38c;
  border-radius: var(--radius-md);
  color: #8a5b0f;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 12px;
  padding: 16px 18px;
}

.accordion {
  max-width: 860px;
  margin: 0 auto;
}

.accordion-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
  overflow: hidden;
}

.accordion-header {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 18px 20px;
  text-align: left;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  transition: var(--transition);
}

.accordion-header:hover {
  background: var(--bg-light);
}

.accordion-header.active {
  color: var(--accent);
}

.accordion-header .icon {
  font-size: 24px;
  line-height: 1;
  transition: transform 0.3s ease;
}

.accordion-header.active .icon {
  transform: rotate(45deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
}

.accordion-content p {
  padding: 0 20px 20px;
}

.new-product-section {
  background: #fff;
}

.final-cta-section .section-intro {
  color: #e1ebf5;
}

.sticky-cta-mobile {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  background: #fff;
  box-shadow: 0 -10px 24px rgba(15, 23, 42, 0.12);
  padding: 14px;
  transform: translateY(100%);
  transition: transform 0.28s ease;
}

.sticky-cta-mobile.visible {
  transform: translateY(0);
}

.sticky-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: min(100%, 560px);
  margin: 0 auto;
}

.sticky-text {
  display: flex;
  flex-direction: column;
}

.sticky-price {
  color: var(--primary);
  font-weight: 800;
  font-size: 24px;
  display: flex;
  align-items: baseline;
  gap: 6px;
  line-height: 1;
}

.sticky-price small {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-muted);
}

.sticky-desc {
  color: var(--text-muted);
  font-size: 11px;
}

.sticky-cta-mobile .btn {
  width: auto;
  padding: 12px 18px;
  font-size: 15px;
  flex-shrink: 0;
}

.site-footer {
  background: var(--bg-dark);
  color: #fff;
  padding: 60px 0 22px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding-bottom: 32px;
  margin-bottom: 18px;
}

.footer-brand h3,
.footer-column h4 {
  color: #fff;
}

.footer-brand p,
.footer-column a,
.footer-disclaimer {
  color: #b8c7d8;
}

.footer-column {
  display: grid;
  gap: 10px;
}

.footer-column a:hover,
.footer-brand a:hover {
  color: #fff;
}

.footer-disclaimer {
  text-align: center;
  font-size: 12px;
}

.footer-disclaimer p + p {
  margin-top: 8px;
}

.hidden {
  display: none;
}

/* ==========================================================================
   DESIGN: CAPTURA DE LEADS (AMOSTRA GRÁTIS)
   ========================================================================== */
.lead-capture-section {
    background: linear-gradient(135deg, var(--bg-soft) 0%, #ffffff 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.lead-box {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 40px 30px;
    align-items: center;
}

.lead-content p {
    font-size: 17px;
    margin-bottom: 24px;
    color: var(--text-main);
}

.lead-form-wrapper {
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 30px;
}

.lead-form h3 {
    margin-bottom: 24px;
    font-size: 20px;
    text-align: center;
    color: var(--primary);
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #cbd5e1;
    border-radius: var(--radius-sm);
    font-size: 16px;
    font-family: var(--font-body);
    transition: var(--transition);
}

.form-group input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(90, 163, 255, 0.2);
}

.privacy-note {
    display: block;
    text-align: center;
    margin-top: 16px;
    font-size: 12px;
    color: var(--text-muted);
}

.form-message {
    margin-top: 16px;
    padding: 14px;
    border-radius: var(--radius-sm);
    text-align: center;
    font-weight: 600;
    font-size: 14px;
}

.form-message.success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #10b981;
}

.form-message.error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #ef4444;
}

/* Media Queries (Sempre no final) */
@media (min-width: 640px) {
  .samples-grid,
  .method-grid,
  .clarity-grid,
  .target-grid,
  .pain-grid,
  .offer-support-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ebooks-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-ctas {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .trust-strip-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0 26px;
  }

  .trust-strip-item:nth-last-child(-n+2) {
    border-bottom: none;
  }
}

@media (min-width: 768px) {
  .top-banner {
    font-size: 14px;
  }

  .top-banner .divider {
    display: inline;
  }

  .headline {
    font-size: 48px;
  }

  .section-title {
    font-size: 38px;
  }

  .trust-strip-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }

  .trust-strip-item {
    border-bottom: none;
  }

  .modal-content.split-layout {
    flex-direction: row;
  }

  .modal-sidebar {
    width: 320px;
    border-bottom: none;
    border-right: 1px solid var(--border);
    padding: 28px 20px 20px;
  }

  .sticky-cta-mobile {
    display: none !important;
  }

  .footer-grid-4 {
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
  }
}

@media (min-width: 992px) {
  .hero-grid {
    grid-template-columns: 1.12fr 0.88fr;
    gap: 56px;
  }

  .ebooks-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .diff-grid-6 {
    grid-template-columns: repeat(3, 1fr);
  }

  .samples-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .lead-box {
    grid-template-columns: 1fr 1fr;
    padding: 60px;
  }

  .hide-mobile {
    display: block;
  }
}

@media (max-width: 991px) {
  .hide-mobile {
    display: none;
  }
}

@media (max-width: 767px) {
  .section-padding {
    padding: 68px 0;
  }

  .headline {
    font-size: 34px;
  }

  .hero-pricing,
  .btn,
  .price-container,
  .offer-box {
    width: 100%;
  }

  .offer-box {
    padding: 28px 18px;
  }

  .price-offer {
    font-size: 46px;
    gap: 8px;
  }

  .price-offer .installments-count {
    font-size: 15px;
  }

  .price-value {
    font-size: 40px;
  }

  .sticky-price {
    font-size: 20px;
  }

  .sticky-price small {
    font-size: 10px;
  }

  .offer-seal {
    width: 82px;
    height: 82px;
    right: 0;
  }

  .hero-badge-card {
    position: static;
    margin-top: 14px;
  }
}