/* =========================================================
   SEGREDOS DOS TEMPEROS — STYLESHEET
   Mobile first / Premium infoproduct layout
   ========================================================= */

:root {
  --orange: #ff7a00;
  --orange-dark: #e36900;
  --red: #b3261e;
  --green: #1e8e3e;
  --bg: #ffffff;
  --bg-alt: #f7f7f7;
  --text: #1a1a1a;
  --text-secondary: #5a5a5a;
  --border: #ececec;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.12);
  --max-width: 1180px;
  --app-width: 480px;
  --bar-h: 58px;
  --ff: "Poppins", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--ff);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { text-decoration: none; color: inherit; }

ul { list-style: none; }

/* App-shell: a página inteira fica com largura de app mobile,
   mesmo em telas de desktop, para reproduzir a experiência mobile. */
.app-shell {
  max-width: var(--app-width);
  margin: 0 auto;
  background: var(--bg);
  position: relative;
}

@media (min-width: 560px) {
  body { background: #e3e3e3; }

  .app-shell {
    box-shadow: 0 0 60px rgba(0, 0, 0, 0.16);
  }
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.container.narrow { max-width: 760px; }

.text-center { text-align: center; }

/* =================== TYPOGRAPHY =================== */

.section-title {
  font-size: clamp(1.6rem, 4.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
  text-align: center;
}

.section-subtitle {
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  color: var(--text-secondary);
  font-weight: 400;
  max-width: 640px;
  margin: 0 auto 30px auto;
  text-align: center;
}

.text-gradient {
  background: linear-gradient(90deg, var(--orange), var(--red));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* =================== LAYOUT SECTIONS =================== */

.section {
  padding: 70px 0;
}

.section-alt {
  background: var(--bg-alt);
}

/* =================== ANNOUNCEMENT BAR =================== */

.announcement-bar {
  position: static;
  min-height: var(--bar-h);
  display: flex;
  align-items: center;
  background: linear-gradient(90deg, var(--red), #8f1e17);
}

.announcement-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 9px 20px;
  flex-wrap: wrap;
}

.announcement-icon {
  font-size: 1.05rem;
  line-height: 1;
}

.announcement-text {
  color: #fff;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.3;
}

.announcement-countdown {
  display: flex;
  align-items: center;
  gap: 4px;
}

.announcement-countdown span:not(.announcement-colon) {
  background: #fff;
  color: var(--red);
  font-weight: 800;
  font-size: 0.8rem;
  border-radius: 6px;
  padding: 3px 8px;
  font-variant-numeric: tabular-nums;
}

.announcement-colon {
  color: #fff;
  font-weight: 800;
}

/* =================== BUTTONS =================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--ff);
  font-weight: 700;
  text-align: center;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: #fff;
  box-shadow: 0 8px 24px rgba(255, 122, 0, 0.35);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.45) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.6s ease;
}

.btn-primary:hover::before { transform: translateX(120%); }

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(255, 122, 0, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--text);
}

.btn-outline:hover {
  background: var(--text);
  color: #fff;
  transform: translateY(-2px);
}

.btn-large {
  padding: 18px 36px;
  font-size: 1.05rem;
  width: 100%;
}

@media (min-width: 480px) {
  .btn-large { width: auto; }
}

.btn-small {
  padding: 10px 22px;
  font-size: 0.85rem;
}

.btn-pulse {
  animation: pulse 2.2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 122, 0, 0.45); }
  70% { box-shadow: 0 0 0 16px rgba(255, 122, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 122, 0, 0); }
}

/* =================== HERO =================== */

.hero {
  padding: 44px 0 60px;
  background: linear-gradient(180deg, #fff 0%, #fff7ef 100%);
}

.hero-center {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.badge-pill {
  display: inline-block;
  background: #fff1e3;
  color: var(--orange-dark);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.02em;
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 22px;
}

.hero-title {
  font-size: clamp(2rem, 7vw, 3.6rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-title .accent {
  color: var(--orange);
}

.hero-title .accent-underline {
  text-decoration: underline;
  text-decoration-thickness: 4px;
  text-underline-offset: 4px;
  text-decoration-color: var(--orange);
}

.hero-subtitle {
  font-size: clamp(1rem, 2.4vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto 30px;
}

.hero-checklist {
  margin-top: 30px;
  display: grid;
  gap: 10px;
  justify-content: center;
}

@media (min-width: 480px) {
  .hero-checklist { grid-template-columns: 1fr 1fr; }
}

.hero-checklist li {
  font-weight: 500;
  font-size: 0.95rem;
  text-align: center;
}

/* =================== BUTTON (HERO / STORY STYLE) =================== */

.btn-hero {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: #fff;
  font-size: clamp(1rem, 2.4vw, 1.15rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  padding: 20px 42px;
  box-shadow: 0 10px 0 var(--orange-dark), 0 18px 34px rgba(255, 122, 0, 0.4);
}

.btn-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 0 var(--orange-dark), 0 20px 38px rgba(255, 122, 0, 0.5);
}

/* =================== VSL (dentro do hero) =================== */

.video-wrapper {
  width: 100%;
  margin: 24px 0 22px;
}

.video-frame {
  position: relative;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  aspect-ratio: 9 / 16;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #000;
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-play-btn {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  border: none;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
}

.video-play-circle {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  border: 2px solid rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
}

.video-play-btn:hover .video-play-circle {
  background: var(--orange);
  transform: scale(1.06);
}

.video-play-btn svg { pointer-events: none; }

.video-progress {
  width: 100%;
  max-width: 320px;
  margin: 14px auto 0;
  height: 6px;
  background: var(--border);
  border-radius: 100px;
  overflow: hidden;
  cursor: pointer;
}

.video-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--orange), var(--orange-dark));
  border-radius: 100px;
}

.stars-row { margin-top: 16px; }

.stars {
  color: var(--orange);
  font-size: 1.4rem;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 6px;
}

/* =================== CARDS GRID (generic) =================== */

.cards-grid {
  display: grid;
  gap: 16px;
  margin-top: 36px;
}

.cards-grid--6,
.cards-grid--4 {
  grid-template-columns: 1fr;
}

/* Pain cards */
.pain-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 18px 20px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pain-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.pain-icon { font-size: 1.5rem; display: block; margin-bottom: 8px; }

.pain-card p { font-weight: 500; color: var(--text); font-size: 0.92rem; }

/* Learn cards */
.learn-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 18px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.learn-card:hover {
  transform: translateY(-6px);
  border-color: var(--orange);
  box-shadow: var(--shadow-lg);
}

.learn-icon { font-size: 1.5rem; display: block; margin-bottom: 8px; }

.learn-card h3 { font-size: 0.92rem; font-weight: 600; }

/* =================== TESTIMONIAL CARROSSEL (estilo print de chat) =================== */

.testimonial-carousel {
  margin-top: 34px;
}

.carousel-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.carousel-track::-webkit-scrollbar { display: none; }

.carousel-slide {
  flex: 0 0 100%;
  scroll-snap-align: center;
  padding: 0 2px;
}

.wa-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.wa-header {
  background: #075e54;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.wa-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.wa-contact {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
  text-align: left;
}

.wa-contact strong {
  color: #fff;
  font-size: 0.85rem;
}

.wa-contact small {
  color: #cfe9e5;
  font-size: 0.68rem;
}

.wa-body {
  background: #e5ddd5;
  padding: 22px 16px;
  display: flex;
}

.wa-bubble {
  background: #dcf8c6;
  border-radius: 10px;
  border-top-left-radius: 2px;
  padding: 10px 12px 8px;
  max-width: 88%;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
}

.wa-bubble p {
  color: #1a1a1a;
  font-size: 0.86rem;
  line-height: 1.4;
  text-align: left;
}

.wa-meta {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
  font-size: 0.66rem;
  color: #6b7a6e;
}

.wa-check { fill: #34b7f1; }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}

.dot.active {
  background: var(--orange);
  transform: scale(1.3);
}

/* Bonus cards */
.bonus-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  aspect-ratio: 3 / 2;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.bonus-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.bonus-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =================== SOLUTION SECTION =================== */

.solution-grid {
  display: grid;
  gap: 40px;
  align-items: center;
  text-align: center;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 26px 0 32px;
}

.check-list li { font-weight: 500; text-align: center; }

/* =================== BENEFITS =================== */

.benefits-grid {
  display: grid;
  gap: 16px;
  margin-top: 30px;
  text-align: center;
}

.benefit-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  font-weight: 500;
  box-shadow: var(--shadow);
}

/* =================== OFFER / PRICING =================== */

.offer {
  background: linear-gradient(180deg, #fff 0%, #fff7ef 100%);
}

.countdown-box {
  text-align: center;
  margin: 0 auto 46px;
}

.countdown-label {
  font-weight: 600;
  color: var(--red);
  margin-bottom: 14px;
  font-size: 0.95rem;
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 14px;
}

.countdown-unit {
  background: var(--text);
  color: #fff;
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  min-width: 76px;
  text-align: center;
  box-shadow: var(--shadow);
}

.countdown-unit span {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.countdown-unit small {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #c9c9c9;
}

.pricing-grid {
  display: grid;
  gap: 28px;
  margin: 0 auto;
}

.price-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 36px 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.price-card--premium {
  border: 2px solid var(--orange);
  box-shadow: var(--shadow-lg);
}

.price-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--orange), var(--red));
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 7px 18px;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: 0 6px 16px rgba(255, 122, 0, 0.4);
}

.price-name {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.price-name span { color: var(--orange); }

.price-cover {
  width: 100%;
  max-width: 300px;
  border-radius: var(--radius-sm);
  margin-bottom: 22px;
}

.price-features {
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
  flex: 1;
}

.price-features li { font-size: 0.92rem; font-weight: 500; }

.price-old { color: var(--text-secondary); font-size: 0.9rem; }

.price-new {
  font-size: 1.5rem;
  margin: 6px 0 22px;
}

.price-new strong { color: var(--green); font-size: 1.9rem; }

.payment-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 44px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.payment-badges span {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 8px 16px;
}

/* =================== GUARANTEE =================== */

.guarantee-seal {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 50px 30px;
  border: 1px solid var(--border);
}

.guarantee-icon {
  font-size: 3rem;
  display: block;
  margin-bottom: 14px;
}

/* =================== FAQ =================== */

.faq-list {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: center;
  background: none;
  border: none;
  font-family: var(--ff);
  font-weight: 600;
  font-size: 0.98rem;
  padding: 18px 40px 18px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  cursor: pointer;
  color: var(--text);
}

.faq-toggle {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--orange);
  font-size: 1.3rem;
  font-weight: 700;
  transition: transform 0.25s ease;
}

.faq-item.active .faq-toggle { transform: translateY(-50%) rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 20px;
  text-align: center;
}

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

.faq-answer p {
  color: var(--text-secondary);
  font-size: 0.92rem;
}

/* =================== FOOTER =================== */

.site-footer {
  background: var(--text);
  color: #d8d8d8;
  padding: 50px 0 30px;
  text-align: center;
}

.footer-logo {
  font-weight: 800;
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 14px;
}

.footer-text {
  font-size: 0.85rem;
  color: #9c9c9c;
  margin-bottom: 22px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
  margin-bottom: 26px;
  font-size: 0.85rem;
}

.footer-links a:hover { color: var(--orange); }

.footer-copy {
  font-size: 0.75rem;
  color: #6e6e6e;
}

/* =================== POPUP UPSELL =================== */

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 900;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal-box {
  position: relative;
  width: 100%;
  max-width: 380px;
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 24px 26px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  transform: scale(0.9) translateY(10px);
  transition: transform 0.25s ease;
}

.modal-overlay.open .modal-box {
  transform: scale(1) translateY(0);
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: none;
  border: none;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--text-secondary);
  cursor: pointer;
}

.modal-badge {
  display: inline-block;
  background: #fff1e3;
  color: var(--orange-dark);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.03em;
  padding: 7px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
}

.modal-title {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.modal-cover {
  width: 100%;
  max-width: 260px;
  border-radius: var(--radius-sm);
  margin: 4px auto 14px;
}

.modal-text {
  color: var(--text-secondary);
  font-size: 0.92rem;
  margin-bottom: 18px;
}

.modal-price {
  background: var(--bg-alt);
  border-radius: var(--radius-sm);
  padding: 14px;
  margin-bottom: 18px;
}

.modal-price-old {
  display: block;
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-decoration: line-through;
}

.modal-price-new {
  display: block;
  font-size: 1.05rem;
  margin-top: 4px;
}

.modal-price-new strong {
  color: var(--green);
  font-size: 1.7rem;
}

.modal-list {
  display: grid;
  gap: 8px;
  margin-bottom: 22px;
  text-align: left;
  font-size: 0.88rem;
  font-weight: 500;
}

.modal-btn-accept {
  width: 100%;
  margin-bottom: 14px;
}

.modal-btn-decline {
  display: block;
  font-size: 0.8rem;
  color: var(--text-secondary);
  text-decoration: underline;
}

/* =================== SCROLL ANIMATIONS =================== */

.fade-in,
.fade-in-up {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--delay, 0s);
}

.fade-in { transform: translateY(0); }

.fade-in-up { transform: translateY(28px); }

.fade-in.in-view,
.fade-in-up.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .fade-in, .fade-in-up, .btn-pulse {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
