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

.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;
}

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

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

.live-viewers__copy strong.is-changing {
  color: var(--accent);
}

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

  .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;
  }

  .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; }
}

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

/* potes "furam" a coluna de leitura (800px) e ocupam a largura da tela */
.lead-cbs #checkout-container {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.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; }
}

/* =========================================================
   CTA — botão único (substitui os 3 potes)
   Portado da página "white NB".
   ========================================================= */
.cta-wrap { text-align: center; }
.cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  max-width: 460px;
  margin: 26px auto 0;
  padding: 15px 28px;
  border-radius: 999px;
  text-decoration: none;
  background: linear-gradient(180deg, #2fbf5a 0%, #1f9d47 100%);
  color: #fff;
  box-shadow: 0 12px 26px rgba(31, 157, 71, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  transition: transform 0.15s ease, box-shadow 0.2s ease, filter 0.2s ease;
  animation: cta-pulse 2.2s ease-in-out infinite;
}
.cta:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow: 0 16px 34px rgba(31, 157, 71, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  animation-play-state: paused;
}
.cta:active { transform: translateY(0); }

.cta__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.15;
}
.cta__main {
  font-size: clamp(20px, 4.5vw, 26px);
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.cta__sub {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 3px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.92;
}
.cta__lock { opacity: 0.9; }
.cta__arrow { flex: none; transition: transform 0.2s ease; }
.cta:hover .cta__arrow { transform: translateX(4px); }

@keyframes cta-pulse {
  0%, 100% { box-shadow: 0 12px 26px rgba(31, 157, 71, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.25); }
  50% { box-shadow: 0 12px 26px rgba(31, 157, 71, 0.62), 0 0 0 6px rgba(47, 191, 90, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.25); }
}
@media (prefers-reduced-motion: reduce) {
  .cta { animation: none; }
}
