:root {
  --radius: 16px;
  --radius2: 12px;
  --container: 1120px;
  color-scheme: light;
  --bg: #eef2f7;
  --surface: #ffffff;
  --surface2: #f8fafc;
  --text: #0f172a;
  --muted: #64748b;
  --border: rgba(15, 23, 42, 0.12);
  --primary: #ea580c;
  --primary2: #f97316;
  --accent: #c2410c;
  --urgent: #dc2626;
  --shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
  --focus: 0 0 0 4px rgba(234, 88, 12, 0.25);
  --body-grad: radial-gradient(900px 520px at 14% 8%, rgba(249, 115, 22, 0.14), rgba(0, 0, 0, 0) 55%),
    linear-gradient(180deg, #ffffff, var(--bg));
  --header-bg: rgba(255, 255, 255, 0.9);
  --sticky-bg: rgba(255, 255, 255, 0.94);
  --card-bg: linear-gradient(180deg, #ffffff, #f8fafc);
  --input-bg: #ffffff;
  --placeholder: rgba(100, 116, 139, 0.75);
  --footer-bg: linear-gradient(180deg, rgba(248, 250, 252, 0.95), #f1f5f9);
  --stat-inner-bg: linear-gradient(180deg, rgba(255, 255, 255, 0.98), #f8fafc);
  --pill-bg: rgba(15, 23, 42, 0.04);
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
  color: var(--text);
  background: var(--body-grad);
  line-height: 1.5;
  overflow-x: clip;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 16px;
}
.skip-link {
  position: absolute;
  left: -9999px;
  top: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 10px 12px;
  border-radius: 10px;
  box-shadow: var(--shadow);
  z-index: 999;
}
.skip-link:focus {
  left: 16px;
  outline: none;
  box-shadow: var(--focus), var(--shadow);
}
.site-header {
  position: sticky;
  top: 0;
  background: var(--header-bg);
  backdrop-filter: saturate(1.2) blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 50;
}
.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  flex: 1 1 auto;
}
.brand:hover {
  text-decoration: none;
}
.brand-logo-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  max-width: 100%;
  border-radius: 18px;
  transition: background 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  background: rgba(255, 255, 255, 0.92);
  padding: 10px 14px;
  border: 1px solid var(--border);
  box-shadow: 0 10px 36px rgba(15, 23, 42, 0.1);
}
.brand-logo-img {
  display: block;
  width: auto;
  height: clamp(60px, 26vw, 104px);
  max-width: 100%;
  object-fit: contain;
  object-position: left center;
}
.top-nav {
  display: none;
  gap: 16px;
}
.top-nav a {
  font-size: 14px;
  font-weight: 800;
  color: var(--muted);
  padding: 8px 10px;
  border-radius: 10px;
  white-space: nowrap;
}
.top-nav a:hover {
  color: var(--text);
  background: rgba(249, 115, 22, 0.1);
  text-decoration: none;
}
.header-ctas {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.1px;
  cursor: pointer;
  user-select: none;
  transition: transform 0.06s ease, background 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
  min-height: 44px;
}
.btn:active {
  transform: translateY(1px);
}
.btn:focus {
  outline: none;
  box-shadow: var(--focus);
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary2));
  color: #fff;
}
.btn-primary:hover {
  text-decoration: none;
  opacity: 0.95;
}
.btn-ghost {
  background: rgba(249, 115, 22, 0.06);
  border-color: var(--border);
  color: var(--text);
}
.btn-ghost:hover {
  text-decoration: none;
  background: rgba(249, 115, 22, 0.1);
  border-color: rgba(249, 115, 22, 0.22);
}
.btn-outline {
  background: rgba(249, 115, 22, 0.06);
  border-color: rgba(249, 115, 22, 0.34);
  color: var(--primary2);
}
.btn-outline:hover {
  text-decoration: none;
  background: rgba(249, 115, 22, 0.1);
}
.btn-whatsapp {
  background: #0b7d55;
  color: #fff;
}
.btn-whatsapp:hover {
  text-decoration: none;
  opacity: 0.95;
}
.btn-urgent {
  background: var(--urgent);
  color: #fff;
}
.btn-urgent:hover {
  text-decoration: none;
  opacity: 0.95;
}
.btn-lg {
  padding: 12px 16px;
  border-radius: 14px;
  font-size: 15px;
}

.hero {
  padding: 28px 0 12px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 900;
  color: var(--accent);
  background: rgba(249, 115, 22, 0.14);
  border: 1px solid rgba(249, 115, 22, 0.28);
  padding: 8px 10px;
  border-radius: 999px;
  font-size: 13px;
}
h1 {
  margin: 10px 0 10px;
  font-size: clamp(1.5rem, 5.5vw, 2.125rem);
  line-height: 1.12;
  letter-spacing: -0.5px;
}
.subheadline {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  max-width: 60ch;
}
.trust-pills {
  list-style: none;
  padding: 0;
  margin: 16px 0 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.pill {
  display: inline-flex;
  padding: 8px 10px;
  border-radius: 999px;
  background: var(--pill-bg);
  border: 1px solid var(--border);
  font-size: 13px;
  color: var(--muted);
}
.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 10px 0 10px;
  align-items: stretch;
}
.hero-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
  overflow-wrap: anywhere;
}
.hero-meta a {
  color: var(--accent);
  font-weight: 900;
}

.card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.media-card {
  overflow: hidden;
}
.hero-media picture {
  display: block;
}
.media-card img {
  border-bottom: 1px solid var(--border);
}
.media-card figcaption {
  padding: 10px 12px;
  color: var(--muted);
  font-size: 13px;
}
.media-duo {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 12px;
}
.media-duo figure {
  overflow: hidden;
}
.media-duo figcaption {
  padding: 10px 12px;
  color: var(--muted);
  font-size: 13px;
  border-top: 1px solid var(--border);
}

.hero-media img {
  width: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}
.hero-media .media-card > img {
  min-height: 300px;
}
.hero-media .media-duo img {
  min-height: 240px;
}

.media-photo {
  width: 100%;
  display: block;
  min-height: 220px;
  border-bottom: 1px solid var(--border);
  background-size: cover;
  background-position: center;
  position: relative;
  isolation: isolate;
}
.media-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.4));
  pointer-events: none;
  z-index: 1;
}
.media-photo--hero {
  aspect-ratio: 4/3;
  min-height: 320px;
  background-image: radial-gradient(1200px 600px at 70% 35%, rgba(251, 146, 60, 0.28), rgba(251, 146, 60, 0) 60%),
    linear-gradient(135deg, rgba(11, 18, 32, 0.98), rgba(44, 26, 16, 0.86));
}
.media-photo--team {
  aspect-ratio: 4/3;
  min-height: 200px;
  background-image: radial-gradient(600px 340px at 30% 30%, rgba(251, 146, 60, 0.3), rgba(251, 146, 60, 0) 60%),
    linear-gradient(135deg, rgba(13, 16, 24, 0.96), rgba(62, 32, 16, 0.82));
}
.media-photo--modern {
  aspect-ratio: 4/3;
  min-height: 200px;
  background-image: radial-gradient(520px 320px at 70% 40%, rgba(251, 146, 60, 0.26), rgba(251, 146, 60, 0) 60%),
    linear-gradient(135deg, rgba(12, 18, 28, 0.96), rgba(52, 28, 16, 0.82));
}

.section {
  padding: 34px 0;
}
.section-head {
  margin-bottom: 16px;
  padding: 0 6px;
  text-align: center;
}
h2 {
  margin: 0 0 8px;
  font-size: clamp(1.25rem, 4vw, 1.625rem);
  line-height: 1.18;
  letter-spacing: -0.2px;
}
.section-head h2 {
  max-width: 26ch;
  margin-left: auto;
  margin-right: auto;
}
.lead {
  margin: 6px auto 0;
  color: var(--muted);
  max-width: 62ch;
}
h3 {
  margin: 0 0 8px;
  font-size: 18px;
}
h4 {
  margin: 14px 0 8px;
  font-size: 16px;
}
.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.icon-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius2);
  padding: 14px 14px 12px;
  box-shadow: var(--shadow);
}
.icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: rgba(249, 115, 22, 0.16);
  border: 1px solid rgba(249, 115, 22, 0.26);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 950;
  color: var(--accent);
  margin-bottom: 10px;
}
.icon-card p {
  margin: 0;
  color: var(--muted);
}
.checklist {
  padding: 16px;
}
.checklist ul {
  margin: 0;
  padding: 0 0 0 18px;
  color: var(--muted);
}
.checklist li {
  margin: 8px 0;
}
.inline-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}
.stats {
  padding: 16px;
  display: grid;
  gap: 12px;
}
.stat {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px;
  background: var(--stat-inner-bg);
}
.stat-number {
  font-weight: 950;
  font-size: 22px;
  color: var(--primary);
  font-variant-numeric: tabular-nums;
  min-width: 5ch;
}
.stat-label {
  color: var(--muted);
  font-size: 13px;
}
.small {
  font-size: 12.5px;
}
.muted {
  color: var(--muted);
}

.benefit {
  padding: 16px;
}
.testimonial {
  margin: 0;
  display: grid;
  gap: 10px;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--stat-inner-bg);
}
.testimonial blockquote {
  margin: 0;
  color: var(--text);
  font-weight: 650;
}
.testimonial figcaption {
  color: var(--muted);
  font-size: 13px;
}
.testimonials {
  padding: 16px;
  display: grid;
  gap: 12px;
}
.before-after {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.before-after > div {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.tag {
  position: absolute;
  left: 10px;
  top: 10px;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  font-size: 12px;
  font-weight: 950;
  padding: 6px 8px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
}
.logos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.logo {
  border: 1px dashed rgba(249, 115, 22, 0.34);
  border-radius: 14px;
  padding: 12px;
  text-align: center;
  color: var(--muted);
  font-weight: 900;
  background: rgba(249, 115, 22, 0.06);
}

.service {
  padding: 16px;
}
.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.steps li {
  padding: 14px;
  border-radius: var(--radius2);
}
.steps strong {
  display: block;
  margin-bottom: 6px;
}
.steps span {
  color: var(--muted);
}

.mini-list {
  margin: 0;
  padding: 0 0 0 18px;
  color: var(--muted);
}
.mini-list li {
  margin: 8px 0;
}
.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}
.badge {
  border: 1px solid rgba(194, 65, 12, 0.22);
  background: rgba(194, 65, 12, 0.06);
  padding: 8px 10px;
  border-radius: 999px;
  font-weight: 850;
  color: var(--primary);
  font-size: 12px;
}

.form-card {
  padding: 16px;
  display: grid;
  gap: 12px;
}
.hp-field {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.field {
  display: grid;
  gap: 6px;
}
.field.full {
  grid-column: 1 / -1;
}
label {
  font-weight: 800;
  font-size: 13px;
}
input,
select,
textarea {
  width: 100%;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--input-bg);
  color: var(--text);
  font: inherit;
}
select option {
  background: var(--surface);
  color: var(--text);
}
input::placeholder,
textarea::placeholder {
  color: var(--placeholder);
}
input:focus,
select:focus,
textarea:focus {
  outline: none;
  box-shadow: var(--focus);
  border-color: rgba(249, 115, 22, 0.55);
}
.hint {
  min-height: 18px;
  font-size: 12.5px;
  color: var(--urgent);
}
.form-actions {
  display: grid;
  gap: 8px;
  margin-top: 4px;
}
.form-aside {
  padding: 16px;
}
.aside-ctas {
  display: grid;
  gap: 10px;
  margin: 12px 0;
}
.sep {
  border: 0;
  border-top: 1px solid var(--border);
  margin: 14px 0;
}

.trust .grid-2 {
  justify-items: center;
}
.trust .card {
  width: 100%;
  text-align: center;
}
.trust .mini-list {
  list-style-position: inside;
  padding-left: 0;
  display: inline-block;
  text-align: left;
}
.trust .badges {
  justify-content: center;
}

.form-aside {
  padding: 14px;
}
.form-aside p {
  margin: 8px 0;
}
.form-aside .aside-ctas {
  margin: 10px 0;
}
.form-aside .sep {
  margin: 10px 0;
}
.form .grid-2 {
  align-items: start;
}
.form-aside {
  align-self: start;
  height: fit-content;
}

.accordion {
  display: grid;
  gap: 10px;
}
details {
  padding: 14px;
}
summary {
  cursor: pointer;
  font-weight: 900;
}
details p {
  margin: 10px 0 0;
  color: var(--muted);
}

.final-card {
  padding: 16px;
  display: grid;
  gap: 12px;
}
.final-actions {
  display: grid;
  gap: 10px;
}

.site-footer {
  padding: 22px 0 90px;
  border-top: 1px solid var(--border);
  background: var(--footer-bg);
}
.footer-grid {
  display: grid;
  gap: 12px;
}
.footer-contact {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 14px;
  overflow-wrap: anywhere;
}
.footer-contact a {
  color: var(--accent);
  font-weight: 950;
}
.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-top: 12px;
}

.mobile-sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 12px 12px env(safe-area-inset-bottom);
  background: var(--sticky-bg);
  backdrop-filter: saturate(1.2) blur(12px);
  border-top: 1px solid var(--border);
  z-index: 60;
}
.mobile-sticky-cta .btn {
  border-radius: 14px;
}

.trust-highlight-card {
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
}
.trust-highlight-card ul {
  text-align: left;
  list-style: none;
  padding: 0;
  margin: 0;
}
.trust-highlight-card li {
  margin-bottom: 10px;
  padding-left: 0;
}

@media (max-width: 859px) {
  .header-row {
    flex-wrap: wrap;
    align-items: flex-start;
    row-gap: 12px;
  }
  .brand {
    flex: 1 1 100%;
    max-width: 100%;
    justify-content: center;
  }
  .brand-logo-wrap {
    justify-content: center;
  }
  .brand-logo-img {
    object-position: center center;
  }
  .header-ctas {
    flex: 1 1 100%;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    align-items: stretch;
  }
  .header-ctas .btn {
    min-width: 0;
    min-height: 40px;
    padding: 7px 10px;
    font-size: 12.5px;
  }
  .header-ctas .btn-primary {
    grid-column: 1 / -1;
  }

  .mobile-sticky-cta {
    gap: 6px;
    padding: 8px 10px calc(8px + env(safe-area-inset-bottom, 0px));
  }
  .mobile-sticky-cta .btn {
    min-height: 38px;
    padding: 7px 10px;
    font-size: 12.5px;
    border-radius: 12px;
  }

  .site-footer {
    padding-bottom: 72px;
  }
}

@media (min-width: 860px) {
  .brand {
    flex: 0 1 auto;
    max-width: min(680px, 58vw);
  }
  .brand-logo-wrap {
    padding: 12px 20px;
    border-radius: 20px;
  }
  .brand-logo-img {
    height: 100px;
    max-width: min(100%, 640px);
  }
  .top-nav {
    display: flex;
  }
  .hero {
    padding: 44px 0 12px;
  }
  .hero-grid {
    grid-template-columns: 1fr 1.08fr;
    gap: 28px;
    align-items: start;
  }
  .hero-media .media-card > img {
    min-height: 460px;
  }
  .hero-media .media-duo img {
    min-height: 300px;
  }
  .hero-actions {
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
  }
  h1 {
    font-size: 44px;
  }
  .subheadline {
    font-size: 17px;
  }
  h2 {
    font-size: 26px;
  }
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .media-duo {
    grid-template-columns: repeat(2, 1fr);
  }
  .before-after {
    grid-template-columns: repeat(2, 1fr);
  }
  .logos {
    grid-template-columns: repeat(4, 1fr);
  }
  .steps {
    grid-template-columns: repeat(4, 1fr);
  }
  .final-card {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
  }
  .final-actions {
    justify-items: end;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
  .footer-bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .header-ctas {
    flex-wrap: wrap;
    justify-content: flex-end;
  }
  .mobile-sticky-cta {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .btn {
    transition: none;
  }
}
html {
  scroll-behavior: smooth;
}
section {
  /* Ajuste o valor (80px) de acordo com a altura do seu header */
  scroll-margin-top: 80px; 
}