/* =========================
   BASE
========================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fdfdfd;

  /* como a urgency-bar é sticky no topo */
  scroll-padding-top: 90px;
  margin: 0;
}

/* Links */
a {
  color: inherit;
}

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

/* =========================
   LAYOUT
========================= */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.small-container {
  max-width: 800px;
}

/* =========================
   TYPOGRAPHY
========================= */
h1, h2, h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  margin: 0 0 1.5rem;
  line-height: 1.2;
}

h1 {
  font-size: 2.6rem;
  color: #2c3e50;
  text-transform: uppercase;
  letter-spacing: 0.2px;
}

h2 {
  font-size: 2.1rem;
  color: #2c3e50;
  text-align: center;
  margin-bottom: 2.2rem;
}

h3 {
  font-size: 1.35rem;
  color: #2c3e50;
}

p {
  margin: 0 0 1rem;
}

small {
  color: #666;
}

/* =========================
   BUTTONS
========================= */
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 18px 35px;
  background: linear-gradient(135deg, #ff9f43, #ff6b6b);
  color: #fff;
  text-decoration: none;

  border-radius: 10px;
  font-weight: 800;
  font-size: 1.12rem;
  text-align: center;
  transition: all 0.25s ease;
  box-shadow: 0 10px 20px rgba(255, 107, 107, 0.28);
  border: none;
  cursor: pointer;
  text-transform: uppercase;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(255, 107, 107, 0.38);
  background: linear-gradient(135deg, #ff6b6b, #ff9f43);
}

.cta-button:active {
  transform: translateY(0);
}

.cta-button.large {
  padding: 20px 40px;
  font-size: 1.22rem;
}

/* =========================
   URGENCY BAR
========================= */
.urgency-bar {
  background: #e74c3c;
  color: #fff;
  text-align: center;
  padding: 10px 20px;
  font-size: 1rem;
  position: sticky;
  top: 0;
  z-index: 6000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.urgency-bar strong {
  font-weight: 800;
}

/* =========================
   HERO (NOVO HTML)
========================= */
.hero {
  background: #fff;
  padding: 35px 0 60px;
  border-bottom: 5px solid #ff9f43;
}

.hero-content.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: start;
}

.badge {
  display: inline-block;
  background: #e1f5fe;
  color: #0288d1;
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 14px;
}

.hero-lead {
  font-size: 1.05rem;
  color: #444;
  margin-top: -6px;
}

.hero-bullets {
  list-style: none;
  padding: 0;
  margin: 14px 0 16px;
  display: grid;
  gap: 10px;
}

.hero-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 700;
  color: #2c3e50;
}

.hero-bullets li i {
  color: #2ecc71;
  margin-top: 3px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 10px 0 14px;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  background: #f6f9fb;
  border: 1px solid #e9eef3;
  font-weight: 800;
  font-size: 0.85rem;
  color: #2c3e50;
}

.trust-pill i {
  color: #0288d1;
}

.hero-cta-inline {
  margin-top: 10px; /* cola CTA no texto */
}

.hero-price-line {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 10px;
}

.price-hero {
  font-size: 1.12rem;
}

.price-hero .old {
  text-decoration: line-through;
  color: #999;
}

.delivery-info {
  font-size: 0.92rem;
  color: #666;
}

.micro-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}

.micro-trust small {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #666;
  font-weight: 700;
  font-size: 0.86rem;
}

.micro-trust i {
  color: #27ae60;
}

.hero-image {
  position: relative;
}

.hero-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.hero-caption {
  margin-top: 10px;
  background: #fff9db;
  border: 1px solid #ffe8a3;
  border-radius: 12px;
  padding: 10px 12px;
  font-weight: 800;
  color: #2c3e50;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-caption i {
  color: #ff6b6b;
}

/* =========================
   PROBLEM
========================= */
.problem {
  padding: 80px 0;
  background: #fff;
}

.highlight-box {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  border-left: 8px solid #ff6b6b;
  margin: 24px 0;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.question {
  font-size: 1.7rem;
  font-weight: 800;
  color: #2c3e50;
  font-style: italic;
  margin: 10px 0 0;
}

.problem-cta {
  margin-top: 18px;
  display: grid;
  gap: 10px;
}

.cta-sub {
  margin: 0;
  color: #777;
  font-weight: 700;
  font-size: 0.9rem;
}

.cta-sub i {
  color: #2ecc71;
}

/* =========================
   PRODUCT PRESENTATION
========================= */
.product-presentation {
  padding: 80px 0;
  background: #fff;
}

.product-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.mockup-img {
  width: 100%;
  max-width: 420px;
  display: block;
  margin: 0 auto;
}

.special-note {
  background: #fff9db;
  padding: 18px 18px;
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-top: 22px;
  border: 1px solid #ffe8a3;
}

.special-note i {
  font-size: 1.6rem;
  color: #fcc419;
  margin-top: 2px;
}

.product-cta {
  margin-top: 18px;
  display: grid;
  gap: 12px;
}

.link-preview {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #0288d1;
  font-weight: 800;
  text-decoration: none;
}

.link-preview:hover {
  text-decoration: underline;
}

/* =========================
   PREVIEW (NOVO)
========================= */
.preview {
  padding: 80px 0;
  background: #fff;
}

.preview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(260px, 1fr));
  gap: 22px;
  margin-top: 10px;
}

.preview-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 26px 22px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.preview-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 12px;
  border-radius: 999px;
  background: #e1f5fe;
  color: #0288d1;
  font-weight: 900;
  font-size: 0.85rem;
  margin-bottom: 12px;
}

.preview-list {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: grid;
  gap: 10px;
}

.preview-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-weight: 700;
  color: #2c3e50;
}

.preview-list li i {
  color: #2ecc71;
  margin-top: 3px;
}

.example-box {
  margin-top: 12px;
  background: #fffaf5;
  border: 1px dashed #ff9f43;
  border-radius: 14px;
  padding: 14px 14px;
}

.example-box p {
  margin: 0 0 8px;
}

.example-box p:last-child {
  margin-bottom: 0;
}

.example-note {
  display: block;
  margin-top: 10px;
  color: #888;
  font-weight: 700;
  font-size: 0.85rem;
}

/* =========================
   BENEFITS
========================= */
.benefits {
  padding: 80px 0;
  background: #fff;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 30px;
}

.benefit-item {
  background: #fff;
  border: 1px solid #eee;
  padding: 28px 22px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 10px 28px rgba(0,0,0,0.04);
}

.benefit-icon {
  width: 60px;
  height: 60px;
  background: #e1f5fe;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.benefit-icon i {
  color: #0288d1;
  font-size: 1.5rem;
}

.benefits-cta {
  margin-top: 26px;
  text-align: center;
  display: grid;
  gap: 10px;
}

/* =========================
   BONUS
========================= */
.bonus {
  padding: 80px 0;
  background: #fdf2e9;
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}

.bonus-card {
  background: #fff;
  padding: 28px 22px;
  border-radius: 15px;
  border: 2px dashed #ff9f43;
  position: relative;
  box-shadow: 0 10px 28px rgba(0,0,0,0.05);
}

.bonus-tag {
  background: #ff9f43;
  color: #fff;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 900;
  margin-bottom: 12px;
  display: inline-block;
}

.bonus-value {
  margin-top: 12px;
  font-size: 0.92rem;
  color: #666;
}

.free {
  color: #2ecc71;
  font-weight: 900;
  text-transform: uppercase;
}

.bonus-tag-free {
  background: #2ecc71;
  color: #fff;
  padding: 6px 14px;
  border-radius: 8px;
  font-weight: 900;
  margin-top: 14px;
  display: inline-block;
}

.bonus-cta {
  margin-top: 26px;
  text-align: center;
  display: grid;
  gap: 10px;
}

/* =========================
   OFERTA (REFEITA NO HTML)
========================= */
.oferta {
  padding: 80px 0;
  background: #fff;
}

.oferta-subtitle {
  text-align: center;
  max-width: 720px;
  margin: -12px auto 26px;
  color: #666;
  font-weight: 700;
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 1fr));
  gap: 26px;
  max-width: 980px;
  margin: 0 auto;
}

.offer-card {
  background: #fff;
  padding: 38px 26px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0,0,0,0.18);
  position: relative;
  border: 1px solid #f0f0f0;
}

.offer-card.premium {
  border: 3px solid #ff9f43;
  transform: scale(1.02);
}

.bestseller-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #ff9f43;
  color: #fff;
  padding: 6px 18px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 0.78rem;
  letter-spacing: 0.5px;
}

.pricing {
  margin-top: 10px;
}

.old-price-label {
  display: block;
  color: #999;
  font-size: 0.95rem;
  margin-bottom: 4px;
  text-decoration: line-through;
}

.new-price {
  font-size: 2.5rem;
  color: #ff6b6b;
  font-weight: 900;
  display: block;
  margin-bottom: 16px;
}

.features-compact {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  text-align: left;
  display: grid;
  gap: 10px;
}

.features-compact li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.98rem;
  font-weight: 700;
  color: #2c3e50;
}

.features-compact li i {
  color: #2ecc71;
  margin-top: 3px;
}

.offer-note {
  margin: 14px 0 0;
  color: #777;
  font-weight: 700;
  font-size: 0.9rem;
}

.offer-note i {
  color: #ff9f43;
}

.offer-foot {
  margin-top: 14px;
}

.social-proof {
  margin: 12px 0 0;
  font-size: 0.86rem;
  color: #888;
  font-weight: 800;
}

.oferta-mini-faq {
  max-width: 980px;
  margin: 26px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 14px;
}

.mini-faq-item {
  background: #f8f9fa;
  border: 1px solid #eee;
  border-radius: 14px;
  padding: 14px 14px;
  display: grid;
  gap: 6px;
}

.mini-faq-item strong {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: #2c3e50;
}

.mini-faq-item i {
  color: #2ecc71;
}

/* =========================
   TESTIMONIALS
========================= */
.testimonials {
  padding: 80px 0;
  background: #fff;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}

.testimonial {
  background: #f8f9fa;
  padding: 26px 22px;
  border-radius: 15px;
  border: 1px solid #eee;
}

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

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #ff9f43;
  flex-shrink: 0;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-rating {
  margin-top: 6px;
  color: #fcc419;
}

.testimonials-cta {
  margin-top: 26px;
  text-align: center;
  display: grid;
  gap: 10px;
}

/* =========================
   GUARANTEE (REFORÇADA)
========================= */
.guarantee {
  padding: 60px 0;
  background: #fff;
}

.guarantee-content {
  display: grid;
  grid-template-columns: 90px 1fr;
  align-items: start;
  gap: 18px;
  max-width: 780px;
  margin: 0 auto;
  background: #f6fff8;
  border: 1px solid #d8f5e1;
  border-radius: 18px;
  padding: 22px 22px;
}

.guarantee-icon i {
  font-size: 3.6rem;
  color: #2ecc71;
}

.guarantee-text h3 {
  margin-bottom: 10px;
}

.guarantee-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.g-point {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  background: #fff;
  border: 1px solid #e6f5ea;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.9rem;
  color: #2c3e50;
}

.g-point i {
  color: #2ecc71;
}

.guarantee-cta {
  margin-top: 14px;
}

/* =========================
   FAQ (AGORA COM BUTTON)
========================= */
.faq {
  padding: 80px 0;
  background: #fff;
}

.faq-list {
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  background: #fff;
  margin-bottom: 15px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e1e8ed;
  box-shadow: 0 2px 5px rgba(0,0,0,0.02);
  transition: all 0.25s ease;
}

.faq-item:hover {
  border-color: #ff9f43;
  box-shadow: 0 5px 15px rgba(255, 159, 67, 0.1);
  transform: translateY(-2px);
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;

  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;

  cursor: pointer;
  user-select: none;
  text-align: left;
}

.faq-question h3 {
  margin: 0;
  font-size: 1.08rem;
  color: #2c3e50;
  font-weight: 800;
}

.faq-question i {
  color: #ff9f43;
  transition: transform 0.3s ease;
}

.faq-item.active {
  border-color: #ff9f43;
}

.faq-item.active .faq-question i {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  color: #555;
  background-color: #fffaf5;
}

.faq-item.active .faq-answer {
  padding: 0 20px 18px;
  max-height: 520px;
}

.faq-cta {
  text-align: center;
  margin-top: 20px;
}

/* =========================
   MODAL
========================= */
.modal {
  display: none;
  position: fixed;
  z-index: 7000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.8);
  align-items: center;
  justify-content: center;
  padding: 15px;
  backdrop-filter: blur(5px);
}

.modal-content {
  background-color: #fff;
  border-radius: 15px;
  max-width: 420px;
  width: 95%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
}

.close {
  position: absolute;
  top: 10px;
  right: 14px;
  font-size: 26px;
  color: #fff;
  cursor: pointer;
  z-index: 1;
}

.modal-header {
  background: linear-gradient(135deg, #ff9f43, #ff6b6b);
  padding: 20px 15px;
  text-align: center;
  color: #fff;
  flex-shrink: 0;
}

.modal-header i {
  font-size: 1.8rem;
  margin-bottom: 5px;
}

.modal-header h2 {
  color: #fff;
  margin: 0;
  font-size: 1.05rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.modal-body {
  padding: 20px;
  text-align: center;
}

.modal-copy {
  font-size: 0.95rem;
  color: #444;
  margin-bottom: 12px;
  line-height: 1.45;
}

.modal-offer {
  background: #fff5f5;
  padding: 12px;
  border-radius: 10px;
  margin-bottom: 15px;
  border: 2px dashed #ff6b6b;
}

.modal-new-price {
  display: block;
  font-size: 1.8rem;
  font-weight: 900;
  color: #27ae60;
}

.modal-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 10px;
  text-align: left;
}

.modal-benefits li {
  margin-bottom: 8px;
  font-size: 0.9rem;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.modal-benefits li i {
  color: #27ae60;
  margin-top: 3px;
}

.modal-no-thanks {
  display: block;
  width: 100%;
  background: none;
  border: none;
  color: #bbb;
  margin-top: 14px;
  cursor: pointer;
  font-size: 0.82rem;
  transition: color 0.2s;
}

.modal-no-thanks:hover {
  color: #777;
}

/* =========================
   FINAL CTA
========================= */
.final-cta {
  padding: 80px 0;
  background: #fff;
  color: #333;
  text-align: center;
}

.final-cta h2 {
  color: #2c3e50;
}

.final-cta .accent {
  font-size: 1.5rem;
  color: #ff9f43;
  font-weight: 900;
  margin: 18px 0;
}

/* =========================
   FOOTER
========================= */
.footer {
  padding: 40px 0;
  background: #fff;
  color: #666;
  text-align: center;
  border-top: 1px solid #eee;
}

/* =========================
   SALES NOTIFICATION
   (fix: SEMPRE abaixo da urgency-bar)
========================= */
.sales-notification {
  position: fixed;
  top: 70px;           /* abaixo da urgency-bar */
  right: -400px;

  background: #fff;
  padding: 15px 20px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);

  z-index: 2500;       /* menor que a urgency-bar */
  transition: all 0.5s ease;

  max-width: 320px;
  border-left: 5px solid #ff9f43;
}

.sales-notification.show {
  right: 20px;
}

.notification-content {
  display: flex;
  align-items: center;
  gap: 15px;
}

.notification-icon i {
  font-size: 1.5rem;
  color: #2ecc71;
}

.notification-text {
  font-size: 0.9rem;
  color: #333;
  line-height: 1.4;
}

.notification-text strong {
  color: #2c3e50;
}

.time-ago {
  font-size: 0.75rem;
  color: #888;
  margin-top: 2px;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 980px) {
  .preview-grid {
    grid-template-columns: 1fr;
  }

  .offers-grid {
    grid-template-columns: 1fr;
    max-width: 640px;
  }

  .offer-card.premium {
    transform: none;
  }

  .oferta-mini-faq {
    grid-template-columns: 1fr;
  }

  .guarantee-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .guarantee-icon {
    display: flex;
    justify-content: center;
  }

  .guarantee-points {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  h1 { font-size: 2.05rem; }
  h2 { font-size: 1.75rem; }

  .hero-content.hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 18px;
  }

  .hero-bullets li {
    justify-content: center;
  }

  .hero-trust {
    justify-content: center;
  }

  .micro-trust {
    justify-content: center;
  }

  .product-content {
    grid-template-columns: 1fr;
    gap: 26px;
    text-align: center;
  }

  .special-note {
    justify-content: center;
    text-align: left;
  }

  .sales-notification {
    top: 92px; /* urgency-bar pode ficar mais alta */
    right: -400px;
    max-width: calc(100% - 24px);
  }

  .sales-notification.show {
    right: 12px;
  }
}

@media (max-width: 480px) {
  .cta-button {
    width: 100%;
    padding: 16px 18px;
    font-size: 1.05rem;
  }

  .cta-button.large {
    padding: 16px 18px;
    font-size: 1.08rem;
  }

  .offer-card {
    padding: 28px 18px;
  }

  .new-price {
    font-size: 2.2rem;
  }

  .faq-question {
    padding: 16px 16px;
  }

  .faq-answer {
    padding: 0 16px;
  }

  .faq-item.active .faq-answer {
    padding: 0 16px 16px;
  }

  .modal-content {
    width: 98%;
  }

  .modal-header h2 {
    font-size: 1rem;
  }

  .modal-copy {
    font-size: 0.92rem;
  }

  .modal-new-price {
    font-size: 1.6rem;
  }
}

.carousel-wrap{max-width:720px;margin:24px auto;padding:0 12px}
.carousel{position:relative;display:flex;align-items:center;gap:10px}
.viewport{overflow:hidden;border-radius:16px;width:100%;box-shadow:0 8px 22px rgba(0,0,0,.12)}
.track{display:flex;transition:transform .45s ease;will-change:transform}
.track img{width:100%;flex:0 0 100%;display:block;background:#f2f2f2}
.nav{
  width:42px;height:42px;border-radius:999px;border:0;cursor:pointer;
  display:grid;place-items:center;font-size:28px;line-height:1;
  background:#ffffff;box-shadow:0 6px 18px rgba(0,0,0,.15)
}
.nav:active{transform:scale(.98)}
.dots{display:flex;justify-content:center;gap:8px;margin-top:12px}
.dot{width:10px;height:10px;border-radius:999px;background:rgba(0,0,0,.25);border:0;cursor:pointer}
.dot.active{background:rgba(0,0,0,.75)}

/* =========================
   EXTRA FIX DESKTOP:
   CTA mais “perto” ainda
========================= */
@media (min-width: 1024px) {
  .hero-lead {
    margin-bottom: 10px;
  }
  .hero-bullets {
    margin-bottom: 12px;
  }
  .hero-cta-inline {
    margin-top: 8px;
  }
}