:root {
  --bg: #05060b;
  --panel: #0d111c;
  --muted: #a8b0c2;
  --text: #f8fafc;
  --accent: #7c3aed;
  --accent2: #1fb6ff;
  --green: #22c55e;
  --orange: #f97316;
  --border: rgba(255,255,255,.12);
  --shadow: 0 24px 80px rgba(0,0,0,.45);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px),
    radial-gradient(circle at 12% 8%, rgba(124,58,237,.22), transparent 30%),
    radial-gradient(circle at 80% 18%, rgba(31,182,255,.15), transparent 28%),
    var(--bg);
  background-size: 64px 64px, 64px 64px, auto, auto, auto;
  color: var(--text);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.site-header {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(16px);
}
.brand {
  display: inline-flex;
  min-width: 112px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.035));
  box-shadow: 0 18px 60px rgba(0,0,0,.28);
  overflow: hidden;
}
.brand img { height: 34px; width: auto; object-fit: contain; }
.site-header nav { display: flex; gap: 24px; color: var(--muted); font-size: 14px; font-weight: 700; }
.site-header nav a:hover { color: var(--text); }
.hero-section {
  width: min(1180px, calc(100% - 32px));
  margin: 56px auto 96px;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 42px;
  align-items: center;
}
.tag {
  display: inline-flex;
  border: 1px solid rgba(124,58,237,.42);
  color: #e7d9ff;
  background: rgba(124,58,237,.14);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 850;
  margin-bottom: 16px;
}
.tag.small { padding: 5px 9px; font-size: 12px; margin: 0 0 10px; }
h1, h2, h3, p { margin-top: 0; }
.hero-copy h1 {
  font-size: clamp(44px, 6vw, 82px);
  line-height: .92;
  letter-spacing: -.075em;
  margin-bottom: 24px;
}
.hero-copy p, .section-heading p, .checklist-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 30px; }
.btn-public {
  min-height: 50px;
  padding: 0 23px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.btn-public:hover { transform: translateY(-2px); }
.btn-public.primary { background: linear-gradient(135deg, #7c3aed, #1fb6ff); color: white; box-shadow: 0 18px 44px rgba(124,58,237,.25); }
.btn-public.secondary { border: 1px solid var(--border); color: var(--text); background: rgba(255,255,255,.06); }
.hero-card {
  min-height: 470px;
  border: 1px solid var(--border);
  border-radius: 38px;
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  box-shadow: var(--shadow);
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  position: relative;
}
.hero-card::after, .public-card::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, rgba(255,255,255,.1), transparent 35%, transparent 70%, rgba(255,255,255,.05));
  opacity: .55;
}
.hero-card img:not(.hero-logo) { width: 100%; height: 100%; object-fit: cover; border-radius: 24px; }
.orb { position: absolute; border-radius: 999px; filter: blur(12px); opacity: .85; animation: floatOrb 8s ease-in-out infinite; }
.orb-a { width: 280px; height: 280px; background: radial-gradient(circle, rgba(124,58,237,.75), transparent 70%); top: -10px; right: -40px; }
.orb-b { width: 260px; height: 260px; background: radial-gradient(circle, rgba(31,182,255,.5), transparent 70%); bottom: 40px; left: -80px; animation-delay: -3s; }
.hero-logo { width: min(330px, 90%); margin: 0 auto 28px; position: relative; z-index: 1; filter: drop-shadow(0 28px 50px rgba(0,0,0,.45)); }
.hero-card h2 { position: relative; z-index: 1; font-size: 34px; letter-spacing: -.05em; }
.hero-card p { position: relative; z-index: 1; color: var(--muted); line-height: 1.6; }
@keyframes floatOrb { 0%,100%{ transform: translate3d(0,0,0) scale(1);} 50%{ transform: translate3d(12px,-14px,0) scale(1.08);} }
.section { width: min(1180px, calc(100% - 32px)); margin: 0 auto 96px; }
.section-heading { max-width: 820px; }
.section-heading.compact { display: flex; flex-direction: column; align-items: flex-start; margin-bottom: 28px; }
.section-heading h2, .checklist-section h2 { font-size: clamp(34px, 4.5vw, 58px); letter-spacing: -.06em; margin-bottom: 16px; }
.about-band {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 28px;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 34px;
  padding: 34px;
  background: linear-gradient(180deg, rgba(255,255,255,.065), rgba(255,255,255,.03));
}
.about-metrics { display: grid; gap: 12px; }
.about-metrics article { border: 1px solid var(--border); background: rgba(255,255,255,.045); border-radius: 22px; padding: 18px; }
.about-metrics strong, .about-metrics span { display: block; }
.about-metrics strong { font-size: 18px; margin-bottom: 5px; }
.about-metrics span { color: var(--muted); line-height: 1.5; }
.grid { display: grid; gap: 18px; }
.cards-3 { grid-template-columns: repeat(3, 1fr); }
.public-card, .testimonial-card {
  border: 1px solid var(--border);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.035));
  padding: 26px;
  min-height: 220px;
  position: relative;
  overflow: hidden;
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
}
.public-card:hover { transform: translateY(-5px); border-color: rgba(124,58,237,.45); box-shadow: 0 22px 60px rgba(0,0,0,.25); }
.service-card:nth-child(4n+1) .card-icon { color: #ff4b55; background: rgba(255,75,85,.13); border-color: rgba(255,75,85,.28); }
.service-card:nth-child(4n+2) .card-icon { color: #1fb6ff; background: rgba(31,182,255,.13); border-color: rgba(31,182,255,.28); }
.service-card:nth-child(4n+3) .card-icon { color: #22c55e; background: rgba(34,197,94,.13); border-color: rgba(34,197,94,.28); }
.service-card:nth-child(4n+4) .card-icon { color: #f97316; background: rgba(249,115,22,.13); border-color: rgba(249,115,22,.28); }
.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 15px;
  border: 1px solid rgba(124,58,237,.28);
  background: rgba(124,58,237,.16);
  color: #e7d9ff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 950;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}
.public-card h3 { font-size: 22px; letter-spacing: -.035em; position: relative; z-index: 1; }
.public-card p, .testimonial-card p { color: var(--muted); line-height: 1.65; position: relative; z-index: 1; }
.portfolio-card img, .portfolio-placeholder { height: 170px; width: 100%; border-radius: 20px; object-fit: cover; margin-bottom: 18px; }
.portfolio-placeholder { display: grid; place-items: center; color: #e7d9ff; background: linear-gradient(135deg, rgba(124,58,237,.32), rgba(31,182,255,.18)); font-weight: 900; }
.portfolio-card strong { color: #e9ddff; }
.client-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.client-chip {
  padding: 15px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: rgba(255,255,255,.055);
  display: flex;
  gap: 12px;
  align-items: center;
  transition: transform .2s ease, border-color .2s ease;
}
.client-chip:hover { transform: translateY(-3px); border-color: rgba(31,182,255,.35); }
.client-chip span {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  overflow: hidden;
  background: linear-gradient(135deg, #7c3aed, #1fb6ff);
  display: grid;
  place-items: center;
  font-weight: 950;
}
.client-chip img { width: 100%; height: 100%; object-fit: cover; }
.checklist-section {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 28px;
  align-items: center;
  border: 1px solid rgba(124,58,237,.32);
  background:
    radial-gradient(circle at top right, rgba(249,115,22,.16), transparent 28%),
    radial-gradient(circle at bottom left, rgba(124,58,237,.24), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.035));
  border-radius: 38px;
  padding: 42px;
}
.checklist-copy { max-width: 500px; }
.checklist-card {
  border: 1px solid var(--border);
  border-radius: 28px;
  background: rgba(3,6,14,.64);
  padding: 26px;
  box-shadow: var(--shadow);
}
.checklist-head { display: flex; gap: 12px; align-items: center; margin-bottom: 20px; }
.checklist-head > span { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 16px; background: rgba(249,115,22,.18); color: #f97316; border: 1px solid rgba(249,115,22,.28); font-weight: 950; }
.checklist-head strong, .checklist-head small { display: block; }
.checklist-head small { color: var(--muted); margin-top: 3px; }
.checklist-card ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.checklist-card li { display: flex; gap: 11px; align-items: flex-start; color: #d9e2f2; line-height: 1.35; }
.checklist-card li span { flex: 0 0 auto; width: 20px; height: 20px; border-radius: 999px; display: grid; place-items: center; color: #f97316; border: 1px solid rgba(249,115,22,.4); font-size: 12px; font-weight: 900; }
.site-footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0;
  border-top: 1px solid var(--border);
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.site-footer img { height: 36px; width: auto; }
.site-footer strong { color: var(--text); }
.link-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at top, color-mix(in srgb, var(--accent) 24%, transparent), transparent 32%),
    var(--bg);
  color: var(--text);
  display: grid;
  place-items: center;
  padding: 28px 16px;
  position: relative;
  overflow: hidden;
}
.link-page::before, .link-page::after {
  content: '';
  position: fixed;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent) 35%, transparent);
  filter: blur(24px);
  opacity: .45;
  animation: floatOrb 8s ease-in-out infinite;
  pointer-events: none;
}
.link-page::before { top: -70px; right: -40px; }
.link-page::after { bottom: -100px; left: -70px; animation-delay: -3s; }
.phone-page {
  width: min(430px, 100%);
  min-height: calc(100vh - 56px);
  border-radius: 34px;
  padding: 46px 18px 28px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.client-header { display: flex; flex-direction: column; align-items: center; }
.client-avatar {
  width: 92px;
  height: 92px;
  border-radius: 999px;
  background: rgba(255,255,255,.09);
  display: grid;
  place-items: center;
  overflow: hidden;
  margin-bottom: 18px;
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 20px 60px rgba(0,0,0,.18);
}
.client-avatar img { width: 100%; height: 100%; object-fit: cover; }
.client-avatar span { font-size: 34px; font-weight: 950; }
.client-header h1 { font-size: 24px; margin-bottom: 8px; }
.client-header p { color: color-mix(in srgb, var(--text) 78%, transparent); line-height: 1.5; margin-bottom: 18px; }
.social-row { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 28px; }
.social-row a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent) 18%, rgba(255,255,255,.08));
  font-weight: 950;
}
.client-links { display: grid; gap: 12px; }
.client-link {
  min-height: 60px;
  padding: 10px 14px;
  background: var(--button);
  border: 1px solid color-mix(in srgb, var(--accent) 20%, rgba(255,255,255,.1));
  display: grid;
  grid-template-columns: 42px 1fr 24px;
  align-items: center;
  gap: 10px;
  color: var(--text);
  text-align: center;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
  box-shadow: 0 10px 28px rgba(0,0,0,.12);
}
.client-link:hover { transform: translateY(-2px); border-color: var(--accent); }
.client-link span, .client-link img {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255,255,255,.08);
  display: grid;
  place-items: center;
  object-fit: cover;
  font-weight: 950;
}
.client-link strong { font-size: 15px; }
.client-link em { font-style: normal; opacity: .7; }
.client-link.highlight { border-color: color-mix(in srgb, var(--accent) 72%, transparent); box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 18%, transparent), 0 18px 50px color-mix(in srgb, var(--accent) 14%, transparent); }
.client-links.rounded .client-link { border-radius: 17px; }
.client-links.pill .client-link { border-radius: 999px; }
.client-links.square .client-link { border-radius: 4px; }
.share-box { margin: 26px 0 18px; }
.share-box button {
  border: 0;
  border-radius: 999px;
  min-height: 44px;
  padding: 0 18px;
  font-weight: 900;
  cursor: pointer;
  color: #111827;
  background: #fff;
}
.client-brand { display: inline-flex; color: color-mix(in srgb, var(--text) 68%, transparent); font-size: 12px; }
.not-found { min-height: 100vh; display: grid; place-items: center; text-align: center; padding: 24px; }
.not-found h1 { font-size: 90px; margin-bottom: 8px; }
@media (max-width: 980px) {
  .hero-section, .about-band, .checklist-section { grid-template-columns: 1fr; }
  .cards-3 { grid-template-columns: repeat(2, 1fr); }
  .client-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .site-header { align-items: flex-start; gap: 16px; flex-direction: column; position: relative; }
  .site-header nav { flex-wrap: wrap; gap: 14px; }
  .hero-section { margin-top: 28px; }
  .hero-card { min-height: 360px; padding: 26px; }
  .cards-3, .client-grid { grid-template-columns: 1fr; }
  .about-band, .checklist-section { padding: 24px; border-radius: 28px; }
  .site-footer { flex-direction: column; gap: 12px; text-align: center; }
}

/* LGPD / legal pages */
.legal-footer {
  align-items: flex-start;
  gap: 24px;
}
.footer-brand-block,
.footer-company,
.footer-legal-links {
  display: grid;
  gap: 8px;
}
.footer-brand-block img { height: 42px; width: max-content; }
.footer-company { max-width: 720px; line-height: 1.55; text-align: right; }
.footer-company a, .footer-legal-links a, .legal-page a { color: #9edcff; text-decoration: none; }
.footer-company a:hover, .footer-legal-links a:hover, .legal-page a:hover { text-decoration: underline; }
.footer-legal-links { display: flex; gap: 12px; flex-wrap: wrap; justify-content: flex-end; margin-top: 4px; }
.footer-legal-links a { font-weight: 850; font-size: 13px; }
.legal-page {
  width: min(1040px, calc(100% - 32px));
  margin: 0 auto;
  padding: 36px 0 90px;
}
.legal-hero {
  border: 1px solid var(--border);
  border-radius: 34px;
  padding: 34px;
  margin-bottom: 18px;
  background:
    radial-gradient(circle at top right, rgba(124,58,237,.22), transparent 35%),
    radial-gradient(circle at bottom left, rgba(31,182,255,.14), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.035));
  box-shadow: var(--shadow);
}
.legal-back { display: inline-flex; margin-bottom: 18px; color: #cfe8ff; font-weight: 850; }
.legal-hero h1 { font-size: clamp(34px, 5vw, 62px); letter-spacing: -.06em; margin-bottom: 12px; }
.legal-hero p { color: var(--muted); max-width: 780px; line-height: 1.7; }
.legal-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin: 16px 0; }
.legal-card {
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,.066), rgba(255,255,255,.032));
}
.legal-card h2 { font-size: 22px; letter-spacing: -.035em; margin-bottom: 12px; }
.legal-card p { color: var(--muted); line-height: 1.7; margin-bottom: 10px; }
.legal-company-card { margin-bottom: 16px; }
.cookie-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 999;
  width: min(980px, calc(100% - 36px));
  margin: 0 auto;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 24px;
  padding: 18px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  background: rgba(8, 12, 22, .96);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 80px rgba(0,0,0,.45);
}
.cookie-banner[hidden] { display: none; }
.cookie-banner strong { display: block; margin-bottom: 4px; }
.cookie-banner p { color: var(--muted); line-height: 1.5; margin: 0 0 6px; font-size: 14px; }
.cookie-banner a { color: #9edcff; font-size: 13px; font-weight: 850; }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; justify-content: flex-end; }
.cookie-actions .btn-public { min-height: 42px; padding: 0 16px; font-size: 13px; }
@media (max-width: 720px) {
  .legal-footer { flex-direction: column; }
  .footer-company { text-align: center; }
  .footer-brand-block { place-items: center; width: 100%; }
  .footer-legal-links { justify-content: center; }
  .legal-grid { grid-template-columns: 1fr; }
  .legal-hero, .legal-card { padding: 22px; border-radius: 24px; }
  .cookie-banner { grid-template-columns: 1fr; }
  .cookie-actions { justify-content: stretch; }
  .cookie-actions .btn-public { width: 100%; }
}

/* v0.5 compact visual tuning */
:root {
  --shadow: 0 18px 52px rgba(0,0,0,.36);
}
body { font-size: 15px; }
.site-header,
.hero-section,
.section,
.site-footer {
  width: min(1080px, calc(100% - 32px));
}
.site-header { padding: 16px 0; }
.brand { min-width: 92px; height: 40px; }
.brand img { height: 28px; }
.site-header nav { gap: 18px; font-size: 13px; }
.hero-section {
  margin: 34px auto 66px;
  grid-template-columns: 1.02fr .9fr;
  gap: 34px;
}
.tag { padding: 6px 10px; font-size: 12px; margin-bottom: 12px; }
.tag.small { padding: 4px 8px; font-size: 11px; }
.hero-copy h1 {
  font-size: clamp(34px, 4.7vw, 60px);
  line-height: .96;
  letter-spacing: -.065em;
  margin-bottom: 18px;
}
.hero-copy p,
.section-heading p,
.checklist-copy p {
  font-size: 16px;
  line-height: 1.62;
}
.hero-actions { gap: 10px; margin-top: 22px; }
.btn-public { min-height: 42px; padding: 0 18px; font-size: 14px; }
.hero-card {
  min-height: 360px;
  border-radius: 30px;
  padding: 28px;
}
.hero-logo { width: min(250px, 82%); margin-bottom: 20px; }
.hero-card h2 { font-size: 26px; line-height: 1.05; }
.hero-card p { font-size: 15px; line-height: 1.55; }
.orb-a { width: 220px; height: 220px; }
.orb-b { width: 210px; height: 210px; }
.section { margin-bottom: 66px; }
.section-heading { max-width: 720px; }
.section-heading.compact { margin-bottom: 22px; }
.section-heading h2,
.checklist-section h2 {
  font-size: clamp(30px, 3.8vw, 46px);
  letter-spacing: -.055em;
  margin-bottom: 12px;
}
.about-band {
  border-radius: 28px;
  padding: 28px;
  gap: 22px;
}
.about-metrics article { border-radius: 18px; padding: 15px; }
.about-metrics strong { font-size: 16px; }
.grid { gap: 14px; }
.cards-3 { grid-template-columns: repeat(4, 1fr); }
.public-card,
.testimonial-card {
  border-radius: 22px;
  padding: 20px;
  min-height: 172px;
}
.card-icon {
  width: 40px;
  height: 40px;
  border-radius: 13px;
  margin-bottom: 14px;
  font-size: 14px;
}
.public-card h3 { font-size: 18px; line-height: 1.15; }
.public-card p,
.testimonial-card p { font-size: 14px; line-height: 1.55; }
.client-grid { gap: 12px; }
.client-chip { padding: 12px; border-radius: 16px; gap: 10px; }
.client-chip span { width: 34px; height: 34px; font-size: 13px; }
.checklist-section {
  border-radius: 30px;
  padding: 30px;
  gap: 22px;
}
.checklist-card { border-radius: 22px; padding: 20px; }
.checklist-head { margin-bottom: 15px; }
.checklist-head > span { width: 38px; height: 38px; border-radius: 13px; }
.checklist-card ul { gap: 9px; }
.checklist-card li { font-size: 14px; }
.site-footer { padding: 24px 0; font-size: 14px; }
.site-footer img { height: 30px; }
.footer-company { font-size: 13px; }
.footer-legal-links { gap: 10px; }
.legal-hero { border-radius: 28px; padding: 28px; }
.legal-hero h1 { font-size: clamp(30px, 4vw, 48px); }
.legal-card { border-radius: 22px; padding: 20px; }
.legal-card h2 { font-size: 19px; }
.cookie-banner { border-radius: 20px; padding: 15px; }
.cookie-banner p { font-size: 13px; }

@media (max-width: 1120px) {
  .cards-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .site-header { padding: 14px 0; }
  .hero-section { margin-top: 22px; margin-bottom: 48px; }
  .hero-card { min-height: 300px; padding: 22px; border-radius: 24px; }
  .hero-logo { width: min(210px, 78%); }
  .cards-3 { grid-template-columns: 1fr; }
  .about-band,
  .checklist-section { padding: 20px; border-radius: 24px; }
}

/* v0.6 — clean agency redesign */
.landing-v06 {
  color: #141414;
  background: #f6f7f9;
  min-height: 100vh;
  overflow: hidden;
}
.v06-container { width: min(1080px, calc(100% - 34px)); margin: 0 auto; }
.light-section { background: #f6f7f9; color: #141414; }
.dark-section { background: #070707; color: #fff; }
.v06-nav {
  width: min(1080px, calc(100% - 34px));
  height: 56px;
  margin: 18px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 7px 10px 7px 14px;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 999px;
  background: rgba(255,255,255,.83);
  backdrop-filter: blur(16px);
  box-shadow: 0 14px 40px rgba(20,20,20,.09);
  position: sticky;
  top: 12px;
  z-index: 20;
}
.v06-brand { display: inline-flex; align-items: center; justify-content: center; width: 86px; height: 42px; border-radius: 999px; }
.v06-brand img { height: 33px; width: auto; object-fit: contain; }
.v06-nav nav { display: flex; align-items: center; gap: 26px; font-size: 12px; text-transform: uppercase; letter-spacing: .08em; font-weight: 950; color: #555; }
.v06-nav nav a:hover { color: #7c3aed; }
.v06-nav-cta { height: 38px; display: inline-flex; align-items: center; justify-content: center; padding: 0 16px; border-radius: 999px; background: #151515; color: #fff; font-size: 12px; font-weight: 950; }
.v06-hero {
  width: min(1080px, calc(100% - 34px));
  margin: 64px auto 52px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 38px;
  align-items: center;
}
.v06-kicker {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #6b3df4;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 12px;
  font-weight: 950;
  margin-bottom: 12px;
}
.v06-kicker::before { content: ''; width: 18px; height: 18px; border: 1px solid currentColor; border-radius: 999px; background: radial-gradient(circle, currentColor 2px, transparent 3px); }
.v06-kicker.dark { color: #a989ff; }
.v06-hero h1 { font-size: clamp(42px, 6.2vw, 82px); line-height: .95; letter-spacing: -.075em; margin-bottom: 18px; }
.v06-hero p { font-size: 18px; line-height: 1.65; color: #4d5565; max-width: 650px; }
.v06-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.v06-btn { min-height: 48px; padding: 0 24px; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; font-weight: 950; font-size: 14px; transition: transform .2s ease, box-shadow .2s ease; }
.v06-btn:hover { transform: translateY(-2px); }
.v06-btn.primary { background: #111; color: #fff; box-shadow: 0 12px 30px rgba(0,0,0,.16); }
.v06-btn.secondary { background: transparent; color: #111; border: 1px solid rgba(0,0,0,.18); }
.v06-hero-visual { min-height: 410px; border-radius: 34px; padding: 18px; background: radial-gradient(circle at 70% 20%, rgba(124,58,237,.28), transparent 35%), linear-gradient(135deg, #141820, #e8e9ef); box-shadow: 0 24px 60px rgba(0,0,0,.16); display: grid; place-items: center; }
.v06-mark-card { width: min(360px, 92%); min-height: 350px; border-radius: 30px; background: radial-gradient(circle at top right, rgba(124,58,237,.34), transparent 38%), linear-gradient(180deg, #121723, #162331); color: #fff; padding: 38px 32px; display: flex; flex-direction: column; justify-content: center; gap: 22px; text-align: center; }
.v06-mark-card img { width: 210px; margin: 0 auto; filter: drop-shadow(0 18px 36px rgba(0,0,0,.38)); }
.v06-mark-card strong { font-size: 28px; line-height: 1.05; letter-spacing: -.05em; }
.v06-mark-card span { color: #c4ccda; line-height: 1.45; }
.v06-logo-strip { padding: 30px 0 62px; text-align: center; }
.v06-logo-strip p { color: #6c7280; text-transform: uppercase; letter-spacing: .12em; font-weight: 950; font-size: 12px; margin-bottom: 22px; }
.v06-client-marquee { width: 100%; overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); }
.v06-client-marquee > div { display: flex; gap: 18px; width: max-content; animation: v06Marquee 28s linear infinite; }
.v06-client-marquee a { min-width: 180px; height: 76px; border-radius: 999px; background: #fff; color: #1b1b1b; box-shadow: 0 10px 30px rgba(0,0,0,.07); display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 0 20px; font-weight: 950; }
.v06-client-marquee span { width: 46px; height: 46px; border-radius: 999px; overflow: hidden; display: grid; place-items: center; background: linear-gradient(135deg,#7c3aed,#1fb6ff); color: #fff; }
.v06-client-marquee img { width: 100%; height: 100%; object-fit: cover; }
@keyframes v06Marquee { to { transform: translateX(-50%); } }
.v06-services { padding: 72px 0 76px; }
.v06-section-head { margin-bottom: 36px; }
.v06-section-head.split { display: grid; grid-template-columns: .65fr .35fr; gap: 40px; align-items: end; }
.v06-section-head.center { text-align: center; max-width: 740px; margin: 0 auto 58px; }
.v06-section-head h2, .v06-check h2 { font-size: clamp(40px, 5vw, 68px); line-height: .94; letter-spacing: -.06em; margin-bottom: 12px; }
.v06-section-head p, .v06-check p { color: #707889; line-height: 1.65; font-size: 16px; }
.dark-section .v06-section-head p, .v06-check p { color: #b6bdca; }
.service-accordion { border-top: 1px solid rgba(255,255,255,.15); }
.service-line { border-bottom: 1px solid rgba(255,255,255,.15); }
.service-line summary { min-height: 84px; display: grid; grid-template-columns: 44px 1fr 42px; align-items: center; gap: 20px; cursor: pointer; list-style: none; }
.service-line summary::-webkit-details-marker { display: none; }
.service-line summary span { color: #9da5b5; font-size: 12px; }
.service-line summary strong { font-size: clamp(26px, 3vw, 42px); letter-spacing: -.045em; }
.service-line summary i { width: 38px; height: 38px; border: 1px solid rgba(255,255,255,.22); border-radius: 999px; display: grid; place-items: center; font-style: normal; color: #fff; transition: transform .2s ease, background .2s ease; }
.service-line[open] summary strong { color: #a989ff; }
.service-line[open] summary i { transform: rotate(45deg); background: #a989ff; border-color: #a989ff; color: #080808; }
.service-line-content { padding: 0 0 34px 64px; max-width: 760px; }
.service-line-content p { color: #cfd5df; line-height: 1.7; font-size: 17px; }
.service-tags { display: flex; gap: 10px; flex-wrap: wrap; margin: 20px 0; }
.service-tags span { border: 1px solid rgba(255,255,255,.18); border-radius: 999px; padding: 9px 14px; color: #fff; font-size: 13px; font-weight: 850; background: rgba(255,255,255,.04); }
.service-line-content a { color: #a989ff; font-weight: 950; }
.v06-method { padding: 74px 0 80px; }
.method-line { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; position: relative; }
.method-line::before { content: ''; position: absolute; top: 36px; left: 12%; right: 12%; height: 2px; background: linear-gradient(90deg, #7c3aed, #1fb6ff); opacity: .32; }
.method-line article { text-align: center; position: relative; z-index: 1; }
.method-dot { width: 72px; height: 72px; border-radius: 999px; margin: 0 auto 18px; background: #fff; border: 6px solid #f6f7f9; box-shadow: 0 10px 34px rgba(0,0,0,.13); display: grid; place-items: center; font-size: 24px; }
.method-line article span { color: #9aa1ac; font-size: 12px; font-weight: 950; }
.method-line article h3 { font-size: 20px; margin: 8px 0 10px; }
.method-line article p { color: #666f7d; line-height: 1.55; font-size: 14px; }
.v06-check { padding: 74px 0; }
.checklist-grid-v06 { display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: center; }
.v06-check .v06-btn.primary { background: linear-gradient(135deg, #7c3aed, #1fb6ff); margin-top: 12px; }
.v06-checklist-list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.v06-checklist-list li { border: 1px solid rgba(255,255,255,.12); border-radius: 16px; padding: 14px; background: rgba(255,255,255,.04); color: #e8ecf4; line-height: 1.4; display: flex; gap: 10px; }
.v06-checklist-list span { color: #a989ff; font-size: 12px; font-weight: 950; }
.v06-footer { background: #171717; color: #c9cbd1; padding: 90px 0 34px; position: relative; overflow: hidden; }
.v06-footer-bg { position: absolute; top: 8px; left: 50%; transform: translateX(-50%); font-size: clamp(56px, 10vw, 160px); font-weight: 950; letter-spacing: -.08em; color: rgba(255,255,255,.055); white-space: nowrap; pointer-events: none; }
.v06-footer-grid { width: min(1080px, calc(100% - 34px)); margin: 0 auto; display: grid; grid-template-columns: 1.25fr .8fr .8fr .85fr; gap: 56px; position: relative; z-index: 1; }
.footer-about img { width: 150px; margin-bottom: 18px; }
.footer-about p, .footer-about span, .footer-about a { display: block; color: #aeb4bf; line-height: 1.6; margin-bottom: 8px; }
.v06-footer nav { display: flex; flex-direction: column; gap: 12px; }
.v06-footer strong { color: #fff; margin-bottom: 8px; }
.v06-footer nav a { color: #c9cbd1; font-size: 14px; }
.v06-footer nav a:hover, .footer-about a:hover { color: #a989ff; }
.v06-footer-bottom { width: min(1080px, calc(100% - 34px)); margin: 58px auto 0; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.08); display: flex; justify-content: space-between; gap: 16px; color: #8f95a1; font-size: 13px; position: relative; z-index: 1; }

/* v0.6 — premium mini sites */
.link-page-v06 { min-height: 100vh; background: radial-gradient(circle at 50% -10%, color-mix(in srgb, var(--accent) 34%, transparent), transparent 32%), var(--bg); color: var(--text); padding: 26px 14px 34px; }
.mini-site-shell { width: min(460px, 100%); margin: 0 auto; position: relative; }
.mini-share { position: absolute; top: 0; right: 0; width: 42px; height: 42px; border: 0; border-radius: 999px; background: color-mix(in srgb, var(--accent) 20%, rgba(255,255,255,.1)); color: var(--text); cursor: pointer; font-weight: 950; }
.mini-profile { text-align: center; padding: 30px 10px 16px; }
.premium-avatar { width: 98px; height: 98px; margin-left: auto; margin-right: auto; border: 3px solid color-mix(in srgb, var(--accent) 72%, #fff); box-shadow: 0 0 0 7px color-mix(in srgb, var(--accent) 18%, transparent), 0 18px 48px rgba(0,0,0,.28); }
.mini-profile h1 { font-size: 27px; line-height: 1.08; margin: 14px 0 8px; letter-spacing: -.035em; }
.mini-profile p { color: color-mix(in srgb, var(--text) 66%, transparent); line-height: 1.45; margin-bottom: 18px; }
.quick-action-row { display: flex; gap: 9px; justify-content: center; flex-wrap: wrap; }
.quick-action-row a { min-height: 34px; padding: 0 12px; border-radius: 999px; border: 1px solid color-mix(in srgb, var(--accent) 35%, rgba(255,255,255,.1)); background: color-mix(in srgb, var(--accent) 18%, transparent); display: inline-flex; align-items: center; gap: 6px; color: var(--text); font-size: 12px; font-weight: 950; }
.featured-links-section, .standard-links-section { display: grid; gap: 12px; margin-top: 12px; }
.premium-link-card { display: grid; grid-template-columns: 46px 1fr auto; align-items: center; gap: 12px; min-height: 80px; padding: 12px; border: 1px solid color-mix(in srgb, var(--accent) 22%, rgba(255,255,255,.12)); border-radius: 18px; background: color-mix(in srgb, var(--button) 84%, rgba(255,255,255,.07)); color: var(--text); overflow: hidden; transition: transform .18s ease, border-color .18s ease; }
.premium-link-card:hover { transform: translateY(-2px); border-color: var(--accent); }
.premium-link-card strong, .premium-link-card small { display: block; text-align: left; }
.premium-link-card strong { font-size: 16px; margin-bottom: 4px; }
.premium-link-card small { color: color-mix(in srgb, var(--text) 64%, transparent); line-height: 1.35; }
.premium-link-card em { min-width: 78px; height: 36px; padding: 0 13px; border-radius: 999px; background: #fff; color: #101010; display: inline-grid; place-items: center; font-style: normal; font-size: 12px; font-weight: 950; }
.premium-link-icon { width: 46px; height: 46px; border-radius: 14px; background: color-mix(in srgb, var(--accent) 16%, rgba(255,255,255,.1)); display: grid; place-items: center; overflow: hidden; font-weight: 950; }
.premium-link-icon img { width: 100%; height: 100%; object-fit: cover; }
.featured-card { grid-template-columns: 112px 1fr auto; min-height: 92px; background: linear-gradient(135deg, var(--accent), color-mix(in srgb, var(--accent) 72%, #fff)); color: #fff; border: 0; box-shadow: 0 18px 45px color-mix(in srgb, var(--accent) 28%, transparent); }
.featured-card small { color: rgba(255,255,255,.86); }
.featured-media { width: 112px; height: 74px; border-radius: 16px; overflow: hidden; background: rgba(255,255,255,.16); }
.featured-media div { display: flex; height: 100%; animation: miniMediaSlide 16s linear infinite; }
.featured-media img { width: 112px; height: 74px; flex: 0 0 auto; object-fit: cover; }
@keyframes miniMediaSlide { to { transform: translateX(-50%); } }
.mini-section-title { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 10px; color: var(--accent); font-size: 13px; font-weight: 950; margin: 26px 0 12px; }
.mini-section-title span { height: 1px; background: color-mix(in srgb, var(--accent) 28%, rgba(255,255,255,.12)); }
.portfolio-carousel-mini { overflow: hidden; }
.mini-carousel-track { display: flex; gap: 12px; width: max-content; animation: v06Marquee 24s linear infinite; }
.mini-carousel-track img { width: 182px; height: 182px; border-radius: 20px; object-fit: cover; border: 1px solid rgba(255,255,255,.1); }
.mini-location-card { margin-top: 20px; border-radius: 22px; overflow: hidden; border: 1px solid color-mix(in srgb, var(--accent) 24%, rgba(255,255,255,.12)); background: color-mix(in srgb, var(--button) 80%, rgba(255,255,255,.06)); }
.mini-location-card iframe { width: 100%; height: 240px; border: 0; display: block; filter: saturate(.9); }
.map-placeholder { min-height: 210px; display: grid; place-items: center; align-content: center; gap: 6px; background: linear-gradient(135deg, color-mix(in srgb, var(--accent) 18%, transparent), rgba(255,255,255,.06)); }
.map-placeholder span { font-size: 30px; }
.map-placeholder small { color: color-mix(in srgb, var(--text) 64%, transparent); }
.mini-location-card > a { height: 48px; display: grid; place-items: center; font-weight: 950; color: var(--text); }
.mini-footer { text-align: center; padding: 12px 0 0; }
.premium-social-row { margin-bottom: 20px; }
.premium-social-row a { width: 46px; height: 46px; border: 1px solid color-mix(in srgb, var(--accent) 36%, transparent); background: color-mix(in srgb, var(--accent) 20%, transparent); }

@media (max-width: 900px) {
  .v06-hero, .v06-section-head.split, .checklist-grid-v06, .v06-footer-grid { grid-template-columns: 1fr; }
  .v06-hero { margin-top: 34px; }
  .v06-hero-visual { min-height: 330px; }
  .method-line { grid-template-columns: repeat(2, 1fr); }
  .method-line::before { display: none; }
  .v06-checklist-list { grid-template-columns: 1fr; }
}
@media (max-width: 650px) {
  .v06-nav { height: auto; border-radius: 24px; flex-wrap: wrap; justify-content: center; }
  .v06-nav nav { order: 3; width: 100%; justify-content: center; gap: 14px; flex-wrap: wrap; }
  .v06-hero h1 { font-size: clamp(38px, 12vw, 58px); }
  .v06-mark-card { min-height: 300px; padding: 28px 22px; }
  .v06-mark-card img { width: 170px; }
  .v06-mark-card strong { font-size: 23px; }
  .service-line summary { grid-template-columns: 34px 1fr 36px; min-height: 74px; gap: 12px; }
  .service-line-content { padding-left: 46px; }
  .method-line { grid-template-columns: 1fr; }
  .v06-footer-bottom { flex-direction: column; }
  .featured-card { grid-template-columns: 1fr; }
  .featured-media { width: 100%; height: 150px; }
  .featured-media img { width: 100%; min-width: 100%; height: 150px; }
  .premium-link-card { grid-template-columns: 42px 1fr; }
  .premium-link-card em { grid-column: 2; justify-self: start; }
}

/* v0.7 — landing mais clean, compacta e com laranja como cor principal */
:root {
  --eleve-orange: #ffbd00;
  --eleve-orange-strong: #f59e0b;
}

.landing-v06 {
  background: #f7f8fa;
  color: #151515;
}

.landing-v06 .light-section {
  background: #f7f8fa;
}

.landing-v06 .dark-section {
  background: #090909;
}

.v07-nav {
  width: min(860px, calc(100% - 34px));
  height: 50px;
  top: 14px;
  padding: 6px 14px;
  border-radius: 999px;
  box-shadow: 0 12px 34px rgba(15, 23, 42, .12);
}

.v07-brand {
  width: 64px;
  height: 34px;
}

.v07-brand img {
  height: 26px;
}

.v07-nav nav {
  gap: 26px;
  font-size: 11px;
  letter-spacing: .12em;
}

.v07-nav nav a:hover {
  color: var(--eleve-orange-strong);
}

.v07-hero {
  width: min(980px, calc(100% - 34px));
  min-height: 520px;
  margin: 58px auto 30px;
  padding: 72px 0 44px;
  display: grid;
  grid-template-columns: 1fr;
  text-align: center;
  align-items: center;
  position: relative;
}

.v07-hero::after {
  content: '';
  width: 1px;
  height: 90px;
  position: absolute;
  bottom: -58px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(0,0,0,.08), transparent);
}

.v07-hero-copy {
  max-width: 830px;
  margin: 0 auto;
}

.v07-emoji-badge {
  width: 54px;
  height: 54px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: var(--eleve-orange);
  font-size: 25px;
  box-shadow: 0 16px 30px rgba(245, 158, 11, .18);
  margin-bottom: 16px;
}

.v07-hero h1 {
  font-size: clamp(42px, 5.4vw, 76px);
  line-height: .98;
  letter-spacing: -.07em;
  max-width: 870px;
  margin: 0 auto 18px;
}

.v07-hero h1 mark {
  display: inline-block;
  padding: 0 .13em .05em;
  border-radius: 10px;
  background: var(--eleve-orange);
  color: #111;
}

.v07-hero p {
  max-width: 620px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.65;
  color: #525866;
}

.v06-hero-visual,
.v06-actions,
.v06-nav-cta {
  display: none !important;
}

.v06-logo-strip {
  padding: 24px 0 50px;
}

.v06-logo-strip p {
  font-size: 10px;
  letter-spacing: .16em;
  margin-bottom: 16px;
}

.v06-client-marquee a {
  min-width: 158px;
  height: 58px;
  font-size: 13px;
  padding: 0 16px;
}

.v06-client-marquee span {
  width: 38px;
  height: 38px;
}

.v06-services {
  padding: 62px 0 64px;
}

.v06-container {
  width: min(980px, calc(100% - 34px));
}

.v06-kicker,
.v06-kicker.dark {
  color: var(--eleve-orange);
}

.v06-kicker {
  font-size: 10px;
  letter-spacing: .16em;
}

.v06-kicker::before {
  width: 14px;
  height: 14px;
}

.v06-section-head {
  margin-bottom: 24px;
}

.v06-section-head.split {
  grid-template-columns: .62fr .38fr;
  gap: 34px;
}

.v06-section-head h2,
.v06-check h2 {
  font-size: clamp(34px, 4.2vw, 54px);
  letter-spacing: -.055em;
}

.v06-section-head p,
.v06-check p {
  font-size: 14px;
  line-height: 1.65;
}

.service-line summary {
  min-height: 72px;
  grid-template-columns: 46px 1fr 38px;
  gap: 14px;
  font-size: 13px;
}

.service-line summary strong {
  font-size: clamp(25px, 3.2vw, 42px);
  letter-spacing: -.055em;
}

.service-line summary i {
  width: 34px;
  height: 34px;
  font-size: 14px;
}

.service-line[open] summary strong,
.service-line-content a,
.v06-footer nav a:hover,
.footer-about a:hover {
  color: var(--eleve-orange);
}

.service-line[open] summary i {
  background: var(--eleve-orange);
  border-color: var(--eleve-orange);
  color: #111;
}

.service-line-content {
  padding: 0 0 26px 60px;
}

.service-line-content p {
  font-size: 15px;
  line-height: 1.62;
}

.service-tags {
  gap: 8px;
  margin: 16px 0;
}

.service-tags span {
  padding: 7px 12px;
  font-size: 12px;
}

.v06-method {
  padding: 62px 0 68px;
}

.v06-section-head.center {
  max-width: 650px;
  margin-bottom: 44px;
}

.method-line {
  gap: 22px;
}

.method-line::before {
  background: linear-gradient(90deg, var(--eleve-orange), var(--eleve-orange-strong));
  opacity: .65;
}

.method-dot {
  width: 62px;
  height: 62px;
  font-size: 21px;
  border-width: 5px;
  background: var(--eleve-orange);
}

.method-line article h3 {
  font-size: 18px;
}

.method-line article p {
  font-size: 13px;
  line-height: 1.5;
}

.v06-check {
  padding: 62px 0;
}

.checklist-grid-v06 {
  gap: 40px;
}

.v06-check .v06-btn.primary {
  background: var(--eleve-orange);
  color: #111;
}

.v06-checklist-list {
  gap: 10px;
}

.v06-checklist-list li {
  padding: 12px;
  border-radius: 13px;
  font-size: 13px;
}

.v06-checklist-list span {
  color: var(--eleve-orange);
}

.v06-footer {
  padding: 58px 0 24px;
  background: #191919;
}

.v06-footer-bg {
  display: none !important;
}

.v06-footer-grid {
  width: min(980px, calc(100% - 34px));
  grid-template-columns: 1.05fr .8fr .72fr .74fr;
  gap: 42px;
}

.footer-about img {
  width: 88px;
  margin-bottom: 14px;
}

.footer-about p,
.footer-about span,
.footer-about a {
  font-size: 13px;
  line-height: 1.55;
  margin-bottom: 7px;
}

.v06-footer nav {
  gap: 9px;
}

.v06-footer strong {
  font-size: 14px;
  margin-bottom: 7px;
}

.v06-footer nav a {
  font-size: 13px;
}

.v06-footer-bottom {
  width: min(980px, calc(100% - 34px));
  margin-top: 42px;
  font-size: 12px;
}

@media (max-width: 900px) {
  .v07-hero {
    min-height: auto;
    padding: 58px 0 34px;
    margin-top: 34px;
  }
  .v06-section-head.split,
  .checklist-grid-v06,
  .v06-footer-grid {
    grid-template-columns: 1fr;
  }
  .v06-footer-grid {
    gap: 26px;
  }
}

@media (max-width: 650px) {
  .v07-nav {
    width: min(94%, 520px);
    padding: 8px 12px;
  }
  .v07-nav nav {
    gap: 12px;
    font-size: 10px;
  }
  .v07-brand {
    width: 54px;
    height: 30px;
  }
  .v07-brand img {
    height: 22px;
  }
  .v07-hero h1 {
    font-size: clamp(38px, 11vw, 56px);
  }
  .v07-emoji-badge {
    width: 48px;
    height: 48px;
    font-size: 22px;
  }
  .v06-client-marquee a {
    min-width: 142px;
    height: 54px;
  }
  .service-line summary {
    grid-template-columns: 34px 1fr 32px;
    min-height: 66px;
  }
  .service-line-content {
    padding-left: 46px;
  }
  .method-line {
    grid-template-columns: 1fr;
  }
}

/* v0.8 — síntese do primeiro design com versão clean */
:root {
  --eleve-purple: #7c3aed;
  --eleve-purple-soft: #a78bfa;
  --eleve-purple-deep: #171127;
  --eleve-bg-light: #f6f7fb;
  --eleve-bg-dark: #08080d;
}

.landing-v08 {
  background: var(--eleve-bg-light);
  color: #151821;
}

.landing-v08 .light-section { background: var(--eleve-bg-light); }
.landing-v08 .dark-section { background: var(--eleve-bg-dark); }
.landing-v08 .v06-kicker,
.landing-v08 .v06-kicker.dark { color: var(--eleve-purple-soft); }

.v08-nav {
  width: min(1040px, calc(100% - 40px));
  height: 58px;
  margin-top: 16px;
  padding: 8px 10px 8px 16px;
  border: 1px solid rgba(124,58,237,.12);
  background: rgba(255,255,255,.8);
  box-shadow: 0 16px 36px rgba(20, 18, 35, .08);
}

.v08-brand {
  width: 90px;
  justify-content: flex-start;
  padding-left: 6px;
}

.v08-brand img { height: 30px; }

.v08-nav nav {
  gap: 24px;
  font-size: 11px;
  letter-spacing: .14em;
}

.v08-nav nav a:hover { color: var(--eleve-purple); }

.v08-nav-cta {
  height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--eleve-purple), #5b21b6);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 26px rgba(124,58,237,.22);
}

.v08-hero-wrap {
  padding: 34px 0 18px;
}

.v08-hero-shell {
  width: min(1040px, calc(100% - 40px));
  margin: 0 auto;
  min-height: 430px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 18% 18%, rgba(124,58,237,.24), transparent 28%),
    radial-gradient(circle at 82% 18%, rgba(167,139,250,.18), transparent 22%),
    linear-gradient(135deg, #0d0e14 0%, #141726 52%, #0f1724 100%);
  color: #fff;
  display: grid;
  grid-template-columns: 1.15fr .7fr;
  gap: 28px;
  padding: 48px 48px 42px;
  box-shadow: 0 30px 70px rgba(11, 13, 22, .28);
  align-items: center;
}

.v08-hero-copy { max-width: 620px; }

.v08-hero-copy h1 {
  font-size: clamp(38px, 5.3vw, 68px);
  line-height: .98;
  letter-spacing: -.07em;
  margin: 0 0 18px;
  color: #fff;
}

.v08-hero-copy h1 span { color: var(--eleve-purple-soft); }

.v08-hero-copy p {
  color: #c1c7d5;
  font-size: 15px;
  line-height: 1.75;
  max-width: 560px;
}

.v08-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.v08-btn {
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 900;
}

.v08-btn.primary {
  background: linear-gradient(135deg, var(--eleve-purple), #5b21b6);
  color: #fff;
  box-shadow: 0 12px 28px rgba(124,58,237,.24);
}

.v08-btn.secondary {
  border: 1px solid rgba(255,255,255,.18);
  color: #fff;
  background: rgba(255,255,255,.04);
}

.v08-hero-panel {
  border-radius: 28px;
  padding: 28px 24px;
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 24px 44px rgba(0,0,0,.22);
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 300px;
  justify-content: center;
}

.v08-hero-panel img {
  width: 110px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 30px rgba(0,0,0,.35));
}

.v08-hero-panel strong {
  font-size: 28px;
  line-height: 1.05;
  letter-spacing: -.05em;
}

.v08-hero-panel span {
  color: #c6cbd7;
  line-height: 1.65;
  font-size: 14px;
}

.v08-hero-points {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.v08-hero-points b {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(124,58,237,.14);
  color: #d8ccff;
  font-size: 12px;
  font-weight: 900;
}

.v08-clients-band {
  padding: 28px 0 60px;
}

.v08-clients-head {
  width: min(1040px, calc(100% - 40px));
  margin: 0 auto 18px;
  text-align: center;
}

.v08-clients-head p {
  color: #6b7280;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.v08-clients-stage {
  width: min(1120px, calc(100% - 16px));
  margin: 0 auto;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.v08-clients-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: v06Marquee 30s linear infinite;
  padding: 8px 0 4px;
}

.v08-client-chip {
  min-width: 220px;
  height: 88px;
  padding: 0 20px;
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff, #f4f5fb);
  border: 1px solid rgba(124,58,237,.12);
  box-shadow: 0 16px 38px rgba(18, 19, 31, .1), inset 0 1px 0 rgba(255,255,255,.9);
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 14px;
  align-items: center;
  color: #191b22;
}

.v08-client-chip span {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--eleve-purple), #38bdf8);
  color: #fff;
  box-shadow: 0 10px 24px rgba(124,58,237,.22);
}

.v08-client-chip img { width: 100%; height: 100%; object-fit: cover; }
.v08-client-chip strong { display: block; font-size: 14px; line-height: 1.25; }
.v08-client-chip small { display: block; color: #7b8190; font-size: 11px; margin-top: 4px; }

.v08-services {
  padding: 64px 0 72px;
}

.v08-services-head { margin-bottom: 26px; }

.v08-service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.v08-service-card {
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(124,58,237,.16), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.01));
  padding: 18px 18px 16px;
  min-height: 238px;
  display: flex;
  flex-direction: column;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.03);
}

.v08-service-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.v08-service-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  border: 1px solid rgba(169,137,255,.32);
  background: linear-gradient(135deg, rgba(124,58,237,.34), rgba(59,130,246,.14));
}

.v08-service-top small {
  color: #9198a5;
  font-size: 11px;
  font-weight: 900;
}

.v08-service-card h3 {
  font-size: 23px;
  line-height: 1.02;
  letter-spacing: -.04em;
  margin-bottom: 12px;
  color: #fff;
}

.v08-service-card p {
  color: #bcc4d1;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.v08-service-tags {
  margin: 0 0 14px;
}

.v08-service-tags span {
  padding: 6px 10px;
  font-size: 11px;
  color: #f3f4f8;
  border-color: rgba(255,255,255,.12);
}

.v08-service-card a {
  margin-top: auto;
  color: #c6b5ff;
  font-size: 13px;
  font-weight: 900;
}

.v08-method {
  padding: 66px 0 72px;
}

.v08-method-head {
  max-width: 700px;
}

.v08-method-line {
  gap: 22px;
}

.v08-method-line::before {
  left: 10%;
  right: 10%;
  background: linear-gradient(90deg, rgba(124,58,237,.8), rgba(167,139,250,.35));
}

.v08-method-line .method-dot {
  width: 66px;
  height: 66px;
  border: 5px solid #f6f7fb;
  background: linear-gradient(135deg, #fff, #f0ebff);
  color: var(--eleve-purple);
  box-shadow: 0 14px 30px rgba(22, 22, 35, .12);
}

.v08-check {
  padding: 64px 0 70px;
}

.v08-check-grid { gap: 38px; }

.v08-check .v08-btn.primary {
  margin-top: 16px;
}

.v08-checklist-list li {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  font-size: 13px;
}

.v08-checklist-list span { color: var(--eleve-purple-soft); }

.v08-footer {
  background: #111116;
  padding: 48px 0 24px;
}

.v08-footer-grid {
  width: min(1040px, calc(100% - 40px));
  gap: 34px;
  align-items: start;
}

.v08-footer-about img {
  width: 82px;
  margin-bottom: 10px;
}

.v08-footer-about p,
.v08-footer-about span,
.v08-footer-about a,
.v08-footer nav a {
  font-size: 13px;
  line-height: 1.55;
}

.v08-footer nav a:hover,
.v08-footer-about a:hover { color: var(--eleve-purple-soft); }

.v08-footer-bottom {
  width: min(1040px, calc(100% - 40px));
  margin-top: 34px;
}

@media (max-width: 1080px) {
  .v08-hero-shell,
  .v08-service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .v08-hero-shell {
    grid-template-columns: 1fr;
    padding: 38px 34px;
  }
  .v08-hero-panel { min-height: auto; }
}

@media (max-width: 760px) {
  .v08-nav {
    height: auto;
    border-radius: 24px;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }
  .v08-nav nav {
    order: 3;
    width: 100%;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
  }
  .v08-nav-cta { order: 2; }
  .v08-hero-shell {
    width: min(100%, calc(100% - 24px));
    padding: 30px 20px;
    border-radius: 24px;
  }
  .v08-hero-copy h1 { font-size: clamp(34px, 10vw, 48px); }
  .v08-service-grid { grid-template-columns: 1fr; }
  .v08-clients-stage { width: calc(100% - 8px); }
  .v08-client-chip { min-width: 200px; height: 82px; }
  .v08-footer-grid,
  .v08-footer-bottom,
  .v08-clients-head,
  .v06-container { width: min(100%, calc(100% - 24px)); }
}

/* v0.9 — refinamento institucional da Agência Eleve */
:root {
  --eleve-v09-bg: #eef0f5;
  --eleve-v09-dark: #060811;
  --eleve-v09-dark-2: #0a1120;
  --eleve-v09-purple: #8b5cf6;
  --eleve-v09-purple-soft: #c4b5fd;
  --eleve-v09-white: #ffffff;
  --eleve-v09-orange: #f97316;
}

.landing-v09 {
  background: var(--eleve-v09-bg);
  color: #13141d;
}

.v09-container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}
.v09-container.narrow { width: min(980px, calc(100% - 40px)); }

.v09-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 900;
  color: var(--eleve-v09-purple-soft);
}
.v09-kicker::before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 2px solid currentColor;
}
.v09-kicker.light { color: var(--eleve-v09-purple); }
.v09-kicker.orange { color: var(--eleve-v09-orange); }

.v09-section-head { margin-bottom: 26px; }
.v09-section-head.center { text-align: center; }
.v09-section-head.split {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 24px;
  align-items: end;
}
.v09-section-head h2 {
  margin: 10px 0 0;
  font-size: clamp(38px, 5vw, 56px);
  line-height: .98;
  letter-spacing: -.06em;
}
.v09-section-head p {
  font-size: 17px;
  line-height: 1.7;
  color: #5f6676;
}
.v09-section-head.dark h2,
.v09-section-head.dark p { color: #fff; }
.v09-section-head.dark p { color: #c0c6d4; }

.v09-nav-shell { padding: 18px 0 14px; }
.v09-nav {
  width: min(1140px, calc(100% - 40px));
  margin: 0 auto;
  min-height: 62px;
  border-radius: 999px;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(139,92,246,.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 9px 12px 9px 18px;
  box-shadow: 0 14px 40px rgba(20, 18, 35, .08);
}
.v09-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 42px;
}
.v09-brand img { max-width: 100%; max-height: 34px; object-fit: contain; }
.v09-nav nav {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
}
.v09-nav nav a {
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 900;
  color: #3e4352;
}
.v09-nav nav a:hover { color: var(--eleve-v09-purple); }
.v09-nav-cta {
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--eleve-v09-purple), #6d28d9);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 12px 26px rgba(139,92,246,.25);
}

.v09-hero-section { padding: 22px 0 24px; }
.v09-hero-shell {
  width: min(1140px, calc(100% - 40px));
  margin: 0 auto;
  min-height: 560px;
  border-radius: 34px;
  background: radial-gradient(circle at 12% 20%, rgba(139,92,246,.25), transparent 28%), radial-gradient(circle at 84% 18%, rgba(196,181,253,.18), transparent 22%), linear-gradient(135deg, #0b0d16 0%, #091225 44%, #13162a 100%);
  box-shadow: 0 34px 70px rgba(7, 11, 23, .22);
  display: grid;
  grid-template-columns: 1.2fr .72fr;
  gap: 32px;
  align-items: center;
  padding: 52px 48px;
}
.v09-hero-copy h1 {
  margin: 16px 0 16px;
  font-size: clamp(44px, 6vw, 76px);
  line-height: .96;
  letter-spacing: -.07em;
  color: #fff;
}
.v09-hero-copy h1 span { color: var(--eleve-v09-purple-soft); }
.v09-hero-copy p {
  max-width: 600px;
  color: #d1d5e2;
  font-size: 16px;
  line-height: 1.7;
}
.v09-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 26px;
}
.v09-btn {
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.v09-btn.primary {
  background: linear-gradient(135deg, var(--eleve-v09-purple), #6d28d9);
  color: #fff;
  box-shadow: 0 14px 28px rgba(139,92,246,.22);
}
.v09-btn.secondary {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.16);
  color: #fff;
}
.v09-btn.success {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #fff;
}
.v09-hero-panel {
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 28px;
  padding: 28px 26px;
  min-height: 470px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.07), 0 18px 34px rgba(0,0,0,.22);
}
.v09-hero-logo-wrap { width: 132px; }
.v09-hero-logo-wrap img { width: 100%; object-fit: contain; }
.v09-hero-panel strong {
  font-size: 28px;
  line-height: 1.04;
  letter-spacing: -.05em;
  color: #fff;
}
.v09-hero-panel span {
  font-size: 14px;
  line-height: 1.75;
  color: #c8cedc;
}
.v09-hero-points { display: flex; gap: 10px; flex-wrap: wrap; }
.v09-hero-points b {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(139,92,246,.18);
  color: #f1ecff;
  font-size: 12px;
  font-weight: 900;
}

.v09-clients-section { padding: 18px 0 52px; }
.v09-clients-section .v09-section-head h2 {
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: #6a7281;
}
.v09-clients-stage {
  overflow: hidden;
  width: min(1280px, calc(100% - 16px));
  margin: 0 auto;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.v09-clients-track {
  display: flex;
  gap: 18px;
  width: max-content;
  padding: 10px 0;
  animation: v06Marquee 28s linear infinite;
}
.v09-client-card {
  min-width: 240px;
  height: 86px;
  border-radius: 26px;
  padding: 0 18px;
  background: linear-gradient(180deg, rgba(255,255,255,.94), rgba(242,244,251,.98));
  border: 1px solid rgba(139,92,246,.14);
  box-shadow: 0 18px 40px rgba(25, 31, 46, .08), inset 0 1px 0 rgba(255,255,255,.95);
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  gap: 14px;
  color: #171a21;
}
.v09-client-card .media {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--eleve-v09-purple), #38bdf8);
  color: #fff;
  font-size: 22px;
  font-weight: 900;
}
.v09-client-card .media img { width: 100%; height: 100%; object-fit: cover; }
.v09-client-card strong { font-size: 16px; line-height: 1.25; }

.v09-services-section {
  background: #05070f;
  padding: 72px 0;
}
.v09-services-wrap {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 18px;
}
.v09-service-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.v09-service-tab {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px;
  color: #fff;
  padding: 16px 16px;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: center;
  text-align: left;
  transition: .2s ease;
}
.v09-service-tab.active,
.v09-service-tab:hover {
  border-color: rgba(139,92,246,.45);
  background: linear-gradient(135deg, rgba(139,92,246,.16), rgba(12,15,27,.95));
  transform: translateY(-1px);
}
.v09-service-tab-icon,
.v09-service-showcase-top span {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(139,92,246,.26), rgba(59,130,246,.14));
  border: 1px solid rgba(196,181,253,.38);
  color: #fff;
  font-size: 17px;
  font-weight: 900;
}
.v09-service-tab div { display: flex; flex-direction: column; gap: 4px; }
.v09-service-tab small { color: #9ea6b6; font-size: 11px; font-weight: 900; }
.v09-service-tab strong { font-size: 20px; letter-spacing: -.04em; }
.v09-service-showcase {
  min-height: 420px;
  border-radius: 26px;
  padding: 28px 26px;
  background: radial-gradient(circle at top right, rgba(139,92,246,.22), transparent 28%), linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
}
.v09-service-showcase-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}
.v09-service-showcase-top small { color: #8e95a4; font-size: 12px; font-weight: 900; }
.v09-service-showcase h3 {
  color: #fff;
  font-size: 40px;
  line-height: .98;
  letter-spacing: -.06em;
  margin-bottom: 14px;
}
.v09-service-showcase p {
  color: #c3cad7;
  font-size: 18px;
  line-height: 1.7;
  max-width: 620px;
}
.v09-service-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 22px 0 18px;
}
.v09-service-tags span {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  color: #f4f5f9;
  font-size: 12px;
  font-weight: 800;
}
.v09-inline-link { color: var(--eleve-v09-purple-soft); font-weight: 900; font-size: 15px; }

.v09-method-section {
  padding: 78px 0;
  background: linear-gradient(180deg, #f5f6fb, #ffffff);
}
.v09-method-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.v09-method-grid::before {
  content: '';
  position: absolute;
  left: 12%;
  right: 12%;
  top: 32px;
  height: 2px;
  background: linear-gradient(90deg, rgba(139,92,246,.8), rgba(196,181,253,.35));
}
.v09-method-grid article { text-align: center; position: relative; z-index: 1; }
.v09-method-grid .dot {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  border: 5px solid #fff;
  background: linear-gradient(135deg, #fff, #f0ebff);
  color: var(--eleve-v09-purple);
  box-shadow: 0 16px 34px rgba(15,18,31,.12);
  font-size: 24px;
}
.v09-method-grid small {
  display: block;
  margin-bottom: 8px;
  color: #8e95a4;
  font-size: 11px;
  font-weight: 900;
}
.v09-method-grid h3 {
  font-size: 26px;
  letter-spacing: -.04em;
  margin-bottom: 8px;
}
.v09-method-grid p { color: #5f6676; line-height: 1.75; }

.v09-quiz-section {
  background: linear-gradient(135deg, #060b17 0%, #07152d 55%, #05101d 100%);
  padding: 78px 0;
}
.v09-quiz-card {
  padding: 46px 32px;
  border-radius: 30px;
  background: radial-gradient(circle at top left, rgba(139,92,246,.18), transparent 24%), linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.08);
  text-align: center;
}
.v09-quiz-card h2 {
  color: #fff;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1;
  letter-spacing: -.06em;
  max-width: 700px;
  margin: 12px auto 14px;
}
.v09-quiz-card > p {
  color: #b8c1d0;
  max-width: 700px;
  margin: 0 auto 24px;
  line-height: 1.7;
}
.v09-quiz-questions { display: grid; gap: 12px; text-align: left; }
.v09-quiz-item {
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}
.v09-quiz-item strong { color: #fff; font-size: 16px; max-width: 70%; }
.v09-quiz-item div { display: flex; gap: 8px; }
.v09-quiz-item button {
  min-width: 72px;
  min-height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: transparent;
  color: #fff;
  font-weight: 900;
}
.v09-quiz-item button.active,
.v09-quiz-item button:hover { background: linear-gradient(135deg, #3b82f6, #2563eb); border-color: transparent; }
.v09-quiz-result {
  margin-top: 18px;
  border-radius: 18px;
  padding: 16px 18px;
  background: rgba(59,130,246,.12);
  color: #dce6ff;
  line-height: 1.65;
}

.v09-checklist-section {
  background: #07101d;
  padding: 82px 0;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 40px 40px;
}
.v09-checklist-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 38px;
  align-items: start;
}
.v09-checklist-copy h2 {
  color: #fff;
  margin: 12px 0 16px;
  font-size: clamp(36px, 5vw, 58px);
  line-height: .98;
  letter-spacing: -.05em;
}
.v09-checklist-copy p { color: #b8c1d0; font-size: 17px; line-height: 1.7; max-width: 620px; }
.v09-checklist-copy ul {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-top: 22px;
}
.v09-checklist-copy li {
  color: #edf2ff;
  font-size: 17px;
  line-height: 1.55;
  position: relative;
  padding-left: 28px;
}
.v09-checklist-copy li::before {
  content: '◉';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--eleve-v09-orange);
  font-size: 14px;
}
.v09-checklist-form {
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 26px;
  padding: 24px;
}
.v09-form-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.v09-form-head span {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(249,115,22,.16);
  border: 1px solid rgba(249,115,22,.2);
  color: #ffd9bf;
  font-weight: 900;
}
.v09-form-head strong { color: #fff; display: block; margin-bottom: 4px; font-size: 24px; letter-spacing: -.04em; }
.v09-form-head small { color: #aab3c2; }
.v09-checklist-form label {
  display: block;
  color: #c8d0dd;
  font-size: 14px;
  margin-bottom: 14px;
}
.v09-checklist-form input {
  width: 100%;
  min-height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.03);
  color: #fff;
  padding: 0 14px;
  margin-top: 8px;
}
.v09-checklist-form button {
  width: 100%;
  min-height: 50px;
  border-radius: 14px;
  border: 0;
  background: linear-gradient(135deg, #fb7185, var(--eleve-v09-orange));
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  margin-top: 8px;
}
.v09-checklist-form > small { display: block; margin-top: 12px; text-align: center; color: #9aa4b5; }

.v09-team-section {
  background: linear-gradient(135deg, #07101c 0%, #0a1630 54%, #081019 100%);
  padding: 80px 0;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 54px 54px;
}
.v09-team-section .v09-section-head h2,
.v09-team-section .v09-section-head p { color: #fff; }
.v09-team-section .v09-section-head p { color: #b8c1d0; }
.v09-team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.v09-team-card {
  border-radius: 24px;
  padding: 24px 20px;
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.08);
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 240px;
  justify-content: end;
  position: relative;
  overflow: hidden;
}
.v09-team-card::before {
  content: '';
  position: absolute;
  inset: -20% auto auto -20%;
  width: 120px;
  height: 120px;
  border-radius: 999px;
  background: radial-gradient(circle, var(--accent-soft), transparent 66%);
  opacity: .32;
}
.v09-team-card .avatar {
  width: 72px;
  height: 72px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 24px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--accent), var(--accent-soft));
  color: #fff;
  box-shadow: 0 16px 32px color-mix(in srgb, var(--accent) 36%, transparent);
}
.v09-team-card strong { font-size: 28px; letter-spacing: -.04em; }
.v09-team-card span { color: #d2d8e4; font-size: 14px; }
.v09-team-card em { margin-top: auto; color: var(--accent-soft); font-style: normal; font-weight: 900; }

.v09-fit-section {
  background: linear-gradient(180deg, #05101d, #08111f);
  padding: 80px 0;
}
.v09-fit-section .v09-section-head h2,
.v09-fit-section .v09-section-head p { color: #fff; }
.v09-fit-section .v09-section-head p { color: #b8c1d0; }
.v09-fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.v09-fit-grid .fit {
  border-radius: 28px;
  padding: 28px 28px 24px;
  border: 1px solid rgba(255,255,255,.08);
}
.v09-fit-grid .fit.positive { background: linear-gradient(180deg, rgba(16,185,129,.12), rgba(9,22,24,.6)); border-color: rgba(16,185,129,.24); }
.v09-fit-grid .fit.negative { background: linear-gradient(180deg, rgba(239,68,68,.12), rgba(20,12,16,.64)); border-color: rgba(239,68,68,.2); }
.v09-fit-grid strong {
  display: block;
  color: #fff;
  font-size: 32px;
  margin-bottom: 18px;
  letter-spacing: -.05em;
}
.v09-fit-grid ul { list-style: none; display: grid; gap: 12px; }
.v09-fit-grid li { color: #dce4f2; position: relative; padding-left: 28px; line-height: 1.6; }
.v09-fit-grid .positive li::before,
.v09-fit-grid .negative li::before {
  position: absolute; left: 0; top: 0; font-weight: 900;
}
.v09-fit-grid .positive li::before { content: '✓'; color: #34d399; }
.v09-fit-grid .negative li::before { content: '✕'; color: #f87171; }
.v09-fit-cta { text-align: center; margin-top: 22px; }
.v09-fit-cta p { color: #aeb8ca; margin-bottom: 16px; }

.v09-footer {
  background: #06101e;
  padding: 40px 0 24px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.v09-footer-grid {
  display: grid;
  grid-template-columns: 1.1fr .8fr .8fr;
  gap: 28px;
}
.v09-footer-brand img { width: 88px; margin-bottom: 12px; }
.v09-footer-brand p,
.v09-footer nav a,
.v09-footer-bottom,
.v09-footer .footer-legal-links a { color: #b6bfce; line-height: 1.7; }
.v09-footer nav strong { display: block; color: #fff; margin-bottom: 12px; text-transform: uppercase; letter-spacing: .08em; }
.v09-footer nav { display: flex; flex-direction: column; gap: 8px; }
.v09-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 26px;
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 18px;
}
.v09-footer .footer-legal-links { display: flex; gap: 16px; flex-wrap: wrap; }
.v09-footer a:hover { color: #fff; }

.team-page-v09 {
  min-height: 100vh;
  padding: 18px 18px 36px;
  background: radial-gradient(circle at top left, color-mix(in srgb, var(--accent) 20%, transparent), transparent 26%), #08111e;
}
.team-page-nav {
  width: min(1120px, calc(100% - 24px));
  margin: 0 auto 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #c3ccda;
}
.team-page-nav a { color: #fff; font-weight: 900; }
.team-page-hero {
  width: min(1120px, calc(100% - 24px));
  margin: 0 auto 22px;
  border-radius: 32px;
  background: var(--hero-bg);
  padding: 42px 38px;
  color: #fff;
  display: grid;
  grid-template-columns: 1.15fr .75fr;
  gap: 26px;
  align-items: center;
  box-shadow: 0 28px 60px rgba(0,0,0,.24);
}
.team-page-copy h1 {
  margin: 14px 0 8px;
  font-size: clamp(42px, 5vw, 68px);
  line-height: .96;
  letter-spacing: -.07em;
}
.team-page-copy h2 { font-size: 26px; color: var(--accent-soft); margin-bottom: 12px; }
.team-page-copy p { color: #d1d7e3; line-height: 1.75; font-size: 16px; }
.team-page-actions { display: flex; gap: 12px; margin-top: 20px; flex-wrap: wrap; }
.team-page-profile {
  border-radius: 28px;
  padding: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.1);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.team-page-profile .avatar {
  width: 110px;
  height: 110px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-soft));
  color: #fff;
  font-size: 34px;
  font-weight: 900;
  box-shadow: 0 18px 40px color-mix(in srgb, var(--accent) 36%, transparent);
}
.team-page-profile strong { font-size: 30px; letter-spacing: -.05em; }
.team-page-profile span { color: #d6deea; line-height: 1.7; }
.team-page-focus {
  width: min(1120px, calc(100% - 24px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.team-page-focus article,
.team-page-cta {
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.08);
}
.team-page-focus article { padding: 24px; }
.team-page-focus h3 { color: #fff; font-size: 28px; letter-spacing: -.05em; margin-bottom: 14px; }
.team-page-focus ul { list-style: none; display: grid; gap: 10px; }
.team-page-focus li { color: #cbd4e1; position: relative; padding-left: 22px; line-height: 1.65; }
.team-page-focus li::before { content: '•'; position: absolute; left: 0; top: 0; color: var(--accent-soft); }
.team-page-cta {
  width: min(1120px, calc(100% - 24px));
  margin: 18px auto 0;
  padding: 26px 24px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}
.team-page-cta h3 { color: #fff; font-size: 30px; letter-spacing: -.05em; margin: 8px 0; }
.team-page-cta p { color: #c5cfdf; max-width: 760px; line-height: 1.7; }

@media (max-width: 1080px) {
  .v09-hero-shell,
  .v09-checklist-grid,
  .v09-services-wrap,
  .team-page-hero,
  .v09-footer-grid {
    grid-template-columns: 1fr;
  }
  .v09-method-grid,
  .v09-team-grid,
  .team-page-focus,
  .v09-fit-grid { grid-template-columns: 1fr 1fr; }
  .v09-section-head.split { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .v09-container,
  .v09-container.narrow,
  .team-page-nav,
  .team-page-hero,
  .team-page-focus,
  .team-page-cta { width: min(100%, calc(100% - 20px)); }
  .v09-nav {
    min-height: auto;
    border-radius: 28px;
    flex-wrap: wrap;
    justify-content: center;
    padding: 12px;
  }
  .v09-nav nav { gap: 14px; }
  .v09-nav-cta { width: 100%; }
  .v09-hero-shell { width: min(100%, calc(100% - 20px)); padding: 32px 20px; min-height: auto; }
  .v09-hero-copy h1,
  .v09-checklist-copy h2,
  .v09-quiz-card h2,
  .v09-section-head h2 { font-size: clamp(32px, 10vw, 44px); }
  .v09-hero-panel { min-height: auto; }
  .v09-clients-stage { width: calc(100% - 10px); }
  .v09-client-card { min-width: 210px; }
  .v09-method-grid,
  .v09-team-grid,
  .team-page-focus,
  .v09-fit-grid { grid-template-columns: 1fr; }
  .v09-quiz-item { flex-direction: column; align-items: flex-start; }
  .v09-quiz-item strong { max-width: none; }
  .v09-footer-bottom,
  .team-page-cta { flex-direction: column; align-items: flex-start; }
  .team-page-hero { padding: 30px 20px; }
}


/* v0.10 — ajustes solicitados: clientes, serviços compactos e sem quiz */
.landing-v09 .v09-quiz-section {
  display: none !important;
}

.v09-clients-section {
  padding: 22px 0 44px;
  background: linear-gradient(180deg, #f3f4fa, #eef0f6);
}

.v09-clients-section .v09-section-head {
  margin-bottom: 14px;
}

.v09-clients-section .v09-section-head h2 {
  font-size: 14px;
  letter-spacing: .2em;
  color: #687080;
}

.v09-clients-stage {
  width: min(1280px, calc(100% - 12px));
  padding: 4px 0 12px;
}

.v09-clients-track {
  gap: 14px;
  animation-duration: 34s;
}

.v09-client-card {
  min-width: 218px;
  height: 72px;
  border-radius: 22px;
  padding: 0 16px;
  grid-template-columns: 50px 1fr;
  gap: 12px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(246,247,253,.98));
  border: 1px solid rgba(139,92,246,.16);
  box-shadow:
    0 14px 30px rgba(27, 32, 48, .08),
    0 1px 0 rgba(255,255,255,.9) inset;
}

.v09-client-card .media {
  width: 50px;
  height: 50px;
  border-radius: 17px;
  font-size: 18px;
  box-shadow: 0 8px 20px rgba(139,92,246,.2);
}

.v09-client-card strong {
  font-size: 15px;
  letter-spacing: -.02em;
}

.v09-client-card.placeholder {
  opacity: .7;
}

.v09-services-section {
  padding: 58px 0 64px;
  background:
    radial-gradient(circle at 18% 8%, rgba(139,92,246,.12), transparent 26%),
    #05070f;
}

.v09-services-section .v09-section-head {
  margin-bottom: 22px;
}

.v09-services-section .v09-section-head.split {
  display: block;
}

.v09-services-section .v09-section-head p {
  display: none !important;
}

.v09-services-section .v09-section-head h2 {
  font-size: clamp(34px, 4vw, 48px);
  margin-top: 8px;
}

.v09-services-wrap {
  grid-template-columns: .72fr 1fr;
  gap: 16px;
  align-items: start;
}

.v09-service-list {
  gap: 9px;
}

.v09-service-tab {
  min-height: 60px;
  padding: 11px 12px;
  border-radius: 17px;
  grid-template-columns: 42px 1fr;
  gap: 11px;
  background: rgba(255,255,255,.025);
  border-color: rgba(255,255,255,.08);
}

.v09-service-tab.active,
.v09-service-tab:hover {
  background:
    linear-gradient(135deg, rgba(139,92,246,.18), rgba(12,15,27,.88));
  border-color: rgba(139,92,246,.5);
  transform: none;
}

.v09-service-tab-icon,
.v09-service-showcase-top span {
  width: 38px;
  height: 38px;
  border-radius: 13px;
  font-size: 15px;
}

.v09-service-tab small {
  font-size: 10px;
}

.v09-service-tab strong {
  font-size: 17px;
  line-height: 1.08;
}

.v09-service-showcase {
  min-height: 338px;
  border-radius: 24px;
  padding: 24px;
  background:
    radial-gradient(circle at 86% 0%, rgba(139,92,246,.20), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.015));
}

.v09-service-showcase-top {
  margin-bottom: 14px;
}

.v09-service-showcase h3 {
  font-size: clamp(30px, 3.8vw, 42px);
  margin-bottom: 12px;
}

.v09-service-showcase p {
  font-size: 16px;
  line-height: 1.62;
  max-width: 600px;
}

.v09-service-tags {
  gap: 8px;
  margin: 18px 0 16px;
}

.v09-service-tags span {
  padding: 7px 11px;
  font-size: 11px;
}

.v09-inline-link {
  font-size: 14px;
}

@media (max-width: 1080px) {
  .v09-services-wrap {
    grid-template-columns: 1fr;
  }
  .v09-service-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .v09-client-card {
    min-width: 190px;
    height: 66px;
    grid-template-columns: 44px 1fr;
    border-radius: 19px;
  }
  .v09-client-card .media {
    width: 44px;
    height: 44px;
  }
  .v09-client-card strong {
    font-size: 13px;
  }
  .v09-service-list {
    grid-template-columns: 1fr;
  }
  .v09-service-tab {
    min-height: 56px;
  }
  .v09-service-showcase {
    min-height: auto;
    padding: 20px;
  }
}
