/* =====================================================================
   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: #0d0d0f;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.88) 35%, rgba(0, 0, 0, 1) 60%), url("../img/cbsn--main-bg.jpg");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: #2a2a2a;
  -webkit-font-smoothing: antialiased;
  margin: 0;
  padding: 0;
}

@media (max-width: 768px) {
  body.advertorial { background-attachment: scroll; }
}

img { max-width: 100%; }

/* --- HEADER --- */
.today-header-wrapper {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: rgba(13, 13, 15, 0.82);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.today-header-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ROW 1 — left dropdown nav */
.today-nav-top {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}

.nav-top-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin: 0;
  padding: 5px 10px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  color: #f2f2f2;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 0.15s ease;
}

.nav-top-link:hover { background-color: rgba(255, 255, 255, 0.14); }

.nav-top-link .chevron {
  width: 11px;
  height: 11px;
  flex-shrink: 0;
}

.nav-top-live .live-dot {
  color: var(--accent);
  font-size: 20px;
  line-height: 0;
  margin-right: -1px;
}

.nav-top-more {
  margin: 0;
  padding: 5px 10px;
  border-radius: 6px;
  font-size: 18px;
  letter-spacing: 2px;
  color: #f2f2f2;
  text-decoration: none;
  cursor: pointer;
  line-height: 1;
  transition: background-color 0.15s ease;
}

.nav-top-more:hover { background-color: rgba(255, 255, 255, 0.14); }

/* ROW 1 — centered logo */
.today-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  cursor: pointer;
}

.today-logo-center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.today-logo .brand-logo {
  height: 40px;
  width: auto;
  display: block;
}

/* ROW 1 — right search */
.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: #f2f2f2;
  font-size: 18px;
  padding: 4px;
}

/* ROW 2 — category links */
.today-nav-secondary {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  height: 42px;
  display: flex;
  align-items: center;
  gap: 6px;
  overflow-x: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  /* os links deslizam em telas estreitas, mas sem barra de rolagem visivel */
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.today-nav-secondary::-webkit-scrollbar {
  display: none;
}

.today-nav-secondary p {
  margin: 0;
  padding: 5px 10px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  color: #f2f2f2;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  flex-shrink: 0;
  transition: background-color 0.15s ease;
}

.today-nav-secondary p:hover { background-color: rgba(255, 255, 255, 0.14); }

/* --- BREAKING NEWS --- */
.breaking-news-banner {
  max-width: 900px;
  margin: 24px auto 0;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border-bottom: 1px solid #e8e8e8;
  border-radius: 10px 10px 0 0;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}

.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: 900px;
  margin: 0 auto;
  padding: 20px 20px 0;
}

.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: #fff;
  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 WRAPPER --- */
.article-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px 32px;
}

.today-article-content { padding: 24px 0 0; }

.today-article-content p {
  font-size: 17px;
  line-height: 1.7;
  color: #e8e8e8;
  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;
}

/* --- LIVE VIEWERS --- */
.live-viewers {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 18px 0 12px;
  font-size: 15px;
  color: #e8e8e8;
}

.live-viewers__status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #e02020;
  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; }

.live-viewers__copy strong {
  font-weight: 700;
  color: #e02020;
  transition: color 0.25s ease;
}

.live-viewers__copy strong.is-changing {
  color: #e02020;
}

/* --- 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;
}

/* --- FOOTER --- */
.today-footer {
  padding: 40px 20px 32px;
  background: #0d0d0f;
  margin-top: 40px;
}

.today-footer-inner { max-width: 1200px; margin: 0 auto; }

.footer-logo-row {
  display: flex;
  justify-content: center;
  margin-bottom: 36px;
}

.footer-logo {
  height: 40px;
  width: auto;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-col { min-width: 150px; }

.footer-col h4 {
  margin: 0 0 14px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

.footer-col p {
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: 400;
  color: #b7b9bd;
  cursor: pointer;
}

.footer-col p:hover { color: #fff; text-decoration: underline; }

.footer-copyright {
  margin: 20px 0 0;
  font-size: 12px;
  color: #7c7f84;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 768px) {
  .today-nav-top { display: none; }

  .today-header-inner { height: 50px; padding: 0 12px; justify-content: center; }
  .today-logo .brand-logo { height: 36px; }

  .today-header-right { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); }

  .today-nav-secondary {
    padding: 0 12px;
    gap: 4px;
    -webkit-overflow-scrolling: touch;
  }

  .breaking-news-banner { padding: 8px 12px; gap: 10px; margin-top: 12px; border-radius: 0; }
  .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; }

  .article-container { padding: 0; }
  .today-article-content { padding: 16px 16px 0; }
  .today-article-content p { font-size: 16px; }

  /* vídeo um pouco mais largo no mobile (reduz a margem lateral) */
  #video { margin-left: -10px; margin-right: -10px; }
  .interview-box { padding: 14px 16px; }

  .cta-button-watch {
    width: 100%;
    font-size: 17px;
    padding: 14px 16px;
  }

  .footer-columns { gap: 24px 16px; }
  .footer-col { min-width: calc(50% - 8px); }

  .sponsored-grid { grid-template-columns: 1fr; gap: 20px; }
}

@media (max-width: 1024px) and (min-width: 769px) {
  .today-nav-top { gap: 14px; }
  .nav-top-link { font-size: 13px; }
  .today-nav-secondary { gap: 4px; }
  .today-nav-secondary p { font-size: 13px; }
  .sponsored-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================================= */
/* POTES / CHECKOUT CARDS                                         */
/* ============================================================= */
.lead-cbs .hidden {
  display: none !important;
}

/* potes "furam" a coluna de leitura (800px) e ocupam a largura da tela.
   100vw inclui a barra de rolagem — o overflow-x:clip no html/body evita a
   barra horizontal de ~17px que isso criava no desktop. */
html:has(.lead-cbs),
.lead-cbs {
  overflow-x: hidden;
  overflow-x: clip;
}

.lead-cbs #checkout-container {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

/* o bloco branco (garantia -> oferta de baixo) precisa encostar no footer:
   o respiro embaixo passa a ser o padding-bottom do .offer-white */
.lead-cbs .article-container {
  padding-bottom: 0;
}

.lead-cbs .today-footer {
  margin-top: 0;
}

/* respiro que antes vinha do article-container/footer — fica aqui para que,
   com a oferta ainda escondida, o video nao cole no footer */
.lead-cbs .live-viewers {
  margin-bottom: 32px;
}

.lead-cbs .checkout-section {
  display: grid;
  gap: 30px;
  padding: 40px 20px;
  max-width: 560px;
  margin: 0 auto;
}

.lead-cbs .checkout-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  position: relative;
  padding: 18px 22px 20px;
  border: 2px solid #1f3863;
  border-radius: 8px;
  background: linear-gradient(180deg, #f7fbff, #e9f0f7);
  color: #1d1f23;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.2);
}

.lead-cbs .checkout-card--featured {
  border-width: 4px;
  box-shadow: 0 18px 38px rgba(31, 56, 99, 0.35);
}

.lead-cbs .checkout-card__feature-label {
  width: calc(100% + 44px);
  margin: -24px -22px 24px;
  padding: 13px 14px;
  background: #1f3863;
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.05;
}

.lead-cbs .checkout-card h2 {
  margin: 0 0 12px;
  color: #1d1f23;
  font-size: clamp(34px, 9.5vw, 54px);
  font-weight: 900;
  line-height: 0.95;
}

.lead-cbs .checkout-card__supply {
  margin: 0 0 10px;
  color: #50565f;
  font-size: clamp(18px, 4.6vw, 24px);
  font-weight: 800;
}

.lead-cbs .checkout-card__image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: clamp(220px, 58vw, 310px);
  margin: 0 0 14px;
}

.lead-cbs .checkout-card__image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.lead-cbs .checkout-card__price {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
}

.lead-cbs .checkout-card__price strong {
  color: #1f3863;
  font-size: clamp(66px, 16vw, 88px);
  font-weight: 900;
  line-height: 0.9;
}

.lead-cbs .checkout-card__price span {
  color: #1d1f23;
  font-size: 21px;
  font-weight: 900;
  line-height: 0.92;
  text-align: left;
}

.lead-cbs .checkout-card__daily {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0 0 16px;
  font-size: clamp(24px, 6vw, 32px);
  font-weight: 900;
}

.lead-cbs .checkout-card__daily svg {
  width: 32px;
  color: #60656c;
}

.lead-cbs .checkout-card__benefits {
  width: 100%;
  margin: 0 0 18px;
  padding: 16px 24px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  font-size: clamp(17px, 4.3vw, 22px);
  font-weight: 800;
  line-height: 1.35;
  text-align: left;
  list-style-position: inside;
}

.lead-cbs .checkout-card__benefits li + li {
  margin-top: 14px;
}

.lead-cbs .checkout-card__save,
.lead-cbs .checkout-card__total strong,
.lead-cbs .checkout-card__shipping {
  color: #1f3863;
}

.lead-cbs .checkout-card__button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  min-height: 82px;
  border: 0;
  border-radius: 14px;
  background: linear-gradient(180deg, #35d46f, #159c48);
  color: #fff;
  font-family: inherit;
  font-size: clamp(26px, 6.6vw, 34px);
  font-weight: 900;
  box-shadow: 0 12px 22px rgba(21, 156, 72, 0.24);
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}

.lead-cbs .checkout-card__button svg {
  width: 38px;
}

/* botões laterais em cinza (secundários) — só o do meio fica verde */
.lead-cbs .checkout-card--compact .checkout-card__button {
  background: linear-gradient(180deg, #e2e6ea, #c8cdd4);
  color: #2a2f37;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

.lead-cbs .checkout-card__secure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin: 12px 0 14px;
  color: #263039;
  font-size: 18px;
  font-weight: 500;
}

.lead-cbs .checkout-card__secure svg {
  width: 18px;
}

.lead-cbs .checkout-card__cards {
  width: min(270px, 66%);
  margin-bottom: 14px;
}

.lead-cbs .checkout-card__total {
  margin: 0;
  font-size: 24px;
  font-weight: 900;
}

.lead-cbs .checkout-card__total span {
  color: #858585;
  text-decoration: line-through;
}

.lead-cbs .checkout-card__shipping {
  margin: 8px 0 0;
  font-size: 24px;
  font-weight: 900;
}

@media (max-width: 719px) {
  .lead-cbs .checkout-section .checkout-card--featured { order: 1; }
  .lead-cbs .checkout-section .checkout-card:last-child { order: 2; }
  .lead-cbs .checkout-section .checkout-card:first-child { order: 3; }

  /* ===== layout compacto em 2 colunas no mobile ===== */
  .lead-cbs .checkout-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 14px;
    align-items: start;
    text-align: left;
    padding: 16px 16px 18px;
    grid-template-areas:
      "label    label"
      "title    price"
      "supply   price"
      "image    benefits"
      "image    total"
      "image    shipping"
      "daily    daily"
      "button   button"
      "secure   cards";
  }

  .lead-cbs .checkout-card__feature-label {
    grid-area: label;
    width: auto;
    margin: -16px -16px 12px;
  }

  .lead-cbs .checkout-card h2 {
    grid-area: title;
    margin: 0;
    font-size: 27px;
    line-height: 1.02;
    text-align: left;
  }

  .lead-cbs .checkout-card__supply {
    grid-area: supply;
    margin: 4px 0 0;
    font-size: 16px;
    text-align: left;
  }

  .lead-cbs .checkout-card__image {
    grid-area: image;
    align-self: center;
    height: auto;
    max-height: 180px;
    margin: 10px 0 0;
  }

  .lead-cbs .checkout-card__price {
    grid-area: price;
    justify-content: flex-start;
    align-self: center;
    margin: 0;
  }
  .lead-cbs .checkout-card__price strong { font-size: 50px; }
  .lead-cbs .checkout-card__price span { font-size: 15px; }

  .lead-cbs .checkout-card__benefits {
    grid-area: benefits;
    margin: 0;
    padding: 10px 12px;
    font-size: 14px;
    border-radius: 10px;
  }
  .lead-cbs .checkout-card__benefits li + li { margin-top: 8px; }

  .lead-cbs .checkout-card__total {
    grid-area: total;
    margin: 9px 0 0;
    font-size: 17px;
    text-align: left;
  }

  .lead-cbs .checkout-card__shipping {
    grid-area: shipping;
    margin: 4px 0 0;
    font-size: 17px;
    text-align: left;
  }

  .lead-cbs .checkout-card__daily {
    grid-area: daily;
    justify-content: flex-start;
    margin: 11px 0 0;
    font-size: 19px;
  }

  .lead-cbs .checkout-card__button {
    grid-area: button;
    margin-top: 12px;
    min-height: 60px;
    font-size: 25px;
  }

  .lead-cbs .checkout-card__secure {
    grid-area: secure;
    justify-content: flex-start;
    margin: 10px 0 0;
    font-size: 13px;
  }

  .lead-cbs .checkout-card__cards {
    grid-area: cards;
    justify-self: end;
    width: 100%;
    max-width: 170px;
    margin: 10px 0 0;
  }
}

@media (min-width: 720px) {
  .lead-cbs .checkout-section {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: start;
    gap: 34px;
    max-width: 1180px;
    padding: 56px 28px;
  }

  .lead-cbs .checkout-card { padding: 14px 16px 16px; }
  .lead-cbs .checkout-card--featured { transform: translateY(-8px); }

  .lead-cbs .checkout-section .checkout-card:first-child,
  .lead-cbs .checkout-section .checkout-card:last-child {
    margin-top: 88px;
  }

  .lead-cbs .checkout-card__feature-label {
    width: calc(100% + 32px);
    margin: -18px -16px 18px;
    font-size: 13px;
  }

  .lead-cbs .checkout-card h2 { font-size: 28px; margin-bottom: 8px; }

  .lead-cbs .checkout-card__supply,
  .lead-cbs .checkout-card__total,
  .lead-cbs .checkout-card__shipping { font-size: 18px; }

  .lead-cbs .checkout-card__image { height: 140px; margin-bottom: 12px; }
  .lead-cbs .checkout-card__price strong { font-size: 58px; }
  .lead-cbs .checkout-card__price { margin-bottom: 12px; }
  .lead-cbs .checkout-card__price span { font-size: 16px; }
  .lead-cbs .checkout-card__daily { font-size: 20px; margin-bottom: 14px; }

  .lead-cbs .checkout-card__benefits {
    padding: 12px 14px;
    margin-bottom: 16px;
    font-size: 15px;
  }

  .lead-cbs .checkout-card__button { min-height: 64px; font-size: 22px; }
  .lead-cbs .checkout-card__button svg { width: 26px; }
  .lead-cbs .checkout-card__secure { font-size: 13px; }
}


/* ============================================================= */
/* PÓS-PITCH ▸ FAIXA VERMELHA + FRETE + GARANTIA                  */
/* Blocos full-bleed dentro de #checkout-container.              */
/* ============================================================= */

/* --- FAIXA VERMELHA (antes dos potes) --- */
.fbcta__cta-bg {
  background: #0e4c75;
  padding: 40px 20px 32px;
}

.fbcta__cta {
  max-width: 1140px;
  margin: 0 auto;
  text-align: center;
}

.fbcta__cta-title {
  margin: 0;
  color: #fff;
  font-family: 'Roboto', 'Libre Franklin', Arial, sans-serif;
  font-size: clamp(20px, 3.4vw, 28px);
  font-weight: 800;
  line-height: 1.25;
}

.fbcta__cta-counter {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  color: #fff;
  font-family: 'Poppins', 'Libre Franklin', Arial, sans-serif;
  font-size: clamp(12px, 2.2vw, 15px);
  font-weight: 700;
}

.fbcta__cta-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transform-origin: center;
  animation: fbctaspin 3s linear infinite;
}

@keyframes fbctaspin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.fbcta__cta-expired {
  margin: 12px 0 0;
  color: #ffe08a;
  font-family: 'Poppins', 'Libre Franklin', Arial, sans-serif;
  font-size: clamp(12px, 2.2vw, 15px);
  font-weight: 700;
}

.fbcta__cta-expired[hidden] { display: none; }

/* --- FREE SHIPPING (logo abaixo dos potes) --- */
.fbcta__shipping-bg {
  background: #fff;
  padding: 24px 20px 40px;
}

.fbcta__shipping {
  display: flex;
  align-items: stretch;
  max-width: 760px;
  margin: 0 auto;
  border: 2px solid #a9c6dc;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
}

.fbcta__shipping-img {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 140px;
  padding: 18px;
  background: #0e4c75;
  border-radius: 0 60px 60px 0;
}

.fbcta__shipping-img img {
  width: 96px;
  height: auto;
}

.fbcta__shipping-text {
  flex: 1;
  padding: 16px 22px 16px 10px;
}

.fbcta__shipping-headline {
  margin: 0;
  color: #1d1f23;
  font-family: 'Poppins', 'Libre Franklin', Arial, sans-serif;
  font-size: clamp(15px, 2.6vw, 20px);
  font-weight: 800;
  line-height: 1.2;
}

.fbcta__yellow {
  color: #e8912d;
  text-decoration: underline;
}

#checkout-container .fbcta__shipping-sub {
  margin: 8px 0 0;
  color: #6b6b6b;
  font-family: 'Poppins', 'Libre Franklin', Arial, sans-serif;
  font-size: clamp(11px, 2vw, 13px);
  line-height: 1.35;
}

/* --- GARANTIA (selos) --- */
.ns1__guarantee-bg {
  background: #0e4c75;
  padding: 50px 20px 60px;
}

.ns1__guarantee {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.ns1__guarantee-img {
  flex-shrink: 0;
  width: 180px;
}

.ns1__guarantee-img img {
  width: 100%;
  height: auto;
}

.ns1__guarantee-text {
  flex: 1;
  font-family: 'Poppins', 'Libre Franklin', Arial, sans-serif;
  color: #fff;
}

.ns1__guarantee-title-white {
  margin: 0;
  color: #fff;
  font-size: clamp(19px, 3vw, 26px);
  font-weight: 800;
  line-height: 1.2;
}

.ns1__guarantee-title-red {
  margin: 6px 0 0;
  color: #fff;
  font-size: clamp(17px, 2.8vw, 23px);
  font-weight: 800;
  line-height: 1.2;
}

.ns1__guarantee-body {
  margin: 18px 0 0;
}

.ns1__guarantee-body p {
  margin: 0 0 14px;
  color: #fff;
  font-size: clamp(13px, 2vw, 15px);
  font-weight: 600;
  line-height: 1.5;
}

.ns1__guarantee-body p:last-child { margin-bottom: 0; }

.ns1__guarantee-body a {
  color: #fff;
  text-decoration: underline;
  word-break: break-word;
}

.ns1__badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
}

.ns1__badges img {
  width: 76px;
  height: 76px;
  object-fit: contain;
}

@media (max-width: 768px) {
  .ns1__guarantee {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }
  .ns1__guarantee-img { width: 140px; }
  .ns1__badges { justify-content: center; gap: 10px; }
  .ns1__badges img { width: 58px; height: 58px; }

  .fbcta__shipping-img { width: 112px; padding: 12px; }
  .fbcta__shipping-img img { width: 78px; }
}

/* --- FAIXA FRETE (abaixo dos selos) --- */
.ns1__shipping-bg {
  background: #0e4c75;
  padding: 24px 20px 44px;
  overflow: hidden;
}

.ns1__shipping {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.ns1__shipping-truck {
  flex-shrink: 0;
}

.ns1__shipping-truck img {
  width: 74px;
  height: auto;
}

.ns1__shipping-text {
  color: #fff;
  font-family: 'Poppins', 'Libre Franklin', Arial, sans-serif;
  font-size: clamp(16px, 2.6vw, 22px);
  font-weight: 800;
  line-height: 1.25;
}

/* --- COMENTÁRIOS / REVIEWS --- */
.ns1__reviews-bg {
  background: #fff;
  border-top: 3px solid #0e4c75;
  padding: 44px 20px 56px;
}

.ns1__reviews {
  max-width: 760px;
  margin: 0 auto;
  font-family: 'Poppins', 'Libre Franklin', Arial, sans-serif;
}

.ns1__reviews-title {
  margin: 0;
  text-align: center;
  color: #0e4c75;
  font-family: 'Roboto', 'Libre Franklin', Arial, sans-serif;
  font-size: clamp(22px, 3.4vw, 30px);
  font-weight: 700;
  line-height: 1.2;
}

#checkout-container .ns1__reviews-subtitle {
  margin: 8px 0 0;
  text-align: center;
  color: #1a1a1a;
  font-size: clamp(17px, 2.6vw, 22px);
  font-weight: 700;
}

#checkout-container .ns1__reviews-label {
  margin: 32px 0 12px;
  color: #000;
  font-size: 14px;
  font-weight: 700;
}

.ns1__review {
  padding: 0 0 20px;
  margin: 0 0 20px;
  border-bottom: 1px solid #e5e5e5;
}

.ns1__review:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.ns1__rv-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}

.ns1__rv-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: #ddd;
}

.ns1__rv-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ns1__rv-name {
  font-size: 14px;
  font-weight: 700;
  color: #000;
}

.ns1__rv-loc {
  font-size: 13px;
  font-weight: 400;
  color: #777;
}

.ns1__rv-stars {
  display: flex;
  gap: 2px;
  margin: 2px 0 4px;
}

.ns1__rv-stars svg {
  width: 15px;
  height: 15px;
  fill: #f5a623;
}

#checkout-container .ns1__rv-purchased {
  margin: 0 0 8px;
  color: #0e4c75;
  font-size: 12px;
  font-weight: 700;
}

#checkout-container .ns1__rv-body {
  margin: 0 0 10px;
  color: #555;
  font-size: 14px;
  line-height: 1.55;
}

.ns1__rv-helpful {
  margin: 0 0 6px;
  color: #888;
  font-size: 13px;
}

.ns1__rv-actions {
  display: flex;
  gap: 18px;
}

.ns1__rv-actions span {
  color: #444;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

@media (max-width: 768px) {
  .ns1__shipping { gap: 14px; }
  .ns1__shipping-truck img { width: 58px; }

  .ns1__reviews-bg { padding: 32px 16px 40px; }
}

/* --- FAQ (accordion) --- */
.ns2__faq-bg {
  background: #0e4c75;
  padding: 50px 20px 60px;
}

.ns2__faq {
  max-width: 720px;
  margin: 0 auto;
  font-family: 'Poppins', 'Libre Franklin', Arial, sans-serif;
}

.ns2__faq-title {
  margin: 0 0 28px;
  text-align: center;
  color: #fff;
  font-family: 'Roboto', 'Libre Franklin', Arial, sans-serif;
  font-size: clamp(24px, 3.6vw, 34px);
  font-weight: 700;
}

.ns2__faq-item {
  margin-bottom: 14px;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.14);
}

.ns2__faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: 100%;
  margin: 0;
  padding: 16px 20px;
  border: 0;
  background: transparent;
  text-align: left;
  font-family: inherit;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}

.ns2__faq-q-text {
  font-size: 15px;
  font-weight: 600;
  color: #1d1f23;
  line-height: 1.35;
}

.ns2__faq-arrow {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: #555;
  transition: transform 0.3s ease;
}

.ns2__faq-item.ns2--open .ns2__faq-arrow {
  transform: rotate(180deg);
}

.ns2__faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}

.ns2__faq-item.ns2--open .ns2__faq-a {
  grid-template-rows: 1fr;
}

.ns2__faq-a-text {
  overflow: hidden;
  min-height: 0;
  padding: 0 20px;
  color: #555;
  font-size: 14px;
  line-height: 1.6;
}

.ns2__faq-item.ns2--open .ns2__faq-a-text {
  padding: 2px 20px 18px;
}

@media (max-width: 768px) {
  .ns2__faq-bg { padding: 40px 16px 48px; }
  .ns2__faq-q-text { font-size: 14px; }
  .ns2__faq-a-text { font-size: 13px; }
}

/* --- QUEM É DR. SANJAY GUPTA --- */
.ns2__droz-bg {
  background: #fff;
  padding: 40px 20px;
}

.ns2__droz {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 1080px;
  margin: 0 auto;
  padding: 40px;
  background: #0e4c75;
  border: 2px solid #6f9cbe;
  border-radius: 22px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.ns2__droz-img {
  flex-shrink: 0;
  width: 300px;
  max-width: 40%;
}

.ns2__droz-img img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

.ns2__droz-content {
  flex: 1;
  font-family: 'Poppins', 'Libre Franklin', Arial, sans-serif;
}

.ns2__droz-title {
  margin: 0 0 14px;
  color: #fff;
  font-family: 'Roboto', 'Libre Franklin', Arial, sans-serif;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  line-height: 1.2;
}

#checkout-container .ns2__droz-body p {
  margin: 0 0 14px;
  color: #fff;
  font-size: clamp(14px, 1.9vw, 16px);
  font-weight: 500;
  line-height: 1.55;
}

#checkout-container .ns2__droz-body p:last-child { margin-bottom: 0; }

.ns2__droz-body b { font-weight: 700; }

@media (max-width: 768px) {
  .ns2__droz {
    flex-direction: column;
    gap: 22px;
    padding: 26px 20px;
    border-radius: 16px;
  }
  .ns2__droz-img { width: 220px; max-width: 70%; }
}

/* ============================================================= */
/* PÓS-PITCH ▸ OVERRIDES de tamanho de imagem                    */
/* Vencem o .esconder img { width:100% } do offer-shims.css      */
/* (main/ compartilhado, não editável) via id #checkout-container */
/* ============================================================= */
#checkout-container .ns1__badges img { width: 76px; height: 76px; max-width: 76px; }
#checkout-container .fbcta__shipping-img img { width: 96px; max-width: 96px; height: auto; }
#checkout-container .ns1__shipping-truck img { width: 74px; max-width: 74px; height: auto; }
#checkout-container .ns1__guarantee-img img { width: 100%; max-width: 100%; height: auto; }
#checkout-container .ns1__rv-avatar img { width: 100%; height: 100%; max-width: 100%; object-fit: cover; }
#checkout-container .ns2__droz-img img { width: 100%; max-width: 100%; height: auto; }

@media (max-width: 768px) {
  #checkout-container .ns1__badges img { width: 58px; height: 58px; max-width: 58px; }
  #checkout-container .fbcta__shipping-img img { width: 78px; max-width: 78px; }
  #checkout-container .ns1__shipping-truck img { width: 58px; max-width: 58px; }
}
