/* V3 — Ousada
 * Editorial / magazine layout. Bold typography. Newsreader serif for accents.
 */

/* --- HEADER & global shells --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.94);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-8);
  height: 68px;
}
.brand { display: inline-flex; align-items: center; gap: var(--s-2); color: var(--blue-deep); }
.brand-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px;
  border-radius: var(--r-md);
  background: var(--blue-deep); color: var(--white);
}
.brand-name { font-weight: 800; font-size: 1.05rem; letter-spacing: -0.01em; color: var(--blue-deep); }
.brand-name-light { font-weight: 500; color: var(--blue); margin-left: 2px; }
.nav-links { display: flex; gap: var(--s-5); }
.nav-links a {
  color: var(--ink-2);
  font-size: 0.86rem;
  font-weight: 500;
  transition: color .12s;
  padding: 8px 0;
  position: relative;
}
.nav-links a:hover { color: var(--blue); }
.nav-actions { display: flex; align-items: center; gap: var(--s-2); }
.btn-lg { padding: 16px 28px; font-size: 1rem; }

/* Inline ghost text link */
.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--blue-deep);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 8px 0;
  border-bottom: 1px solid var(--ink);
  transition: gap .15s, color .15s;
}
.btn-text:hover { gap: 10px; color: var(--blue); }

/* --- HERO --- */
.hero-v3 {
  padding: var(--s-12) 0 var(--s-16);
  background: var(--white);
  position: relative;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 500;
  margin-bottom: var(--s-5);
}
.meta-tag { color: var(--orange); font-weight: 600; }
.meta-sep { color: var(--line-strong); }
.meta-num { margin-left: auto; font-weight: 500; }
.meta-num strong { color: var(--blue-deep); font-weight: 700; }

.rule {
  height: 1px;
  background: var(--ink);
  border: 0;
  margin: 0 0 var(--s-10);
  opacity: 1;
}
.rule-top { background: var(--ink); height: 2px; }

.hero-stack {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: var(--s-12);
  align-items: flex-start;
  margin-bottom: var(--s-12);
}

.hero-overline {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-size: 0.78rem;
  color: var(--ink-3);
  margin-bottom: var(--s-6);
  font-variant-numeric: tabular-nums;
}
.dot-orange {
  width: 8px; height: 8px;
  background: var(--orange);
  border-radius: 50%;
  animation: live-pulse 1.6s ease-in-out infinite;
}
@keyframes live-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

.hero-v3 h1 {
  font-size: clamp(2.5rem, 5.4vw, 4.6rem);
  line-height: 0.96;
  letter-spacing: -0.035em;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: var(--s-8);
}
.hero-v3 h1 em {
  font-family: 'Newsreader', Georgia, serif;
  font-style: italic;
  font-weight: 500;
  color: var(--blue);
  letter-spacing: -0.02em;
}
.hero-strike {
  position: relative;
  color: var(--ink-3);
}
.hero-strike::after {
  content: "";
  position: absolute;
  left: -4px; right: -4px;
  top: 54%;
  height: 6px;
  background: var(--orange);
  transform: rotate(-2deg);
  opacity: 0.85;
  border-radius: 2px;
}

.hero-deck {
  max-width: 52ch;
  font-size: 1.1rem;
  line-height: 1.55;
  color: var(--ink-2);
  margin-bottom: var(--s-8);
}
.hero-deck strong { color: var(--blue-deep); font-weight: 600; }

.hero-ctas {
  display: flex;
  align-items: center;
  gap: var(--s-6);
  flex-wrap: wrap;
}

/* Right: massive numerals + side notes */
.hero-right {
  position: relative;
}
.hero-numerals {
  text-align: right;
  margin-bottom: var(--s-6);
  overflow: hidden;
}
.hero-bignum {
  font-family: 'Newsreader', Georgia, serif;
  font-weight: 400;
  font-style: italic;
  font-size: clamp(5rem, 14vw, 11rem);
  line-height: 0.82;
  color: var(--blue-deep);
  letter-spacing: -0.04em;
  display: inline-block;
}
.hero-bignum small {
  color: var(--orange);
  font-style: normal;
  font-weight: 500;
  margin: 0 -0.05em;
}

.hero-side {
  padding-left: var(--s-6);
  border-left: 2px solid var(--ink);
}
.hero-side-label {
  font-family: 'Newsreader', Georgia, serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--ink-2);
  line-height: 1.4;
  margin-bottom: var(--s-5);
}
.hero-side hr {
  border: 0;
  height: 1px;
  background: var(--line);
  margin: var(--s-4) 0;
}
.hero-side-stat {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--s-3);
  align-items: baseline;
  margin: var(--s-3) 0;
  font-size: 0.84rem;
  color: var(--ink-2);
  line-height: 1.4;
}
.hero-side-stat strong {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--blue-deep);
  line-height: 1;
}
.hero-side-stat em {
  display: block;
  margin-top: 2px;
  font-size: 0.72rem;
  color: var(--ink-4);
  font-style: italic;
}

/* --- Partner strip --- */
.hero-partners {
  display: flex;
  align-items: center;
  gap: var(--s-4);
  padding: var(--s-4) 0;
  flex-wrap: wrap;
}
.partner-label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 600;
  flex-shrink: 0;
}
.partner-row {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  flex-wrap: wrap;
  font-size: 0.92rem;
  color: var(--ink);
  font-weight: 600;
  letter-spacing: -0.005em;
}
.partner-dot {
  width: 4px; height: 4px;
  background: var(--line-strong);
  border-radius: 50%;
}

/* --- Editorial section heads --- */
.ed-head {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: var(--s-6);
  align-items: flex-start;
  margin-bottom: var(--s-12);
  padding-top: var(--s-6);
  border-top: 2px solid var(--ink);
}
.ed-num {
  font-family: 'Newsreader', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: 4rem;
  line-height: 0.9;
  color: var(--blue-deep);
}
.ed-head h2 {
  font-size: clamp(1.9rem, 3.2vw, 3rem);
  line-height: 1.05;
  margin-top: var(--s-2);
}
.ed-deck {
  margin-top: var(--s-4);
  font-size: 1.02rem;
  color: var(--ink-2);
  max-width: 60ch;
  line-height: 1.55;
}
.ed-head-dark { border-top-color: var(--white); }
.ed-head-dark .ed-num { color: var(--orange); }
.ed-head-dark h2 { color: var(--white); }
.ed-head-dark .ed-deck { color: rgba(255,255,255,0.7); }
.eyebrow-on-dark { color: var(--orange); }
.eyebrow-on-dark::before { background: var(--orange); }

/* --- MANIFESTO --- */
.manifesto {
  padding: var(--s-16) 0 var(--s-20);
  background: var(--off-white);
}
.manifesto-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.creed {
  padding: var(--s-8) var(--s-6);
  position: relative;
  border-right: 1px solid var(--line);
}
.creed:last-child { border-right: 0; }
.creed-no {
  display: block;
  font-family: 'Newsreader', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: 2.4rem;
  color: var(--orange);
  line-height: 1;
  margin-bottom: var(--s-5);
}
.creed h3 {
  font-size: 1.3rem;
  color: var(--ink);
  margin-bottom: var(--s-3);
  line-height: 1.2;
  text-wrap: balance;
}
.creed p {
  font-size: 0.94rem;
  color: var(--ink-2);
  line-height: 1.55;
}

/* --- ACT (annotated conversation) --- */
.act {
  padding: var(--s-16) 0 var(--s-20);
  background: var(--white);
}
.conversation {
  max-width: 760px;
  margin: 0 auto;
  background: var(--off-white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--s-10) var(--s-12);
}
.conv-time {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 600;
  margin-bottom: var(--s-6);
  padding-bottom: var(--s-3);
  border-bottom: 1px solid var(--line);
}
.conv-time-l { color: var(--orange); }

.conv-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: var(--s-5);
  margin: var(--s-5) 0;
  align-items: flex-start;
}
.conv-who {
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 600;
  padding-top: 3px;
}
.conv-row p {
  font-size: 1.02rem;
  line-height: 1.5;
  color: var(--ink);
  margin: 0;
}
.conv-row strong {
  font-weight: 700;
  color: var(--blue-deep);
  background: rgba(255,153,0,0.12);
  padding: 1px 4px;
  border-radius: 2px;
}
.conv-them p {
  font-family: 'Newsreader', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  color: var(--ink-2);
  font-size: 1.08rem;
}
.conv-us .conv-who { color: var(--blue-deep); }
.conv-them .conv-who { color: var(--ink-3); }

.conv-anno {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: var(--s-5);
  margin: var(--s-3) 0 var(--s-5);
  font-size: 0.84rem;
  color: var(--ink-3);
  font-style: italic;
  align-items: flex-start;
}
.conv-anno > span:first-child {
  font-style: normal;
  text-align: right;
  color: var(--orange);
  font-size: 1.1rem;
  padding-right: var(--s-2);
}
.conv-anno strong { color: var(--ink); font-weight: 700; font-style: normal; }

.conv-end {
  margin-top: var(--s-8);
}
.conv-end hr {
  border: 0;
  border-top: 1px dashed var(--line-strong);
  margin: 0 0 var(--s-5);
}
.conv-end p {
  font-size: 0.92rem;
  color: var(--ink-2);
}
.conv-end strong { color: var(--green); font-weight: 700; }

/* --- NUMBERS (dark editorial) --- */
.numbers {
  padding: var(--s-16) 0 var(--s-20);
  background: var(--blue-deep);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.numbers .ed-head { border-top-color: rgba(255,255,255,0.6); }

.big-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-bottom: var(--s-12);
  border-top: 1px solid rgba(255,255,255,0.15);
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.big-stat {
  padding: var(--s-10) var(--s-6);
  border-right: 1px solid rgba(255,255,255,0.15);
}
.big-stat:last-child { border-right: 0; }
.big-stat-num {
  font-size: clamp(3.5rem, 6vw, 5.2rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.04em;
  line-height: 0.95;
  margin-bottom: var(--s-3);
}
.big-stat-label {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.9);
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: var(--s-2);
}
.big-stat-foot {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  font-style: italic;
  font-family: 'Newsreader', Georgia, serif;
}

.pull-quote {
  max-width: 780px;
  margin: 0 auto;
  position: relative;
  padding: var(--s-10) var(--s-12) var(--s-8);
}
.pull-mark {
  position: absolute;
  top: 0; left: 0;
  font-family: 'Newsreader', Georgia, serif;
  font-style: italic;
  font-size: 7rem;
  color: var(--orange);
  line-height: 1;
  opacity: 0.9;
}
.pull-quote blockquote {
  margin: 0;
  padding-left: var(--s-8);
}
.pull-quote p {
  font-family: 'Newsreader', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.45;
  color: var(--white);
  margin-bottom: var(--s-5);
  text-wrap: pretty;
}
.pull-quote p em { color: var(--orange); font-style: italic; }
.pull-quote footer {
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.04em;
}

/* --- PLANS table --- */
.plans-v3 {
  padding: var(--s-16) 0 var(--s-20);
  background: var(--white);
}
.plan-table {
  display: grid;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--white);
}
.pt-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  border-bottom: 1px solid var(--line);
}
.pt-row:last-child { border-bottom: 0; }
.pt-cell {
  padding: var(--s-4) var(--s-5);
  display: flex;
  align-items: center;
  border-right: 1px solid var(--line);
  font-size: 0.9rem;
  color: var(--ink-2);
}
.pt-cell:last-child { border-right: 0; }

.pt-header { background: var(--off-white); }
.pt-header .pt-cell {
  padding: var(--s-6) var(--s-5);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--s-2);
}
.pt-corner { background: var(--off-white); }
.pt-plan { position: relative; }
.pt-plan h3 {
  font-size: 1.05rem;
  color: var(--ink);
  font-weight: 700;
  margin: 0;
}
.pt-pitch {
  font-size: 0.78rem;
  color: var(--ink-3);
  margin: 0;
}
.pt-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin: var(--s-2) 0 var(--s-3);
}
.pt-currency { font-size: 0.9rem; color: var(--ink-3); font-weight: 600; }
.pt-price > span:nth-child(2) {
  font-size: 2rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.03em;
  line-height: 1;
}
.pt-unit { font-size: 0.82rem; color: var(--ink-3); margin-left: 4px; }
.pt-amount-text { font-size: 1.2rem; font-weight: 700; color: var(--ink); }
.pt-cta {
  width: 100%;
  justify-content: center;
  padding: 10px 14px;
  font-size: 0.85rem;
}
.pt-plan-featured {
  background: var(--blue-soft);
}
.pt-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--blue-deep);
  color: var(--white);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: var(--r-full);
}

.pt-section .pt-cell {
  background: var(--ink);
  color: var(--white);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  border-right: 0;
  grid-column: 1 / -1;
  padding: 10px var(--s-5);
}
.pt-label {
  font-weight: 500;
  color: var(--ink);
}
.pt-val {
  justify-content: center;
  font-size: 0.86rem;
  color: var(--ink-2);
  font-weight: 500;
}
.pt-val-yes svg { width: 18px; height: 18px; }
.pt-val-no { color: var(--ink-4); }

.plans-foot {
  margin-top: var(--s-6);
  text-align: center;
  font-size: 0.85rem;
  color: var(--ink-3);
}

/* --- TESTIMONIALS V3 --- */
.testimonials-v3 {
  padding: var(--s-16) 0 var(--s-20);
  background: var(--off-white);
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
}
.testimonial-slot {
  height: 260px;
  border: 1.5px dashed var(--line-strong);
  border-radius: var(--r-md);
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  padding: var(--s-6);
  text-align: center;
}
.slot-no {
  font-family: 'Newsreader', Georgia, serif;
  font-style: italic;
  font-size: 1.5rem;
  color: var(--blue-deep);
}
.slot-label {
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-4);
  font-weight: 500;
}

/* --- CTA FINAL --- */
.cta-final {
  padding: var(--s-20) 0;
  background: var(--white);
  border-top: 2px solid var(--ink);
}
.cta-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--s-12);
  align-items: center;
}
.cta-final h2 {
  color: var(--ink);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: var(--s-5);
}
.cta-final p {
  font-size: 1.05rem;
  color: var(--ink-2);
  max-width: 50ch;
}
.cta-action { text-align: right; }
.cta-foot {
  margin-top: var(--s-4);
  font-size: 0.82rem;
  color: var(--ink-3);
}

/* --- FOOTER --- */
.site-footer {
  padding: var(--s-16) 0 var(--s-8);
  background: var(--off-white);
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: var(--s-12);
  margin-bottom: var(--s-12);
}
.footer-tag {
  margin-top: var(--s-4);
  font-family: 'Newsreader', Georgia, serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--ink-2);
  max-width: 32ch;
  line-height: 1.45;
}
.footer-nav h4 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blue-deep);
  margin-bottom: var(--s-4);
  font-weight: 600;
}
.footer-nav a {
  display: block;
  font-size: 0.88rem;
  color: var(--ink-2);
  padding: 4px 0;
  transition: color .12s;
}
.footer-nav a:hover { color: var(--blue); }
.footer-copy {
  text-align: center;
  font-size: 0.8rem;
  color: var(--ink-4);
  padding-top: var(--s-6);
}

/* Hide colspan attribute artifact for section rows — already styled */
[colspan] { /* not strictly needed, just doc */ }

/* V3 — Hero kicker + H1 dinâmico */
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 600;
  margin-bottom: var(--s-6);
  padding: 6px 14px 6px 12px;
  background: var(--off-white);
  border: 1px solid var(--line);
  border-radius: var(--r-full);
}
.hero-kicker .dot {
  width: 7px; height: 7px;
  border-radius: var(--r-full);
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(255, 153, 0, 0.12);
  flex-shrink: 0;
}
.hero-kicker strong {
  color: var(--blue-deep);
  font-weight: 700;
}

.hero-dyn-h1 {
  font-size: clamp(2rem, 4.8vw, 3.8rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--blue-deep);
  font-weight: 800;
  margin: 0 0 var(--s-6);
  text-wrap: balance;
}
.hero-dyn {
  display: inline-block;
  position: relative;
  vertical-align: baseline;
  min-height: 1.1em;
  /* reserva espaço para o item mais longo evitando "pulo" no layout */
}
.hero-dyn-item {
  display: inline;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  left: 0;
  top: 0;
  white-space: normal;
  transition: opacity .35s ease;
  color: var(--ink);
  font-weight: 800;
}
.hero-dyn-h1 .hero-dyn-item em {
  font-family: 'Newsreader', Georgia, serif;
  font-style: italic;
  font-weight: 500;
  color: var(--orange);
  letter-spacing: -0.015em;
}
.hero-dyn-item.active {
  position: relative;
  opacity: 1;
  visibility: visible;
}
.hero-dyn-tail {
  display: block;
  margin-top: 0.15em;
}
.hero-wa {
  color: #128c7e; /* WhatsApp brand teal */
}
/* underline sutil sob a palavra que gira, para sinalizar o "slot" */
.hero-dyn::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.12em;
  height: 2px;
  background: linear-gradient(90deg, var(--orange) 0%, var(--orange) 40%, transparent 100%);
  opacity: 0.35;
  border-radius: 2px;
}

/* V3 — extra editorial helpers para multi-vertical */
.hero-overline-rot {
  display: flex;
  gap: var(--s-3);
  flex-wrap: wrap;
  font-size: 0.78rem;
  color: var(--ink-3);
  letter-spacing: 0.04em;
  align-items: center;
  margin-bottom: var(--s-5);
}
.hero-overline-rot .dot {
  width: 6px; height: 6px;
  border-radius: var(--r-full);
  background: var(--orange);
}
.hero-overline-rot strong {
  color: var(--ink);
  font-weight: 700;
}
.hero-bignum-stack {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  font-family: 'Newsreader', Georgia, serif;
  line-height: 0.95;
}
.hero-bignum-stack .num {
  font-size: clamp(2.4rem, 5.4vw, 4.6rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  color: var(--blue-deep);
  font-variant-numeric: tabular-nums;
  transition: opacity .35s ease;
}
.hero-bignum-stack .num em {
  font-style: italic;
  color: var(--orange);
}
.hero-bignum-stack .num.fade { opacity: 0.18; }
.hero-bignum-stack .num.active { opacity: 1; }
.hero-bignum-stack .num:not(.active):not(.fade) { opacity: 0.18; }

.v3-numbers-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: var(--s-8);
  font-variant-numeric: tabular-nums;
}
.v3-numbers-table th,
.v3-numbers-table td {
  text-align: left;
  padding: var(--s-4) var(--s-3);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  font-size: 0.92rem;
}
.v3-numbers-table th {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,0.35);
}
.v3-numbers-table tr:last-child td {
  border-bottom: 0;
}
.v3-numbers-table .v3-row-name {
  font-family: 'Newsreader', Georgia, serif;
  font-style: italic;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.9);
}
.v3-numbers-table .v3-row-num {
  color: var(--white);
  font-weight: 700;
  font-size: 1.08rem;
}
.v3-numbers-table .v3-row-num em {
  color: var(--orange);
  font-style: normal;
}

/* ─── Cena: botões Netflix-style ─── */
.cena-tabs {
  display: flex;
  gap: 0;
  margin-bottom: var(--s-6);
  border-bottom: 1px solid var(--line);
}
.cena-tab {
  padding: var(--s-3) var(--s-5);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 600;
  cursor: pointer;
  border: 0;
  background: transparent;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color .12s, border-color .12s;
}
.cena-tab:hover { color: var(--blue); }
.cena-tab.active {
  color: var(--blue-deep);
  border-bottom-color: var(--orange);
}
.cena-tab .cena-tab-time {
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  margin-right: 6px;
  color: var(--blue);
}
.cena-tab.active .cena-tab-time { color: var(--orange); }

.cena-pane { display: none; }
.cena-pane.active { display: block; }

.conv-buttons {
  margin: 4px 0 0;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-width: 340px;
}
.conv-btn {
  display: block;
  text-align: center;
  padding: 9px 16px;
  background: var(--white);
  border: 1px solid var(--blue-line);
  border-radius: var(--r-md);
  color: var(--blue);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  cursor: pointer;
  transition: background .12s, border-color .12s;
  text-decoration: none;
}
.conv-btn:hover {
  background: var(--blue-soft);
  border-color: var(--blue);
}
.conv-btn-tap {
  position: relative;
  background: var(--blue-soft);
  border-color: var(--blue);
}
.conv-btn-tap::after {
  content: "👆 toque aqui";
  position: absolute;
  right: -10px;
  top: -11px;
  background: var(--orange);
  color: var(--white);
  font-size: 0.6rem;
  padding: 3px 8px;
  border-radius: var(--r-full);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}
.conv-tapped {
  font-style: italic;
  color: var(--ink-3);
  font-size: 0.85rem;
  margin: -4px 0 0 var(--s-3);
}
.conv-tapped::before {
  content: "↳ cliente tocou em ";
  color: var(--ink-4);
  font-style: normal;
  letter-spacing: 0.02em;
}
.conv-tapped strong { color: var(--blue-deep); font-weight: 700; font-style: normal; }

.conv-product {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 12px;
  padding: 10px 12px;
  background: var(--off-white);
  border-radius: var(--r-md);
  margin: 6px 0 0;
  border: 1px solid var(--line);
  max-width: 360px;
}
.conv-product-img {
  width: 64px; height: 64px;
  background: repeating-linear-gradient(45deg, var(--paper), var(--paper) 6px, var(--white) 6px, var(--white) 12px);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.58rem;
  color: var(--ink-4);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-align: center;
  padding: 2px;
}
.conv-product-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--ink);
  margin-bottom: 3px;
  line-height: 1.25;
}
.conv-product-meta {
  font-size: 0.76rem;
  color: var(--ink-3);
  line-height: 1.45;
}
.conv-product-price {
  color: var(--blue-deep);
  font-weight: 700;
  font-size: 0.92rem;
  margin-top: 3px;
}

/* Garante que produtos e botões ocupem a coluna do conteúdo,
   não a coluna estreita do "who" no grid .conv-row */
.conv-row > :not(.conv-who) {
  grid-column: 2;
}

/* Header — grupo "Acessar Sistema" com 2 destinos */
.access-group {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 6px 4px 12px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--off-white);
}
.access-label {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 600;
}
.access-btn {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue-deep);
  background: var(--white);
  border: 1px solid var(--blue-line);
  border-radius: var(--r-sm);
  transition: background .12s, color .12s, border-color .12s;
  text-decoration: none;
}
.access-btn:hover {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}

/* ─── Planos: toggle vertical + 3 cards por fidelidade ─── */
.pricing-toggle {
  display: flex;
  gap: 0;
  margin: var(--s-10) auto var(--s-6);
  border-bottom: 1px solid var(--line);
  max-width: 420px;
  justify-content: center;
}
.pt-tab {
  padding: var(--s-3) var(--s-5);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 600;
  cursor: pointer;
  border: 0;
  background: transparent;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color .12s, border-color .12s;
}
.pt-tab:hover { color: var(--blue); }
.pt-tab.active {
  color: var(--blue-deep);
  border-bottom-color: var(--orange);
}
.pricing-pane { display: none; }
.pricing-pane.active { display: block; }

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
  margin-top: var(--s-10);
  align-items: stretch;
}
@media (max-width: 820px) {
  .pricing-cards { grid-template-columns: 1fr; }
}
.pricing-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--s-10) var(--s-6) var(--s-8);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: border-color .15s, box-shadow .15s, transform .15s;
}
.pricing-card.recommended {
  border-color: var(--blue);
  border-width: 1.5px;
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
}
.pc-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--r-full);
  white-space: nowrap;
}
.pc-period {
  font-family: 'Newsreader', Georgia, serif;
  font-style: italic;
  font-weight: 500;
  font-size: 1.5rem;
  color: var(--ink);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: var(--s-2);
}
.pc-frequency {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 600;
  margin-bottom: var(--s-6);
}
.pc-price {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--blue-deep);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: var(--s-3);
  font-variant-numeric: tabular-nums;
}
.pc-price .pc-currency {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink-3);
  vertical-align: top;
  margin-right: 4px;
  position: relative;
  top: 8px;
}
.pc-price.pending {
  color: var(--ink-4);
}
.pc-installments {
  display: inline-block;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: var(--r-full);
  border: 1px solid var(--blue-line);
  line-height: 1.3;
  max-width: 220px;
  text-wrap: balance;
}
.pc-installments.single {
  background: var(--off-white);
  color: var(--ink-3);
  border-color: var(--line);
}
.pc-installments.pending {
  background: var(--off-white);
  color: var(--ink-4);
  border-color: var(--line);
  font-style: italic;
}
.pc-cta {
  margin-top: auto;
  width: 100%;
  justify-content: center;
  text-align: center;
}
.pricing-note {
  margin-top: var(--s-10);
  padding: var(--s-5) var(--s-6);
  background: var(--off-white);
  border-radius: var(--r-md);
  border-left: 3px solid var(--blue);
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--ink-2);
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.pricing-note strong { color: var(--blue-deep); }
.hl-orange { color: var(--orange); font-weight: 600; }
.hl-ink { color: var(--ink); font-weight: 700; }
.pc-mo { font-size: 0.5em; font-weight: 500; color: var(--ink-3); margin-left: 2px; }

/* --- VIDEO CAROUSEL --- */
.video-showcase {
  padding: var(--s-16) 0 var(--s-20);
  background: var(--off-white);
  border-top: 1px solid var(--line);
}
/* Variante: vídeos logo abaixo do hero — sem barra extra e sem numeral romano */
.video-showcase--top { border-top: 0; }
.video-showcase--top .ed-head { border-top: 0; padding-top: 0; }
.ed-head.ed-head--no-num {
  grid-template-columns: 1fr;
}

/* CTA final — barra superior dentro do container, como as outras seções */
.cta-final { border-top: 0 !important; }
.cta-final .container { position: relative; }
.cta-final .container::before {
  content: "";
  display: block;
  height: 2px;
  background: var(--ink);
  margin-bottom: var(--s-12);
}
.video-carousel {
  display: flex;
  gap: var(--s-6);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: var(--s-4);
  margin-top: var(--s-8);
  padding-right: var(--s-6); /* Dá um respiro no último item */
}
/* Esconder scrollbar nativa e usar barra de progresso customizada */
.video-carousel {
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.video-carousel::-webkit-scrollbar { display: none; }

.carousel-progress-bar {
  width: 100%;
  height: 3px;
  background: var(--line);
  margin: var(--s-6) 0 var(--s-4);
  border-radius: 4px;
  overflow: hidden;
}
.carousel-progress-fill {
  height: 100%;
  width: 0%;
  background: var(--orange);
  transition: width 0.15s ease-out;
}

.video-carousel-wrap {
  position: relative;
}
.carousel-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: all 0.2s ease;
}
.carousel-nav-btn:hover {
  color: var(--orange);
  border-color: var(--orange);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}
.carousel-nav-btn.prev { left: -20px; }
.carousel-nav-btn.next { right: -20px; }
@media (max-width: 820px) {
  .carousel-nav-btn { display: none; } /* Mobile usa arrastar com o dedo */
}

.video-card {
  flex: 0 0 280px;
  scroll-snap-align: start;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
@media (min-width: 820px) {
  .video-card {
    flex: 0 0 calc((100% - (var(--s-6) * 2)) / 3);
  }
}
.video-wrapper {
  width: 100%;
  aspect-ratio: 9 / 16;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-info {
  padding: var(--s-5);
  border-top: 1px solid var(--line);
}
.video-info h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0;
  margin-bottom: var(--s-2);
}
.video-info p {
  font-size: 0.88rem;
  color: var(--ink-2);
  line-height: 1.4;
  margin: 0;
}

/* ─── BSP / Meta Business Partner section ─── */
.bsp-section {
  padding: var(--s-20) 0;
  background: var(--white);
  border-top: 1px solid var(--line);
}
.bsp-split {
  display: grid;
  grid-template-columns: minmax(280px, 360px) 1fr;
  gap: var(--s-12);
  align-items: center;
}
@media (max-width: 900px) {
  .bsp-split {
    grid-template-columns: 1fr;
    gap: var(--s-8);
  }
}
.bsp-video {
  width: 100%;
  max-width: 360px;
  aspect-ratio: 9 / 16;
  background: var(--ink);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  margin: 0 auto;
}
.bsp-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.bsp-copy {
  max-width: 620px;
}
.bsp-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-soft);
  border: 1px solid var(--blue-line);
  color: var(--blue-deep);
  padding: 6px 14px;
  border-radius: var(--r-full);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: var(--s-5);
}
.bsp-badge::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: var(--r-full);
  background: var(--blue);
}
.bsp-copy h2 {
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  line-height: 1.15;
  margin-bottom: var(--s-5);
}
.bsp-copy h2 em {
  font-family: 'Newsreader', Georgia, serif;
  font-style: italic;
  font-weight: 500;
  color: var(--blue);
}
.bsp-copy p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink-2);
  text-wrap: pretty;
}
.bsp-copy p + p {
  margin-top: var(--s-4);
}
.bsp-copy p strong { color: var(--ink); font-weight: 700; }
.bsp-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
  margin-top: var(--s-8);
  padding-top: var(--s-6);
  border-top: 1px solid var(--line);
}
@media (max-width: 600px) {
  .bsp-pillars { grid-template-columns: 1fr; gap: var(--s-4); }
}
.bsp-pillar {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.bsp-pillar strong {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 700;
}
.bsp-pillar span {
  font-size: 0.92rem;
  color: var(--ink-2);
  line-height: 1.4;
}
