:root {
  --bg: #f4f5ef;
  --bg-2: #eceee4;
  --ink: #17212d;
  --muted: #445261;
  --line: #ced5c4;
  --brand: #08b7a5;
  --brand-dark: #0a7d72;
  --accent: #f9734f;
  --ink-soft: #263444;
  --surface: rgba(255, 255, 255, 0.8);
  --surface-strong: #ffffff;
  --navy: #2a2a62;
  --navy-deep: #090a33;
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-padding-top: 24px;
}

html,
body {
  margin: 0;
  padding: 0;
  background: linear-gradient(180deg, var(--bg), var(--bg-2));
  color: var(--ink);
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  position: relative;
  min-height: 100vh;
}

.noise {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.22;
  background-image: radial-gradient(rgba(18, 34, 45, 0.08) 0.45px, transparent 0.45px);
  background-size: 3px 3px;
}

main,
.top-ribbon,
.launch-ribbon {
  position: relative;
  z-index: 1;
}

.container {
  width: min(1220px, 92vw);
  margin: 0 auto;
}

h1,
h2,
h3 {
  font-family: "Merriweather", "Instrument Serif", Georgia, serif;
  line-height: 1.2;
  letter-spacing: -0.005em;
  margin: 0;
}

p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.65;
}

.kicker {
  font-size: clamp(0.88rem, 0.95vw, 1rem);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 800;
  color: #0f7d95;
  margin-bottom: 14px;
  line-height: 1.28;
}

.site-header {
  position: relative;
  z-index: 2;
  border-bottom: 1px solid rgba(201, 219, 239, 0.3);
  background: rgba(245, 248, 241, 0.92);
  backdrop-filter: blur(8px);
}

.site-header-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
}

.site-brand img {
  height: clamp(48px, 4.8vw, 64px);
  width: auto;
  display: block;
}

.site-brand-name {
  display: grid;
  font-family: "Merriweather", "Instrument Serif", Georgia, serif;
  font-weight: 800;
  letter-spacing: 0.02em;
  font-size: clamp(0.82rem, 1.1vw, 1rem);
  line-height: 0.95;
  color: #12233a;
  text-transform: uppercase;
}

.site-brand-name span {
  display: block;
}

.site-brand-name span:first-child {
  color: #46b8b4;
}

.site-brand-name span:last-child {
  color: #12233a;
}

.site-header-cta {
  text-decoration: none;
  border-radius: 999px;
  padding: 11px 20px;
  font-family: "Poppins", system-ui, -apple-system, sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0;
  color: #fff;
  background: linear-gradient(130deg, var(--brand-dark), #0fa99d 55%, #11c9b6);
  box-shadow: 0 10px 28px rgba(15, 125, 114, 0.26);
}

.top-ribbon {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 26px;
  padding: 12px 16px;
  background: #13222f;
  color: #edf3f8;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.9rem;
}

.top-ribbon strong {
  color: #ffcf8f;
}

/* Launch ribbon (substitui contador) — discreto, âncora de lançamento */
.launch-ribbon {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  background: #0e1a27;
  color: #dbe7f2;
  border-bottom: 1px solid rgba(155, 200, 230, 0.12);
  font-size: 0.86rem;
  line-height: 1.4;
}

.launch-ribbon p {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  text-align: center;
}

.launch-ribbon strong {
  color: #6bd4c5;
  font-weight: 700;
}

.ribbon-badge {
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  font-weight: 800;
  color: #0b141f;
  background: #6bd4c5;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
}

/* Badge "75% OFF · Lançamento" no carrinho */
.launch-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0b141f;
  background: linear-gradient(90deg, #6bd4c5, #0ab8a6);
  padding: 6px 12px;
  border-radius: 6px;
  width: fit-content;
  box-shadow: 0 4px 14px rgba(10, 184, 166, 0.22);
}

.cart-line.discount {
  color: #0f7d72;
}

.cart-line.discount strong {
  color: #0f7d72;
}

.hero-credential {
  margin-top: 8px;
  font-size: 0.82rem;
  color: #56687c;
  letter-spacing: 0.01em;
}

.hero-credential strong {
  color: #263444;
  font-weight: 700;
}

@media (max-width: 720px) {
  .launch-ribbon {
    font-size: 0.78rem;
    padding: 9px 14px;
  }
  .ribbon-badge {
    font-size: 0.62rem;
  }
}

.top-buy {
  text-decoration: none;
  font-family: "Merriweather", "Instrument Serif", Georgia, serif;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  padding: 7px 12px;
  background: rgba(255, 255, 255, 0.08);
}

.price-old {
  text-decoration: line-through;
  opacity: 0.72;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: #74ffce;
  display: inline-block;
  margin-right: 6px;
}

.hero {
  padding: 46px 0 28px;
  display: grid;
  grid-template-columns: 1.1fr 0.95fr;
  gap: 30px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(2rem, 4.6vw, 4rem);
  max-width: 16ch;
  margin-bottom: 12px;
}

.hero h1 span {
  color: var(--brand-dark);
  position: relative;
}

.hero h1 span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.1em;
  width: 100%;
  height: 0.3em;
  background: rgba(8, 183, 165, 0.18);
  z-index: -1;
}

.lead {
  font-size: clamp(1.18rem, 1.45vw, 1.42rem);
  line-height: 1.6;
  color: var(--muted);
  max-width: 49ch;
}

.hero-cta-row {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-note {
  margin-top: 10px;
  font-size: 0.98rem;
  color: #4f5f6f;
  font-weight: 700;
}

.btn {
  appearance: none;
  border: 0;
  text-decoration: none;
  font-family: "Merriweather", Georgia, serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  font-size: 0.99rem;
  border-radius: 14px;
  padding: 13px 18px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(130deg, var(--brand-dark), #0fa99d 55%, #11c9b6);
  box-shadow: 0 15px 38px rgba(15, 125, 114, 0.27);
}

.btn-primary:hover {
  box-shadow: 0 18px 42px rgba(15, 125, 114, 0.34);
}

.btn-outline {
  color: var(--ink-soft);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.48);
}

.hero-stage {
  position: relative;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  padding: 16px;
  background:
    radial-gradient(circle at 18% 16%, rgba(8, 183, 165, 0.2), transparent 42%),
    radial-gradient(circle at 82% 6%, rgba(40, 98, 175, 0.15), transparent 38%),
    linear-gradient(145deg, #f8f9f4, #e6eadf);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5), 0 18px 55px rgba(19, 33, 45, 0.08);
  display: grid;
  gap: 12px;
}

.hero-browser {
  position: relative;
  border-radius: 18px;
  border: 1px solid rgba(196, 213, 228, 0.95);
  background: rgba(255, 255, 255, 0.88);
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(16, 36, 54, 0.17);
}

.hero-browser-top {
  min-height: 42px;
  padding: 9px 12px;
  border-bottom: 1px solid #dce6e2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.hero-browser-dots {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.hero-browser-dots span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
}

.hero-browser-dots span:nth-child(1) {
  background: #f29e87;
}

.hero-browser-dots span:nth-child(2) {
  background: #98d8bf;
}

.hero-browser-dots span:nth-child(3) {
  background: #9fc4de;
}

.hero-browser-url {
  font-size: 0.78rem;
  font-weight: 700;
  color: #315268;
  background: #ebf2ef;
  border: 1px solid #d4e0db;
  border-radius: 999px;
  padding: 5px 10px;
}

.hero-browser-body {
  padding: 0;
}

.hero-browser-body img {
  width: 100%;
  border-radius: 0 0 18px 18px;
  border: none;
  display: block;
}

.hero-stage-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.hero-stage-metrics article {
  border-radius: 12px;
  border: 1px solid #cfdbd4;
  background: rgba(255, 255, 255, 0.72);
  padding: 10px 8px;
  text-align: center;
}

.hero-stage-metrics strong {
  display: block;
  font-family: "Merriweather", "Instrument Serif", Georgia, serif;
  font-size: 1.15rem;
  color: #153248;
}

.hero-stage-metrics span {
  font-size: 0.76rem;
  color: #496174;
}

.how-it-works {
  margin-top: 28px;
  border: 1px solid rgba(43, 74, 98, 0.72);
  border-radius: 22px;
  background: linear-gradient(165deg, #0f2232, #173a52 56%, #10283e);
  padding: clamp(28px, 3vw, 48px) clamp(20px, 2.4vw, 36px);
  color: #edf4ff;
  position: relative;
  overflow: hidden;
}

.how-it-works-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 36px;
}

.how-it-works-header .kicker {
  color: #89ddff;
}

.how-it-works-header h2 {
  color: #f5f9ff;
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  line-height: 1.06;
  margin-bottom: 12px;
}

.how-it-works-header p {
  color: #b7c8d8;
  line-height: 1.55;
  max-width: 56ch;
  margin-inline: auto;
}

.how-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.how-step-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px 24px 24px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 4px 18px rgba(16, 40, 59, 0.05);
}

.how-step-card:hover {
  border-color: #9dc6bc;
  box-shadow: 0 8px 28px rgba(10, 127, 117, 0.12);
  transform: translateY(-3px);
}

.how-step-icon {
  width: 62px;
  height: 62px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
  color: #0f7d95;
}

.how-step-icon img {
  max-width: 80px;
  max-height: 52px;
  width: auto;
  height: auto;
}

.how-step-number {
  font-family: "Poppins", system-ui, sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: #0a8f7a;
}

.how-step-card h3 {
  color: var(--ink);
  font-size: 1.18rem;
  line-height: 1.18;
}

.how-step-card p {
  color: var(--muted);
  line-height: 1.55;
  font-size: 1.04rem;
}

.how-step-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  margin-top: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  color: #0a6f65;
  background: rgba(10, 143, 122, 0.08);
  border: 1px solid rgba(10, 143, 122, 0.22);
  border-radius: 999px;
  padding: 6px 12px;
}

.how-it-works-cta {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}

@media (max-width: 1120px) {
  .how-steps-grid {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════ */
/*  DOMAIN CHANNELS — visualização do domínio em cada canal                  */
/* ═══════════════════════════════════════════════════════════════════════════ */

.domain-channels {
  margin-top: 52px;
  padding-top: 40px;
  border-top: 1px solid rgba(24, 55, 78, 0.14);
}

.domain-channels > header {
  text-align: center;
  margin-bottom: 28px;
}

.kicker-mini-dark {
  font-family: "Poppins", system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.7rem;
  font-weight: 800;
  color: #0f7d95;
  margin-bottom: 10px;
}

.domain-channels > header h3 {
  font-size: clamp(1.1rem, 1.6vw, 1.4rem);
  line-height: 1.35;
  color: var(--ink);
  max-width: 68ch;
  margin-inline: auto;
  font-family: "Poppins", system-ui, sans-serif;
  font-weight: 500;
}

.domain-example {
  color: #0a7d72;
  font-weight: 700;
}

.domain-channel-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.channel-card {
  border: 1px solid rgba(24, 55, 78, 0.14);
  border-radius: 14px;
  background: #fff;
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.channel-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(15, 125, 149, 0.08);
}

.channel-head {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.84rem;
  color: #263444;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(24, 55, 78, 0.08);
}

.channel-head img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.channel-body {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.channel-field {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

.channel-value {
  font-family: "Poppins", system-ui, sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  color: #0f7d95;
  word-break: break-all;
}

.channel-value.channel-link {
  color: #6366f1;
  text-decoration: underline;
}

@media (max-width: 1120px) {
  .domain-channel-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .domain-channel-grid {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════ */
/*  ONLY WITH SITE — 5 coisas que só quem tem site consegue fazer            */
/* ═══════════════════════════════════════════════════════════════════════════ */

.only-with-site {
  padding: 72px 0;
  margin: 40px 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(10, 184, 166, 0.06), transparent 45%),
    linear-gradient(180deg, #eaf5f3, #f4f9f2);
  border-top: 1px solid rgba(24, 55, 78, 0.06);
  border-bottom: 1px solid rgba(24, 55, 78, 0.06);
}

.only-with-site-header {
  text-align: center;
  margin-bottom: 36px;
}

.only-with-site-header h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  line-height: 1.05;
  max-width: 22ch;
  margin-inline: auto;
}

.only-with-site-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 1120px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.only-with-site-list li {
  background: #fff;
  border: 1px solid rgba(24, 55, 78, 0.1);
  border-radius: 16px;
  padding: 22px 18px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.only-with-site-list li:hover {
  transform: translateY(-3px);
  border-color: rgba(10, 184, 166, 0.42);
}

.only-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #f4f7fa;
  color: #0a7d72;
}

.only-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.only-with-site-list p {
  font-size: 1.04rem;
  line-height: 1.55;
  color: #263444;
}

.only-with-site-list strong {
  color: var(--ink);
  font-weight: 700;
}

.only-with-site-note {
  text-align: center;
  margin-top: 28px;
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 58ch;
  margin-inline: auto;
  line-height: 1.6;
  font-style: italic;
}

@media (max-width: 1120px) {
  .only-with-site-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .only-with-site-list {
    grid-template-columns: 1fr;
  }
  .only-with-site { padding: 56px 0; }
}

/* ═══════════════════════════════════════════════════════════════════════════ */
/*  FOOTER com logo VIGA                                                     */
/* ═══════════════════════════════════════════════════════════════════════════ */

.site-footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-viga-logo {
  height: 28px;
  width: auto;
  opacity: 0.85;
  filter: saturate(0.9);
}

@media (max-width: 720px) {
  .site-footer-brand {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

.hero-flow {
  position: relative;
  width: 100%;
  border-radius: 18px;
  border: 1px solid rgba(188, 216, 225, 0.72);
  background: linear-gradient(165deg, rgba(248, 251, 247, 0.95), rgba(235, 245, 239, 0.93));
  box-shadow: 0 26px 48px rgba(10, 35, 52, 0.24);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  backdrop-filter: blur(6px);
  overflow: hidden;
}

.hero-flow:hover {
  transform: translateY(-3px);
  box-shadow: 0 30px 52px rgba(10, 35, 52, 0.3);
}

.hero-flow-head {
  padding: 12px 14px 10px;
  border-bottom: 1px solid #d4dfcf;
  background: linear-gradient(180deg, rgba(243, 249, 245, 0.96), rgba(234, 242, 236, 0.95));
}

.hero-flow-head p {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #4f6374;
  font-weight: 800;
}

.hero-flow-head strong {
  margin-top: 6px;
  display: block;
  font-family: "Merriweather", "Instrument Serif", Georgia, serif;
  font-size: 1rem;
  color: #1e3549;
}

.hero-flow-progress {
  margin: 10px 14px 0;
  height: 6px;
  border-radius: 999px;
  background: rgba(108, 130, 148, 0.2);
  overflow: hidden;
}

.hero-flow-progress span {
  display: block;
  width: 25%;
  height: 100%;
  background: linear-gradient(130deg, #09b7a5, #1a84c0);
  border-radius: 999px;
}

.hero-steps {
  padding: 12px 14px 6px;
  display: grid;
  gap: 8px;
}

.hero-step {
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 10px;
  align-items: start;
  padding: 8px 9px;
  border-radius: 12px;
  border: 1px solid transparent;
  opacity: 0.55;
  transform: translateY(3px);
  transition: opacity 0.32s ease, transform 0.32s ease, background 0.32s ease, border-color 0.32s ease;
}

.hero-step.is-active {
  opacity: 1;
  transform: translateY(0);
  background: rgba(255, 255, 255, 0.62);
  border-color: #c8d8c6;
}

.step-dot {
  width: 10px;
  height: 10px;
  margin-top: 5px;
  border-radius: 99px;
  background: #88a2b5;
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.hero-step.is-active .step-dot {
  background: #0aa89a;
  box-shadow: 0 0 0 6px rgba(10, 168, 154, 0.15);
  transform: scale(1.1);
}

.hero-step h4 {
  margin: 0;
  font-size: 0.95rem;
  color: #1d3246;
}

.hero-step p {
  margin-top: 3px;
  font-size: 0.95rem;
  color: #526476;
  line-height: 1.5;
}

.hero-flow-results {
  margin: 8px 14px 0;
  padding: 12px 10px;
  border-radius: 14px;
  border: 1px solid #d2decc;
  background: rgba(255, 255, 255, 0.7);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.hero-flow-results article {
  text-align: center;
}

.hero-flow-results span {
  display: block;
  font-family: "Merriweather", "Instrument Serif", Georgia, serif;
  font-size: 1.35rem;
  color: #0f3449;
}

.hero-flow-results small {
  color: #4c5f70;
  font-size: 0.75rem;
}

.hero-flow-note {
  display: block;
  padding: 8px 14px 12px;
  font-size: 0.72rem;
  color: #657684;
}

.loss-grid,
.benchmark,
.findability,
.press-advertorials,
.platform-trust,
.specialties,
.visual-models,
.portfolio,
.live-portfolio,
.social-proof,
.checkout-express,
.offer,
.faq,
.final-cta,
.problem-stats,
.purchase-timeline,
.market-pricing,
.domain-setup,
.compare-table {
  padding-top: 88px;
}

.loss-grid header h2,
.benchmark h2,
.findability h2,
.press-advertorials h2,
.platform-trust h2,
.specialties h2,
.visual-models h2,
.portfolio h2,
.live-portfolio h2,
.checkout-express h2,
.offer h2,
.faq h2,
.final-cta h2,
.problem-stats h2,
.purchase-timeline h2,
.market-pricing h2,
.domain-setup h2,
.compare-table h2 {
  font-size: clamp(1.9rem, 4vw, 3.2rem);
}

.loss-grid header h2 {
  font-size: clamp(1.7rem, 2.85vw, 2.45rem);
  white-space: nowrap;
  letter-spacing: -0.01em;
}

.checkout-express {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 16px;
  align-items: stretch;
}

.checkout-copy {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.74);
}

.checkout-copy p {
  margin-top: 10px;
  color: #4a5a6b;
}

.checkout-copy .pricing-options-list {
  margin: 12px 0 0;
  padding-left: 1.25rem;
  color: #3d4d5e;
  display: grid;
  gap: 10px;
  line-height: 1.55;
  font-size: 0.98rem;
}

.checkout-copy .pricing-footnote {
  margin-top: 14px;
  font-size: 0.92rem;
  color: #5a6b7c;
}

.checkout-actions {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cart-box {
  border-radius: 20px;
  border: 1px solid #2b4f67;
  background: linear-gradient(145deg, #112636, #1a3c51);
  color: #eef8ff;
  padding: 20px;
  display: grid;
  align-content: start;
  gap: 10px;
}

.cart-box .mini {
  color: #a4c0d7;
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
}

.cart-line {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  font-size: 0.9rem;
  color: #d8e8f5;
}

.cart-line strong {
  color: #fff;
}

.cart-line-note {
  font-size: 0.78em;
  font-weight: 500;
  opacity: 0.8;
}

.cart-line.old strong {
  text-decoration: line-through;
  opacity: 0.78;
}

.cart-total {
  margin-top: 2px;
  padding-top: 10px;
  border-top: 1px solid rgba(205, 222, 238, 0.24);
  display: flex;
  justify-content: space-between;
  gap: 8px;
}

.cart-total strong {
  font-family: "Merriweather", "Instrument Serif", Georgia, serif;
  font-size: 1.7rem;
}

.cart-box small {
  color: #a8bfd0;
}

.cart-installment {
  text-align: center;
  font-size: 0.92rem;
  color: #c8e6e3;
  background: rgba(50, 188, 173, 0.15);
  border: 1px solid rgba(50, 188, 173, 0.3);
  border-radius: 8px;
  padding: 6px 10px;
}

.cart-installment strong {
  color: #5dffd6;
  font-weight: 700;
}

.cart-pix-promo {
  margin-top: 4px;
  padding: 12px 14px;
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(50, 188, 173, 0.22), rgba(15, 125, 114, 0.12));
  border: 1px solid rgba(93, 255, 214, 0.45);
  text-align: center;
}

.cart-pix-promo-head {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 6px;
}

.cart-pix-promo-title {
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #b8fff0;
}

.cart-pix-promo-badge {
  font-size: 0.72rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 999px;
  background: #0cce6b;
  color: #0a2f28;
}

.cart-pix-promo-price {
  margin: 0;
  font-size: 1.35rem;
  color: #fff;
}

.cart-pix-promo-price strong {
  font-family: "Merriweather", Georgia, serif;
}

.cart-pix-promo-save {
  margin: 4px 0 0;
  font-size: 0.85rem;
  color: #c8ebe4;
}

.cart-pix-promo-save strong {
  color: #fff;
}

.pix-logo-inline {
  height: 18px;
  width: auto;
  opacity: 0.9;
  filter: brightness(0) invert(1);
}

.cards-4 {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.loss-card {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #f6f8f1, #ecefe5);
  border-radius: 18px;
  padding: 20px;
  transform-style: preserve-3d;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.loss-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.loss-card p {
  color: #516173;
}

.loss-card:hover {
  box-shadow: 0 20px 30px rgba(20, 36, 54, 0.13);
}

.benchmark-head {
  max-width: 82ch;
  position: relative;
  z-index: 2;
}

.benchmark-head p:last-child {
  margin-top: 12px;
  color: #4f5f70;
}

.benchmark-stage {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: clamp(18px, 2.5vw, 30px);
  background:
    radial-gradient(circle at 82% 10%, rgba(17, 122, 166, 0.12), transparent 30%),
    radial-gradient(circle at 6% 84%, rgba(8, 183, 165, 0.14), transparent 36%),
    linear-gradient(165deg, rgba(248, 250, 244, 0.86), rgba(236, 241, 232, 0.9));
  overflow: hidden;
  isolation: isolate;
}

.benchmark-network {
  position: relative;
  width: 100%;
  height: 54px;
  margin: 14px 0 8px;
  z-index: 1;
  pointer-events: none;
  opacity: 0.88;
}

.benchmark-links {
  width: 100%;
  height: 100%;
  overflow: visible;
  filter: drop-shadow(0 0 6px rgba(9, 169, 157, 0.2));
}

.benchmark-links path {
  fill: none;
  stroke: rgba(24, 118, 143, 0.28);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-dasharray: 10 8;
  animation: benchmarkDash 8s linear infinite;
}

.benchmark-links path:nth-child(2) {
  stroke: rgba(10, 168, 154, 0.26);
  animation-duration: 10s;
  animation-direction: reverse;
}

.benchmark-node {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #0aa89a;
  box-shadow: 0 0 0 0 rgba(10, 168, 154, 0.45);
  animation: benchmarkPulse 2.2s ease-out infinite;
}

.benchmark-node.n1 {
  left: 17%;
  top: 10px;
}

.benchmark-node.n2 {
  left: 50%;
  top: 26px;
  animation-delay: 0.5s;
}

.benchmark-node.n3 {
  left: 83%;
  top: 10px;
  animation-delay: 1s;
}

.benchmark-node.is-active {
  background: #7fe7dd;
}

.benchmark-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  position: relative;
  z-index: 2;
}

.bench-card {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  border-radius: 18px;
  padding: 20px;
  transform-style: preserve-3d;
  transition:
    transform 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    background 0.28s ease;
  position: relative;
  overflow: hidden;
}

.bench-card::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 999px;
  right: -42px;
  top: -42px;
  background: radial-gradient(circle, rgba(8, 183, 165, 0.18), transparent 70%);
  pointer-events: none;
}

.bench-flow-card.is-active {
  border-color: #8cbec5;
  box-shadow: 0 16px 30px rgba(16, 44, 63, 0.14);
}

.bench-card h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.bench-card ul {
  margin: 0;
  padding-left: 18px;
  color: #445362;
  display: grid;
  gap: 7px;
}

.bench-card.highlight {
  background: linear-gradient(180deg, #12232f, #173447);
  color: #f0f8ff;
  border-color: #163b53;
}

.bench-card.highlight::after {
  background: radial-gradient(circle, rgba(143, 220, 255, 0.2), transparent 70%);
}

.bench-card.highlight.is-active {
  box-shadow: 0 20px 34px rgba(10, 25, 38, 0.35);
  border-color: #2f627e;
}

.bench-card.highlight ul {
  color: #d3e3f0;
}

@keyframes benchmarkPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(10, 168, 154, 0.42);
    transform: scale(1);
  }
  70% {
    box-shadow: 0 0 0 11px rgba(10, 168, 154, 0);
    transform: scale(1.04);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(10, 168, 154, 0);
    transform: scale(1);
  }
}

@keyframes benchmarkDash {
  to {
    stroke-dashoffset: -180;
  }
}

.stack-showcase {
  margin-top: 88px;
  padding: 0;
  overflow: hidden;
}

.stack-track {
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
}

.stack-panel {
  min-height: 62vh;
  display: grid;
  place-content: center;
  gap: 12px;
  padding: clamp(26px, 8vw, 96px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stack-panel h2 {
  font-size: clamp(2rem, 5vw, 4.2rem);
  max-width: 12ch;
}

.stack-panel p {
  color: #425161;
  font-size: 1.05rem;
  max-width: 52ch;
}

.panel-1 {
  background: linear-gradient(120deg, #e9efe1, #f4f6ef);
}

.panel-2 {
  background: linear-gradient(120deg, #dfe8da, #edf1e6);
}

.panel-3 {
  background: linear-gradient(120deg, #ecf0e7, #e6ece0);
}

.findability > header {
  max-width: 80ch;
}

.findability h2 {
  font-size: clamp(1.9rem, 3.55vw, 3rem);
  line-height: 1.06;
}

.findability-lock {
  white-space: nowrap;
}

.findability > header p:last-child {
  margin-top: 12px;
  color: #4f5f70;
  font-size: 1.1rem;
  line-height: 1.6;
}

.find-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.find-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.78);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.find-card h3 {
  font-size: 1.18rem;
  margin-bottom: 9px;
}

.find-card p {
  color: #4b5b69;
  line-height: 1.58;
}

.find-card:hover {
  transform: translateY(-4px);
  border-color: #9ab5ca;
  box-shadow: 0 16px 28px rgba(18, 33, 48, 0.1);
}

/* --- Press advertorial shots (referencias editoriais, estilo captura) --- */

.press-advertorials-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px;
}

.press-advertorials-lead {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.press-advertorial-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  max-width: 1100px;
  margin: 0 auto;
}

.advertorial-shot {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(24, 55, 78, 0.12);
  box-shadow: 0 12px 40px rgba(16, 40, 59, 0.1);
  background: #f4f6f8;
}

.advertorial-sr {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.advertorial-chrome {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: #e8ecf0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.advertorial-dots {
  display: inline-flex;
  gap: 5px;
}

.advertorial-dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #c5cdd6;
}

.advertorial-dots span:first-child {
  background: #e08b7e;
}

.advertorial-dots span:nth-child(2) {
  background: #e6c46c;
}

.advertorial-dots span:nth-child(3) {
  background: #7bc98f;
}

.advertorial-url {
  flex: 1;
  min-width: 0;
  font-size: 0.72rem;
  font-family: ui-monospace, monospace;
  color: #5a6b78;
  background: #fff;
  border-radius: 6px;
  padding: 6px 10px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.advertorial-card-body {
  padding: 22px 22px 20px;
  background: #fff;
  position: relative;
}

.advertorial-card-body::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  bottom: 16px;
  width: 3px;
  border-radius: 0 4px 4px 0;
  background: linear-gradient(180deg, #0ab8a6, #0a7f75);
}

.advertorial-card-body--host::before {
  background: linear-gradient(180deg, #ff7900, #e05a00);
}

.advertorial-card-body--exame::before {
  background: linear-gradient(180deg, #e02020, #9a1515);
}

.advertorial-card-body--terra::before {
  background: linear-gradient(180deg, #0d8f4a, #0a6b38);
}

.advertorial-outlet {
  font-size: 0.78rem;
  font-weight: 700;
  color: #3a4d5c;
  margin: 0 0 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.advertorial-pill {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 7px;
  border-radius: 4px;
  background: #0ab8a6;
  color: #fff;
}

.advertorial-pill--host {
  background: #ff7900;
}

.advertorial-pill--exame {
  background: #1a1a1a;
}

.advertorial-pill--terra {
  background: #0d8f4a;
}

.advertorial-tag {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: #0a7f75;
  margin: 0 0 10px;
}

.advertorial-card-body--host .advertorial-tag {
  color: #c45a00;
}

.advertorial-card-body--exame .advertorial-tag {
  color: #9a1515;
}

.advertorial-card-body--terra .advertorial-tag {
  color: #0a6b38;
}

.advertorial-headline {
  font-family: "Merriweather", Georgia, serif;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 900;
  line-height: 1.25;
  color: var(--ink);
  margin: 0 0 12px;
}

.advertorial-dek {
  margin: 0 0 18px;
  font-size: 0.92rem;
  line-height: 1.55;
  color: #4b5b69;
}

.advertorial-cta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.86rem;
  font-weight: 700;
  color: #0a6b8c;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.advertorial-cta:hover {
  color: #054a63;
}

.advertorial-card-body--host .advertorial-cta {
  color: #c75400;
}

.advertorial-card-body--exame .advertorial-cta {
  color: #9a1515;
}

.advertorial-card-body--exame .advertorial-cta:hover {
  color: #6b0e0e;
}

.advertorial-card-body--terra .advertorial-cta {
  color: #0a6b38;
}

.advertorial-card-body--terra .advertorial-cta:hover {
  color: #064724;
}

.advertorial-ext {
  font-size: 0.85em;
  opacity: 0.85;
}

@media (max-width: 900px) {
  .press-advertorial-grid {
    grid-template-columns: 1fr;
  }
}

.platform-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.platform-trust h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.platform-trust header p:last-child {
  margin-top: 10px;
  color: #4f5f70;
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 78ch;
}

.platform-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.78);
  min-height: 88px;
  display: grid;
  place-items: center;
  gap: 6px;
  text-align: center;
  padding: 10px;
}

.platform-item img {
  width: 24px;
  height: 24px;
}

.platform-item span {
  font-size: 0.78rem;
  color: #455666;
  font-weight: 700;
}

.idea-rail {
  margin-top: 82px;
  padding: clamp(24px, 4.2vw, 46px) 0;
  background:
    radial-gradient(circle at 9% 8%, rgba(41, 90, 170, 0.28), transparent 38%),
    radial-gradient(circle at 86% 12%, rgba(18, 196, 166, 0.2), transparent 35%),
    linear-gradient(165deg, #101825, #151f2c 52%, #121826);
  border-top: 1px solid rgba(201, 219, 239, 0.15);
  border-bottom: 1px solid rgba(201, 219, 239, 0.15);
}

.idea-rail header h2 {
  color: #edf4ff;
  font-size: clamp(1.8rem, 3.8vw, 3rem);
  max-width: 18ch;
}

.idea-rail .kicker {
  color: #8dc5ff;
}

.rail-shell {
  position: relative;
  margin-top: 20px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
}

.rail-track {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 4px 2px;
}

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

.rail-card {
  scroll-snap-align: start;
  flex: 0 0 clamp(260px, 28vw, 350px);
  border-radius: 18px;
  padding: 10px;
  border: 1px solid rgba(235, 243, 255, 0.55);
  box-shadow: 0 18px 34px rgba(6, 13, 25, 0.38);
  display: grid;
  gap: 8px;
}

.rail-card h3 {
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  line-height: 1.2;
  color: #1d2f40;
  min-height: 2.2em;
}

.rail-thumb {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(20, 33, 46, 0.2);
  background: rgba(255, 255, 255, 0.62);
  min-height: 86px;
}

.rail-thumb img {
  display: block;
  width: 100%;
  height: 92px;
  object-fit: cover;
}

.rail-card.c1 {
  background: linear-gradient(132deg, #c2d9ff, #9fc0f9);
}

.rail-card.c2 {
  background: linear-gradient(132deg, #ffe8a2, #f9d374);
}

.rail-card.c3 {
  background: linear-gradient(132deg, #c9f2ce, #9fddaa);
}

.rail-card.c4 {
  background: linear-gradient(132deg, #ffd3cc, #f7aea3);
}

.rail-card.c5 {
  background: linear-gradient(132deg, #d0d6e2, #a8b2c3);
}

.rail-nav {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  border: 1px solid rgba(206, 226, 247, 0.32);
  background: linear-gradient(145deg, #0f4270, #185d98);
  color: #e8f4ff;
  font-size: 1.6rem;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease, background 0.2s ease;
}

.rail-nav:hover:not(:disabled) {
  transform: translateY(-1px);
  background: linear-gradient(145deg, #136cb0, #1c5f93);
}

.rail-nav:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

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

.rail-dots button {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  border: 1px solid rgba(196, 218, 244, 0.5);
  background: rgba(235, 245, 255, 0.34);
  padding: 0;
  cursor: pointer;
}

.rail-dots button.is-active {
  background: #9fd4ff;
  border-color: #9fd4ff;
  transform: scale(1.08);
}

.specialty-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.specialty-grid span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  padding: 9px 10px;
  font-size: 0.82rem;
  text-align: center;
  color: #33485a;
  font-weight: 700;
}

.visual-models {
  margin-top: 88px;
  padding: clamp(24px, 4.6vw, 58px) 0;
  background: transparent;
}

.visual-models .container {
  display: grid;
  gap: 26px;
}

.visual-block {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 18px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: clamp(16px, 2.2vw, 28px);
  background: #ffffff;
  box-shadow: 0 12px 32px rgba(16, 40, 59, 0.06);
}

.visual-block.reverse {
  grid-template-columns: 1.1fr 0.9fr;
}

.visual-copy .kicker {
  color: #0f7d95;
}

.visual-copy h2 {
  color: var(--ink);
  font-size: clamp(1.8rem, 3.8vw, 3rem);
}

.visual-copy p {
  margin-top: 10px;
  color: var(--muted);
  max-width: 44ch;
  line-height: 1.6;
  font-size: 1.08rem;
}

.visual-copy .btn {
  margin-top: 16px;
  border-color: var(--line);
  color: var(--ink);
  background: #ffffff;
}

.visual-stage {
  position: relative;
  border-radius: 18px;
  border: 1px solid rgba(201, 216, 232, 0.24);
  background: linear-gradient(170deg, #f7fafc, #edf2f7);
  min-height: 360px;
  overflow: hidden;
  padding: 16px;
}

.device {
  overflow: hidden;
  background: #fff;
  border: 1px solid #d3dce9;
  box-shadow: 0 20px 36px rgba(18, 34, 52, 0.18);
}

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

.device.desktop {
  width: 100%;
  height: 250px;
  border-radius: 16px;
}

.device.mobile {
  position: absolute;
  left: 26px;
  bottom: 16px;
  width: 135px;
  height: 225px;
  border-radius: 22px;
  border-width: 3px;
}

.visual-pill {
  position: absolute;
  right: 16px;
  bottom: 18px;
  border-radius: 999px;
  padding: 8px 12px;
  background: linear-gradient(130deg, #08b7a5, #0e87ba);
  color: #fff;
  font-family: "Merriweather", "Instrument Serif", Georgia, serif;
  font-size: 0.8rem;
  font-weight: 700;
}

.visual-pill.alt {
  right: 16px;
  bottom: 54px;
  background: linear-gradient(130deg, #0f3248, #185a7a);
}

.stats-mini {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.stats-mini article {
  border-radius: 12px;
  border: 1px solid #cdd8e5;
  background: rgba(255, 255, 255, 0.86);
  padding: 8px;
  text-align: center;
}

.stats-mini strong {
  display: block;
  color: #0f3046;
  font-family: "Merriweather", "Instrument Serif", Georgia, serif;
}

.stats-mini span {
  font-size: 0.72rem;
  color: #56697b;
}

.cards-3 {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.case-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.72);
  position: relative;
  overflow: hidden;
}

.case-card::after {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 999px;
  right: -30px;
  top: -30px;
  background: radial-gradient(circle, rgba(8, 183, 165, 0.18), transparent 65%);
}

.case-card span {
  display: inline-block;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #0f8396;
  font-weight: 800;
  margin-bottom: 8px;
}

.case-card h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.case-card p {
  color: #1f6c62;
  font-weight: 700;
}

.live-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
}

.live-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.8);
  display: grid;
  align-content: start;
  gap: 12px;
}

.live-meta h3 {
  font-size: 1.1rem;
}

.live-meta p {
  margin-top: 7px;
  color: #50606f;
}

.iframe-shell {
  border-radius: 14px;
  border: 1px solid #d3dcc8;
  overflow: hidden;
  background: #fff;
  min-height: 300px;
}

.iframe-shell iframe {
  width: 100%;
  min-height: 520px;
  border: 0;
  background: #fff;
}

.embed-note {
  color: #526271;
  font-size: 0.82rem;
}

.live-preview-images {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  border-radius: 14px;
  overflow: hidden;
}

.live-preview-desktop {
  flex: 1;
  width: 0;
  border-radius: 10px;
  border: 1px solid var(--line);
  object-fit: cover;
  object-position: top;
  max-height: 420px;
}

.live-preview-mobile {
  width: 120px;
  flex-shrink: 0;
  border-radius: 10px;
  border: 1px solid var(--line);
  object-fit: cover;
  object-position: top;
  max-height: 420px;
}

.proof-metrics {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.proof-metrics article {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px 14px;
  background: rgba(255, 255, 255, 0.78);
}

.proof-metrics strong {
  font-family: "Merriweather", "Instrument Serif", Georgia, serif;
  font-size: 1.6rem;
  color: #14354a;
}

.proof-metrics p {
  margin-top: 6px;
  color: #4d5d6e;
  font-size: 0.9rem;
}

.testimonials-grid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.testimonial-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.9), rgba(239, 243, 235, 0.86));
}

.testimonial-card p {
  color: #425061;
  font-size: 1.06rem;
  line-height: 1.6;
}

.testimonial-card h3 {
  margin-top: 12px;
  font-size: 1.08rem;
}

.testimonial-card span {
  margin-top: 5px;
  display: inline-block;
  color: #0e7d92;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.offer {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 20px;
  align-items: stretch;
}

.offer-left h2 {
  font-size: clamp(1.72rem, 3.2vw, 2.5rem);
  line-height: 1.08;
  max-width: 23ch;
}

.offer-left ul {
  margin-top: 14px;
  padding-left: 18px;
  color: #455566;
  display: grid;
  gap: 8px;
}

.offer-box {
  border-radius: 20px;
  border: 1px solid #2b4f67;
  background: linear-gradient(145deg, #122a3a, #17384e);
  color: #eef8ff;
  padding: 26px;
  display: grid;
  align-content: start;
  gap: 9px;
}

.offer-box .mini {
  color: #a4c0d7;
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
}

.offer-box h3 {
  font-size: 3.1rem;
}

.offer-box p {
  color: #d1e5f6;
}

.offer-box small {
  color: #9fb6c8;
  font-size: 0.82rem;
}

.offer-pix-promo {
  margin-top: 10px;
  padding: 14px 14px 12px;
  border-radius: 14px;
  background: rgba(50, 188, 173, 0.18);
  border: 1px solid rgba(93, 255, 214, 0.35);
  text-align: center;
}

.offer-pix-label {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #b8fff0;
}

.offer-pix-icon {
  height: 16px;
}

.offer-pix-price {
  margin: 6px 0 0;
  font-size: 2rem;
  line-height: 1;
  color: #fff;
}

.offer-pix-price strong {
  font-family: "Merriweather", Georgia, serif;
}

.offer-pix-save {
  margin: 8px 0 0;
  font-size: 0.88rem;
  color: #c8ebe4;
  line-height: 1.4;
}

.offer-pix-save strong {
  color: #7dffc9;
}

.faq header {
  margin-bottom: 16px;
}

.faq header h2 {
  margin-top: 8px;
  line-height: 1.08;
}

.faq details:first-of-type {
  margin-top: 6px;
}

.faq details {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 13px 15px;
  background: rgba(255, 255, 255, 0.65);
}

.faq details + details {
  margin-top: 10px;
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq details p {
  margin-top: 8px;
  color: #4b5b6a;
}

.final-cta {
  padding-bottom: 90px;
}

.final-cta p {
  margin-top: 14px;
  max-width: 68ch;
  color: #4b5a69;
}

.final-cta .btn {
  margin-top: 18px;
}

.reveal {
  opacity: 1;
  transform: none;
}

/* TailorBrands-like rise-up effect (used only in section 2 and 3) */
.tb-section-fx {
  opacity: 0;
  transform: translate3d(0, 110px, 0);
  transition:
    opacity 0.68s ease,
    transform 0.92s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform, opacity;
}

.tb-section-fx.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.site-footer {
  position: relative;
  z-index: 2;
  margin-top: 64px;
  border-top: 1px solid var(--line);
  background: rgba(245, 248, 241, 0.92);
  backdrop-filter: blur(7px);
}

.site-footer-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 0;
}

.site-footer p {
  color: #4f6070;
  font-size: 0.9rem;
}

.site-footer p a {
  color: #0e7f93;
  font-weight: 800;
  text-decoration: none;
}

.site-footer p a:hover {
  color: #0a6778;
}

.site-footer nav {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.site-footer nav a {
  text-decoration: none;
  color: #18344d;
  font-weight: 700;
  font-size: 0.88rem;
}

.site-footer nav a:hover {
  color: #0d8d83;
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 30;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  border: 1px solid rgba(22, 96, 59, 0.28);
  box-shadow: 0 16px 34px rgba(23, 62, 44, 0.35);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 20px 38px rgba(23, 62, 44, 0.42);
}

.whatsapp-float:focus-visible {
  outline: 3px solid rgba(9, 183, 165, 0.4);
  outline-offset: 2px;
}

.mobile-sticky-cta {
  display: none;
}

/* Page transition landing → checkout (Prompt 6) */
.page-leaving {
  animation: pageLeave 0.35s ease-in forwards;
}

@keyframes pageLeave {
  to {
    opacity: 0;
    transform: translateY(-12px);
  }
}

/* Skip-to-content (Prompt 9 — WCAG 2.2) */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 100;
  padding: 10px 18px;
  background: var(--brand-dark);
  color: #fff;
  font-weight: 700;
  border-radius: 0 0 10px 10px;
  text-decoration: none;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 0;
}

/* Focus-visible for all interactive elements (Prompt 9) */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
details summary:focus-visible {
  outline: 3px solid rgba(10, 184, 166, 0.5);
  outline-offset: 2px;
}

.whatsapp-float img {
  width: 30px;
  height: 30px;
  display: block;
}

@media (prefers-reduced-motion: reduce) {
  .tb-section-fx {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 1120px) {
  .loss-grid header h2 {
    white-space: normal;
    font-size: clamp(1.85rem, 4.8vw, 2.6rem);
  }

  .benchmark-stage {
    padding: 18px;
  }

  .benchmark-network {
    margin: 12px 0 6px;
    height: 48px;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    padding: 14px;
  }

  .how-it-works {
    grid-template-columns: 1fr;
  }

  .hero-flow-results span {
    font-size: 1.22rem;
  }

  .cards-4,
  .specialty-grid,
  .visual-block,
  .benchmark-grid,
  .find-grid,
  .platform-grid,
  .cards-3,
  .live-grid,
  .proof-metrics,
  .testimonials-grid,
  .problem-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rail-shell {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .rail-nav {
    width: 44px;
    height: 44px;
    position: absolute;
    z-index: 2;
    top: calc(50% - 22px);
  }

  .rail-nav.prev {
    left: -2px;
  }

  .rail-nav.next {
    right: -2px;
  }

  .rail-track {
    padding: 2px 36px;
  }

  .offer {
    grid-template-columns: 1fr;
  }

  .checkout-express {
    grid-template-columns: 1fr;
  }

  .visual-block,
  .visual-block.reverse {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(1220px, 94vw);
  }

  .benchmark-head h2 {
    font-size: clamp(1.7rem, 9vw, 2.5rem);
  }

  .findability-lock {
    white-space: normal;
  }

  .benchmark-network {
    display: none;
  }

  .site-header-inner {
    min-height: 74px;
  }

  .site-brand img {
    height: 46px;
  }

  .site-brand-name {
    font-size: 0.78rem;
  }

  .site-header-cta {
    padding: 10px 12px;
    font-size: 0.72rem;
  }

  .hero {
    padding-top: 28px;
  }

  .hero h1 {
    font-size: clamp(2rem, 12vw, 3.4rem);
  }

  .how-it-works {
    padding: 16px;
  }

  .how-copy h2 {
    max-width: 100%;
    font-size: clamp(1.5rem, 7.6vw, 2rem);
  }

  .how-title-3lines span {
    white-space: normal;
  }

  .hero-stage-metrics {
    grid-template-columns: 1fr;
  }

  .hero-flow-head strong {
    font-size: 0.9rem;
  }

  .hero-flow-results {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .hero-flow-results article {
    text-align: left;
  }

  .hero-step h4 {
    font-size: 0.86rem;
  }

  .hero-step p {
    font-size: 0.78rem;
  }

  .cards-4,
  .specialty-grid,
  .benchmark-grid,
  .find-grid,
  .platform-grid,
  .cards-3,
  .live-grid,
  .proof-metrics,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .stack-track {
    display: grid;
    width: 100%;
  }

  .visual-stage {
    min-height: 300px;
  }

  .device.desktop {
    height: 205px;
  }

  .device.mobile {
    width: 108px;
    height: 170px;
    left: 14px;
  }

  .stats-mini {
    grid-template-columns: 1fr;
  }

  .idea-rail {
    margin-top: 62px;
  }

  .idea-rail header h2 {
    max-width: 100%;
  }

  .rail-track {
    padding: 2px 28px;
  }

  .rail-card {
    flex-basis: 79vw;
  }

  .rail-thumb img {
    height: 88px;
  }

  .stack-panel {
    min-height: auto;
    padding: 38px 22px;
  }

  .site-footer-inner {
    min-height: auto;
    align-items: flex-start;
    flex-direction: column;
    padding: 16px 0;
  }

  .site-footer nav {
    flex-wrap: wrap;
    gap: 10px 14px;
  }

  .whatsapp-float {
    width: 52px;
    height: 52px;
    right: 14px;
    bottom: 14px;
  }

  .whatsapp-float img {
    width: 28px;
    height: 28px;
  }

  /* Sticky mobile CTA (Prompt 7) */
  .mobile-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 25;
    padding: 10px 16px 12px;
    background: rgba(19, 34, 47, 0.96);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(10, 184, 166, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  }

  .mobile-sticky-cta .btn {
    width: 100%;
    max-width: 360px;
    text-align: center;
    padding: 14px 18px;
    font-size: 0.88rem;
    border-radius: 12px;
  }

  .mobile-sticky-cta .sticky-price {
    color: #b8c9d8;
    font-size: 0.7rem;
    line-height: 1.35;
    text-align: center;
    max-width: 22rem;
    white-space: normal;
  }

  .mobile-sticky-cta .sticky-price strong {
    color: #7dffc9;
    font-weight: 700;
  }

  .whatsapp-float {
    bottom: 72px;
  }

  .final-cta {
    padding-bottom: 100px;
  }

  .proof-bar-inner {
    flex-wrap: wrap;
    gap: 18px;
  }

  .proof-bar-inner article {
    min-width: 120px;
    flex: 1 1 40%;
  }

  .problem-grid {
    grid-template-columns: 1fr !important;
  }

  .compare-grid {
    grid-template-columns: 1fr !important;
  }

  .compare-without {
    border-radius: 14px 14px 0 0 !important;
  }

  .compare-with {
    border-radius: 0 0 14px 14px !important;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════ */
/*  PROOF BAR — barra de métricas de social proof                           */
/* ═══════════════════════════════════════════════════════════════════════════ */

.proof-bar {
  background: var(--navy, #10283b);
  color: #fff;
  padding: 28px 0;
}

.proof-bar-inner {
  display: flex;
  justify-content: center;
  gap: 48px;
  text-align: center;
}

.proof-bar-inner article {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.proof-bar-inner strong {
  font-family: "Merriweather", "Instrument Serif", Georgia, serif;
  font-size: 2rem;
  font-weight: 800;
  color: #0ab8a6;
  line-height: 1.1;
}

.proof-bar-inner strong small {
  font-size: 0.55em;
  color: #6ab8ae;
}

.proof-bar-inner span {
  font-size: 0.82rem;
  color: #94a7b8;
  font-weight: 500;
}

/* ═══════════════════════════════════════════════════════════════════════════ */
/*  PROBLEM STATS — seção O Problema com cards de estatísticas              */
/* ═══════════════════════════════════════════════════════════════════════════ */

.problem-stats header {
  text-align: center;
  margin-bottom: 48px;
}

.problem-stats h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  max-width: 700px;
  margin: 0 auto;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.problem-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(16, 40, 59, 0.1);
}

.problem-stat {
  display: block;
  font-family: "Merriweather", "Instrument Serif", Georgia, serif;
  font-size: 3rem;
  font-weight: 800;
  color: #0ab8a6;
  margin-bottom: 8px;
  line-height: 1;
}

.problem-card h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: var(--ink);
}

.problem-card p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════════════════════ */
/*  COMPARE TABLE — comparação Com vs Sem site                              */
/* ═══════════════════════════════════════════════════════════════════════════ */

.compare-table header {
  text-align: center;
  margin-bottom: 48px;
}

.compare-table h2 {
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  max-width: 680px;
  margin: 0 auto;
}

.compare-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0;
  max-width: min(100%, 980px);
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(16, 40, 59, 0.08);
  align-items: stretch;
}

.compare-col {
  padding: clamp(24px, 4vw, 36px) clamp(20px, 3.5vw, 28px);
  min-width: 0;
}

.compare-col h3 {
  font-size: clamp(1.05rem, 2.2vw, 1.15rem);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(0, 0, 0, 0.06);
}

.compare-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.compare-col li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: clamp(0.86rem, 1.35vw, 0.92rem);
  line-height: 1.5;
}

.compare-li-text {
  flex: 1;
  min-width: 0;
  font-weight: 400;
}

.compare-table .compare-li-ai {
  line-height: 1.55;
}

.compare-table .ai-logo-inline {
  height: 15px;
  width: auto;
  margin: 0 2px 0;
  vertical-align: -0.15em;
}

.compare-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  margin-top: 1px;
}

.compare-without {
  background: #fdf4f4;
}

.compare-without h3 {
  color: #8b2d2d;
}

.compare-without .compare-icon {
  background: #e74c3c;
  color: #fff;
}

.compare-without li {
  color: #5a3a3a;
}

.compare-with {
  background: #f0faf8;
}

.compare-with h3 {
  color: #0a7f75;
}

.compare-with .compare-icon {
  background: #0ab8a6;
  color: #fff;
}

.compare-with li {
  color: var(--ink);
}

/* ═══════════════════════════════════════════════════════════════════════════ */
/*  PURCHASE TIMELINE — linha do tempo pós-compra                           */
/* ═══════════════════════════════════════════════════════════════════════════ */

.purchase-timeline header {
  text-align: center;
  margin-bottom: 48px;
}

.purchase-timeline header p:last-child {
  margin-top: 12px;
  color: #4f5f70;
  max-width: 60ch;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.1rem;
  line-height: 1.6;
}

.timeline-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 960px;
  margin: 0 auto;
}

.timeline-line {
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 3px;
  background: linear-gradient(90deg, #0ab8a6, #0e87ba);
  border-radius: 999px;
  z-index: 0;
}

.timeline-step {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.timeline-number {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: linear-gradient(135deg, #0a7d72, #0ab8a6);
  color: #fff;
  font-family: "Merriweather", "Instrument Serif", Georgia, serif;
  font-size: 1.4rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(10, 125, 114, 0.3);
  flex-shrink: 0;
}

.timeline-step h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.timeline-step > div > p {
  color: #4b5b69;
  font-size: 0.88rem;
  line-height: 1.55;
  max-width: 28ch;
}

/* ═══════════════════════════════════════════════════════════════════════════ */
/*  MARKET PRICING — tabela de preços de mercado                            */
/* ═══════════════════════════════════════════════════════════════════════════ */

.market-pricing header {
  text-align: center;
  margin-bottom: 48px;
}

.market-pricing header h2 {
  max-width: 680px;
  margin: 0 auto;
}

.pricing-table-wrap {
  max-width: 880px;
  margin: 0 auto;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(16, 40, 59, 0.08);
  background: #fff;
}

.pricing-table th,
.pricing-table td {
  padding: 16px 20px;
  text-align: left;
  font-size: 0.92rem;
  border-bottom: 1px solid #edf0e8;
}

.pricing-table thead th {
  background: #0f2232;
  color: #eef8ff;
  font-family: "Merriweather", "Instrument Serif", Georgia, serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 18px 20px;
}

.pricing-table thead th:first-child {
  border-radius: 16px 0 0 0;
}

.pricing-table thead th:last-child {
  border-radius: 0 16px 0 0;
}

.pricing-table tbody tr:hover {
  background: #f8faf5;
}

.pricing-table tbody td:first-child {
  font-weight: 600;
  color: var(--ink);
}

.market-price {
  color: #8b2d2d;
  font-weight: 600;
  white-space: nowrap;
}

.included {
  color: #0a7f75;
  font-weight: 700;
}

.check-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #0ab8a6;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  margin-right: 6px;
  vertical-align: middle;
}

.pricing-table tfoot td {
  background: #f0faf8;
  border-bottom: none;
  padding: 20px;
  font-size: 1rem;
}

.market-total {
  color: #8b2d2d;
  font-weight: 800;
  font-family: "Merriweather", "Instrument Serif", Georgia, serif;
  font-size: 1.1rem;
  text-decoration: line-through;
}

.included-total {
  color: #0a7f75;
}

.included-total strong {
  font-family: "Merriweather", "Instrument Serif", Georgia, serif;
  font-size: 1.6rem;
  display: block;
}

.included-total small {
  color: #4b6a60;
  font-size: 0.78rem;
  font-weight: 600;
}

.pricing-table tfoot td:first-child {
  border-radius: 0 0 0 16px;
}

.pricing-table tfoot td:last-child {
  border-radius: 0 0 16px 0;
}

/* ═══════════════════════════════════════════════════════════════════════════ */
/*  DOMAIN SETUP — passo a passo domínio + hospedagem + email               */
/* ═══════════════════════════════════════════════════════════════════════════ */

.domain-setup header {
  text-align: center;
  margin-bottom: 48px;
}

.domain-setup header p.sub {
  margin-top: 12px;
  color: #4f5f70;
  max-width: 64ch;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.12rem;
  line-height: 1.6;
}

.domain-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.domain-steps.single {
  display: flex;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
}

.domain-step {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px 22px;
  background: rgba(255, 255, 255, 0.82);
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.domain-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(16, 40, 59, 0.1);
}

.domain-step-featured {
  max-width: 560px;
  padding: 44px 36px 38px;
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(16, 40, 59, 0.08);
}

.domain-step-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  border-radius: 16px;
  background: linear-gradient(135deg, #e8f5f3, #d4ede9);
  display: flex;
  align-items: center;
  justify-content: center;
}

.domain-step-icon img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.domain-step-featured .domain-step-icon {
  width: 140px;
  height: 96px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid #e2e8ef;
  box-shadow: 0 4px 14px rgba(16, 40, 59, 0.06);
  margin-bottom: 22px;
}

.domain-step-featured .domain-step-icon img {
  width: 110px;
  height: auto;
  max-height: 60px;
}

.domain-step-featured h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.domain-step-featured p {
  font-size: 0.98rem;
  line-height: 1.6;
  color: #3f4d5b;
}

.domain-step-icon .icon-emoji {
  font-size: 1.8rem;
  line-height: 1;
}

.domain-step h3 {
  font-size: 1.08rem;
  margin-bottom: 10px;
}

.domain-step p {
  color: #4b5b69;
  font-size: 1rem;
  line-height: 1.6;
}

.domain-step .step-tag {
  display: inline-block;
  margin-top: 12px;
  padding: 5px 12px;
  border-radius: 999px;
  background: #e8f5f3;
  color: #0a7d72;
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.domain-note {
  margin-top: 32px;
  text-align: center;
  padding: 20px 24px;
  border: 1px solid #c8e0d8;
  border-radius: 14px;
  background: linear-gradient(145deg, #f0faf8, #e8f5f2);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.domain-note p {
  color: #1a4a42;
  font-size: 0.9rem;
  line-height: 1.55;
}

.domain-note strong {
  color: #0a7d72;
}

/* ═══════════════════════════════════════════════════════════════════════════ */
/*  RESPONSIVE — novas seções                                               */
/* ═══════════════════════════════════════════════════════════════════════════ */

@media (max-width: 1120px) {
  .timeline-track {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 480px;
  }

  .timeline-line {
    display: none;
  }

  .timeline-step {
    flex-direction: row;
    text-align: left;
    gap: 16px;
  }

  .domain-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .pricing-table th,
  .pricing-table td {
    padding: 12px 14px;
    font-size: 0.84rem;
  }

  .market-price {
    font-size: 0.8rem;
  }

  .timeline-number {
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
  }

  .domain-steps {
    grid-template-columns: 1fr;
  }

  .domain-step {
    padding: 22px 18px;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════ */
/*  SPECIALTY GALLERY — mockups iPhone por especialidade                    */
/* ═══════════════════════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════════════════════════════ */
/*  IPHONE GALLERY — mockups realistas por especialidade                      */
/* ═══════════════════════════════════════════════════════════════════════════ */

.iphone-gallery {
  padding: 72px 0 56px;
}

.iphone-gallery-header {
  text-align: center;
  margin-bottom: 44px;
}

.iphone-gallery-header h2 {
  font-size: clamp(1.8rem, 3.6vw, 2.8rem);
}

.iphone-gallery-header p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 1.05rem;
}

.iphone-track {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
}

.iphone-phone {
  flex-shrink: 0;
}

.iphone-frame {
  position: relative;
  width: 200px;
  height: 400px;
  background: #111318;
  border-radius: 36px;
  padding: 10px;
  box-shadow:
    0 0 0 2px #1e2230,
    0 0 0 3px #0d1018,
    0 28px 56px rgba(0, 0, 0, 0.28),
    0 12px 24px rgba(0, 0, 0, 0.18);
}

.iphone-notch {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 72px;
  height: 20px;
  background: #05070c;
  border-radius: 0 0 14px 14px;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.iphone-notch::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #0d1018;
  border: 1.5px solid #1a1e28;
}

.iphone-notch::after {
  content: "";
  width: 28px;
  height: 5px;
  border-radius: 4px;
  background: #0d1018;
}

.iphone-screen {
  position: relative;
  height: 100%;
  width: 100%;
  border-radius: 28px;
  overflow: hidden;
  background: #fff;
}

.ps-nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 4;
  height: 30px;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0 9px 5px;
}

.ps-brand {
  font-size: 0.38rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  color: #1a2840;
  text-transform: uppercase;
  line-height: 1;
}

.ps-ham {
  display: flex;
  flex-direction: column;
  gap: 2.5px;
  justify-content: center;
}

.ps-ham span {
  display: block;
  width: 12px;
  height: 1.2px;
  background: #2a3a4a;
  border-radius: 1px;
}

.ps-hero {
  position: absolute;
  top: 30px;
  left: 0;
  right: 0;
  bottom: 58px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 14px 10px 14px;
  text-align: center;
  color: #fff;
  background: linear-gradient(165deg, var(--ps-a, #2f7cff), var(--ps-b, #1c4fb6));
}

.ps-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 75% 8%, rgba(255,255,255,0.2), transparent 38%),
    radial-gradient(circle at 20% 85%, rgba(255,255,255,0.08), transparent 45%);
  pointer-events: none;
}

.ps-photo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 36%, rgba(255,255,255,0.88), rgba(255,255,255,0.42) 52%, transparent 58%),
    linear-gradient(180deg, rgba(255,255,255,0.25), rgba(255,255,255,0.1));
  border: 2.5px solid rgba(255,255,255,0.6);
  box-shadow: 0 6px 18px rgba(0,0,0,0.22);
  position: relative;
  z-index: 1;
  margin-bottom: 8px;
}

.ps-photo::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 64%;
  height: 36%;
  border-radius: 50% 50% 0 0;
  background: rgba(255,255,255,0.38);
}

.ps-name {
  font-family: "Merriweather", Georgia, serif;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.12;
  position: relative;
  z-index: 1;
  margin: 0;
}

.ps-spec {
  font-size: 0.4rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  opacity: 0.84;
  position: relative;
  z-index: 1;
  margin: 4px 0 0;
}

.ps-line {
  font-size: 0.52rem;
  line-height: 1.35;
  opacity: 0.92;
  max-width: 22ch;
  position: relative;
  z-index: 1;
  margin: 6px 0 0;
}

.ps-cta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #25d366;
  color: #fff;
  font-size: 0.44rem;
  font-weight: 700;
  padding: 5px 9px;
  border-radius: 999px;
  margin-top: 9px;
  white-space: nowrap;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 10px rgba(37,211,102,0.32);
}

.ps-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 58px;
  background: #fff;
  padding: 8px 9px 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.ps-bottom-label {
  font-size: 0.36rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #8899aa;
  margin: 0;
}

.ps-chips {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}

.ps-chips span {
  background: #f2f5f8;
  border: 1px solid #dde4ec;
  border-radius: 4px;
  font-size: 0.38rem;
  font-weight: 600;
  color: #3a4c5c;
  padding: 2px 6px;
}

.spec-derma  .ps-hero { --ps-a: #f7779a; --ps-b: #c2355a; }
.spec-ofta   .ps-hero { --ps-a: #4f8ef7; --ps-b: #1a3cbf; }
.spec-gineco .ps-hero { --ps-a: #b57bee; --ps-b: #6d23c9; }
.spec-cardio .ps-hero { --ps-a: #ef5350; --ps-b: #a91515; }
.spec-orto   .ps-hero { --ps-a: #1ab8c8; --ps-b: #0b6d80; }

@media (max-width: 1120px) {
  .iphone-track { gap: 14px; }
  .iphone-frame { width: 170px; height: 340px; }
}

@media (max-width: 720px) {
  .iphone-track {
    overflow-x: auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding-bottom: 14px;
    -webkit-overflow-scrolling: touch;
  }
  .iphone-frame { width: 160px; height: 320px; }
}

.specialty-gallery {
  padding: 72px 0 48px;
  position: relative;
}

.specialty-gallery-header {
  text-align: center;
  margin-bottom: 40px;
}

.specialty-gallery-header h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  margin-bottom: 12px;
  max-width: 18ch;
  margin-inline: auto;
}

.specialty-gallery-header p {
  color: var(--muted);
  max-width: 60ch;
  margin-inline: auto;
  line-height: 1.6;
  font-size: 1.12rem;
}

.specialty-track {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 22px;
  align-items: end;
}

.specialty-phone {
  display: flex;
  justify-content: center;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.specialty-phone:hover {
  transform: translateY(-6px);
}

.phone-frame {
  position: relative;
  width: 100%;
  max-width: 210px;
  aspect-ratio: 210 / 420;
  background: #0a0c12;
  border-radius: 32px;
  padding: 10px;
  box-shadow:
    0 0 0 2px #1a1e28,
    0 24px 50px rgba(0, 0, 0, 0.22),
    0 12px 24px rgba(10, 184, 166, 0.1);
}

.phone-notch {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 58px;
  height: 16px;
  background: #05070c;
  border-radius: 999px;
  z-index: 2;
}

.phone-screen {
  position: relative;
  height: 100%;
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
}

.phone-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 42px 14px 20px;
  text-align: center;
  height: 100%;
  color: #fff;
  background: linear-gradient(165deg, var(--spec-a, #2f7cff), var(--spec-b, #1c4fb6));
  position: relative;
}

.phone-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 10%, rgba(255, 255, 255, 0.18), transparent 40%),
    radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.08), transparent 50%);
  pointer-events: none;
}

.phone-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 38%, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.45) 55%, transparent 60%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.1));
  border: 2px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
  position: relative;
  z-index: 1;
}

.phone-avatar::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -2px;
  transform: translateX(-50%);
  width: 70%;
  height: 40%;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  background: rgba(255, 255, 255, 0.35);
}

.phone-name {
  font-family: "Merriweather", "Instrument Serif", Georgia, serif;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: -0.01em;
  line-height: 1.15;
  position: relative;
  z-index: 1;
}

.phone-spec {
  font-size: 0.62rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.88;
  position: relative;
  z-index: 1;
}

.phone-tag {
  font-size: 0.7rem;
  line-height: 1.3;
  opacity: 0.92;
  max-width: 22ch;
  position: relative;
  z-index: 1;
}

.phone-cta {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #25d366;
  color: #fff;
  font-weight: 700;
  font-size: 0.6rem;
  letter-spacing: 0.02em;
  padding: 6px 10px;
  border-radius: 999px;
  margin-top: 4px;
  box-shadow: 0 6px 14px rgba(37, 211, 102, 0.28);
  position: relative;
  z-index: 1;
  white-space: nowrap;
}

/* Paletas por especialidade */
.spec-derma .phone-hero  { --spec-a: #ff8ba7; --spec-b: #c94b6e; }
.spec-ofta .phone-hero   { --spec-a: #3b82f6; --spec-b: #1e40af; }
.spec-gineco .phone-hero { --spec-a: #c084fc; --spec-b: #7c3aed; }
.spec-cardio .phone-hero { --spec-a: #ef5350; --spec-b: #b91c1c; }
.spec-orto .phone-hero   { --spec-a: #06b6d4; --spec-b: #0e7490; }

.specialty-footnote {
  text-align: center;
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 32px;
  opacity: 0.85;
}

@media (max-width: 1120px) {
  .specialty-track {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 18px;
  }
  .phone-frame { max-width: 180px; }
}

@media (max-width: 720px) {
  .specialty-gallery {
    padding: 56px 0 32px;
  }
  .specialty-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 14px;
    padding-bottom: 16px;
    padding-inline: 4vw;
    margin-inline: -4vw;
    scrollbar-width: thin;
  }
  .specialty-track::-webkit-scrollbar {
    height: 4px;
  }
  .specialty-track::-webkit-scrollbar-thumb {
    background: rgba(10, 184, 166, 0.3);
    border-radius: 999px;
  }
  .specialty-phone {
    scroll-snap-align: center;
    flex: 0 0 auto;
  }
  .phone-frame { width: 190px; max-width: none; }
}

/* ═══════════════════════════════════════════════════════════════════════════ */
/*  CAPABILITIES SHOWCASE — skills list + MacBook mockups                    */
/* ═══════════════════════════════════════════════════════════════════════════ */

.capabilities-showcase {
  margin-top: 88px;
  padding: 96px 0 104px;
  background:
    radial-gradient(circle at 85% 18%, rgba(10, 184, 166, 0.18), transparent 45%),
    radial-gradient(circle at 12% 85%, rgba(15, 125, 149, 0.22), transparent 48%),
    linear-gradient(170deg, #060912, #0a1320 55%, #070c16);
  color: #edf4ff;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(155, 200, 230, 0.08);
  border-bottom: 1px solid rgba(155, 200, 230, 0.08);
}

.capabilities-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.capabilities-left .kicker {
  color: #6bd4c5;
}

.capabilities-left h2 {
  color: #f5f9ff;
  font-size: clamp(2rem, 3.8vw, 3.1rem);
  line-height: 1.05;
  margin-bottom: 22px;
  max-width: 18ch;
}

.capabilities-left h2 em {
  color: #6bd4c5;
  font-style: italic;
  font-weight: 700;
}

.capabilities-lead {
  color: #b7c8d8;
  line-height: 1.62;
  font-size: 1.02rem;
  max-width: 52ch;
  margin-bottom: 32px;
}

.capabilities-list {
  list-style: none;
  padding: 0;
  margin: 0 0 36px 0;
  display: grid;
  gap: 16px;
}

.capabilities-list li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(140px, 1.1fr) auto;
  align-items: center;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(155, 200, 230, 0.12);
}

.cap-label {
  color: #dae7f3;
  font-weight: 500;
  font-size: 1.08rem;
  letter-spacing: -0.005em;
  line-height: 1.6;
}

.cap-bar {
  height: 6px;
  background: rgba(155, 200, 230, 0.12);
  border-radius: 999px;
  overflow: hidden;
  position: relative;
}

.cap-fill {
  display: block;
  height: 100%;
  width: var(--p, 100%);
  background: linear-gradient(90deg, #0ab8a6, #6bd4c5);
  border-radius: 999px;
  box-shadow: 0 0 18px rgba(10, 184, 166, 0.35);
  transform-origin: left center;
  animation: cap-fill-grow 1.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes cap-fill-grow {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

.cap-value {
  font-family: "Merriweather", "Instrument Serif", Georgia, serif;
  font-weight: 700;
  color: #6bd4c5;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  min-width: 3ch;
  text-align: right;
}

.capabilities-cta {
  display: inline-flex;
  box-shadow: 0 12px 40px rgba(10, 184, 166, 0.32);
}

/* ── MacBook mockups (pure CSS frame) ──────────────────────────────────── */

.capabilities-right {
  position: relative;
  display: grid;
  gap: 28px;
  padding: 8px;
}

.macbook-glow {
  position: absolute;
  inset: auto -20% -10% -10%;
  height: 70%;
  background: radial-gradient(
    ellipse at center,
    rgba(10, 184, 166, 0.28),
    transparent 60%
  );
  filter: blur(50px);
  z-index: 0;
  pointer-events: none;
}

.macbook-mockup {
  position: relative;
  margin: 0;
  z-index: 1;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.macbook-top {
  transform: rotate(-1.2deg) translateX(-14px);
}

.macbook-bottom {
  transform: rotate(1.4deg) translateX(18px);
}

.macbook-top:hover,
.macbook-bottom:hover {
  transform: rotate(0deg) translateX(0);
}

.macbook-screen {
  position: relative;
  background: linear-gradient(180deg, #e6e9ee 0%, #d4d9df 100%);
  border-radius: 14px 14px 4px 4px;
  padding: 22px 14px 14px;
  box-shadow:
    0 0 0 2px #b6bcc5,
    0 20px 60px rgba(0, 0, 0, 0.25),
    0 40px 80px rgba(10, 184, 166, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.macbook-notch {
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 62px;
  height: 10px;
  background: #2a2f38;
  border-radius: 0 0 8px 8px;
  z-index: 2;
}

.macbook-screen img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 6px;
  object-fit: cover;
  aspect-ratio: 16 / 10;
}

.macbook-base {
  position: relative;
  width: 112%;
  height: 14px;
  margin: -2px auto 0;
  background: linear-gradient(
    180deg,
    #e8ebef 0%,
    #c7cdd4 50%,
    #a6acb4 100%
  );
  border-radius: 0 0 14px 14px;
  box-shadow:
    0 4px 14px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.macbook-base::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 22%;
  height: 4px;
  background: #8b9098;
  border-radius: 0 0 8px 8px;
}

@media (max-width: 1120px) {
  .capabilities-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .capabilities-left h2 {
    max-width: 100%;
  }

  .macbook-top,
  .macbook-bottom {
    transform: none;
  }
}

@media (max-width: 720px) {
  .capabilities-showcase {
    margin-top: 64px;
    padding: 64px 0 72px;
  }

  .capabilities-list li {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "label value"
      "bar bar";
    gap: 6px 12px;
    padding-bottom: 14px;
  }

  .cap-label { grid-area: label; }
  .cap-value { grid-area: value; }
  .cap-bar { grid-area: bar; }

  .capabilities-cta {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .capabilities-right {
    gap: 22px;
  }

  .macbook-screen {
    padding: 16px 10px 10px;
    border-radius: 10px 10px 3px 3px;
  }

  .macbook-notch {
    width: 44px;
    height: 7px;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════ */
/*  VIGA ABOUT — seção institucional do Grupo VIGA                          */
/* ═══════════════════════════════════════════════════════════════════════════ */

.viga-about {
  margin-top: 88px;
  padding: 88px 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(10, 184, 166, 0.14), transparent 42%),
    radial-gradient(circle at 85% 80%, rgba(14, 87, 152, 0.18), transparent 42%),
    linear-gradient(165deg, #0a0f17, #0d1622 55%, #0b141f);
  color: #edf4ff;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(155, 200, 230, 0.08);
  border-bottom: 1px solid rgba(155, 200, 230, 0.08);
}

.viga-about .container {
  position: relative;
  z-index: 1;
}

.viga-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.viga-about .kicker {
  color: #6bd4c5;
}

.viga-about-left h2 {
  color: #f5f9ff;
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  line-height: 1.08;
  max-width: 15ch;
  margin-bottom: 24px;
}

.viga-about-left p {
  color: #b7c8d8;
  line-height: 1.62;
  margin-top: 14px;
  max-width: 52ch;
}

.viga-lead {
  font-size: 1.05rem;
}

.viga-about strong {
  color: #fff;
  font-weight: 800;
}

.viga-about em {
  color: #9bf0e2;
  font-style: normal;
  font-weight: 700;
}

.viga-address {
  margin-top: 30px;
  padding: 20px 22px;
  border: 1px solid rgba(155, 200, 230, 0.22);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  max-width: 440px;
}

.kicker-mini {
  font-family: "Poppins", system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  color: #6bd4c5;
  font-weight: 800;
  margin: 0 0 10px 0 !important;
}

.viga-address p {
  margin: 0 !important;
  line-height: 1.6;
  color: #dae7f3 !important;
  font-size: 1.04rem;
  max-width: none !important;
}

.viga-address p.viga-address-line-1 {
  font-weight: 700;
  color: #fff !important;
}

.viga-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 36px;
}

.viga-pillar {
  border: 1px solid rgba(155, 200, 230, 0.18);
  border-radius: 14px;
  padding: 22px 16px;
  background: rgba(255, 255, 255, 0.03);
  text-align: center;
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.viga-pillar:hover {
  border-color: rgba(10, 184, 166, 0.4);
  background: rgba(10, 184, 166, 0.06);
  transform: translateY(-2px);
}

.pillar-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(107, 212, 197, 0.4);
  background: rgba(107, 212, 197, 0.08);
  color: #6bd4c5;
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.viga-pillar h3 {
  font-size: 1.02rem;
  color: #f5f9ff;
  margin-bottom: 8px;
  font-family: "Merriweather", "Instrument Serif", Georgia, serif;
}

.viga-pillar p {
  color: #a8bdd0;
  font-size: 0.82rem;
  line-height: 1.45;
  margin: 0;
}

.viga-clients {
  border-top: 1px solid rgba(155, 200, 230, 0.12);
  padding-top: 24px;
}

.viga-clients-image {
  display: block;
  width: 50%;
  height: auto;
  opacity: 0.95;
}

.viga-clients-image.mobile-only {
  display: none;
}

@media (max-width: 1120px) {
  .viga-about-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .viga-about-left h2 {
    max-width: 100%;
  }
}

@media (max-width: 720px) {
  .viga-about {
    margin-top: 64px;
    padding: 56px 0;
  }

  .viga-pillars {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 28px;
  }

  .viga-pillar {
    display: flex;
    align-items: center;
    gap: 14px;
    text-align: left;
    padding: 16px 18px;
  }

  .pillar-icon {
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .viga-pillar > div {
    flex: 1;
  }

  .viga-clients-image.desktop-only {
    display: none;
  }

  .viga-clients-image.mobile-only {
    display: block;
    width: 100%;
  }
}

/* ── AI / brand logos inline ─────────────────────────────────────────────── */
.ai-logo-inline {
  height: 22px;
  width: auto;
  vertical-align: middle;
  margin: 0 3px -2px;
  display: inline;
}

.only-with-site-list .ai-logo-inline {
  height: 28px;
  margin: 0 2px -4px;
}

.ai-logo-gemini-card {
  height: 30px;
  margin: 0 2px -5px;
}

.how-step-icon .ai-logo-inline {
  height: 36px;
  margin: 0;
}

.doctoralia-logo {
  height: 22px;
  width: auto;
  vertical-align: middle;
  margin: 0 3px -2px;
  display: inline;
}

/* ── Performance Score Section ──────────────────────────────────────────────── */
.perf-score {
  padding: 80px 0;
}

.perf-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 52px;
}

.perf-lead {
  color: var(--muted);
  margin-top: 14px;
  font-size: 1.02rem;
  line-height: 1.65;
}

.perf-tools {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.perf-tool-card {
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: 0 6px 32px rgba(19, 33, 45, 0.06);
}

.perf-tool-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.perf-tool-head span {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink);
}

.perf-tool-logo {
  height: 36px;
  width: auto;
}

.perf-tool-logo--gtmetrix {
  height: 28px;
}

.perf-scores {
  display: flex;
  justify-content: space-around;
  gap: 12px;
  flex-wrap: wrap;
}

.perf-score-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.score-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0;
}

/* Ring */
.score-ring {
  position: relative;
  width: 80px;
  height: 80px;
}

.score-svg {
  width: 80px;
  height: 80px;
  transform: rotate(-90deg);
}

.score-track {
  fill: none;
  stroke: #e8ede6;
  stroke-width: 6;
}

.score-fill {
  fill: none;
  stroke-width: 6;
  stroke-linecap: round;
  stroke-dasharray: 201.06;
  stroke-dashoffset: 201.06;
  transition: stroke-dashoffset 0.05s linear;
}

.score-fill--green { stroke: #0cce6b; }
.score-fill--orange { stroke: #ffa400; }
.score-fill--red { stroke: #ff4e42; }

.score-num {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--ink);
}

/* GTmetrix grade letter */
.gtmetrix-grade {
  background: linear-gradient(135deg, #0cce6b, #09a354);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.score-grade {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-size: 2rem;
  color: #fff;
  line-height: 1;
}

@media (max-width: 720px) {
  .perf-tools {
    grid-template-columns: 1fr;
  }
}
