/* =========================================
   +120 Dinâmicas de Oratória — Static CSS
   ========================================= */

:root {
  --orange: #FF6B1A;
  --orange-dark: #E55A0F;
  --orange-soft: #FFF0E8;
  --green: #16A34A;
  --gray-bg: #F8F9FA;
  --soft-orange: #FFF0E8;
  --text: #1a1a1a;
  --muted: #6B7280;
  --border: #F1D9C8;
  --white: #ffffff;
  --black: #0d0d0d;
  --shadow-soft: 0 12px 35px -18px rgba(0,0,0,0.22);
  --shadow-card: 0 14px 32px -22px rgba(0,0,0,0.28);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}
img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.25; }

/* Layout */
.container { max-width: 430px; margin: 0 auto; padding: 40px 16px; }
.center { text-align: center; }
.mt-2 { margin-top: 8px; } .mt-3 { margin-top: 12px; } .mt-4 { margin-top: 16px; }
.mt-5 { margin-top: 20px; } .mt-6 { margin-top: 24px; } .mt-7 { margin-top: 28px; } .mt-8 { margin-top: 32px; }

/* Backgrounds */
.bg-white { background: var(--white); }
.bg-gray { background: var(--gray-bg); }
.bg-soft-orange { background: var(--soft-orange); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

/* Top bar */
.topbar {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  background: var(--orange); color: var(--white); padding: 12px;
  box-shadow: var(--shadow-soft);
}
.topbar-inner {
  max-width: 430px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 12px; font-weight: 700; text-transform: uppercase; line-height: 1.2; text-align: center;
}
.topbar .icon { width: 16px; height: 16px; flex-shrink: 0; }

/* Hero */
.hero { background: linear-gradient(180deg, #FFF5F0, #FFFFFF); }
.hero .container { padding-top: 80px; text-align: center; }
.hero-title { font-size: 25px; font-weight: 700; line-height: 1.25; }
.hero-title .line { display: block; white-space: nowrap; }
.hero-title .orange { color: var(--orange); }
.hero-img { margin-top: 28px; }
.hero-img img { margin: 0 auto; max-width: 360px; width: 100%; filter: drop-shadow(0 14px 22px rgba(0,0,0,0.18)); }
.hero-sub { margin: 24px auto 0; max-width: 360px; font-size: 16px; color: var(--muted); line-height: 1.6; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 16px; text-align: center; line-height: 1.2;
  padding: 16px 20px; border-radius: 12px; transition: transform .15s ease, background .2s ease, box-shadow .2s ease;
  width: 100%;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-cta {
  background: var(--orange); color: var(--white);
  box-shadow: 0 12px 24px -12px rgba(255,107,26,0.7);
  margin-top: 28px;
}
.btn-cta:hover { background: var(--orange-dark); }
.btn-basic { background: #9CA3AF; color: var(--white); margin-top: 24px; }
.btn-basic:hover { background: #6B7280; }
.btn-premium {
  background: var(--orange); color: var(--white); border-radius: 999px;
  box-shadow: var(--shadow-soft); margin-top: 12px;
}
.btn-premium:hover { background: var(--orange-dark); }

/* Sections / Titles */
.section-h2 {
  text-align: center; font-size: 32px; font-weight: 700; line-height: 1.28; color: var(--text);
}
.section-h2.dark { color: var(--text); }
.section-title {
  text-align: center; font-size: 24px; font-weight: 700; line-height: 1.25; color: var(--orange);
}
.section-title.dark { color: var(--text); }
.lead-orange { color: var(--orange); font-weight: 700; font-size: 18px; }
.bold-lg { font-weight: 700; font-size: 18px; }
.bold-xl { font-weight: 700; font-size: 20px; }
.uppercase { text-transform: uppercase; }
.muted { color: var(--muted); }
.muted.small { font-size: 14px; }
.small { font-size: 12px; }
.line-through { text-decoration: line-through; }
.orange { color: var(--orange); }
.bold { font-weight: 700; }
.big { font-size: 24px; }

/* Problem highlight */
.problem-highlight { position: relative; display: inline-block; color: var(--orange); }
.problem-highlight::after {
  content: ""; position: absolute; left: 0; right: 0; top: 100%; margin-top: 4px;
  height: 12px; border-radius: 999px; border-top: 3px solid var(--orange);
  transform: rotate(-4deg) skewX(-12deg);
}

/* Problem cards */
.problem-list { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }
.problem-card {
  background: var(--white); border: 1px solid rgba(0,0,0,0.06);
  border-left: 4px solid var(--orange);
  border-radius: 12px; box-shadow: var(--shadow-card);
  display: grid; grid-template-columns: 36px 1fr; align-items: center; gap: 12px;
  padding: 16px;
}
.problem-card .x {
  display: flex; align-items: center; justify-content: center;
  height: 36px; width: 36px; font-size: 20px; color: var(--orange);
}
.problem-card p { line-height: 1.5; }

/* Cards stack */
.cards-stack { margin-top: 24px; display: flex; flex-direction: column; gap: 16px; }
.card {
  background: var(--white); border: 1px solid rgba(255,107,26,0.33);
  border-radius: 16px; box-shadow: var(--shadow-card);
  padding: 28px 20px; text-align: center;
}
.card .icon-wrap {
  margin: 0 auto; display: flex; align-items: center; justify-content: center;
  height: 48px; width: 48px; border-radius: 999px; background: var(--orange-soft); color: var(--orange);
}
.card .icon-wrap svg { width: 24px; height: 24px; }
.card h3 { margin-top: 20px; font-size: 16px; font-weight: 700; line-height: 1.35; }
.card p.text { margin-top: 12px; font-size: 14px; color: var(--muted); line-height: 1.6; }

/* Bonus */
.bonus-banner {
  margin-top: 20px; background: var(--orange); color: var(--white);
  padding: 16px 20px; border-radius: 12px; box-shadow: var(--shadow-card);
}
.bonus-banner .small { font-size: 12px; text-transform: uppercase; letter-spacing: 0.04em; }
.bonus-banner .big { font-size: 18px; text-transform: uppercase; margin-top: 4px; }
.bonus-card { position: relative; padding: 28px 20px 20px; overflow: hidden; }
.bonus-card .top-stripe { position: absolute; left: 0; right: 0; top: 0; height: 8px; background: var(--orange); }
.bonus-card img { margin: 0 auto; max-height: 192px; width: auto; filter: drop-shadow(0 10px 16px rgba(0,0,0,0.18)); }
.bonus-card .badge {
  display: inline-flex; margin-top: 20px; padding: 4px 12px; border-radius: 999px;
  font-size: 12px; font-weight: 700; color: var(--white); background: var(--orange);
}
.bonus-card h3 { margin-top: 12px; font-size: 18px; font-weight: 700; line-height: 1.35; }
.bonus-card .price { margin-top: 8px; font-size: 14px; font-weight: 700; color: var(--orange); text-decoration: line-through; }
.bonus-card .text { margin-top: 12px; color: var(--muted); line-height: 1.6; }
.bonus-card .free-pill {
  margin-top: 16px; display: block; padding: 8px 16px; border-radius: 999px;
  font-size: 14px; font-weight: 700; text-transform: uppercase; color: var(--white); background: var(--orange);
}
.bonus-total { font-size: 20px; font-weight: 700; color: var(--orange); }

/* Plans */
.plan {
  background: var(--white); border-radius: 12px; box-shadow: var(--shadow-card);
  padding: 20px; text-align: center; margin-top: 20px;
}
.plan-basic { border: 2px solid var(--orange); }
.plan-title { font-size: 20px; font-weight: 700; }
.plan-price { font-size: 36px; font-weight: 700; margin-top: 16px; }
.plan-price-green { font-size: 48px; font-weight: 800; color: var(--green); margin-top: 12px; }
.warning-box {
  margin-top: 16px; padding: 12px 16px; border-radius: 12px;
  background: var(--orange-soft); color: var(--orange);
  font-size: 14px; font-weight: 700; text-align: center;
}
.check-list { margin-top: 24px; display: flex; flex-direction: column; gap: 16px; text-align: left; }
.check-list li { display: flex; align-items: center; gap: 12px; }
.check-list .check { color: var(--orange); font-weight: 800; flex-shrink: 0; }
.check-list.bordered li { border-bottom: 1px solid rgba(255,107,26,0.15); padding-bottom: 12px; font-weight: 600; }
.check-list.bordered li.bonus-li { border-bottom: 0; padding-bottom: 0; color: var(--orange); font-weight: 700; }
.upsell {
  margin-top: 20px; background: var(--black); color: var(--white);
  padding: 16px; border-radius: 12px; text-align: center;
}
.upsell-title { color: var(--orange); font-weight: 700; font-style: italic; }
.upsell-sub { color: rgba(255,255,255,0.8); font-size: 14px; margin-top: 4px; }
.upsell-arrows { color: var(--orange); font-weight: 700; margin-top: 8px; }

.plan-premium {
  position: relative; padding: 48px 24px 24px; background: #FFF7F0;
  border-radius: 16px; box-shadow: var(--shadow-card);
  outline: 1px solid rgba(255,107,26,0.2);
}
.plan-ribbon {
  position: absolute; top: 0; left: 0; right: 0; padding: 10px 0;
  background: var(--orange); color: var(--white);
  font-size: 14px; font-weight: 700; letter-spacing: 0.04em; text-align: center;
}
.trust-grid { margin-top: 24px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.trust-item {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  background: var(--white); padding: 12px 8px; border-radius: 12px;
  outline: 1px solid rgba(255,107,26,0.15);
}
.trust-icon {
  display: flex; align-items: center; justify-content: center;
  height: 36px; width: 36px; border-radius: 999px; background: var(--orange-soft); font-size: 18px;
}
.trust-item span { text-align: center; font-size: 11px; font-weight: 700; line-height: 1.2; }

/* Guarantee */
.guarantee .shield { width: 48px; height: 48px; color: var(--orange); margin: 0 auto; }

/* Marquee */
.badge-pill {
  margin: 16px auto 0; width: fit-content;
  background: var(--orange-soft); color: var(--orange);
  padding: 8px 16px; border-radius: 999px;
  font-size: 14px; font-weight: 700;
}
.badge-pill.orange-bg { background: var(--orange); color: var(--white); font-size: 12px; padding: 8px 16px; }
.marquee-mask {
  margin: 24px -16px 0; overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: flex; gap: 16px; width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  flex-shrink: 0; width: 260px;
  background: var(--white); padding: 8px; border-radius: 16px;
  box-shadow: var(--shadow-card); outline: 1px solid rgba(255,107,26,0.15);
}
.marquee-item img { border-radius: 12px; width: 100%; }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Author */
.small-pill {
  display: inline-flex; padding: 8px 16px; border-radius: 999px;
  background: var(--orange-soft); color: var(--orange);
  font-size: 12px; font-weight: 700;
}
.author { margin-top: 20px; padding: 24px; }
.author-photo {
  margin: 0 auto; height: 112px; width: 112px;
  border-radius: 999px; overflow: hidden; border: 4px solid var(--orange); background: var(--orange-soft);
}
.author-photo img { width: 100%; height: 100%; object-fit: cover; }
.author-tags { margin-top: 20px; display: flex; flex-direction: column; gap: 12px; }
.tag { background: var(--orange); color: var(--white); padding: 8px 16px; border-radius: 999px; font-weight: 700; }

/* FAQ */
.faq-list { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--white); border: 1px solid rgba(0,0,0,0.08);
  border-radius: 12px; box-shadow: var(--shadow-card); padding: 0 16px;
}
.faq-trigger {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 12px;
  padding: 16px 0; text-align: left; font-weight: 700; font-size: 16px;
}
.faq-trigger .arrow { transition: transform .2s ease; flex-shrink: 0; }
.faq-item.open .faq-trigger .arrow { transform: rotate(180deg); }
.faq-content {
  max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .3s ease;
  color: var(--muted); line-height: 1.6;
}
.faq-item.open .faq-content { padding-bottom: 16px; }

/* Footer */
.footer {
  background: var(--orange); color: var(--white);
  padding: 40px 16px; text-align: center;
}
.footer h2 { font-weight: 700; }
.footer p { margin-top: 16px; font-size: 14px; color: rgba(255,255,255,0.85); }
.footer .copy { margin-top: 12px; font-size: 12px; color: rgba(255,255,255,0.7); }

/* Purchase notification */
.purchase-notification {
  position: fixed; bottom: 96px; left: 12px; right: 12px;
  z-index: 40; max-width: 390px; margin: 0 auto;
  display: flex; align-items: flex-start; gap: 12px;
  padding: 12px; border-radius: 12px;
  background: var(--white); border: 1px solid var(--orange);
  font-size: 14px; box-shadow: var(--shadow-soft);
  animation: float-in .45s ease-out both;
}
@media (min-width: 640px) {
  .purchase-notification { left: 20px; right: auto; }
}
.check-circle {
  display: inline-flex; align-items: center; justify-content: center;
  height: 28px; width: 28px; border-radius: 999px;
  background: var(--orange-soft); color: var(--orange); flex-shrink: 0; margin-top: 2px;
}
.check-circle svg { width: 16px; height: 16px; }
.purchase-notification p { font-weight: 700; line-height: 1.35; color: var(--text); }
@keyframes float-in {
  0% { opacity: 0; transform: translateY(16px) scale(0.96); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

/* Modal */
.modal { position: fixed; inset: 0; z-index: 100; display: flex; align-items: center; justify-content: center; padding: 16px; }
.modal[hidden] { display: none; }
.modal-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.55); animation: fade-in .2s ease both; }
.modal-content {
  position: relative; max-width: 380px; width: 100%;
  background: var(--white); border-radius: 16px; overflow: hidden;
  border: 2px solid var(--orange); box-shadow: 0 30px 60px -20px rgba(0,0,0,0.4);
  animation: pop-in .25s ease both;
}
.modal-header { background: var(--orange); color: var(--white); padding: 12px 20px; text-align: center; }
.modal-header p { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; }
.modal-close {
  position: absolute; top: 8px; right: 12px; color: var(--white);
  font-size: 26px; line-height: 1; font-weight: 700;
}
.modal-body { padding: 20px 24px 24px; text-align: center; }
.green-price { font-size: 48px; font-weight: 800; color: var(--green); margin-top: 4px; }
.link-btn { margin-top: 12px; font-size: 12px; color: var(--muted); text-decoration: underline; display: block; width: 100%; }
@keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes pop-in { from { opacity: 0; transform: scale(0.95); } to { opacity: 1; transform: scale(1); } }

/* Bounce animation */
.bounce { animation: bounce 1s infinite; }
@keyframes bounce {
  0%, 100% { transform: translateY(-15%); animation-timing-function: cubic-bezier(.8,0,1,1); }
  50% { transform: translateY(0); animation-timing-function: cubic-bezier(0,0,.2,1); }
}

/* Small adjustments */
.small-pad { padding-top: 32px; padding-bottom: 32px; }

/* Responsive tweaks */
@media (max-width: 360px) {
  .hero-title { font-size: 22px; }
  .section-h2 { font-size: 26px; }
}
