/* =====================================================================
   Pressel / Advertorial — news-portal style layout
   HTML + CSS only (no scripts). Brand and copy are placeholders.
   Accent color centralized in the --accent variable.
   ===================================================================== */

:root {
  --accent: #FF503C;          /* brand color (replace with yours) */
  --accent-2: #FF6B3D;
  --link: #2563eb;
}

* { box-sizing: border-box; }

body.advertorial {
  font-family: 'Libre Franklin', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  background-color: #ffffff;
  color: #2a2a2a;
  -webkit-font-smoothing: antialiased;
  margin: 0;
  padding: 0;
}

img { max-width: 100%; }

/* --- HEADER --- */
.today-header-wrapper {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: #fff;
  border-bottom: 1px solid #e8e8e8;
}

.today-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.today-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  margin-right: 24px;
  flex-shrink: 0;
  cursor: pointer;
}

.today-logo .sunrise-icon {
  width: 64px;
  height: 36px;
  margin-right: 8px;
  color: var(--accent);
}

.today-logo .brand-text {
  height: 24px;
  color: #000;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 1px;
  line-height: 1;
}

.today-nav {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  overflow: hidden;
}

.today-nav a {
  font-size: 15px;
  font-weight: 700;
  color: #2a2a2a;
  text-decoration: none;
  text-transform: uppercase;
  padding: 0 12px;
  white-space: nowrap;
  letter-spacing: 0.3px;
  border-right: 1px solid #d9d9d9;
  line-height: 56px;
  cursor: pointer;
}

.today-nav a:last-child { border-right: none; }
.today-nav a:hover { color: var(--accent); }

.today-header-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.today-header-right .icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  color: #2a2a2a;
  font-size: 18px;
  padding: 4px;
}

.today-header-right .hamburger-btn {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 4px;
  cursor: pointer;
}

.today-header-right .hamburger-btn span {
  display: block;
  width: 20px;
  height: 2px;
  background: #2a2a2a;
}

/* --- MOBILE NAV (hidden on desktop) --- */
.today-nav-mobile { display: none; }

/* --- BREAKING NEWS --- */
.breaking-news-banner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid #e8e8e8;
}

.breaking-news-label {
  display: inline-flex;
  align-items: center;
  background: #f2f2f2;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 700;
  color: #2a2a2a;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
  border-left: 4px solid var(--accent-2);
}

.breaking-news-date {
  font-size: 13px;
  color: #2a2a2a;
}

/* --- ARTICLE HEADER --- */
.article-header {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 20px 0;
}

.article-header .article-category,
.article-header .article-title,
.article-header .article-meta { max-width: 800px; }

.article-category {
  font-size: 12px;
  font-weight: 700;
  color: #2a2a2a;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  display: inline-block;
}

.article-title {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-size: 38px;
  font-weight: 900;
  line-height: 1.15;
  color: #000;
  margin: 0 0 16px 0;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 0;
  border-top: 1px solid #e8e8e8;
  flex-wrap: wrap;
}

.article-date { font-size: 13px; color: #6b6b6b; }

.article-author { display: flex; align-items: center; gap: 8px; }
.author-avatar { width: 32px; height: 32px; border-radius: 50%; background: #ddd; }
.author-name { font-size: 13px; font-weight: 700; color: #2a2a2a; }
.author-role { font-size: 11px; color: #6b6b6b; }

/* --- CONTENT + SIDEBAR WRAPPER --- */
.content-with-sidebar {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  padding: 0 20px;
  align-items: flex-start;
}

.content-main-col { flex: 1; min-width: 0; max-width: 800px; }

.today-article-content { padding: 24px 0 0; }

.today-article-content p {
  font-size: 17px;
  line-height: 1.7;
  color: #2a2a2a;
  margin-bottom: 16px;
}

.today-article-content strong, .today-article-content b { font-weight: 700; }

.article-body > img {
  width: 100%;
  border-radius: 4px;
  margin-bottom: 24px;
}

.article-body hr {
  border: none;
  border-top: 1px solid #e8e8e8;
  margin: 28px 0;
}

/* --- INTERVIEW (image of the interview) --- */
.interview-section {
  margin: 28px 0;
}

.interview-section img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.interview-section figcaption {
  margin: 12px 0;
  font-size: 16px;
  line-height: 1.6;
  color: #374151;
}

.interview-section figcaption .speaker-name {
  font-weight: 700;
  color: #1a1a1a;
}

/* --- CTA --- */
.cta-section { text-align: center; margin: 28px 0; }

.cta-link {
  display: inline-block;
  color: var(--link);
  font-size: 18px;
  font-weight: 700;
  text-decoration: underline;
  margin-bottom: 12px;
}

.cta-section img { width: 100%; border-radius: 4px; display: block; }

.cta-button {
  display: inline-block;
  width: 100%;
  padding: 16px 20px;
  border-radius: 6px;
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
}

.cta-button-watch {
  width: 85%;
  background: linear-gradient(180deg, #ff7a45 0%, #ff5236 55%, #f5402a 100%);
  color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 0 #d6361f, 0 8px 16px rgba(245, 64, 42, 0.35);
  animation: cta-pulse 2.2s ease-in-out infinite;
}

@keyframes cta-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}

/* --- BLOCKQUOTE --- */
.article-blockquote {
  border-left: 4px solid var(--accent);
  margin: 24px 0;
  padding: 16px 24px;
  background: #fafafa;
  font-style: italic;
  font-size: 18px;
  line-height: 1.6;
  color: #555;
}

/* --- SPONSORED STORIES --- */
.sponsored-section { margin: 30px 0; }

.sponsored-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.sponsored-header h3 {
  font-size: 16px;
  font-weight: 700;
  font-style: italic;
  margin: 0;
}

.sponsored-header span { font-size: 12px; color: #999; }

.sponsored-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 20px;
}

.sponsored-item {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: opacity 0.2s;
}

.sponsored-item:hover { opacity: 0.85; }
.sponsored-item:hover p { text-decoration: underline; }

.sponsored-item img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  background: #eee;
}

.sponsored-item p {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  margin: 10px 0 0;
  color: #1a1a1a;
}

/* --- COMMENTS (Facebook style) --- */
.comments-wrapper { margin-top: 36px; }

.fb-heading {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 16px;
}

.comments-container {
  border: 1px solid #dddfe2;
  border-radius: 16px;
  padding: 24px;
}

.comment {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding-bottom: 20px;
  position: relative;
}

.comment .user-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
  background: #ddd;
  object-fit: cover;
  border: 1px solid #e4e6eb;
}

.comment .comment-data {
  flex: 1;
  min-width: 0;
  background: #f0f2f5;
  border-radius: 18px;
  padding: 12px 16px;
}

.comment .name {
  margin: 0;
  font-weight: 700;
  font-size: 15px;
  color: #385898;
}

.comment .text {
  margin: 4px 0 0;
  font-size: 15px;
  line-height: 1.5;
  color: #1c1e21;
}

.comment .buttons {
  display: flex;
  gap: 6px;
  align-items: center;
  margin: 10px 0 0;
  font-size: 13px;
  color: #65676b;
}

.comment .buttons like,
.comment .buttons answer { font-weight: 700; cursor: pointer; }

.comment likes {
  position: absolute;
  right: 16px;
  bottom: 30px;
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 600;
  color: #65676b;
}

.comment likes::before {
  content: "👍 ❤️";
  font-size: 15px;
  letter-spacing: -2px;
}

.comments-closed {
  text-align: center;
  color: #65676b;
  font-style: italic;
  font-weight: 400;
  margin: 8px 0 0;
}

/* --- SIDEBAR --- */
.ads-sidebar {
  width: 200px;
  flex-shrink: 0;
  position: sticky;
  top: 70px;
}

.ads-sidebar .ad-unit {
  margin-bottom: 20px;
  cursor: pointer;
  transition: opacity 0.2s;
}

.ads-sidebar .ad-unit:hover { opacity: 0.85; }
.ads-sidebar .ad-unit:hover .ad-headline { text-decoration: underline; }

.ads-sidebar .ad-unit a { text-decoration: none; }

.ads-sidebar .ad-unit img {
  width: 100%;
  height: auto;
  display: block;
  background: #eee;
}

.ads-sidebar .ad-unit .ad-headline {
  padding: 8px 0;
  font-size: 13px;
  line-height: 1.35;
  color: #2a2a2a;
  font-weight: 700;
}

/* --- INFO BLOCKS (ingredients / disclaimer / references) --- */
.info-block {
  background: #f7f7f7;
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  padding: 22px 26px;
  margin: 24px 0;
}

.info-block-title {
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #2a2a2a;
  margin: 0 0 14px;
}

.info-block p {
  font-size: 14px;
  line-height: 1.65;
  color: #555;
  margin: 0 0 14px;
}

.info-block p:last-child { margin-bottom: 0; }

.references-list {
  margin: 0;
  padding-left: 22px;
  list-style: decimal;
}

.references-list li {
  font-size: 13px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 14px;
  padding-left: 6px;
}

.references-list li:last-child { margin-bottom: 0; }

.references-list a {
  color: var(--link);
  text-decoration: none;
  word-break: break-word;
}

.references-list a:hover { text-decoration: underline; }

/* --- FOOTER --- */
.today-footer {
  padding: 40px 20px;
  background: #fafafa;
  color: #949494;
  margin-top: 40px;
}

.today-footer-inner { max-width: 740px; margin: 0 auto; text-align: center; }

.today-footer nav { margin-bottom: 16px; }
.today-footer nav a { color: #949494; font-size: 14px; text-decoration: underline; }
.today-footer nav span { color: #949494; margin: 0 8px; }
.today-footer p { font-size: 13px; line-height: 20px; color: #949494; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 768px) {
  .today-nav { display: none; }

  .today-nav-mobile {
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-bottom: 1px solid #e8e8e8;
    padding: 0 12px;
  }

  .today-nav-mobile a {
    font-size: 14px;
    font-weight: 700;
    color: #2a2a2a;
    text-decoration: none;
    text-transform: uppercase;
    padding: 10px 12px;
    white-space: nowrap;
    border-right: 1px solid #d9d9d9;
    cursor: pointer;
  }

  .today-nav-mobile a:last-child { border-right: none; }

  .today-header-inner { height: 50px; padding: 0 12px; }
  .today-logo .sunrise-icon { width: 50px; height: 28px; }
  .today-logo .brand-text { font-size: 20px; }

  .breaking-news-banner { padding: 8px 12px; gap: 10px; }
  .breaking-news-label { font-size: 11px; padding: 3px 12px; }
  .breaking-news-date { font-size: 12px; }

  .article-header { padding: 16px 16px 0; }
  .article-title { font-size: 28px; }

  .content-with-sidebar { flex-direction: column; padding: 0; gap: 0; }
  .content-main-col { max-width: none; }
  .today-article-content { padding: 16px 16px 0; }
  .today-article-content p { font-size: 16px; }
  .interview-box { padding: 14px 16px; }

  .ads-sidebar { display: none; }

  .cta-button-watch {
    width: 100%;
    font-size: 17px;
    padding: 14px 16px;
  }

  .sponsored-grid { grid-template-columns: 1fr; gap: 20px; }
}

@media (max-width: 1024px) and (min-width: 769px) {
  .today-nav a { font-size: 13px; padding: 0 8px; }
  .sponsored-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================================= */
/* SLIM TIDE - QUIZ POS-PITCH + OFERTA (namespace .st-)          */
/* ============================================================= */
.st-wrap {
  background: #fdfbf7;
  padding: 28px 16px 48px;
  font-family: 'Libre Franklin', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.st-inner { max-width: 1080px; margin: 0 auto; }

/* logo + subtitulo */
.st-logo {
  text-align: center;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 44px;
  font-weight: 900;
  color: #14121a;
  line-height: 1;
}
.st-logo span { color: #f97316; }
.st-tagline {
  margin: 10px 0 22px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #14121a;
}

/* barra de progresso */
.st-progress-row {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  color: #14121a;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.st-progress-track {
  height: 8px;
  border-radius: 6px;
  background: #eee3cf;
  overflow: hidden;
  margin-bottom: 26px;
}
.st-progress-fill {
  height: 100%;
  width: 20%;
  border-radius: 6px;
  background: linear-gradient(90deg, #4a0d24, #f97316);
  transition: width 0.4s ease;
}

/* cartao principal */
.st-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 34px rgba(20, 10, 40, 0.08);
  padding: 38px 30px 34px;
}

.st-step-label {
  text-align: center;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #f97316;
  margin: 0 0 14px;
}
.st-question {
  text-align: center;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(26px, 3.4vw, 38px);
  font-weight: 900;
  color: #14121a;
  line-height: 1.2;
  margin: 0 auto 10px;
  max-width: 640px;
}
.st-hint {
  text-align: center;
  color: #b0713e;
  font-size: 15px;
  margin: 0 0 26px;
}

/* opcoes */
.st-options { max-width: 760px; margin: 0 auto; display: grid; gap: 16px; }
.st-options--cols { grid-template-columns: 1fr 1fr; }
.st-options--cols .st-opt--full { grid-column: 1 / -1; }
@media (max-width: 640px) { .st-options--cols { grid-template-columns: 1fr; } }

.st-opt {
  display: block;
  width: 100%;
  text-align: left;
  background: #fbe5e4;
  border: 1px solid #e3c493;
  border-radius: 14px;
  padding: 18px 20px;
  font-family: inherit;
  font-size: 17px;
  font-weight: 600;
  color: #14121a;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
}
.st-opt:hover {
  background: #f8d9d8;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(20, 10, 40, 0.10);
}
.st-opt .st-opt-sub {
  display: block;
  margin-top: 3px;
  font-size: 13px;
  font-weight: 400;
  color: #6f6a78;
}
.st-opt .st-emoji { margin-right: 10px; }

.st-back {
  margin-top: 18px;
  background: #fff;
  border: 1px solid #e3c493;
  border-radius: 12px;
  padding: 12px 20px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  color: #14121a;
  cursor: pointer;
}
.st-back:hover { background: #faf3e6; }

/* loading */
.st-loading-box {
  max-width: 720px;
  margin: 0 auto;
  border: 1px solid #efc9c9;
  border-radius: 14px;
  padding: 28px 26px;
  background: linear-gradient(180deg, #fff6f5, #ffffff);
  display: flex;
  gap: 22px;
  align-items: center;
}
.st-spinner {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 6px solid #fde3c8;
  border-top-color: #f97316;
  border-right-color: #b0713e;
  animation: stspin 1s linear infinite;
}
@keyframes stspin { to { transform: rotate(360deg); } }
.st-loading-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 24px;
  font-weight: 900;
  color: #14121a;
  margin: 0 0 12px;
}
.st-loading-bar {
  height: 8px;
  border-radius: 6px;
  background: #f0e6da;
  overflow: hidden;
  margin-bottom: 16px;
}
.st-loading-bar > div {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #4a0d24, #b0713e);
  transition: width 0.5s linear;
}
.st-loading-steps { list-style: none; margin: 0; padding: 0; }
.st-loading-steps li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: #9a94a5;
  padding: 4px 0;
}
.st-loading-steps li::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #e4d6c2;
}
.st-loading-steps li.st-on { color: #14121a; font-weight: 600; }
.st-loading-steps li.st-on::before { background: #f97316; }

/* resultado */
.st-result-title {
  text-align: center;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 900;
  color: #14121a;
  line-height: 1.2;
  margin: 0 0 22px;
}
.st-result-title span { color: #f97316; }

.st-summary {
  max-width: 640px;
  margin: 0 auto 20px;
  background: #fbe5e4;
  border-radius: 14px;
  padding: 20px 24px;
}
.st-summary-label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #f97316;
  margin: 0 0 10px;
}
.st-summary p { margin: 5px 0; font-size: 15px; color: #14121a; }

.st-estimate {
  max-width: 640px;
  margin: 0 auto 26px;
  background: #fff;
  border: 2px solid #4a0d24;
  border-radius: 14px;
  padding: 20px 24px;
}
.st-estimate-label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #f97316;
  margin: 0 0 8px;
}
.st-estimate-value {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 26px;
  font-weight: 900;
  color: #f97316;
  margin: 0 0 8px;
}
.st-estimate p { margin: 0; font-size: 13.5px; line-height: 1.5; color: #4b4653; }

.st-hero {
  position: relative;
  max-width: 620px;
  margin: 0 auto 26px;
}
.st-hero img { width: 100%; display: block; border-radius: 10px; }
.st-hero .st-off {
  position: absolute;
  top: 10px;
  right: -14px;
  background: linear-gradient(90deg, #f97316, #b0713e);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  padding: 8px 18px;
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(20, 10, 40, 0.25);
}

.st-cta {
  display: block;
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  background: linear-gradient(90deg, #17456e, #b0713e);
  color: #fff;
  font-family: inherit;
  font-size: 19px;
  font-weight: 800;
  border: none;
  border-radius: 12px;
  padding: 18px 24px;
  cursor: pointer;
  box-shadow: 0 10px 26px rgba(249, 115, 22, 0.35);
  transition: transform 0.12s ease, filter 0.12s ease;
}
.st-cta:hover { transform: translateY(-1px); filter: brightness(1.05); }
.st-secure {
  text-align: center;
  font-size: 12.5px;
  color: #b0713e;
  margin: 12px 0 0;
}

/* ===================== OFERTA (roxa) ===================== */
.st-offer-banner {
  background: #17456e;
  padding: 34px 20px 26px;
  text-align: center;
  color: #fff;
}
.st-offer-banner h2 {
  margin: 0;
  font-size: clamp(20px, 3vw, 27px);
  font-weight: 800;
  line-height: 1.3;
}
.st-offer-remaining {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  font-size: 13px;
  font-weight: 700;
}

.st-shipping-strip {
  background: #fff;
  padding: 22px 20px 30px;
}
.st-shipping-card {
  display: flex;
  align-items: stretch;
  max-width: 700px;
  margin: 0 auto;
  border: 2px solid #f8cf9e;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
}
.st-shipping-card .st-ship-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 130px;
  padding: 16px;
  background: #f97316;
  border-radius: 0 60px 60px 0;
}
.st-shipping-card .st-ship-icon img { width: 88px; height: auto; }
.st-shipping-card .st-ship-text { flex: 1; padding: 16px 20px; }
.st-shipping-card h3 {
  margin: 0;
  font-size: clamp(15px, 2.4vw, 19px);
  font-weight: 800;
  color: #1d1f23;
}
.st-shipping-card h3 span.u { color: #f97316; text-decoration: underline; }
.st-shipping-card p { margin: 6px 0 0; font-size: 12px; color: #6b6b6b; }

/* cards de potes */
.st-kits {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
  max-width: 1080px;
  margin: 0 auto;
  padding: 8px 16px 42px;
  background: #fff;
  flex-wrap: wrap;
}
.st-kit {
  display: block;
  text-decoration: none;
  width: 300px;
  border: 2px solid #f97316;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  color: #14121a;
  text-align: center;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.st-kit:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(249, 115, 22, 0.2); }
.st-kit-head {
  background: #f97316;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  padding: 10px;
}
.st-kit-body { padding: 18px 16px 22px; }
.st-kit h2 { margin: 0; font-size: 21px; font-weight: 900; letter-spacing: 0.5px; }
.st-kit .st-supply { margin: 4px 0 12px; font-size: 12.5px; color: #6f6a78; }
.st-kit .st-kit-img img { max-height: 170px; width: auto; max-width: 100%; }
.st-kit .st-price { margin: 14px 0 4px; font-size: 15px; }
.st-kit .st-price b { font-size: 42px; font-weight: 900; }
.st-kit .st-price sup { font-size: 18px; }
.st-kit .st-rows { border-top: 1px dashed #ead9c4; margin-top: 12px; }
.st-kit .st-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 4px;
  border-bottom: 1px dashed #ead9c4;
  font-size: 13.5px;
  font-weight: 800;
}
.st-kit .st-row--save { color: #b0713e; }
.st-kit .st-buy {
  display: block;
  margin: 16px auto 10px;
  width: 100%;
  background: #ececec;
  border: none;
  border-radius: 8px;
  padding: 13px 10px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 800;
  color: #14121a;
  cursor: pointer;
}
.st-kit .st-total { margin: 10px 0 2px; font-size: 15px; }
.st-kit .st-total s { color: #a8a29e; }
.st-kit .st-total b { color: #14121a; }
.st-kit .st-ship-note { margin: 0; font-size: 13px; font-weight: 800; color: #f97316; }

/* card destaque */
.st-kit--featured {
  background: linear-gradient(180deg, #10344f, #081e33);
  color: #fff;
  border-color: #f8b26a;
  transform: scale(1.04);
}
.st-kit--featured:hover { transform: scale(1.04) translateY(-3px); }
.st-kit--featured .st-kit-head { background: #fff; color: #10344f; }
.st-kit--featured .st-supply { color: #c3d6e8; }
.st-kit--featured .st-rows, .st-kit--featured .st-row { border-color: rgba(255, 255, 255, 0.28); }
.st-kit--featured .st-row--save { color: #fbbf24; }
.st-kit--featured .st-buy { background: #fbbf24; color: #14121a; }
.st-kit--featured .st-total s { color: #9fb8cf; }
.st-kit--featured .st-total b { color: #fff; }
.st-kit--featured .st-ship-note { color: #fbbf24; }

/* garantia roxa */
.st-guarantee-bg { background: linear-gradient(180deg, #17456e, #10344f); padding: 48px 20px 54px; }
.st-guarantee {
  display: flex;
  align-items: center;
  gap: 38px;
  max-width: 1000px;
  margin: 0 auto;
  color: #fff;
}
.st-guarantee-img { flex-shrink: 0; width: 170px; }
.st-guarantee-img img { width: 100%; height: auto; }
.st-guarantee h2 { margin: 0; font-size: clamp(19px, 3vw, 25px); font-weight: 800; }
.st-guarantee h3 { margin: 4px 0 0; font-size: clamp(17px, 2.7vw, 22px); font-weight: 800; }
.st-guarantee p { margin: 14px 0 0; font-size: clamp(13px, 2vw, 15px); font-weight: 600; line-height: 1.5; }
.st-guarantee a { color: #fff; text-decoration: underline; word-break: break-word; }
.st-badges { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 22px; }
.st-badges img { width: 72px; height: 72px; object-fit: contain; }
@media (max-width: 768px) {
  .st-guarantee { flex-direction: column; text-align: center; gap: 22px; }
  .st-badges { justify-content: center; }
  .st-badges img { width: 56px; height: 56px; }
}

/* faixa frete roxa escura */
.st-truck-bg { background: #0b2740; padding: 22px 20px 40px; }
.st-truck {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  max-width: 900px;
  margin: 0 auto;
  color: #fff;
  font-size: clamp(15px, 2.4vw, 20px);
  font-weight: 800;
  line-height: 1.3;
  text-align: left;
}
.st-truck img { width: 70px; height: auto; flex-shrink: 0; }

/* FAQ roxo */
.st-faq-bg { background: #17456e; padding: 48px 20px 56px; }
.st-faq { max-width: 720px; margin: 0 auto; }
.st-faq-title {
  margin: 0 0 26px;
  text-align: center;
  color: #fff;
  font-size: clamp(24px, 3.4vw, 32px);
  font-weight: 800;
}
.st-faq-item {
  margin-bottom: 13px;
  background: #fff;
  border-radius: 9px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.16);
}
.st-faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: 100%;
  padding: 15px 18px;
  border: 0;
  background: transparent;
  text-align: left;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  color: #1d1f23;
  cursor: pointer;
}
.st-faq-q svg { width: 19px; height: 19px; flex-shrink: 0; color: #555; transition: transform 0.3s ease; }
.st-faq-item.st--open .st-faq-q svg { transform: rotate(180deg); }
.st-faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.3s ease; }
.st-faq-item.st--open .st-faq-a { grid-template-rows: 1fr; }
.st-faq-a-text { overflow: hidden; min-height: 0; padding: 0 18px; color: #555; font-size: 14px; line-height: 1.6; }
.st-faq-item.st--open .st-faq-a-text { padding: 2px 18px 16px; }

/* quem e a dra */
.st-doc-bg { background: #fff; padding: 40px 20px; }
.st-doc {
  display: flex;
  align-items: center;
  gap: 36px;
  max-width: 1060px;
  margin: 0 auto;
  padding: 38px;
  background: #17456e;
  border: 2px solid #f8b26a;
  border-radius: 20px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
  color: #fff;
}
.st-doc-img { flex-shrink: 0; width: 290px; max-width: 40%; }
.st-doc-img img { width: 100%; height: auto; border-radius: 12px; display: block; }
.st-doc h2 { margin: 0 0 12px; font-size: clamp(22px, 3vw, 28px); font-weight: 800; }
.st-doc p { margin: 0 0 13px; font-size: clamp(14px, 1.9vw, 16px); line-height: 1.55; }
.st-doc p:last-child { margin-bottom: 0; }
@media (max-width: 768px) {
  .st-doc { flex-direction: column; gap: 20px; padding: 24px 18px; }
  .st-doc-img { width: 220px; max-width: 70%; }
}

/* --- LIVE VIEWERS (portado da VSL de BP) --- */
.live-viewers {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 18px 0 12px;
  font-size: 15px;
  color: #333;
}

.live-viewers__status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.5px;
  padding: 5px 10px;
  border-radius: 4px;
  text-transform: uppercase;
}

.live-viewers__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  animation: live-viewers-pulse 1.4s ease-in-out infinite;
}

@keyframes live-viewers-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.35; transform: scale(0.7); }
}

.live-viewers .live-viewers__copy { margin: 0; line-height: 1; }


/* ============================================================= */
/* KITS - alinhamento: caixa de imagem com altura fixa e botao   */
/* ancorado, para os 3 cards baterem na mesma linha              */
/* ============================================================= */
.st-kit { display: flex; flex-direction: column; }

.st-kit .st-kit-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* caixa da imagem: mesma altura em todos os cards, imagem centralizada */
.st-kit .st-kit-img {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.st-kit .st-kit-img img {
  max-height: 100%;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* o bloco de beneficios cresce e empurra o botao para a mesma altura */
.st-kit .st-rows { flex: 1; }

@media (max-width: 640px) {
  .st-kit .st-kit-img { height: 150px; }
}

/* ============================================================= */
/* REVIEWS (estilo Amazon) - fundo branco, quebra as faixas       */
/* ============================================================= */
.st-reviews-bg {
  background: #fff;
  border-top: 3px solid var(--st-accent, #f97316);
  padding: 44px 20px 56px;
}

.st-reviews {
  max-width: 760px;
  margin: 0 auto;
}

.st-reviews-title {
  margin: 0;
  text-align: center;
  font-size: clamp(22px, 3.2vw, 30px);
  font-weight: 800;
  color: var(--st-accent, #f97316);
}

.st-reviews-subtitle {
  margin: 6px 0 0;
  text-align: center;
  font-size: clamp(15px, 2.2vw, 19px);
  font-weight: 700;
  color: #1d1f23;
}

.st-reviews-label {
  margin: 26px 0 14px;
  font-size: 13px;
  font-weight: 700;
  color: #1d1f23;
}

.st-review {
  padding: 18px 0 20px;
  border-top: 1px solid #e7e2dc;
}

.st-rv-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.st-rv-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: #eee;
}

.st-rv-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }

.st-rv-name { font-size: 14px; font-weight: 700; color: #1d1f23; }
.st-rv-loc { font-size: 13px; color: #7a7a7a; }

.st-rv-stars { display: flex; gap: 2px; margin: 4px 0 6px; }
.st-rv-stars svg { width: 15px; height: 15px; fill: #f5a623; }

.st-rv-purchased {
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--st-accent, #f97316);
}

.st-rv-body {
  margin: 0 0 10px;
  font-size: 14.5px;
  line-height: 1.6;
  color: #3f3f46;
}

.st-rv-helpful { font-size: 12.5px; color: #7a7a7a; margin-bottom: 6px; }

.st-rv-actions { display: flex; gap: 16px; }
.st-rv-actions span { font-size: 13px; font-weight: 700; color: #444; cursor: pointer; }

@media (max-width: 768px) {
  .st-reviews-bg { padding: 32px 16px 40px; }
}

/* --- BOTOES DE COMPRA EM VERDE (todos os cards) --- */
.st-kit .st-buy,
.st-kit--featured .st-buy {
  background: linear-gradient(180deg, #35d46f 0%, #159c48 100%);
  color: #fff;
  box-shadow: 0 4px 0 #0d7a37, 0 8px 18px rgba(21, 156, 72, 0.28);
  transition: filter 0.12s ease, transform 0.12s ease;
}

.st-kit:hover .st-buy { filter: brightness(1.05); }
