:root {
  --bg: #07111f;
  --bg-soft: #0d1a2d;
  --surface: rgba(17, 31, 52, 0.86);
  --surface-solid: #13233a;
  --card: #14243b;
  --card-light: #192d4b;
  --text: #f7fbff;
  --muted: #a7b5c8;
  --soft: #d8e5f4;
  --line: rgba(255, 255, 255, 0.12);
  --primary: #18c6e6;
  --primary-dark: #2563eb;
  --teal: #14b8a6;
  --success: #22c55e;
  --warning: #f59e0b;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.36);
  --radius-xl: 32px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: 1140px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 8% 6%, rgba(37, 99, 235, 0.22), transparent 26%),
    radial-gradient(circle at 86% 8%, rgba(20, 184, 166, 0.16), transparent 28%),
    radial-gradient(circle at 50% 48%, rgba(24, 198, 230, 0.08), transparent 34%),
    var(--bg);
  line-height: 1.65;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,0.032) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.032) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
.container { width: min(100% - 32px, var(--container)); margin-inline: auto; }
.section { padding: 92px 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 17, 31, 0.84);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.header-content {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.brand { display: inline-flex; align-items: center; min-width: 160px; }
.brand-logo { width: 180px; height: auto; }
.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}
.nav a { transition: color 0.2s ease, transform 0.2s ease, border-color 0.2s ease; }
.nav a:hover { color: var(--text); }
.nav-cta, .nav-login {
  border-radius: 999px;
  padding: 10px 16px;
}
.nav-cta {
  color: white !important;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  box-shadow: 0 14px 34px rgba(24, 198, 230, 0.2);
}
.nav-login {
  color: #e7f9ff !important;
  border: 1px solid rgba(24, 198, 230, 0.35);
  background: rgba(24, 198, 230, 0.07);
}
.menu-button { display: none; background: transparent; border: 0; cursor: pointer; }
.menu-button span { display: block; width: 26px; height: 2px; margin: 5px 0; background: var(--text); transition: 0.25s ease; }

.hero { padding-top: 92px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 56px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  color: #c8f7ff;
  background: rgba(24, 198, 230, 0.1);
  border: 1px solid rgba(24, 198, 230, 0.22);
  border-radius: 999px;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-weight: 900;
  margin-bottom: 18px;
}
h1, h2, h3 { line-height: 1.08; letter-spacing: -0.045em; }
h1 { font-size: clamp(2.55rem, 5.8vw, 5rem); max-width: 800px; }
h2 { font-size: clamp(2rem, 4vw, 3.24rem); }
h3 { font-size: 1.17rem; }
.hero-text {
  margin: 24px 0 30px;
  color: var(--muted);
  font-size: 1.14rem;
  max-width: 680px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 14px 21px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn.primary {
  color: white;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  box-shadow: 0 18px 42px rgba(24, 198, 230, 0.22);
}
.btn.secondary, .btn.plan {
  color: var(--text);
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid var(--line);
}
.btn.full { width: 100%; }
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.trust-row span {
  padding: 10px 13px;
  color: #d9f7ff;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  font-weight: 800;
  font-size: 0.9rem;
}

.hero-demo {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: 16px;
  background: linear-gradient(180deg, rgba(255,255,255,0.14), rgba(255,255,255,0.045));
  box-shadow: var(--shadow);
}
.demo-toolbar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 6px 16px;
  color: #b9c8db;
  font-size: 0.78rem;
}
.demo-toolbar span { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.28); }
.demo-toolbar strong { margin-left: 8px; color: #cce5f2; font-weight: 700; letter-spacing: -0.02em; }
.store-preview { overflow: hidden; border-radius: 26px; background: #f8fafc; color: #0f172a; }
.store-hero {
  min-height: 190px;
  display: flex;
  align-items: end;
  padding: 24px;
  color: white;
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.92), rgba(24, 198, 230, 0.78)),
    radial-gradient(circle at top right, rgba(255,255,255,0.42), transparent 38%);
}
.store-tag { display: inline-block; margin-bottom: 10px; padding: 6px 10px; border-radius: 999px; background: rgba(255,255,255,0.18); font-weight: 800; font-size: 0.75rem; }
.store-hero h2 { font-size: 2rem; }
.store-hero p { color: rgba(255,255,255,0.86); margin-top: 6px; }
.store-actions { display: grid; grid-template-columns: 1fr 0.85fr; gap: 10px; padding: 18px 22px 0; }
.store-actions a, .store-actions button {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 46px;
  border-radius: 14px;
  font-weight: 900;
}
.store-actions a { color: white; background: var(--success); }
.store-actions button { border: 1px solid #dbe7f3; color: #1e293b; background: white; cursor: pointer; }
.products { padding: 18px 22px 22px; display: grid; gap: 12px; }
.products article { display: flex; align-items: center; gap: 12px; padding: 12px; border-radius: 18px; background: #eef6ff; }
.product-image { min-width: 58px; height: 48px; display: grid; place-items: center; border-radius: 14px; background: white; color: #2563eb; font-weight: 900; font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.04em; }
.products h3 { font-size: 1rem; letter-spacing: -0.02em; }
.products p { color: #2563eb; font-weight: 900; }
.floating-note {
  position: absolute;
  right: -8px;
  bottom: -28px;
  max-width: 270px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 18px;
  background: rgba(7, 17, 31, 0.94);
  box-shadow: 0 18px 54px rgba(0,0,0,0.28);
}
.floating-note strong { display: block; color: #e7fbff; font-size: 0.84rem; }
.floating-note span { display: block; margin-top: 4px; color: var(--muted); font-size: 0.82rem; }

.strip-section { padding: 18px 0 72px; }
.value-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--line);
}
.value-strip div { padding: 24px; background: rgba(255,255,255,0.045); }
.value-strip strong { display: block; margin-bottom: 8px; color: #eef8ff; }
.value-strip span { color: var(--muted); font-size: 0.94rem; }
.two-columns { display: grid; grid-template-columns: 0.88fr 1.12fr; gap: 56px; align-items: start; }
.problem-section, .how-section, .validation { background: rgba(255, 255, 255, 0.032); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.text-block p, .section-heading p, .solution-copy p, .contact-grid p, .auth-copy p { color: var(--muted); font-size: 1.04rem; }
.check-list { list-style: none; display: grid; gap: 12px; margin-top: 24px; }
.check-list li { position: relative; padding-left: 30px; color: #d5deeb; }
.check-list li::before { content: ""; position: absolute; left: 0; top: 4px; width: 18px; height: 18px; border-radius: 50%; background: rgba(245, 158, 11, 0.15); border: 1px solid rgba(245,158,11,0.35); }
.check-list li::after { content: "!"; position: absolute; left: 6px; top: 1px; color: var(--warning); font-size: 0.78rem; font-weight: 900; }
.solution-card {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 40px;
  padding: 46px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.2), rgba(24, 198, 230, 0.08));
  border: 1px solid var(--line);
  box-shadow: 0 26px 70px rgba(0,0,0,0.2);
}
.solution-copy p { margin-top: 18px; }
.solution-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.mini-card, .feature-card, .price-card, .step { padding: 24px; border-radius: var(--radius-lg); background: var(--surface); border: 1px solid var(--line); }
.mini-card, .feature-card, .price-card, .step { transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease; }
.mini-card:hover, .feature-card:hover, .price-card:hover, .step:hover { transform: translateY(-3px); border-color: rgba(24,198,230,0.3); }
.mini-icon, .feature-icon { display: inline-grid; place-items: center; border-radius: 14px; background: rgba(24, 198, 230, 0.12); color: #8eeaff; font-weight: 900; }
.mini-icon { width: 42px; height: 42px; }
.feature-icon { min-width: 52px; height: 38px; padding-inline: 12px; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.04em; }
.mini-card h3, .feature-card h3, .step h3 { margin: 14px 0 8px; }
.mini-card p, .feature-card p, .step p, .price-card span, .price-card li { color: var(--muted); }
.section-heading { max-width: 760px; text-align: center; margin: 0 auto 44px; }
.section-heading.align-left { text-align: left; margin-left: 0; }
.section-heading p { margin-top: 16px; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.step span { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--primary-dark), var(--primary)); font-weight: 900; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }
.price-card { position: relative; }
.price-card.featured { background: linear-gradient(180deg, rgba(24, 198, 230, 0.16), var(--surface)); border-color: rgba(24, 198, 230, 0.4); transform: translateY(-12px); }
.badge { position: absolute; top: 18px; right: 18px; padding: 6px 10px; border-radius: 999px; background: rgba(37, 99, 235, 0.22); color: #bfefff; font-size: 0.74rem; font-weight: 900; }
.price { margin: 18px 0 4px; font-size: 2.5rem; font-weight: 900; letter-spacing: -0.06em; }
.price span { font-size: 1rem; color: var(--muted); }
.price-card ul { display: grid; gap: 10px; list-style: none; margin: 24px 0; }
.price-card li::before { content: "✓"; margin-right: 8px; color: var(--primary); font-weight: 900; }
.metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 28px; }
.metrics div, .auth-benefits div { padding: 18px; border-radius: var(--radius-md); background: rgba(255, 255, 255, 0.06); border: 1px solid var(--line); }
.metrics strong, .auth-benefits strong { display: block; font-size: 1.32rem; line-height: 1.1; }
.metrics span, .auth-benefits span { display: block; margin-top: 5px; color: var(--muted); font-size: 0.88rem; }
.contact-grid { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 52px; align-items: start; }
.contact-note { margin-top: 24px; padding: 18px; border: 1px solid rgba(24, 198, 230, 0.24); border-radius: var(--radius-md); background: rgba(24, 198, 230, 0.08); color: #d9f8ff; }
.lead-form, .auth-card {
  display: grid;
  gap: 16px;
  padding: 28px;
  border-radius: var(--radius-xl);
  background: rgba(19, 35, 58, 0.9);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.lead-form label, .login-form label { display: grid; gap: 8px; color: #dbe7f4; font-weight: 800; }
.lead-form input, .lead-form select, .login-form input {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.065);
  color: var(--text);
  outline: none;
}
.lead-form option { color: #0f172a; }
.lead-form input:focus, .lead-form select:focus, .login-form input:focus { border-color: rgba(24, 198, 230, 0.72); box-shadow: 0 0 0 4px rgba(24, 198, 230, 0.12); }
.form-message { min-height: 24px; color: #a5f3c0; font-weight: 800; }
.site-footer { padding: 56px 0 24px; border-top: 1px solid var(--line); background: #050c16; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 0.8fr 1fr; gap: 30px; }
.footer-brand { margin-bottom: 14px; }
.footer-grid p, .footer-grid a, .footer-bottom { color: var(--muted); }
.footer-grid h3 { margin-bottom: 12px; font-size: 1rem; }
.footer-grid a { display: block; margin: 8px 0; }
.footer-grid a:hover { color: var(--text); }
.footer-bottom { display: flex; justify-content: space-between; gap: 16px; padding-top: 28px; margin-top: 32px; border-top: 1px solid var(--line); font-size: 0.9rem; }

.auth-body { min-height: 100vh; }
.auth-header { position: relative; }
.auth-main { min-height: calc(100vh - 78px); display: grid; align-items: center; padding: 58px 0; }
.auth-shell { display: grid; grid-template-columns: 1fr 440px; gap: 56px; align-items: center; }
.auth-copy h1 { font-size: clamp(2.3rem, 4.6vw, 4.2rem); }
.auth-copy p { margin: 22px 0 28px; max-width: 640px; }
.auth-benefits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; max-width: 760px; }
.auth-card-head { text-align: center; }
.auth-card-head img { width: 176px; margin: 0 auto 18px; }
.auth-card-head h2 { font-size: 1.8rem; }
.auth-card-head p { color: var(--muted); margin-top: 6px; }
.login-form { display: grid; gap: 16px; }
.login-options { display: flex; justify-content: space-between; align-items: center; gap: 12px; font-size: 0.9rem; color: var(--muted); }
.login-options a { color: #bceeff; font-weight: 800; }
.check-option { display: inline-flex !important; grid-template-columns: auto 1fr; align-items: center; gap: 8px !important; font-weight: 700 !important; }
.check-option input { width: 16px; height: 16px; }
.auth-separator { display: grid; place-items: center; position: relative; color: var(--muted); font-weight: 800; font-size: 0.86rem; }
.auth-separator::before { content: ""; position: absolute; left: 0; right: 0; height: 1px; background: var(--line); }
.auth-separator span { position: relative; background: #13233a; padding: 0 12px; }

@media (max-width: 980px) {
  .menu-button { display: block; }
  .nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 86px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(13, 26, 45, 0.98);
    box-shadow: var(--shadow);
  }
  .nav.open { display: flex; }
  .nav-cta, .nav-login { text-align: center; }
  .hero-grid, .two-columns, .solution-card, .contact-grid, .auth-shell { grid-template-columns: 1fr; }
  .features-grid, .pricing-grid, .value-strip, .auth-benefits { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .price-card.featured { transform: none; }
  .hero-demo { max-width: 520px; margin: 0 auto; }
  .auth-nav { display: flex; position: static; flex-direction: row; background: transparent; border: 0; box-shadow: none; padding: 0; }
}
@media (max-width: 640px) {
  .section { padding: 68px 0; }
  .hero { padding-top: 60px; }
  .brand-logo { width: 156px; }
  .features-grid, .pricing-grid, .steps, .metrics, .footer-grid, .value-strip, .auth-benefits { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
  .solution-card, .lead-form, .auth-card { padding: 24px; }
  .store-actions { grid-template-columns: 1fr; }
  .floating-note { position: static; margin-top: 14px; max-width: none; }
  .footer-bottom { flex-direction: column; }
  .auth-nav a:not(.nav-cta) { display: none; }
}


/* Ajustes TuVenda v4: títulos controlados, mockup profissional e ícones reais */
.hero-copy h1,
main h2 {
  font-size: clamp(1.65rem, 3vw, 1.875rem);
  line-height: 1.15;
  letter-spacing: -0.035em;
}
.hero-text { max-width: 610px; }

.professional-mockup {
  isolation: isolate;
  min-height: 560px;
  padding: 18px;
  background:
    radial-gradient(circle at 16% 8%, rgba(24, 198, 230, 0.22), transparent 30%),
    radial-gradient(circle at 88% 78%, rgba(37, 99, 235, 0.24), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,0.15), rgba(255,255,255,0.045));
}
.professional-mockup::before {
  content: "";
  position: absolute;
  inset: 42px 18px auto auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(24, 198, 230, 0.16);
  filter: blur(18px);
  z-index: -1;
}
.mockup-browser {
  overflow: hidden;
  border-radius: 28px;
  background: rgba(248, 250, 252, 0.98);
  color: #0f172a;
  box-shadow: 0 28px 70px rgba(0,0,0,0.36);
  transform: rotate(-1.2deg);
}
.mockup-browser .demo-toolbar {
  padding: 14px 18px;
  border-bottom: 1px solid #e7edf5;
  background: #f8fafc;
  color: #64748b;
}
.mockup-browser .demo-toolbar span:nth-child(1) { background: #ef4444; }
.mockup-browser .demo-toolbar span:nth-child(2) { background: #f59e0b; }
.mockup-browser .demo-toolbar span:nth-child(3) { background: #22c55e; }
.mockup-browser .demo-toolbar strong { color: #334155; font-size: 0.75rem; }
.mockup-body { padding: 24px; background: linear-gradient(180deg, #ffffff, #f3f7fb); }
.store-profile {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 15px;
  align-items: start;
  padding: 18px;
  border: 1px solid #e4edf7;
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(37,99,235,0.08), rgba(24,198,230,0.07)),
    #ffffff;
}
.store-mark {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: white;
  font-weight: 900;
  background: linear-gradient(135deg, #2563eb, #18c6e6);
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.22);
}
.store-tag.dark {
  display: inline-flex;
  margin-bottom: 7px;
  padding: 5px 9px;
  color: #2563eb;
  background: #eaf4ff;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
}
.store-profile h2 { font-size: 1.45rem; letter-spacing: -0.035em; }
.store-profile p { margin-top: 5px; color: #64748b; font-size: 0.9rem; line-height: 1.45; }
.store-status {
  align-self: start;
  padding: 7px 10px;
  border-radius: 999px;
  color: #047857;
  background: #dcfce7;
  font-size: 0.75rem;
  font-weight: 900;
}
.catalog-showcase {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 14px;
  margin: 18px 0;
}
.showcase-product {
  min-height: 145px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 14px;
  border: 1px solid #e3ebf6;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
}
.showcase-product.featured-product { grid-row: span 2; min-height: 304px; }
.product-art {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 86px;
  overflow: hidden;
  border-radius: 18px;
  background:
    radial-gradient(circle at 72% 18%, rgba(255,255,255,0.92), transparent 20%),
    linear-gradient(135deg, #dbeafe, #ccfbf1);
}
.featured-product .product-art { min-height: 210px; }
.product-art::before,
.product-art::after,
.product-art span {
  content: "";
  position: absolute;
  display: block;
}
.dress-art::before {
  width: 68px;
  height: 92px;
  top: 42px;
  border-radius: 36px 36px 18px 18px;
  background: linear-gradient(180deg, #2563eb, #18c6e6);
  clip-path: polygon(35% 0, 65% 0, 78% 34%, 96% 100%, 4% 100%, 22% 34%);
}
.dress-art::after {
  width: 100px;
  height: 10px;
  top: 128px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.12);
}
.bag-art::before {
  width: 68px;
  height: 54px;
  top: 28px;
  border-radius: 16px 16px 20px 20px;
  background: linear-gradient(135deg, #14b8a6, #18c6e6);
}
.bag-art::after {
  width: 36px;
  height: 22px;
  top: 18px;
  border: 5px solid #14b8a6;
  border-bottom: 0;
  border-radius: 22px 22px 0 0;
}
.shoe-art::before {
  width: 88px;
  height: 34px;
  top: 44px;
  border-radius: 34px 50px 18px 18px;
  background: linear-gradient(135deg, #1e293b, #2563eb);
}
.shoe-art::after {
  width: 100px;
  height: 8px;
  top: 76px;
  border-radius: 999px;
  background: #cbd5e1;
}
.showcase-product h3 { margin-top: 12px; color: #0f172a; font-size: 0.98rem; }
.showcase-product p { color: #2563eb; font-weight: 900; }
.mockup-actions { display: grid; grid-template-columns: 1fr 0.78fr; gap: 10px; }
.mockup-actions a,
.mockup-actions button {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 0;
  border-radius: 16px;
  font-weight: 900;
}
.mockup-actions a { color: white; background: #22c55e; box-shadow: 0 14px 30px rgba(34,197,94,0.24); }
.mockup-actions button { color: #0f172a; background: #eaf2fc; cursor: pointer; }
.phone-preview {
  position: absolute;
  right: -18px;
  bottom: -30px;
  width: 210px;
  padding: 16px;
  border: 7px solid #0f172a;
  border-radius: 32px;
  background: #ffffff;
  color: #0f172a;
  box-shadow: 0 24px 70px rgba(0,0,0,0.34);
}
.phone-speaker { width: 58px; height: 5px; margin: 0 auto 14px; border-radius: 999px; background: #cbd5e1; }
.phone-card-head { display: flex; justify-content: space-between; gap: 10px; align-items: center; color: #64748b; font-size: 0.76rem; }
.phone-card-head strong { color: #0f172a; font-size: 0.78rem; }
.phone-message { margin: 14px 0; padding: 12px; border-radius: 16px; background: #ecfeff; color: #164e63; font-size: 0.78rem; line-height: 1.42; }
.phone-metric { padding: 12px; border-radius: 16px; background: #f8fafc; border: 1px solid #e2e8f0; }
.phone-metric span { display: block; color: #64748b; font-size: 0.7rem; }
.phone-metric strong { display: block; margin-top: 3px; color: #16a34a; font-size: 1.4rem; line-height: 1; }

.feature-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  padding: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(37,99,235,0.22), rgba(24,198,230,0.12));
  border: 1px solid rgba(24,198,230,0.24);
}
.feature-icon svg { width: 24px; height: 24px; }
.feature-icon path {
  fill: none;
  stroke: #8eeaff;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.feature-icon svg path:first-child { fill: rgba(24,198,230,0.08); }

@media (max-width: 980px) {
  .professional-mockup { min-height: auto; }
  .phone-preview { right: 18px; bottom: -34px; }
}
@media (max-width: 640px) {
  .hero-copy h1,
  main h2 { font-size: 1.7rem; }
  .catalog-showcase { grid-template-columns: 1fr; }
  .showcase-product.featured-product { min-height: auto; }
  .featured-product .product-art { min-height: 150px; }
  .store-profile { grid-template-columns: auto 1fr; }
  .store-status { grid-column: 1 / -1; justify-self: start; }
  .phone-preview { position: relative; right: auto; bottom: auto; width: 100%; margin-top: 16px; }
  .mockup-browser { transform: none; }
  .mockup-actions { grid-template-columns: 1fr; }
}

/* Ajustes TuVenda v5: mockup completo em celular e título principal até 35px */
.hero-copy h1 {
  font-size: clamp(2rem, 3.8vw, 2.1875rem);
  line-height: 1.08;
  max-width: 560px;
}
main h2 {
  font-size: clamp(1.65rem, 3vw, 1.875rem);
}
.phone-showcase {
  min-height: 640px;
  display: grid;
  place-items: center;
  padding: 34px;
  overflow: visible;
}
.phone-showcase::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: 18px;
  bottom: 36px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.14);
  filter: blur(28px);
  z-index: -1;
}
.phone-store-mockup {
  position: relative;
  width: min(390px, 100%);
  min-height: 590px;
  padding: 13px;
  border-radius: 42px;
  background: linear-gradient(160deg, #06111f, #172033 58%, #0a1320);
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: 0 38px 90px rgba(0,0,0,0.48), 0 0 0 8px rgba(255,255,255,0.045);
  transform: rotate(-1deg);
}
.phone-store-mockup::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 50%;
  width: 92px;
  height: 24px;
  transform: translateX(-50%);
  border-radius: 0 0 16px 16px;
  background: #06111f;
  z-index: 3;
}
.phone-topbar {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #a8b8cc;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.phone-camera {
  width: 7px;
  height: 7px;
  display: inline-block;
  border-radius: 50%;
  background: #334155;
  box-shadow: 0 0 0 3px #0f172a;
}
.phone-store-screen {
  overflow: hidden;
  min-height: 528px;
  border-radius: 32px;
  color: #0f172a;
  background:
    radial-gradient(circle at 90% 5%, rgba(24,198,230,0.20), transparent 22%),
    linear-gradient(180deg, #ffffff, #f3f7fb);
  border: 1px solid rgba(255,255,255,0.22);
}
.mobile-store-profile {
  grid-template-columns: auto 1fr;
  gap: 12px;
  margin: 14px;
  padding: 14px;
  border-radius: 24px;
}
.mobile-store-profile .store-status {
  grid-column: 1 / -1;
  justify-self: start;
  padding: 6px 10px;
}
.mobile-store-profile .store-mark {
  width: 48px;
  height: 48px;
  border-radius: 16px;
}
.mobile-store-profile h2 {
  font-size: 1.28rem;
  margin: 2px 0 0;
}
.mobile-store-profile p {
  font-size: 0.78rem;
  line-height: 1.38;
}
.phone-products {
  display: grid;
  gap: 10px;
  margin: 0 14px 14px;
}
.phone-products article {
  display: grid;
  grid-template-columns: 72px 1fr;
  align-items: center;
  gap: 12px;
  padding: 10px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid #e3ebf6;
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.07);
}
.phone-products h3 {
  color: #0f172a;
  font-size: 0.9rem;
  letter-spacing: -0.02em;
}
.phone-products p {
  margin-top: 3px;
  color: #2563eb;
  font-size: 0.88rem;
  font-weight: 900;
}
.phone-product-art {
  position: relative;
  min-height: 62px;
  overflow: hidden;
  border-radius: 16px;
  background:
    radial-gradient(circle at 76% 14%, rgba(255,255,255,0.92), transparent 21%),
    linear-gradient(135deg, #dbeafe, #ccfbf1);
}
.phone-product-art::before,
.phone-product-art::after,
.phone-product-art span {
  content: "";
  position: absolute;
  display: block;
}
.phone-product-art.dress-art::before {
  width: 40px;
  height: 52px;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
}
.phone-product-art.dress-art::after {
  width: 54px;
  top: 53px;
  left: 50%;
  transform: translateX(-50%);
}
.phone-product-art.bag-art::before {
  width: 42px;
  height: 34px;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
}
.phone-product-art.bag-art::after {
  width: 24px;
  height: 16px;
  top: 13px;
  left: 50%;
  transform: translateX(-50%);
}
.phone-product-art.shoe-art::before {
  width: 54px;
  height: 24px;
  top: 25px;
  left: 50%;
  transform: translateX(-50%);
}
.phone-product-art.shoe-art::after {
  width: 62px;
  top: 48px;
  left: 50%;
  transform: translateX(-50%);
}
.phone-actions {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 9px;
  margin: 0 14px 14px;
}
.phone-actions a,
.phone-actions button {
  min-height: 43px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 16px;
  font-size: 0.78rem;
  font-weight: 900;
}
.phone-actions a {
  color: #ffffff;
  background: #22c55e;
  box-shadow: 0 12px 24px rgba(34,197,94,0.24);
}
.phone-actions button {
  color: #0f172a;
  background: #eaf2fc;
  cursor: pointer;
}
.phone-insights {
  margin: 0 14px 14px;
  padding: 12px;
  border-radius: 22px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}
.phone-insights > div:first-child {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: #64748b;
  font-size: 0.72rem;
}
.phone-insights > div:first-child strong {
  color: #0f172a;
  font-size: 0.76rem;
}
.phone-insights p {
  margin: 10px 0;
  padding: 10px;
  border-radius: 15px;
  color: #164e63;
  background: #ecfeff;
  font-size: 0.74rem;
  line-height: 1.38;
}
.phone-metric.compact {
  padding: 9px 10px;
  border-radius: 15px;
  background: #ffffff;
}
.phone-metric.compact strong {
  font-size: 1.16rem;
}
@media (max-width: 980px) {
  .phone-showcase { min-height: auto; }
  .phone-store-mockup { transform: none; }
}
@media (max-width: 640px) {
  .hero-copy h1 { font-size: 2rem; }
  .phone-showcase { padding: 18px; }
  .phone-topbar strong { font-size: 0.62rem; }
  .phone-actions { grid-template-columns: 1fr; }
}


/* Ajustes TuVenda v6: dados dentro do celular e título principal limitado a 35px */
.hero-copy h1 {
  font-size: clamp(30px, 3.4vw, 35px) !important;
  line-height: 1.08;
  max-width: 560px;
}
.phone-showcase {
  min-height: 660px;
  padding: clamp(18px, 3vw, 36px);
}
.phone-store-mockup {
  width: min(392px, 100%);
  min-height: auto;
  padding: 12px 12px 20px;
  border-radius: 46px;
  overflow: visible;
  background: linear-gradient(160deg, #050c17, #172033 56%, #07111f);
  box-shadow:
    0 42px 95px rgba(0,0,0,0.52),
    0 0 0 8px rgba(255,255,255,0.045),
    inset 0 0 0 1px rgba(255,255,255,0.08);
}
.phone-store-mockup::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 8px;
  width: 118px;
  height: 5px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: rgba(226, 232, 240, 0.52);
}
.phone-topbar {
  padding: 0 22px;
}
.phone-url {
  max-width: calc(100% - 24px);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.phone-store-screen {
  min-height: auto;
  padding: 14px;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(15,23,42,0.04);
}
.mobile-store-profile {
  margin: 0 0 12px;
  padding: 13px;
  border: 1px solid #dbe7f3;
  background: rgba(255,255,255,0.92);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
}
.mobile-store-profile .store-tag.dark {
  color: #075985;
  background: #e0f2fe;
}
.mobile-store-profile h2 {
  font-size: 1.22rem;
}
.phone-products {
  gap: 9px;
  margin: 0 0 12px;
}
.phone-products article {
  grid-template-columns: 64px 1fr;
  gap: 10px;
  padding: 8px;
  border-radius: 18px;
}
.phone-product-art {
  min-height: 56px;
  border-radius: 15px;
}
.phone-products h3 {
  font-size: 0.86rem;
}
.phone-products p {
  font-size: 0.84rem;
}
.phone-actions {
  grid-template-columns: minmax(0, 1fr) 118px;
  margin: 0 0 12px;
}
.phone-actions a,
.phone-actions button {
  min-height: 42px;
  padding: 0 10px;
}
.phone-insights {
  margin: 0;
  padding: 11px;
  border-radius: 20px;
}
.phone-insights p {
  margin: 9px 0;
  font-size: 0.72rem;
}
.phone-metric.compact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.phone-metric.compact span {
  font-size: 0.7rem;
}
.phone-metric.compact strong {
  font-size: 1.12rem;
}
@media (max-width: 640px) {
  .hero-copy h1 { font-size: 30px !important; }
  .phone-store-mockup {
    width: min(100%, 360px);
    padding: 11px 11px 19px;
    border-radius: 42px;
  }
  .phone-store-screen {
    padding: 12px;
    border-radius: 30px;
  }
  .phone-products article {
    grid-template-columns: 56px 1fr;
  }
  .phone-actions {
    grid-template-columns: 1fr;
  }
}



/* Ajustes TuVenda v7: resumo do hero + mockup profissional de loja online */
.hero-copy h1 {
  font-size: clamp(2rem, 3.8vw, 2.1875rem);
  line-height: 1.08;
  max-width: 560px;
}
.hero-text {
  max-width: 530px;
  font-size: 1.02rem;
}
.hero-demo.store-demo {
  padding: 18px;
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255,255,255,0.14), rgba(255,255,255,0.045));
}
.store-web-mockup {
  width: min(100%, 490px);
  margin-left: auto;
  overflow: hidden;
  border-radius: 28px;
  background: #f8fafc;
  color: #0f172a;
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0 28px 68px rgba(0,0,0,0.28);
}
.browser-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: #eaf1f8;
  border-bottom: 1px solid #d7e2ee;
}
.browser-dots {
  display: flex;
  gap: 6px;
}
.browser-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cbd5e1;
}
.browser-dots span:nth-child(1) { background: #f87171; }
.browser-dots span:nth-child(2) { background: #fbbf24; }
.browser-dots span:nth-child(3) { background: #34d399; }
.browser-bar strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #475569;
  font-size: 0.8rem;
  letter-spacing: -0.01em;
}
.store-web-screen {
  padding: 18px;
  background:
    radial-gradient(circle at 100% 0%, rgba(34,199,238,0.18), transparent 25%),
    linear-gradient(180deg, #ffffff, #f7fbff);
}
.store-web-banner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 18px;
  border-radius: 24px;
  background: linear-gradient(135deg, #eaf4ff, #ffffff 70%);
  border: 1px solid #e3ebf6;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.06);
}
.store-web-badge,
.store-mark {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, #2563eb, #18c6e6);
  color: white;
  font-weight: 900;
  letter-spacing: 0.04em;
}
.store-web-banner h2 {
  font-size: 1.4rem;
  margin-top: 4px;
}
.store-web-banner p {
  margin-top: 6px;
  color: #64748b;
  font-size: 0.86rem;
}
.store-tag.dark {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 999px;
  background: #0f172a;
  color: white;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}
.store-status {
  justify-self: end;
  align-self: start;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.12);
  color: #15803d;
  font-size: 0.78rem;
  font-weight: 900;
}
.store-web-actions {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 10px;
  margin-top: 14px;
}
.store-web-actions a,
.store-web-actions button {
  min-height: 46px;
  border-radius: 14px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}
.store-web-actions a {
  color: white;
  background: #16a34a;
}
.store-web-actions button {
  background: white;
  color: #1e293b;
  border: 1px solid #dbe7f3;
  cursor: pointer;
}
.store-web-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 16px;
}
.store-web-products article {
  padding: 12px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid #e3ebf6;
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.07);
}
.store-product-art {
  position: relative;
  min-height: 96px;
  overflow: hidden;
  border-radius: 16px;
  background: linear-gradient(180deg, #e6f2ff, #ffffff 72%);
  border: 1px solid #e6edf7;
  margin-bottom: 10px;
}
.store-product-art span,
.phone-product-art span {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: block;
}
.dress-art span {
  width: 34px;
  height: 44px;
  background: linear-gradient(180deg, #f472b6, #ec4899);
  clip-path: polygon(50% 0%, 72% 18%, 82% 44%, 100% 100%, 0% 100%, 18% 44%, 28% 18%);
  border-radius: 8px;
}
.bag-art span {
  width: 40px;
  height: 30px;
  background: linear-gradient(180deg, #f59e0b, #d97706);
  border-radius: 10px 10px 12px 12px;
}
.bag-art span::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -10px;
  width: 22px;
  height: 14px;
  transform: translateX(-50%);
  border: 3px solid #b45309;
  border-bottom: 0;
  border-radius: 12px 12px 0 0;
}
.shoe-art span {
  width: 44px;
  height: 18px;
  background: linear-gradient(180deg, #60a5fa, #2563eb);
  border-radius: 12px 14px 8px 16px;
  transform: translate(-50%, -40%) skewX(-18deg);
}
.store-web-products h3 {
  font-size: 0.96rem;
  letter-spacing: -0.02em;
}
.store-web-products p {
  margin-top: 4px;
  color: #2563eb;
  font-weight: 900;
}
.store-web-insights {
  display: grid;
  grid-template-columns: 1fr 1.2fr 0.9fr;
  gap: 10px;
  margin-top: 16px;
}
.insight-card,
.insight-message {
  padding: 12px 14px;
  border-radius: 18px;
  background: #0f172a;
  color: white;
}
.insight-card {
  background: #0f172a;
}
.insight-card.success {
  background: linear-gradient(135deg, #22c55e, #16a34a);
}
.insight-card span {
  display: block;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.78);
}
.insight-card strong {
  display: block;
  margin-top: 4px;
  font-size: 1rem;
}
.insight-message {
  background: #eef6ff;
  color: #334155;
  border: 1px solid #d9e7f5;
  font-size: 0.78rem;
  line-height: 1.45;
}
@media (max-width: 980px) {
  .store-web-mockup {
    margin: 0 auto;
  }
  .store-web-products,
  .store-web-insights {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .hero-copy h1 { font-size: 30px !important; }
  .store-web-banner {
    grid-template-columns: auto 1fr;
  }
  .store-status {
    grid-column: 1 / -1;
    justify-self: start;
  }
  .store-web-actions {
    grid-template-columns: 1fr;
  }
}


/* Ajustes TuVenda v8: título fixo em 30px e mockup mais compacto */
.hero-copy h1 {
  font-size: 30px !important;
  line-height: 1.08;
  max-width: 520px;
}
.hero-text {
  max-width: 470px;
  font-size: 0.98rem;
}
.store-web-mockup {
  width: min(100%, 500px);
}
.store-web-banner {
  gap: 12px;
  padding: 16px;
}
.store-web-banner h2 {
  font-size: 1.3rem;
}
.store-web-banner p {
  font-size: 0.82rem;
}
.store-web-actions a,
.store-web-actions button {
  min-height: 44px;
  font-size: 0.9rem;
}
.store-web-products article {
  padding: 10px;
}
.store-product-art {
  min-height: 88px;
}
.store-web-products h3 {
  font-size: 0.92rem;
}
.store-web-products p {
  font-size: 0.88rem;
}
.insight-card strong {
  font-size: 0.96rem;
}
.insight-message {
  font-size: 0.76rem;
}
@media (max-width: 640px) {
  .hero-copy h1 {
    font-size: 30px !important;
  }
}


/* =========================================================
   CORREÇÃO FINAL TuVenda — topo e mockup da loja online
   Classes novas para evitar conflito com regras antigas.
   ========================================================= */

.tv-final-hero {
  padding-top: 92px !important;
}

.tv-final-hero-grid {
  display: grid !important;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr) !important;
  gap: 54px !important;
  align-items: center !important;
}

.tv-final-copy {
  max-width: 540px !important;
}

.tv-final-title {
  font-size: 30px !important;
  line-height: 1.08 !important;
  letter-spacing: -0.035em !important;
  max-width: 520px !important;
  margin: 0 !important;
}

.tv-final-text {
  margin: 18px 0 26px !important;
  max-width: 500px !important;
  color: var(--muted) !important;
  font-size: 1rem !important;
  line-height: 1.65 !important;
}

.tv-final-store-wrap {
  position: relative !important;
  padding: 18px !important;
  border: 1px solid rgba(255,255,255,0.12) !important;
  border-radius: 34px !important;
  background:
    radial-gradient(circle at 18% 12%, rgba(24,198,230,0.20), transparent 30%),
    radial-gradient(circle at 92% 80%, rgba(37,99,235,0.24), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,0.14), rgba(255,255,255,0.045)) !important;
  box-shadow: var(--shadow) !important;
}

.tv-final-store-mockup {
  overflow: hidden !important;
  width: min(100%, 540px) !important;
  margin-left: auto !important;
  border-radius: 28px !important;
  background: #f8fafc !important;
  color: #0f172a !important;
  box-shadow: 0 30px 80px rgba(0,0,0,0.35) !important;
  border: 1px solid rgba(255,255,255,0.22) !important;
}

.tv-final-browser {
  display: grid !important;
  grid-template-columns: 10px 10px 10px minmax(0, 1fr) !important;
  align-items: center !important;
  gap: 8px !important;
  padding: 14px 18px !important;
  background: #eaf1f8 !important;
  border-bottom: 1px solid #d8e4ef !important;
}

.tv-final-browser span {
  width: 10px !important;
  height: 10px !important;
  border-radius: 50% !important;
  display: block !important;
}

.tv-final-browser span:nth-child(1) { background: #ef4444 !important; }
.tv-final-browser span:nth-child(2) { background: #f59e0b !important; }
.tv-final-browser span:nth-child(3) { background: #22c55e !important; }

.tv-final-browser strong {
  margin-left: 8px !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
  color: #475569 !important;
  font-size: 0.78rem !important;
  font-weight: 800 !important;
}

.tv-final-store-head {
  display: grid !important;
  grid-template-columns: auto minmax(0, 1fr) auto !important;
  gap: 14px !important;
  align-items: start !important;
  margin: 18px !important;
  padding: 18px !important;
  border-radius: 24px !important;
  background:
    linear-gradient(135deg, rgba(37,99,235,0.10), rgba(24,198,230,0.08)),
    #ffffff !important;
  border: 1px solid #e3ebf6 !important;
  box-shadow: 0 16px 34px rgba(15,23,42,0.07) !important;
}

.tv-final-logo {
  width: 54px !important;
  height: 54px !important;
  display: grid !important;
  place-items: center !important;
  border-radius: 18px !important;
  background: linear-gradient(135deg, #2563eb, #18c6e6) !important;
  color: #fff !important;
  font-weight: 900 !important;
  letter-spacing: 0.04em !important;
}

.tv-final-store-head small {
  display: inline-flex !important;
  margin-bottom: 6px !important;
  padding: 5px 9px !important;
  border-radius: 999px !important;
  background: #e0f2fe !important;
  color: #075985 !important;
  font-size: 0.72rem !important;
  font-weight: 900 !important;
}

.tv-final-store-head h2 {
  margin: 0 !important;
  color: #0f172a !important;
  font-size: 1.42rem !important;
  line-height: 1.05 !important;
  letter-spacing: -0.035em !important;
}

.tv-final-store-head p {
  margin: 6px 0 0 !important;
  color: #64748b !important;
  font-size: 0.86rem !important;
  line-height: 1.38 !important;
}

.tv-final-store-head em {
  justify-self: end !important;
  padding: 7px 10px !important;
  border-radius: 999px !important;
  background: #dcfce7 !important;
  color: #047857 !important;
  font-style: normal !important;
  font-size: 0.74rem !important;
  font-weight: 900 !important;
}

.tv-final-actions {
  display: grid !important;
  grid-template-columns: 1fr 0.72fr !important;
  gap: 10px !important;
  margin: 0 18px 16px !important;
}

.tv-final-actions a,
.tv-final-actions button {
  min-height: 46px !important;
  display: grid !important;
  place-items: center !important;
  border-radius: 15px !important;
  border: 0 !important;
  font-size: 0.9rem !important;
  font-weight: 900 !important;
}

.tv-final-actions a {
  color: #ffffff !important;
  background: #22c55e !important;
  box-shadow: 0 14px 30px rgba(34,197,94,0.22) !important;
}

.tv-final-actions button {
  color: #0f172a !important;
  background: #eaf2fc !important;
  border: 1px solid #dbe7f3 !important;
  cursor: pointer !important;
}

.tv-final-products {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 12px !important;
  margin: 0 18px 16px !important;
}

.tv-final-products article {
  padding: 12px !important;
  border-radius: 20px !important;
  background: #ffffff !important;
  border: 1px solid #e3ebf6 !important;
  box-shadow: 0 14px 28px rgba(15,23,42,0.07) !important;
}

.tv-final-art {
  position: relative !important;
  height: 88px !important;
  margin-bottom: 10px !important;
  overflow: hidden !important;
  border-radius: 16px !important;
  background:
    radial-gradient(circle at 76% 16%, rgba(255,255,255,0.94), transparent 23%),
    linear-gradient(135deg, #dbeafe, #ccfbf1) !important;
}

.tv-final-art::before,
.tv-final-art::after {
  content: "" !important;
  position: absolute !important;
  display: block !important;
}

.tv-dress::before {
  width: 42px !important;
  height: 58px !important;
  left: 50% !important;
  top: 18px !important;
  transform: translateX(-50%) !important;
  border-radius: 28px 28px 12px 12px !important;
  background: linear-gradient(180deg, #2563eb, #18c6e6) !important;
  clip-path: polygon(35% 0, 65% 0, 78% 34%, 96% 100%, 4% 100%, 22% 34%) !important;
}

.tv-dress::after {
  width: 66px !important;
  height: 8px !important;
  left: 50% !important;
  top: 72px !important;
  transform: translateX(-50%) !important;
  border-radius: 999px !important;
  background: rgba(15,23,42,0.12) !important;
}

.tv-bag::before {
  width: 48px !important;
  height: 38px !important;
  left: 50% !important;
  top: 32px !important;
  transform: translateX(-50%) !important;
  border-radius: 13px 13px 16px 16px !important;
  background: linear-gradient(135deg, #14b8a6, #18c6e6) !important;
}

.tv-bag::after {
  width: 28px !important;
  height: 18px !important;
  left: 50% !important;
  top: 22px !important;
  transform: translateX(-50%) !important;
  border: 4px solid #14b8a6 !important;
  border-bottom: 0 !important;
  border-radius: 18px 18px 0 0 !important;
}

.tv-shoe::before {
  width: 62px !important;
  height: 24px !important;
  left: 50% !important;
  top: 42px !important;
  transform: translateX(-50%) skewX(-14deg) !important;
  border-radius: 28px 36px 12px 16px !important;
  background: linear-gradient(135deg, #1e293b, #2563eb) !important;
}

.tv-shoe::after {
  width: 74px !important;
  height: 7px !important;
  left: 50% !important;
  top: 66px !important;
  transform: translateX(-50%) !important;
  border-radius: 999px !important;
  background: #cbd5e1 !important;
}

.tv-final-products h3 {
  margin: 0 !important;
  color: #0f172a !important;
  font-size: 0.94rem !important;
  letter-spacing: -0.02em !important;
}

.tv-final-products p {
  margin: 4px 0 0 !important;
  color: #2563eb !important;
  font-size: 0.9rem !important;
  font-weight: 900 !important;
}

.tv-final-results {
  display: grid !important;
  grid-template-columns: 0.9fr 1.25fr 0.9fr !important;
  gap: 10px !important;
  margin: 0 18px 18px !important;
}

.tv-final-results div,
.tv-final-results p {
  min-height: 78px !important;
  margin: 0 !important;
  padding: 12px 14px !important;
  border-radius: 18px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
}

.tv-final-results div {
  background: #0f172a !important;
  color: white !important;
}

.tv-final-results span {
  color: rgba(255,255,255,0.75) !important;
  font-size: 0.72rem !important;
  line-height: 1.2 !important;
}

.tv-final-results strong {
  margin-top: 5px !important;
  color: white !important;
  font-size: 0.96rem !important;
  line-height: 1.15 !important;
}

.tv-final-results p {
  background: #ecfeff !important;
  color: #164e63 !important;
  border: 1px solid #d6f4fb !important;
  font-size: 0.76rem !important;
  line-height: 1.38 !important;
}

.tv-final-up {
  color: #86efac !important;
  font-size: 1.22rem !important;
}

@media (max-width: 980px) {
  .tv-final-hero-grid {
    grid-template-columns: 1fr !important;
  }

  .tv-final-store-mockup {
    margin: 0 auto !important;
  }
}

@media (max-width: 640px) {
  .tv-final-title {
    font-size: 30px !important;
  }

  .tv-final-store-wrap {
    padding: 12px !important;
    border-radius: 26px !important;
  }

  .tv-final-store-head,
  .tv-final-actions,
  .tv-final-products,
  .tv-final-results {
    margin-left: 12px !important;
    margin-right: 12px !important;
  }

  .tv-final-store-head {
    grid-template-columns: auto 1fr !important;
  }

  .tv-final-store-head em {
    grid-column: 1 / -1 !important;
    justify-self: start !important;
  }

  .tv-final-actions,
  .tv-final-products,
  .tv-final-results {
    grid-template-columns: 1fr !important;
  }
}



/* =========================================================
   TuVenda v9 — logo carrinho/T, iPhone mockup, login modal e painel cliente
   ========================================================= */

.brand {
  min-width: 190px !important;
}

.brand-logo {
  width: 205px !important;
  height: auto !important;
}

.nav-login {
  border: 1px solid rgba(24, 198, 230, 0.38) !important;
  background: rgba(24, 198, 230, 0.08) !important;
  color: #e7f9ff !important;
  cursor: pointer !important;
  font-weight: 900 !important;
}

.tv9-hero {
  padding-top: 92px !important;
}

.tv9-hero-grid {
  display: grid !important;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr) !important;
  gap: 58px !important;
  align-items: center !important;
}

.tv9-copy {
  max-width: 620px !important;
}

.tv9-title {
  margin: 0 !important;
  max-width: 640px !important;
  font-size: clamp(40px, 5.1vw, 62px) !important;
  line-height: 0.98 !important;
  letter-spacing: -0.065em !important;
}

.tv9-text {
  max-width: 540px !important;
  margin: 24px 0 30px !important;
  color: var(--muted) !important;
  font-size: 1.08rem !important;
  line-height: 1.65 !important;
}

.tv9-iphone-stage {
  position: relative !important;
  display: grid !important;
  place-items: center !important;
  min-height: 690px !important;
  padding: 34px !important;
  isolation: isolate !important;
}

.tv9-iphone-stage::before,
.tv9-iphone-stage::after {
  content: "" !important;
  position: absolute !important;
  border-radius: 999px !important;
  filter: blur(24px) !important;
  z-index: -1 !important;
}

.tv9-iphone-stage::before {
  width: 260px !important;
  height: 260px !important;
  top: 38px !important;
  right: 56px !important;
  background: rgba(24, 198, 230, 0.18) !important;
}

.tv9-iphone-stage::after {
  width: 230px !important;
  height: 230px !important;
  bottom: 42px !important;
  left: 30px !important;
  background: rgba(37, 99, 235, 0.22) !important;
}

.tv9-iphone {
  position: relative !important;
  width: min(100%, 392px) !important;
  min-height: 650px !important;
  padding: 18px 15px 24px !important;
  border-radius: 54px !important;
  background:
    linear-gradient(145deg, #030712, #111827 52%, #020617) !important;
  border: 1px solid rgba(255,255,255,0.22) !important;
  box-shadow:
    0 44px 100px rgba(0,0,0,0.56),
    inset 0 0 0 2px rgba(255,255,255,0.05),
    0 0 0 8px rgba(255,255,255,0.045) !important;
}

.tv9-iphone::before {
  content: "" !important;
  position: absolute !important;
  inset: 12px !important;
  border-radius: 43px !important;
  pointer-events: none !important;
  border: 1px solid rgba(255,255,255,0.06) !important;
}

.tv9-dynamic-island {
  position: absolute !important;
  top: 22px !important;
  left: 50% !important;
  width: 118px !important;
  height: 33px !important;
  transform: translateX(-50%) !important;
  border-radius: 999px !important;
  background: #020617 !important;
  z-index: 5 !important;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04) !important;
}

.tv9-statusbar {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  height: 46px !important;
  padding: 0 20px !important;
  color: #e5edf7 !important;
  font-size: 0.76rem !important;
  font-weight: 800 !important;
}

.tv9-statusbar strong {
  font-size: 0.68rem !important;
  color: #cbd5e1 !important;
}

.tv9-phone-url {
  margin: 4px 8px 12px !important;
  padding: 10px 12px !important;
  overflow: hidden !important;
  border-radius: 999px !important;
  background: rgba(255,255,255,0.09) !important;
  color: #cbd5e1 !important;
  text-align: center !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
  font-size: 0.7rem !important;
  font-weight: 800 !important;
}

.tv9-store-card {
  overflow: hidden !important;
  padding: 13px !important;
  border-radius: 34px !important;
  background:
    radial-gradient(circle at 92% 4%, rgba(24,198,230,0.20), transparent 24%),
    linear-gradient(180deg, #ffffff, #f4f8fd) !important;
  color: #0f172a !important;
  min-height: 556px !important;
}

.tv9-store-profile {
  display: grid !important;
  grid-template-columns: auto 1fr !important;
  gap: 11px !important;
  align-items: start !important;
  padding: 13px !important;
  border-radius: 24px !important;
  background: #ffffff !important;
  border: 1px solid #e3ebf6 !important;
  box-shadow: 0 12px 30px rgba(15,23,42,0.08) !important;
}

.tv9-store-avatar {
  width: 50px !important;
  height: 50px !important;
  display: grid !important;
  place-items: center !important;
  border-radius: 18px !important;
  background: linear-gradient(135deg, #2563eb, #18c6e6) !important;
  color: #fff !important;
  font-weight: 900 !important;
  letter-spacing: 0.04em !important;
}

.tv9-store-profile small {
  display: inline-flex !important;
  margin-bottom: 4px !important;
  padding: 4px 8px !important;
  border-radius: 999px !important;
  background: #e0f2fe !important;
  color: #075985 !important;
  font-size: 0.68rem !important;
  font-weight: 900 !important;
}

.tv9-store-profile h2 {
  margin: 0 !important;
  color: #0f172a !important;
  font-size: 1.24rem !important;
  line-height: 1.04 !important;
}

.tv9-store-profile p {
  margin: 5px 0 0 !important;
  color: #64748b !important;
  font-size: 0.76rem !important;
  line-height: 1.35 !important;
}

.tv9-store-profile em {
  grid-column: 1 / -1 !important;
  justify-self: start !important;
  padding: 6px 9px !important;
  border-radius: 999px !important;
  background: #dcfce7 !important;
  color: #047857 !important;
  font-size: 0.7rem !important;
  font-style: normal !important;
  font-weight: 900 !important;
}

.tv9-phone-actions {
  display: grid !important;
  grid-template-columns: 1fr 0.75fr !important;
  gap: 8px !important;
  margin: 11px 0 !important;
}

.tv9-phone-actions a,
.tv9-phone-actions button {
  min-height: 42px !important;
  display: grid !important;
  place-items: center !important;
  border: 0 !important;
  border-radius: 15px !important;
  font-size: 0.76rem !important;
  font-weight: 900 !important;
}

.tv9-phone-actions a {
  color: #fff !important;
  background: #22c55e !important;
  box-shadow: 0 12px 24px rgba(34,197,94,0.24) !important;
}

.tv9-phone-actions button {
  color: #0f172a !important;
  background: #eaf2fc !important;
  cursor: pointer !important;
}

.tv9-products {
  display: grid !important;
  gap: 9px !important;
}

.tv9-products article {
  display: grid !important;
  grid-template-columns: 62px 1fr !important;
  gap: 10px !important;
  align-items: center !important;
  padding: 8px !important;
  border-radius: 18px !important;
  background: #ffffff !important;
  border: 1px solid #e3ebf6 !important;
  box-shadow: 0 10px 24px rgba(15,23,42,0.06) !important;
}

.tv9-product-art {
  position: relative !important;
  display: block !important;
  width: 62px !important;
  height: 56px !important;
  overflow: hidden !important;
  border-radius: 15px !important;
  background:
    radial-gradient(circle at 76% 14%, rgba(255,255,255,0.9), transparent 22%),
    linear-gradient(135deg, #dbeafe, #ccfbf1) !important;
}

.tv9-product-art::before,
.tv9-product-art::after {
  content: "" !important;
  position: absolute !important;
}

.tv9-dress::before {
  width: 32px !important;
  height: 42px !important;
  left: 50% !important;
  top: 8px !important;
  transform: translateX(-50%) !important;
  border-radius: 18px 18px 8px 8px !important;
  background: linear-gradient(180deg, #2563eb, #18c6e6) !important;
  clip-path: polygon(35% 0, 65% 0, 80% 34%, 96% 100%, 4% 100%, 20% 34%) !important;
}

.tv9-dress::after {
  width: 44px !important;
  height: 6px !important;
  left: 50% !important;
  bottom: 7px !important;
  transform: translateX(-50%) !important;
  border-radius: 999px !important;
  background: rgba(15,23,42,0.12) !important;
}

.tv9-bag::before {
  width: 38px !important;
  height: 30px !important;
  left: 50% !important;
  top: 19px !important;
  transform: translateX(-50%) !important;
  border-radius: 11px 11px 14px 14px !important;
  background: linear-gradient(135deg, #14b8a6, #18c6e6) !important;
}

.tv9-bag::after {
  width: 22px !important;
  height: 14px !important;
  left: 50% !important;
  top: 12px !important;
  transform: translateX(-50%) !important;
  border: 3px solid #14b8a6 !important;
  border-bottom: 0 !important;
  border-radius: 16px 16px 0 0 !important;
}

.tv9-shoe::before {
  width: 46px !important;
  height: 18px !important;
  left: 50% !important;
  top: 26px !important;
  transform: translateX(-50%) skewX(-14deg) !important;
  border-radius: 20px 28px 10px 13px !important;
  background: linear-gradient(135deg, #1e293b, #2563eb) !important;
}

.tv9-shoe::after {
  width: 52px !important;
  height: 5px !important;
  left: 50% !important;
  top: 43px !important;
  transform: translateX(-50%) !important;
  border-radius: 999px !important;
  background: #cbd5e1 !important;
}

.tv9-products h3 {
  margin: 0 !important;
  color: #0f172a !important;
  font-size: 0.86rem !important;
  letter-spacing: -0.02em !important;
}

.tv9-products p {
  margin: 2px 0 0 !important;
  color: #2563eb !important;
  font-size: 0.82rem !important;
  font-weight: 900 !important;
}

.tv9-insights {
  margin-top: 10px !important;
  padding: 11px !important;
  border-radius: 22px !important;
  background: #f8fafc !important;
  border: 1px solid #e2e8f0 !important;
}

.tv9-insight-top,
.tv9-metric {
  display: flex !important;
  justify-content: space-between !important;
  gap: 10px !important;
  align-items: center !important;
}

.tv9-insight-top span,
.tv9-metric span {
  color: #64748b !important;
  font-size: 0.7rem !important;
  font-weight: 800 !important;
}

.tv9-insight-top strong {
  color: #0f172a !important;
  font-size: 0.75rem !important;
}

.tv9-insights p {
  margin: 9px 0 !important;
  padding: 10px !important;
  border-radius: 15px !important;
  background: #ecfeff !important;
  color: #164e63 !important;
  font-size: 0.72rem !important;
  line-height: 1.38 !important;
}

.tv9-metric {
  padding: 9px 10px !important;
  border-radius: 15px !important;
  background: #ffffff !important;
}

.tv9-metric strong {
  color: #16a34a !important;
  font-size: 1.12rem !important;
  line-height: 1 !important;
}

.tv9-floating-chip {
  position: absolute !important;
  right: 10px !important;
  bottom: 72px !important;
  max-width: 230px !important;
  padding: 15px 16px !important;
  border-radius: 20px !important;
  background: rgba(7,17,31,0.94) !important;
  border: 1px solid rgba(255,255,255,0.14) !important;
  box-shadow: 0 20px 58px rgba(0,0,0,0.32) !important;
}

.tv9-floating-chip strong {
  display: block !important;
  color: #e7fbff !important;
  font-size: 0.86rem !important;
}

.tv9-floating-chip span {
  display: block !important;
  margin-top: 4px !important;
  color: var(--muted) !important;
  font-size: 0.78rem !important;
}

/* Login modal */
body.modal-open {
  overflow: hidden !important;
}

.tv9-login-modal {
  position: fixed !important;
  inset: 0 !important;
  z-index: 999 !important;
  display: none !important;
  place-items: center !important;
  padding: 24px !important;
}

.tv9-login-modal.open {
  display: grid !important;
}

.tv9-login-backdrop {
  position: absolute !important;
  inset: 0 !important;
  background: rgba(2, 6, 23, 0.78) !important;
  backdrop-filter: blur(14px) !important;
}

.tv9-login-dialog {
  position: relative !important;
  z-index: 1 !important;
  width: min(100%, 450px) !important;
  padding: 28px !important;
  border-radius: 30px !important;
  background: rgba(19, 35, 58, 0.98) !important;
  border: 1px solid rgba(255,255,255,0.14) !important;
  box-shadow: 0 34px 100px rgba(0,0,0,0.48) !important;
}

.tv9-login-close {
  position: absolute !important;
  top: 16px !important;
  right: 16px !important;
  width: 38px !important;
  height: 38px !important;
  border: 1px solid rgba(255,255,255,0.14) !important;
  border-radius: 50% !important;
  color: #fff !important;
  background: rgba(255,255,255,0.07) !important;
  cursor: pointer !important;
  font-size: 1.6rem !important;
  line-height: 1 !important;
}

.tv9-login-head {
  text-align: center !important;
  margin-bottom: 20px !important;
}

.tv9-login-head img {
  width: 190px !important;
  margin: 0 auto 16px !important;
}

.tv9-login-head span {
  display: inline-flex !important;
  margin-bottom: 10px !important;
  padding: 6px 10px !important;
  border-radius: 999px !important;
  color: #c8f7ff !important;
  background: rgba(24,198,230,0.1) !important;
  border: 1px solid rgba(24,198,230,0.22) !important;
  font-size: 0.76rem !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
}

.tv9-login-head h2 {
  margin: 0 !important;
  font-size: 1.9rem !important;
}

.tv9-login-head p,
.tv9-demo-access {
  color: var(--muted) !important;
}

.tv9-modal-form {
  display: grid !important;
  gap: 15px !important;
}

.tv9-demo-access {
  display: block !important;
  margin-top: 14px !important;
  text-align: center !important;
  font-size: 0.78rem !important;
}

/* Cliente */
.client-body {
  min-height: 100vh !important;
}

.client-main {
  padding: 72px 0 92px !important;
}

.client-hero {
  display: grid !important;
  grid-template-columns: 1fr 360px !important;
  gap: 28px !important;
  align-items: stretch !important;
}

.client-hero h1 {
  font-size: clamp(2.4rem, 5vw, 4.5rem) !important;
  max-width: 760px !important;
}

.client-hero p {
  max-width: 680px !important;
  color: var(--muted) !important;
  font-size: 1.08rem !important;
}

.client-summary-card,
.client-card,
.client-panel {
  border: 1px solid var(--line) !important;
  border-radius: var(--radius-xl) !important;
  background: var(--surface) !important;
  box-shadow: var(--shadow) !important;
}

.client-summary-card {
  padding: 26px !important;
}

.client-summary-card span,
.client-card span,
.client-panel-head span {
  color: #8eeaff !important;
  font-weight: 900 !important;
  font-size: 0.82rem !important;
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
}

.client-summary-card strong {
  display: block !important;
  margin-top: 10px !important;
  font-size: 1.4rem !important;
}

.client-summary-card p {
  margin-top: 6px !important;
  color: var(--muted) !important;
  font-size: 0.94rem !important;
}

.client-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 18px !important;
  margin-top: 28px !important;
}

.client-card {
  padding: 24px !important;
}

.client-card strong {
  display: block !important;
  margin: 12px 0 8px !important;
  font-size: 2.4rem !important;
  line-height: 1 !important;
}

.client-card p,
.client-panel p {
  color: var(--muted) !important;
}

.client-panel {
  margin-top: 28px !important;
  padding: 28px !important;
}

.client-panel-head {
  display: flex !important;
  justify-content: space-between !important;
  gap: 18px !important;
  align-items: center !important;
  margin-bottom: 14px !important;
}

.client-panel h2 {
  font-size: 1.8rem !important;
}

.client-actions {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 12px !important;
  margin-top: 20px !important;
}

.client-actions button {
  min-height: 44px !important;
  padding: 0 16px !important;
  border-radius: 999px !important;
  border: 0 !important;
  color: white !important;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary)) !important;
  font-weight: 900 !important;
  cursor: pointer !important;
}

@media (max-width: 980px) {
  .brand-logo {
    width: 176px !important;
  }

  .tv9-hero-grid,
  .client-hero {
    grid-template-columns: 1fr !important;
  }

  .tv9-iphone-stage {
    min-height: auto !important;
    padding: 18px !important;
  }

  .tv9-floating-chip {
    position: static !important;
    margin-top: 16px !important;
  }

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

@media (max-width: 640px) {
  .tv9-title {
    font-size: clamp(36px, 11vw, 46px) !important;
  }

  .tv9-iphone {
    width: min(100%, 360px) !important;
    border-radius: 46px !important;
    padding: 15px 12px 20px !important;
  }

  .tv9-store-card {
    border-radius: 30px !important;
    padding: 11px !important;
  }

  .tv9-phone-actions {
    grid-template-columns: 1fr !important;
  }

  .tv9-login-dialog {
    padding: 24px !important;
  }

  .client-main {
    padding-top: 52px !important;
  }
}



/* =========================================================
   TuVenda v10 — títulos principais das seções com 30px
   Aplica apenas às seções: Problema, Solução, Funcionalidades,
   Como funciona, Modelo de negócio, Validação e Quero testar.
   ========================================================= */

.problem-section h2,
#solucao .solution-copy h2,
#funcionalidades .section-heading h2,
.how-section .section-heading h2,
#planos .section-heading h2,
#validacao h2,
#contato h2 {
  font-size: 30px !important;
  line-height: 1.12 !important;
  letter-spacing: -0.035em !important;
  max-width: 760px !important;
}

/* Mantém o título principal do topo maior e sem interferência */
.tv9-title {
  font-size: clamp(40px, 5.1vw, 62px) !important;
}

/* Ajuste mobile: manter os títulos principais solicitados em 30px */
@media (max-width: 640px) {
  .problem-section h2,
  #solucao .solution-copy h2,
  #funcionalidades .section-heading h2,
  .how-section .section-heading h2,
  #planos .section-heading h2,
  #validacao h2,
  #contato h2 {
    font-size: 30px !important;
    line-height: 1.12 !important;
  }
}



/* =========================================================
   TuVenda v11 — símbolo TUV e títulos principais em 36px
   ========================================================= */

.brand-logo {
  width: 205px !important;
  height: auto !important;
}

/* Títulos principais das seções entre Problema e Quero testar */
.problem-section h2,
#solucao .solution-copy h2,
#funcionalidades .section-heading h2,
.how-section .section-heading h2,
#planos .section-heading h2,
#validacao h2,
#contato h2 {
  font-size: 36px !important;
  line-height: 1.10 !important;
  letter-spacing: -0.045em !important;
  max-width: 840px !important;
}

/* Mantém o título do topo maior para destaque */
.tv9-title {
  font-size: clamp(40px, 5.1vw, 62px) !important;
}

@media (max-width: 640px) {
  .problem-section h2,
  #solucao .solution-copy h2,
  #funcionalidades .section-heading h2,
  .how-section .section-heading h2,
  #planos .section-heading h2,
  #validacao h2,
  #contato h2 {
    font-size: 36px !important;
    line-height: 1.10 !important;
  }

  .brand-logo {
    width: 176px !important;
  }
}



/* =========================================================
   TuVenda v12 — logotipo e favicon com símbolo TUV
   ========================================================= */

.brand-logo {
  width: 205px !important;
  height: auto !important;
}

/* Mantém os títulos principais das seções em 36px */
.problem-section h2,
#solucao .solution-copy h2,
#funcionalidades .section-heading h2,
.how-section .section-heading h2,
#planos .section-heading h2,
#validacao h2,
#contato h2 {
  font-size: 36px !important;
  line-height: 1.10 !important;
  letter-spacing: -0.045em !important;
  max-width: 840px !important;
}

@media (max-width: 640px) {
  .brand-logo {
    width: 176px !important;
  }

  .problem-section h2,
  #solucao .solution-copy h2,
  #funcionalidades .section-heading h2,
  .how-section .section-heading h2,
  #planos .section-heading h2,
  #validacao h2,
  #contato h2 {
    font-size: 36px !important;
    line-height: 1.10 !important;
  }
}



/* =========================================================
   TuVenda v13 — slogan do logotipo atualizado para "Vitrine Digital"
   ========================================================= */

.brand-logo {
  width: 205px !important;
  height: auto !important;
}

@media (max-width: 640px) {
  .brand-logo {
    width: 176px !important;
  }
}



/* =========================================================
   TuVenda v14 — slogan "Vitrine Digital" proporcional e centralizado no logotipo
   ========================================================= */

.brand {
  min-width: 220px !important;
}

.brand-logo {
  width: 225px !important;
  height: auto !important;
}

@media (max-width: 980px) {
  .brand-logo {
    width: 198px !important;
  }
}

@media (max-width: 640px) {
  .brand {
    min-width: 184px !important;
  }

  .brand-logo {
    width: 184px !important;
  }
}
