:root {
  --bg: #000000;
  --bg-2: #0b0b0e;
  --surface: #111116;
  --surface-2: #16161d;
  --line: rgba(255, 255, 255, 0.08);
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.72);
  --muted-2: rgba(255, 255, 255, 0.48);
  --brand: #4642ff;
  --brand-2: #4642ff;
  --container: 1180px;
  --radius: 12px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  background: var(--bg);
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
}
.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  left: 12px;
  top: 8px;
  z-index: 999;
  background: #fff;
  color: #111;
  padding: 10px 12px;
  transform: translateY(-140%);
}
.skip-link:focus {
  transform: none;
}
:focus-visible {
  outline: 2px solid var(--brand-2);
  outline-offset: 4px;
}

h1,
h2,
h3 {
  font-family: Montserrat, Arial, sans-serif;
  margin: 0;
  line-height: 1.05;
  letter-spacing: -0.04em;
}
p {
  margin: 0;
}
.eyebrow {
  display: inline-block;
  color: #4642ff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
}
.section {
  padding: 110px 0;
}
.section-alt {
  background: var(--bg-2);
}
.section-head {
  max-width: 780px;
  margin-bottom: 50px;
}
.section-head h2 {
  margin-top: 16px;
  font-size: clamp(38px, 4vw, 60px);
}
.section-head p {
  margin-top: 16px;
  color: var(--muted);
  max-width: 720px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.11em;
  color: #4642ff;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: 82px;
  display: flex;
  align-items: center;
  background: transparent;
  transition:
    background 0.25s,
    border-color 0.25s,
    backdrop-filter 0.25s;
}
.site-header.is-scrolled {
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  width: 176px;
  flex: 0 0 auto;
}
.brand img {
  width: 100%;
  height: auto;
}
.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 8px 8px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  font-size: 12px;
  font-weight: 700;
}
.header-cta i {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff;
  transition: transform 0.2s;
}
.header-cta:hover i {
  transform: translateX(2px);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.045em;
  box-shadow: 0 10px 30px rgba(70, 66, 255, 0.24);
  transition:
    transform 0.2s,
    filter 0.2s,
    box-shadow 0.2s;
}
.btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
  box-shadow: 0 16px 36px rgba(70, 66, 255, 0.28);
}
.btn-large {
  min-height: 56px;
  padding: 0 26px;
}

.hero {
  position: relative;
  overflow: hidden;
  background: var(--bg);
  min-height: 860px;
  padding-top: 82px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    #000 0%,
    #000 44%,
    rgba(0, 0, 0, 0.96) 50%,
    rgba(0, 0, 0, 0.48) 67%,
    rgba(0, 0, 0, 0) 86%
  );
  z-index: 1;
  pointer-events: none;
}
.hero-media {
  position: absolute;
  top: 0;
  right: 0;
  width: 46%;
  height: 100%;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
}
.hero-media-shadow {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.1),
    rgba(0, 0, 0, 0.26) 70%,
    rgba(0, 0, 0, 0.45)
  );
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 58%) minmax(0, 42%);
  min-height: calc(860px - 82px);
  align-items: center;
}
.hero-copy {
  max-width: 700px;
  padding: 56px 0 48px;
}
.hero-copy h1 {
  margin-top: 18px;
  font-size: clamp(46px, 5vw, 74px);
  max-width: 720px;
}
.hero-copy h1 span {
  color: #4642ff;
}
.hero-sub {
  max-width: 620px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.hero-note {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted-2);
  font-size: 11px;
}
.hero-note i {
  color: #4642ff;
}
.hero-benefits {
  list-style: none;
  padding: 0;
  margin: 30px 0 0;
  display: grid;
  gap: 10px;
}
.hero-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}
.hero-benefits i {
  color: #4642ff;
  margin-top: 4px;
}
.hero-founder {
  align-self: end;
  justify-self: end;
  max-width: 260px;
  margin-bottom: 44px;
  padding-left: 16px;
  border-left: 1px solid rgba(255, 255, 255, 0.22);
  text-shadow: 0 3px 16px rgba(0, 0, 0, 0.42);
}
.hero-founder strong,
.hero-founder span,
.hero-founder small {
  display: block;
}
.hero-founder strong {
  font-family: Montserrat, sans-serif;
  font-size: 16px;
}
.hero-founder span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.78);
}
.hero-founder small {
  font-size: 11px;
  color: var(--muted-2);
}

.trust-strip {
  background: #09090d;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.trust-grid > div {
  min-height: 96px;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-right: 1px solid var(--line);
}
.trust-grid > div:first-child {
  padding-left: 0;
}
.trust-grid > div:last-child {
  padding-right: 0;
  border-right: 0;
}
.trust-grid i {
  color: #4642ff;
  font-size: 15px;
}
.trust-grid strong,
.trust-grid small {
  display: block;
}
.trust-grid strong {
  font-size: 12px;
}
.trust-grid small {
  font-size: 10px;
  color: var(--muted-2);
  margin-top: 2px;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 58px;
}
.intro-grid h2 {
  margin-top: 16px;
  font-size: clamp(38px, 4vw, 58px);
}
.intro-grid h2 span {
  color: #4642ff;
}
.intro-copy {
  padding-top: 42px;
}
.intro-copy p {
  color: var(--muted);
}
.intro-copy p + p {
  margin-top: 14px;
}
.capabilities {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.capability {
  padding: 28px 24px;
  border-right: 1px solid var(--line);
}
.capability:first-child {
  padding-left: 0;
}
.capability:last-child {
  padding-right: 0;
  border-right: 0;
}
.capability i {
  font-size: 18px;
  color: #4642ff;
}
.capability h3 {
  margin-top: 18px;
  font-size: 18px;
}
.capability p {
  margin-top: 8px;
  color: var(--muted-2);
  font-size: 13px;
}

.included-highlight {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0;
  border-top: 1px solid rgba(70, 66, 255, 0.7);
  border-bottom: 1px solid var(--line);
  margin-bottom: 18px;
}
.included-highlight small {
  display: block;
  color: var(--muted-2);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
}
.included-highlight h3 {
  margin-top: 8px;
  font-size: 32px;
}
.included-highlight strong {
  font-family: Montserrat, sans-serif;
  font-size: 30px;
  color: #4642ff;
}
.included-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 40px;
}
.included-item {
  display: grid;
  grid-template-columns: 28px 1fr 18px;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  border-bottom: 1px solid var(--line);
}
.included-item > i:first-child {
  color: #4642ff;
}
.included-item span {
  font-size: 14px;
}
.item-check {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.36);
}
.section-inline-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.section-inline-cta p {
  color: var(--muted);
}
.section-inline-cta strong {
  color: #fff;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.project-card {
  margin: 0;
}
.project-frame {
  border: 1px solid var(--line);
  background: #0d0d11;
  overflow: hidden;
}
.project-browser {
  height: 28px;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 10px;
  border-bottom: 1px solid var(--line);
}
.project-browser span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}
.project-placeholder {
  aspect-ratio: 16/10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background:
    linear-gradient(145deg, rgba(70, 66, 255, 0.07), transparent 42%), #0f1014;
}
.project-placeholder i {
  font-size: 26px;
  color: rgba(255, 255, 255, 0.22);
}
.project-placeholder strong {
  font-size: 13px;
}
.project-placeholder span {
  font-size: 11px;
  color: var(--muted-2);
}
.project-card figcaption {
  padding-top: 12px;
}
.project-card figcaption strong,
.project-card figcaption span {
  display: block;
}
.project-card figcaption strong {
  font-size: 12px;
}
.project-card figcaption span {
  font-size: 10px;
  color: var(--muted-2);
  margin-top: 2px;
}

.process-list {
  border-top: 1px solid var(--line);
}
.process-item {
  display: grid;
  grid-template-columns: 60px 1fr 36px;
  gap: 20px;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.process-number {
  font-size: 11px;
  font-weight: 800;
  color: #4642ff;
}
.process-item h3 {
  font-size: 18px;
}
.process-item p {
  margin-top: 6px;
  color: var(--muted-2);
  font-size: 13px;
}
.process-item > i {
  justify-self: end;
  color: #4642ff;
}

.authority-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 84px;
  align-items: center;
}
.authority-image {
  height: 560px;
  overflow: hidden;
  background: #0c0c10;
}
.authority-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 26%;
}
.authority-copy h2 {
  margin-top: 16px;
  font-size: clamp(38px, 4vw, 58px);
}
.authority-copy h2 span {
  color: #4642ff;
}
.authority-copy p {
  margin-top: 18px;
  color: var(--muted);
}
.authority-copy p + p {
  margin-top: 10px;
}
.authority-meta {
  display: flex;
  gap: 30px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.authority-meta > div {
  display: flex;
  align-items: center;
  gap: 12px;
}
.authority-meta i {
  color: #4642ff;
}
.authority-meta strong,
.authority-meta small {
  display: block;
}
.authority-meta strong {
  font-size: 12px;
}
.authority-meta small {
  font-size: 10px;
  color: var(--muted-2);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.testimonial-card {
  padding: 22px;
  border: 1px dashed rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.02);
}
.testimonial-head {
  display: flex;
  align-items: center;
  gap: 10px;
}
.avatar-placeholder {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted-2);
}
.testimonial-head > div {
  min-width: 0;
  flex: 1;
}
.testimonial-head strong,
.testimonial-head small {
  display: block;
}
.testimonial-head strong {
  font-size: 11px;
}
.testimonial-head small {
  font-size: 9px;
  color: var(--muted-2);
}
.google-mark {
  color: rgba(255, 255, 255, 0.32);
}
.testimonial-card p {
  margin-top: 16px;
  color: var(--muted-2);
  font-size: 13px;
}

.offer-shell {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 70px;
  align-items: center;
  padding: 64px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #0d0d11, #121218);
  overflow: hidden;
  position: relative;
}
.offer-shell::before {
  content: '';
  position: absolute;
  right: -120px;
  top: -120px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(70, 66, 255, 0.22), transparent 68%);
}
.offer-copy,
.offer-card {
  position: relative;
  z-index: 1;
}
.offer-copy h2 {
  margin-top: 16px;
  font-size: clamp(36px, 4vw, 56px);
}
.offer-copy p {
  margin-top: 18px;
  color: var(--muted);
}
.offer-card {
  padding-left: 36px;
  border-left: 1px solid rgba(70, 66, 255, 0.42);
}
.offer-kicker {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--muted-2);
}
.offer-price-line {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 8px;
}
.offer-price-line small {
  font-family: Montserrat, sans-serif;
  font-size: 22px;
  font-weight: 700;
}
.offer-price-line strong {
  font-family: Montserrat, sans-serif;
  font-size: 72px;
  line-height: 1;
  letter-spacing: -0.06em;
  color: #4642ff;
}
.offer-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
}
.offer-meta span {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
}
.offer-meta small {
  color: var(--muted-2);
  font-size: 11px;
}
.offer-list {
  list-style: none;
  padding: 0;
  margin: 26px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 18px;
}
.offer-list li {
  font-size: 13px;
  color: var(--muted);
}
.offer-list i {
  margin-right: 8px;
  color: #4642ff;
  font-size: 10px;
}
.offer-card .btn {
  width: 100%;
}
.offer-footnote {
  display: block;
  margin-top: 10px;
  text-align: center;
  color: var(--muted-2);
  font-size: 10px;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 90px;
}
.faq-title h2 {
  margin-top: 16px;
  font-size: 46px;
}
.faq-list {
  border-top: 1px solid var(--line);
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-trigger {
  width: 100%;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 0;
  background: none;
  color: #fff;
  text-align: left;
  font-weight: 700;
  cursor: pointer;
}
.faq-trigger i {
  color: #4642ff;
  font-size: 12px;
  transition: transform 0.2s;
}
.faq-trigger[aria-expanded='true'] i {
  transform: rotate(45deg);
}
.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-panel p {
  padding: 0 34px 18px 0;
  color: var(--muted);
  font-size: 14px;
}

.final-cta {
  background: #08080c;
  text-align: center;
}
.final-cta-inner {
  max-width: 880px;
}
.final-cta h2 {
  margin-top: 16px;
  font-size: clamp(40px, 5vw, 66px);
}
.final-cta p {
  max-width: 720px;
  margin: 18px auto 0;
  color: var(--muted);
}
.final-cta strong {
  display: block;
  margin: 24px 0;
  font-family: Montserrat, sans-serif;
  font-size: 30px;
  color: #4642ff;
}
.final-cta strong span {
  font-family: Inter, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #fff;
  text-transform: uppercase;
}

.site-footer {
  padding: 50px 0 34px;
  background: #050507;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 26px 34px;
  align-items: end;
}
.footer-brand img {
  width: 182px;
}
.footer-brand p {
  margin-top: 10px;
  color: var(--muted-2);
  font-size: 11px;
}
.site-footer nav {
  display: flex;
  gap: 18px;
}
.site-footer nav a {
  font-size: 11px;
  color: var(--muted-2);
}
.footer-copy {
  grid-column: 1/-1;
  margin: 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 10px;
  color: rgba(255, 255, 255, 0.28);
}

.floating-action {
  position: fixed;
  z-index: 70;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}
.whatsapp {
  left: 18px;
  bottom: 18px;
  background: #25d366;
  color: #fff;
  font-size: 21px;
}
.whatsapp.is-pending {
  opacity: 0.26;
  filter: grayscale(1);
  pointer-events: none;
}
.back-to-top {
  right: 18px;
  bottom: 18px;
  background: #232329;
  color: #fff;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: 0.2s;
}
.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
}
.mobile-cta-bar {
  display: none !important;
}

.legal-page {
  min-height: 70vh;
  padding: 130px 0 110px;
  background: var(--bg);
}
.legal-container {
  max-width: 840px;
}
.legal-back {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 12px;
}
.legal-page h1 {
  margin-top: 12px;
  font-size: clamp(40px, 6vw, 64px);
}
.legal-updated {
  margin-top: 8px;
  color: var(--muted-2);
  font-size: 11px;
}
.legal-content {
  margin-top: 42px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.legal-content h2 {
  margin: 30px 0 10px;
  font-size: 20px;
}
.legal-content p {
  color: var(--muted);
}

.reveal {
  opacity: 1;
  transform: none;
}
.js-ready .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.js-ready .reveal-left {
  transform: translateX(-16px);
}
.js-ready .reveal-right {
  transform: translateX(16px);
}
.js-ready .reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1024px) {
  .hero {
    min-height: 780px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero::before {
    background: linear-gradient(
      180deg,
      #000 0%,
      #000 40%,
      rgba(0, 0, 0, 0.22) 62%,
      rgba(0, 0, 0, 0) 100%
    );
  }
  .hero-media {
    position: relative;
    width: 100%;
    height: 420px;
    order: 2;
  }
  .hero-grid {
    min-height: auto;
  }
  .hero-copy {
    padding: 56px 0 24px;
    max-width: 680px;
  }
  .hero-founder {
    position: absolute;
    right: 0;
    bottom: 20px;
    max-width: 220px;
  }
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .trust-grid > div:nth-child(2) {
    border-right: 0;
  }
  .trust-grid > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
  .capabilities {
    grid-template-columns: repeat(2, 1fr);
  }
  .capability:nth-child(2) {
    border-right: 0;
  }
  .capability:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
  .portfolio-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .authority-grid,
  .offer-shell,
  .faq-layout {
    grid-template-columns: 1fr;
  }
  .authority-grid,
  .faq-layout {
    gap: 46px;
  }
  .offer-card {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid rgba(70, 66, 255, 0.42);
    padding-top: 30px;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }
  .site-header {
    height: 72px;
  }
  .brand {
    width: 154px;
  }
  .header-cta {
    padding: 0;
    border: 0;
    background: none;
  }
  .header-cta span {
    display: none;
  }
  .header-cta i {
    width: 38px;
    height: 38px;
  }
  .hero {
    padding-top: 72px;
    min-height: 0;
  }
  .hero-copy {
    padding: 40px 0 26px;
  }
  .hero-copy h1 {
    font-size: clamp(38px, 12vw, 54px);
  }
  .hero-sub {
    font-size: 16px;
  }
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .hero-media {
    height: 390px;
  }
  .hero-founder {
    right: 16px;
    bottom: 18px;
  }
  .trust-grid {
    grid-template-columns: 1fr;
  }
  .trust-grid > div,
  .trust-grid > div:first-child,
  .trust-grid > div:last-child {
    padding: 16px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .trust-grid > div:last-child {
    border-bottom: 0;
  }
  .section {
    padding: 82px 0;
  }
  .section-head {
    margin-bottom: 38px;
  }
  .section-head h2,
  .intro-grid h2,
  .authority-copy h2,
  .faq-title h2,
  .offer-copy h2 {
    font-size: 38px;
  }
  .intro-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .intro-copy {
    padding-top: 0;
  }
  .capabilities {
    grid-template-columns: 1fr;
  }
  .capability,
  .capability:first-child,
  .capability:last-child {
    padding: 24px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .included-highlight {
    align-items: flex-start;
    flex-direction: column;
  }
  .included-highlight h3 {
    font-size: 26px;
  }
  .included-highlight strong {
    font-size: 24px;
  }
  .included-grid {
    grid-template-columns: 1fr;
  }
  .section-inline-cta {
    align-items: flex-start;
    flex-direction: column;
  }
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
  .project-card:nth-child(n + 4) {
    display: none;
  }
  .process-item {
    grid-template-columns: 44px 1fr 28px;
    gap: 12px;
  }
  .process-item h3 {
    font-size: 17px;
  }
  .authority-image {
    height: 440px;
  }
  .authority-meta {
    flex-direction: column;
    gap: 18px;
  }
  .testimonial-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 8px;
    margin-right: -16px;
  }
  .testimonial-card {
    min-width: 86%;
    scroll-snap-align: start;
  }
  .offer-shell {
    padding: 34px 24px;
  }
  .offer-price-line strong {
    font-size: 62px;
  }
  .offer-list {
    grid-template-columns: 1fr;
  }
  .faq-layout {
    gap: 30px;
  }
  .final-cta h2 {
    font-size: 42px;
  }
  .site-footer nav {
    flex-direction: column;
    gap: 8px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .btn,
  .header-cta i,
  .faq-panel,
  .faq-trigger i,
  .back-to-top {
    transition: none !important;
  }
  .js-ready .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* v1.3 */
.section-head,
.section-heading,
.intro-grid,
.faq-title,
.offer-copy,
.authority-copy,
.final-cta-inner {
  text-align: center;
}
.section-head,
.section-heading,
.faq-title,
.offer-copy,
.authority-copy {
  margin-left: auto;
  margin-right: auto;
}
.section-head p,
.section-heading p,
.intro-copy,
.offer-copy p,
.authority-copy p {
  margin-left: auto;
  margin-right: auto;
}
.intro-grid {
  grid-template-columns: 1fr;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  gap: 22px;
}
.intro-copy {
  padding-top: 0;
  max-width: 760px;
}
.capabilities,
.included-grid,
.portfolio-grid,
.process-list,
.testimonial-grid,
.authority-grid,
.offer-shell,
.faq-layout,
.included-highlight,
.section-inline-cta {
  text-align: left;
}
.process-list,
.faq-layout {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.authority-grid,
.offer-shell {
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}
.authority-copy,
.offer-copy {
  text-align: center;
}
.authority-meta {
  justify-content: center;
}
.faq-layout {
  grid-template-columns: 1fr;
  gap: 32px;
}
.faq-title {
  max-width: 650px;
}
.brand-mark {
  width: 68px;
  height: 48px;
  display: flex;
  align-items: center;
}
.brand img[src*='dc-websolutions-mark'] {
  width: auto;
  height: 46px;
  max-width: 68px;
  object-fit: contain;
}
.header-cta {
  background: linear-gradient(
    135deg,
    rgba(70, 66, 255, 0.94),
    rgba(109, 106, 255, 0.94)
  );
  border-color: rgba(255, 255, 255, 0.08);
  color: #fff;
  padding: 8px 10px 8px 16px;
  box-shadow: 0 8px 24px rgba(70, 66, 255, 0.22);
}
.footer-grid {
  grid-template-columns: 1.1fr 0.9fr auto;
  align-items: start;
}
.footer-brand img {
  width: 230px;
}
.footer-company {
  display: flex;
  flex-direction: column;
  gap: 3px;
  color: var(--muted-2);
  font-size: 11px;
}
.footer-company strong {
  color: #fff;
  font-size: 12px;
}
.footer-company a:hover {
  color: #fff;
}
.site-footer nav {
  justify-self: end;
}
.whatsapp {
  background: #25d366 !important;
  color: #fff !important;
  opacity: 1 !important;
  filter: none !important;
  pointer-events: auto !important;
  cursor: pointer;
  border-color: rgba(255, 255, 255, 0.18);
}
.whatsapp:hover {
  transform: translateY(-2px) scale(1.03);
}
.back-to-top {
  cursor: pointer;
}
.back-to-top.is-visible {
  pointer-events: auto !important;
}
@media (max-width: 760px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .site-footer nav {
    justify-self: start;
  }
}

/* v1.4 */
.brand-full {
  width: 220px;
  height: auto;
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}
.brand-full img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.footer-brand img {
  width: 250px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.hero {
  min-height: 100vh !important;
  height: 100svh;
  max-height: none !important;
  display: flex;
  align-items: stretch;
}
.hero-grid {
  min-height: calc(100svh - 82px) !important;
  height: calc(100svh - 82px);
  align-items: center;
}
.hero-media {
  height: 100svh !important;
}
.hero-media img {
  height: 100%;
}

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

@media (max-width: 1024px) {
  .hero {
    min-height: 100svh !important;
    height: auto;
    display: block;
  }
  .hero-grid {
    height: auto;
    min-height: auto !important;
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
  .hero-media {
    position: relative;
    width: 100%;
    height: 42svh !important;
    min-height: 340px;
    max-height: 460px;
    order: 2;
  }
  .hero-copy {
    order: 1;
    width: 100%;
  }
}
@media (max-width: 760px) {
  .site-header {
    height: 68px;
  }
  .brand-full {
    width: 172px;
  }
  .hero {
    padding-top: 68px !important;
    min-height: 100svh !important;
    height: auto !important;
  }
  .hero-grid {
    min-height: 0 !important;
    height: auto !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
  }
  .hero-copy {
    padding: 36px 0 24px !important;
    width: 100% !important;
    max-width: none !important;
  }
  .hero-copy h1 {
    font-size: clamp(36px, 11vw, 50px) !important;
    line-height: 1.02;
    max-width: 100%;
  }
  .hero-sub {
    font-size: 15px;
    line-height: 1.6;
    max-width: 100%;
  }
  .hero-actions {
    width: 100%;
  }
  .hero-actions .btn {
    width: 100%;
    min-height: 54px;
  }
  .hero-benefits {
    margin-top: 22px;
  }
  .hero-media {
    position: relative !important;
    width: calc(100% + 32px) !important;
    height: 44svh !important;
    min-height: 350px !important;
    max-height: 430px !important;
    margin-left: -16px;
    right: auto !important;
    top: auto !important;
    order: 2;
  }
  .hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 24%;
  }
  .hero-founder {
    position: absolute !important;
    right: 16px !important;
    bottom: 18px !important;
    margin: 0 !important;
    z-index: 4;
  }

  .mobile-sticky-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 85;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    background: rgba(5, 5, 7, 0.96);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(14px);
    transform: translateY(110%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      transform 0.24s ease,
      opacity 0.24s ease,
      visibility 0.24s ease;
  }
  .mobile-sticky-cta.is-visible {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .mobile-sticky-cta__price small,
  .mobile-sticky-cta__price strong {
    display: block;
    white-space: nowrap;
  }
  .mobile-sticky-cta__price small {
    color: rgba(255, 255, 255, 0.52);
    font-size: 9px;
    line-height: 1.2;
  }
  .mobile-sticky-cta__price strong {
    margin-top: 2px;
    font-family: Montserrat, Arial, sans-serif;
    font-size: 16px;
    line-height: 1;
    color: #fff;
  }
  .mobile-sticky-cta__button {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 14px;
    border-radius: 9px;
    background: linear-gradient(135deg, #4642ff, #4642ff);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.04em;
    white-space: nowrap;
    box-shadow: 0 8px 22px rgba(70, 66, 255, 0.28);
  }
  .whatsapp,
  .back-to-top {
    bottom: 78px !important;
  }
  .site-footer {
    padding-bottom: 110px;
  }
}
@media (max-width: 380px) {
  .brand-full {
    width: 150px;
  }
  .mobile-sticky-cta {
    gap: 8px;
    padding-left: 10px;
    padding-right: 10px;
  }
  .mobile-sticky-cta__price small {
    display: none;
  }
  .mobile-sticky-cta__price strong {
    font-size: 14px;
  }
  .mobile-sticky-cta__button {
    padding: 0 11px;
    font-size: 9px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .mobile-sticky-cta {
    transition: none !important;
  }
}

/* v1.5 — correções de hero, espaçamento, mobile e oferta Sites + Landing Pages */

/* Header: um único botão, sem círculo interno */
.header-cta {
  min-height: 46px;
  padding: 0 18px !important;
  gap: 9px;
  border-radius: 999px;
}
.header-cta i {
  width: auto !important;
  height: auto !important;
  display: inline-block !important;
  border-radius: 0 !important;
  background: transparent !important;
  font-size: 14px;
}

/* Hero: cria respiro real antes da barra de confiança */
.hero {
  height: 100svh !important;
  min-height: 760px !important;
}
.hero-grid {
  height: 100% !important;
  min-height: 100% !important;
  padding-top: 82px;
  padding-bottom: 72px;
}
.hero-copy {
  padding-top: 28px !important;
  padding-bottom: 28px !important;
}
.hero-benefits {
  margin-bottom: 0;
}
.hero-media {
  height: 100% !important;
}
.hero-founder {
  position: absolute;
  right: clamp(24px, 5vw, 82px);
  bottom: 58px;
  margin: 0;
  z-index: 4;
}

/* A barra não fica colada visualmente no último benefício */
.trust-strip {
  position: relative;
  z-index: 5;
  margin-top: 0;
}

/* Nova apresentação de Site x Landing Page */
.services-section .section-head {
  max-width: 880px;
}
.service-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  max-width: 1040px;
  margin: 48px auto 0;
  text-align: left;
}
.service-choice {
  position: relative;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.035),
    rgba(255, 255, 255, 0.015)
  );
}
.service-choice--accent {
  border-color: rgba(70, 66, 255, 0.42);
  background: linear-gradient(
    180deg,
    rgba(70, 66, 255, 0.1),
    rgba(255, 255, 255, 0.018)
  );
}
.service-choice__icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: rgba(70, 66, 255, 0.12);
  color: #4642ff;
  font-size: 18px;
}
.service-choice__label {
  display: block;
  margin-top: 24px;
  color: #4642ff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
}
.service-choice h3 {
  margin-top: 10px;
  font-size: 28px;
}
.service-choice > p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 14px;
}
.service-choice ul {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 10px;
}
.service-choice li {
  display: flex;
  gap: 9px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}
.service-choice li i {
  margin-top: 4px;
  color: #4642ff;
  font-size: 10px;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.service-link i {
  color: #4642ff;
}

/* Mobile corrigido: copy -> foto -> Daniel, sem quebra e sem sumir */
@media (max-width: 1024px) {
  .hero {
    height: auto !important;
    min-height: 100svh !important;
    display: flex !important;
    flex-direction: column !important;
    padding-top: 68px;
  }
  .hero-grid {
    order: 1;
    height: auto !important;
    min-height: 0 !important;
    padding-top: 0;
    padding-bottom: 40px;
  }
  .hero-copy {
    padding-top: 44px !important;
    padding-bottom: 0 !important;
  }
  .hero-media {
    order: 2;
    position: relative !important;
    inset: auto !important;
    width: 100% !important;
    height: 52svh !important;
    min-height: 390px !important;
    max-height: 560px !important;
    margin: 0 !important;
  }
  .hero-media::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(
      180deg,
      #000 0%,
      rgba(0, 0, 0, 0) 22%,
      rgba(0, 0, 0, 0) 73%,
      rgba(0, 0, 0, 0.62) 100%
    );
    pointer-events: none;
  }
  .hero-media img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center 24% !important;
  }
  .hero-founder {
    display: block !important;
    position: absolute !important;
    right: 24px !important;
    bottom: 26px !important;
    left: auto !important;
    margin: 0 !important;
    padding-left: 14px;
    z-index: 4;
    max-width: 220px;
  }
  .service-choice-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .header-inner {
    gap: 12px;
  }
  .brand-full {
    width: 145px !important;
  }
  .header-cta {
    min-height: 40px;
    padding: 0 12px !important;
    font-size: 10px;
  }
  .header-cta span {
    display: inline !important;
  }

  .hero {
    padding-top: 68px !important;
  }
  .hero-grid {
    width: min(calc(100% - 32px), var(--container));
    padding-bottom: 34px;
  }
  .hero-copy {
    padding-top: 34px !important;
  }
  .hero-copy h1 {
    font-size: clamp(36px, 10.7vw, 48px) !important;
  }
  .hero-actions {
    margin-top: 26px;
  }
  .hero-note {
    width: 100%;
    justify-content: center;
  }
  .hero-benefits {
    margin-top: 26px;
    gap: 11px;
    padding-bottom: 8px;
  }
  .hero-benefits li {
    line-height: 1.45;
  }
  .hero-media {
    height: 48svh !important;
    min-height: 360px !important;
    max-height: 500px !important;
  }
  .hero-founder {
    right: 18px !important;
    bottom: 22px !important;
    max-width: 210px;
  }
  .hero-founder strong {
    font-size: 15px;
  }
  .hero-founder span {
    font-size: 11px;
  }
  .hero-founder small {
    font-size: 10px;
  }

  .service-choice {
    padding: 28px 22px;
  }
  .service-choice h3 {
    font-size: 24px;
  }

  /* barra fixa mobile continua acima dos botões flutuantes */
  .mobile-sticky-cta__price strong {
    font-size: 14px;
  }
}

@media (max-width: 410px) {
  .brand-full {
    width: 132px !important;
  }
  .header-cta {
    padding: 0 10px !important;
    font-size: 9px;
    gap: 6px;
  }
  .header-cta i {
    font-size: 12px;
  }
  .hero-copy h1 {
    font-size: 36px !important;
  }
}

/* v1.6 — volta ao foco exclusivo em Landing Page e correção do respiro do Hero */

/* Remove qualquer efeito residual da seção Site x Landing Page que não existe mais */
.service-choice-grid,
.service-choice,
.service-choice--accent,
.service-choice__icon,
.service-choice__label,
.service-link {
  all: unset;
}

/* O Hero deixa de encostar visualmente na barra inferior */
.hero {
  height: auto !important;
  min-height: 100svh !important;
  padding-bottom: 48px !important;
  box-sizing: border-box;
}

.hero-grid {
  min-height: calc(100svh - 82px) !important;
  height: auto !important;
  padding-top: 82px !important;
  padding-bottom: 72px !important;
  align-items: center !important;
}

.hero-copy {
  padding-top: 34px !important;
  padding-bottom: 34px !important;
}

.hero-benefits {
  margin-top: 28px !important;
  padding-bottom: 18px !important;
}

.hero-media {
  height: 100% !important;
  min-height: 100svh !important;
}

.hero-founder {
  bottom: 82px !important;
}

/* Cria um pequeno espaço escuro entre Hero e barra de confiança */
.trust-strip {
  margin-top: 0 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Desktop largo: evita que o último benefício fique a menos de 48px da dobra inferior */
@media (min-width: 1025px) {
  .hero-copy {
    max-width: 700px;
  }
  .hero-grid {
    padding-bottom: 90px !important;
  }
  .hero-benefits {
    padding-bottom: 26px !important;
  }
}

/* Mobile preserva a foto do Daniel e aumenta o respiro antes dela */
@media (max-width: 1024px) {
  .hero {
    padding-bottom: 0 !important;
    min-height: 100svh !important;
  }
  .hero-grid {
    min-height: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 46px !important;
  }
  .hero-copy {
    padding-top: 44px !important;
    padding-bottom: 0 !important;
  }
  .hero-benefits {
    padding-bottom: 12px !important;
  }
  .hero-media {
    min-height: 390px !important;
    height: 52svh !important;
  }
  .hero-founder {
    bottom: 26px !important;
  }
}

@media (max-width: 760px) {
  .hero-grid {
    padding-bottom: 38px !important;
  }
  .hero-copy {
    padding-top: 36px !important;
  }
  .hero-benefits {
    margin-top: 24px !important;
    padding-bottom: 10px !important;
  }
  .hero-media {
    min-height: 360px !important;
    height: 48svh !important;
  }
  .hero-founder {
    bottom: 22px !important;
  }
}

/* v1.7 — Hero 100vh com título mais curto e transição mais suave para a foto */

/* Desktop: hero volta a ocupar exatamente a viewport */
.hero {
  position: relative;
  height: 100vh !important;
  min-height: 100svh !important;
  padding-top: 82px !important;
  padding-bottom: 0 !important;
  overflow: hidden;
}

.hero-grid {
  position: relative;
  z-index: 2;
  min-height: calc(100vh - 82px) !important;
  height: calc(100vh - 82px) !important;
  padding-top: 0 !important;
  padding-bottom: 48px !important;
  display: grid;
  align-items: center;
}

.hero-copy {
  max-width: 660px;
  padding-top: 12px !important;
  padding-bottom: 0 !important;
}

.hero-copy h1 {
  margin-top: 14px !important;
  max-width: 650px;
  font-size: clamp(44px, 4.8vw, 68px) !important;
  line-height: 1.02;
}

.hero-sub {
  max-width: 580px;
  margin-top: 20px !important;
  font-size: 17px;
  line-height: 1.65;
}

.hero-actions {
  margin-top: 28px !important;
}

.hero-benefits {
  margin-top: 24px !important;
  gap: 10px;
  padding-bottom: 0 !important;
}

/* Foto ocupa toda a altura do hero */
.hero-media {
  top: 0;
  right: 0;
  width: 47%;
  height: 100% !important;
  min-height: 0 !important;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 24%;
}

/* Suaviza a emenda entre a área preta e a foto */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    #000000 0%,
    #000000 33%,
    rgba(0, 0, 0, 0.985) 42%,
    rgba(0, 0, 0, 0.94) 49%,
    rgba(0, 0, 0, 0.82) 57%,
    rgba(0, 0, 0, 0.58) 66%,
    rgba(0, 0, 0, 0.26) 77%,
    rgba(0, 0, 0, 0.08) 86%,
    rgba(0, 0, 0, 0) 94%
  );
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 20%;
  transform: translateX(-28%);
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.84) 0%,
    rgba(0, 0, 0, 0.62) 28%,
    rgba(0, 0, 0, 0.28) 62%,
    rgba(0, 0, 0, 0) 100%
  );
  filter: blur(18px);
  opacity: 0.9;
}

.hero-media-shadow {
  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.08),
      rgba(0, 0, 0, 0.18) 52%,
      rgba(0, 0, 0, 0.34) 100%
    ),
    linear-gradient(270deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.14) 100%);
}

.hero-founder {
  bottom: 64px !important;
  right: clamp(24px, 4vw, 74px);
}

/* Barra de confiança segue separada visualmente, sem tirar o 100vh do hero */
.trust-strip {
  position: relative;
  z-index: 5;
  margin-top: 0 !important;
}

/* Tablet e abaixo: mantém layout flexível e evita quebra */
@media (max-width: 1024px) {
  .hero {
    height: auto !important;
    min-height: 100svh !important;
    padding-top: 68px !important;
  }

  .hero-grid {
    height: auto !important;
    min-height: 0 !important;
    padding-bottom: 40px !important;
  }

  .hero-copy {
    max-width: none;
    padding-top: 36px !important;
  }

  .hero-copy h1 {
    max-width: 100%;
    font-size: clamp(40px, 7vw, 58px) !important;
  }

  .hero-sub {
    max-width: 100%;
  }

  .hero::before {
    background: linear-gradient(
      180deg,
      #000000 0%,
      #000000 40%,
      rgba(0, 0, 0, 0.65) 58%,
      rgba(0, 0, 0, 0.18) 78%,
      rgba(0, 0, 0, 0) 100%
    );
  }

  .hero::after {
    display: none;
  }

  .hero-media {
    width: 100% !important;
    height: 52svh !important;
  }

  .hero-founder {
    bottom: 26px !important;
  }
}

@media (max-width: 760px) {
  .hero {
    min-height: 100svh !important;
  }

  .hero-grid {
    padding-bottom: 34px !important;
  }

  .hero-copy {
    padding-top: 34px !important;
  }

  .hero-copy h1 {
    font-size: clamp(36px, 10vw, 46px) !important;
  }

  .hero-sub {
    margin-top: 18px !important;
    font-size: 15px;
    line-height: 1.6;
  }

  .hero-actions {
    margin-top: 24px !important;
  }

  .hero-benefits {
    margin-top: 24px !important;
    gap: 11px;
  }

  .hero-media {
    height: 48svh !important;
    min-height: 360px !important;
  }

  .hero-founder {
    bottom: 22px !important;
  }
}

/* v1.8 — centralização dos textos no mobile */
@media (max-width: 760px) {
  .hero-copy,
  .hero-sub,
  .hero-note,
  .section-head,
  .section-heading,
  .intro-grid,
  .intro-copy,
  .included-highlight,
  .section-inline-cta,
  .authority-copy,
  .faq-title,
  .offer-copy,
  .final-cta-inner,
  .footer-brand,
  .footer-company {
    text-align: center !important;
  }

  .hero-copy .eyebrow,
  .section-head .eyebrow,
  .section-heading .eyebrow,
  .authority-copy .eyebrow,
  .faq-title .eyebrow,
  .offer-copy .eyebrow,
  .final-cta-inner .eyebrow {
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-note {
    justify-content: center !important;
  }

  .hero-benefits {
    width: min(100%, 420px);
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .hero-benefits li {
    justify-content: center;
    text-align: center;
  }

  .capability {
    text-align: center !important;
  }

  .capability i {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }

  .included-highlight {
    align-items: center !important;
  }

  .included-item {
    grid-template-columns: 28px 1fr 18px;
    text-align: left !important;
  }

  .section-inline-cta {
    align-items: center !important;
  }

  .portfolio-grid,
  .project-card,
  .process-list,
  .process-item,
  .testimonial-grid,
  .testimonial-card,
  .faq-list,
  .faq-item,
  .offer-card {
    text-align: left !important;
  }

  .authority-meta {
    justify-content: center !important;
    align-items: center;
  }

  .authority-meta > div {
    justify-content: center;
    text-align: left;
  }

  .offer-list {
    text-align: left !important;
  }

  .footer-grid {
    text-align: center;
  }

  .site-footer nav {
    justify-self: center !important;
    align-items: center;
  }
}

/* v1.9 — portfólio com 6 imagens enviadas pelo usuário, sem links */
.portfolio-grid--images {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  max-width: 1180px;
  margin: 48px auto 0;
}
.portfolio-grid--images .project-card {
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.26);
}
.portfolio-grid--images .project-card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: top center;
  background: #0b0b0d;
}
.portfolio-grid--images .project-card figcaption {
  padding: 14px 16px 16px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  text-align: center;
}
@media (max-width: 900px) {
  .portfolio-grid--images {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}
@media (max-width: 760px) {
  .portfolio-grid--images {
    margin-top: 34px;
  }
  .portfolio-grid--images .project-card {
    border-radius: 14px;
  }
  .portfolio-grid--images .project-card figcaption {
    font-size: 12px;
    padding: 12px 14px 14px;
  }
}

/* v1.10 — portfólio 3x2 com lightbox + avaliações reais do Google */
.portfolio-grid--images {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 18px !important;
}
.project-card--clickable {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0;
  margin: 0;
  width: 100%;
  overflow: hidden;
  border-radius: 14px;
  background: #0d0d10;
  color: #fff;
  cursor: pointer;
  text-align: left;
  box-shadow: none;
  transition:
    transform 0.24s ease,
    border-color 0.24s ease,
    box-shadow 0.24s ease;
}
.project-card--clickable:hover {
  transform: translateY(-3px);
  border-color: rgba(70, 66, 255, 0.42);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28);
}
.project-card__image {
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
}
.project-card__image img {
  width: 100%;
  height: 100% !important;
  object-fit: cover !important;
  object-position: top center !important;
  transition: transform 0.3s ease;
}
.project-card--clickable:hover .project-card__image img {
  transform: scale(1.025);
}
.project-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(0, 0, 0, 0.54);
  opacity: 0;
  transition: opacity 0.25s ease;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.project-card--clickable:hover .project-card__overlay,
.project-card--clickable:focus-visible .project-card__overlay {
  opacity: 1;
}
.project-card__overlay i {
  font-size: 18px;
  color: #4642ff;
}
.project-card__caption {
  display: block;
  padding: 13px 15px 15px;
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.72);
}

.portfolio-lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  padding: 54px 24px 30px;
  background: rgba(0, 0, 0, 0.94);
  backdrop-filter: blur(12px);
}
.portfolio-lightbox[hidden] {
  display: none;
}
.portfolio-lightbox__content {
  width: min(1280px, 94vw);
  height: calc(100vh - 90px);
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.portfolio-lightbox__content img {
  display: block;
  max-width: 100%;
  max-height: calc(100vh - 130px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
}
.portfolio-lightbox__caption {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  text-align: center;
}
.portfolio-lightbox__close {
  position: absolute;
  top: 18px;
  right: 20px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  background: #17171b;
  color: #fff;
  cursor: pointer;
  font-size: 18px;
}

.testimonial-grid--real {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 16px !important;
}
.google-review {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.025);
  text-align: left;
}
.google-review__head {
  display: flex;
  align-items: center;
  gap: 12px;
}
.google-review__avatar {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  border-radius: 50%;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
}
.google-review__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.google-review__person {
  min-width: 0;
  flex: 1;
}
.google-review__person strong,
.google-review__person small {
  display: block;
}
.google-review__person strong {
  font-size: 13px;
  line-height: 1.25;
}
.google-review__person small {
  margin-top: 3px;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.44);
}
.google-review__google {
  color: rgba(255, 255, 255, 0.52);
  font-size: 17px;
}
.google-review__stars {
  display: flex;
  gap: 3px;
  margin-top: 17px;
  color: #fabb05;
  font-size: 11px;
}
.google-review p {
  margin-top: 13px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.7;
}

@media (max-width: 960px) {
  .portfolio-grid--images {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  .testimonial-grid--real {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 760px) {
  .portfolio-grid--images {
    grid-template-columns: 1fr !important;
  }
  .project-card__overlay {
    opacity: 1;
    justify-content: flex-end;
    align-items: flex-end;
    padding: 14px;
    background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.72));
  }
  .project-card__overlay i {
    display: none;
  }
  .testimonial-grid--real {
    display: flex !important;
    gap: 14px !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 8px;
    margin-right: -16px;
  }
  .google-review {
    min-width: 86%;
    scroll-snap-align: start;
  }
  .portfolio-lightbox {
    padding: 64px 14px 20px;
  }
  .portfolio-lightbox__content {
    width: 100%;
    height: calc(100svh - 84px);
  }
  .portfolio-lightbox__content img {
    max-height: calc(100svh - 125px);
    border-radius: 8px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .project-card--clickable,
  .project-card__image img,
  .project-card__overlay {
    transition: none !important;
  }
}

/* v1.12 — centralização mobile da faixa de confiança, logo do footer e 6 projetos visíveis */
@media (max-width: 760px) {
  /* Faixa "Desde 2016 / Atendimento direto / Empresa brasileira / Pagamento facilitado" */
  .trust-grid {
    grid-template-columns: 1fr !important;
  }

  .trust-grid > div,
  .trust-grid > div:first-child,
  .trust-grid > div:last-child,
  .trust-grid > div:nth-child(2),
  .trust-grid > div:nth-child(3),
  .trust-grid > div:nth-child(4) {
    min-height: 88px;
    padding: 18px 12px !important;
    border-right: 0 !important;
    border-bottom: 1px solid var(--line) !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center !important;
  }

  .trust-grid > div:last-child {
    border-bottom: 0 !important;
  }

  .trust-grid i {
    margin: 0 auto;
    font-size: 17px;
  }

  .trust-grid span {
    display: block;
    text-align: center !important;
  }

  .trust-grid strong,
  .trust-grid small {
    text-align: center !important;
  }

  .trust-grid strong {
    font-size: 13px;
  }

  .trust-grid small {
    margin-top: 3px;
    font-size: 10px;
  }

  /* Footer logo centralizado */
  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center !important;
  }

  .footer-brand img {
    display: block;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .footer-company {
    align-items: center;
    text-align: center !important;
  }

  .site-footer nav {
    width: 100%;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .footer-copy {
    text-align: center;
  }

  /* Mostrar os 6 projetos no celular */
  .portfolio-grid--images {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  .portfolio-grid--images .project-card,
  .portfolio-grid--images .project-card:nth-child(n + 4),
  .project-card:nth-child(n + 4) {
    display: block !important;
  }
}

/* v1.13 — centralização mobile da oferta e nova foto da seção de autoridade */
@media (max-width: 760px) {
  /* Card/área da oferta */
  .offer-shell,
  .offer-card,
  .offer-copy,
  .offer-aside,
  .offer-price,
  .offer-terms,
  .offer-note,
  .offer-cta,
  .offer-security {
    text-align: center !important;
  }

  .offer-shell {
    justify-items: center;
  }

  .offer-card {
    margin-left: auto !important;
    margin-right: auto !important;
    align-items: center !important;
  }

  .offer-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }

  .offer-price > * {
    text-align: center !important;
  }

  .offer-card .price-row,
  .offer-card .offer-price-row,
  .offer-card .price-head,
  .offer-card .price-meta,
  .offer-card .price-installments,
  .offer-card .price-regular,
  .offer-card .price-foot {
    width: 100%;
    justify-content: center !important;
    text-align: center !important;
  }

  .offer-card .btn,
  .offer-card .offer-cta,
  .offer-card .btn-large {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .offer-list {
    width: min(100%, 360px);
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: left !important;
  }

  .offer-list li {
    justify-content: flex-start;
  }

  .offer-card small,
  .offer-card span,
  .offer-card strong {
    text-align: center;
  }

  /* Seção QUEM ESTÁ POR TRÁS */
  .authority-grid {
    text-align: center !important;
  }

  .authority-visual,
  .authority-media,
  .authority-photo {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .authority-visual img,
  .authority-media img,
  .authority-photo img {
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

/* v1.15 — redes sociais no footer + novo WhatsApp */
.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}
.footer-links .footer-legal {
  display: flex;
  gap: 18px;
  justify-self: auto;
}
.footer-social {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  color: var(--muted-2);
  font-size: 10px;
  transition:
    color 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}
.footer-social a:hover {
  color: #fff;
  border-color: rgba(70, 66, 255, 0.55);
  background: rgba(70, 66, 255, 0.08);
}
.footer-social i {
  color: #4642ff;
  font-size: 13px;
}

@media (max-width: 760px) {
  .footer-links {
    width: 100%;
    align-items: center;
  }
  .footer-links .footer-legal {
    width: 100%;
    align-items: center;
    justify-content: center;
  }
  .footer-social {
    width: 100%;
    justify-content: center;
  }
}

/* v1.16 — botões sem bordas conflitantes + WhatsApp com mensagem rastreável */
.btn,
.btn-small,
.btn-large,
.header-cta,
.mobile-sticky-cta__button,
.floating-action.whatsapp {
  border-color: transparent !important;
  border-width: 0 !important;
}

.btn:hover,
.btn:focus-visible,
.header-cta:hover,
.header-cta:focus-visible,
.mobile-sticky-cta__button:hover,
.mobile-sticky-cta__button:focus-visible,
.floating-action.whatsapp:hover,
.floating-action.whatsapp:focus-visible {
  border-color: transparent !important;
}

/* Mantém o botão de voltar ao topo visualmente limpo e coerente. */
.back-to-top {
  border: 0 !important;
}

.price-cents {
  font-size: 0.46em;
  vertical-align: top;
  position: relative;
  top: 0.08em;
  margin-left: 1px;
}
