:root {
  --navy: #041722;
  --navy-2: #092b41;
  --blue: #168fbd;
  --sky: #a9c7da;
  --pale: #eef5f8;
  --white: #fff;
  --muted: #58707f;
  --line: rgba(4, 23, 34, 0.13);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--pale);
  color: var(--navy);
  line-height: 1.55;
}
a {
  color: inherit;
  text-decoration: none;
}
.container {
  width: min(1160px, calc(100% - 40px));
  margin: auto;
}
.campaign-header {
  height: 78px;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
}
.header-row {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
}
.brand img {
  width: 220px;
  height: auto;
}
.header-cta {
  font-size: 14px;
  font-weight: 800;
  color: #0a6085;
}
.header-cta span {
  color: var(--blue);
  margin-left: 5px;
}
.hero {
  color: var(--white);
  background:
    radial-gradient(
      circle at 76% 32%,
      rgba(22, 143, 189, 0.3),
      transparent 27%
    ),
    linear-gradient(130deg, #041722, #092b41);
  padding: 102px 0 88px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 70px;
  align-items: center;
}
.eyebrow {
  margin: 0 0 18px;
  color: var(--sky);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.15em;
}
.eyebrow.dark {
  color: #0b82ad;
}
.hero h1,
.section-heading h2,
.intro-grid h2,
.tour-section h2,
.proof-section h2,
.diagnostic-section h2 {
  font-size: clamp(38px, 5.1vw, 67px);
  line-height: 1.03;
  letter-spacing: -0.047em;
  margin: 0 0 25px;
}
.hero h1 em {
  font-style: normal;
  color: var(--sky);
}
.lead {
  font-size: 20px;
  max-width: 640px;
  margin: 0;
  color: #bfd0d9;
}
.hero-actions {
  display: flex;
  gap: 12px;
  margin: 32px 0;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 14px 20px;
  font-weight: 900;
  border: 1px solid transparent;
  cursor: pointer;
  font: inherit;
}
.button-primary {
  background: var(--blue);
  color: var(--navy);
}
.button-primary:hover {
  background: #55b8df;
}
.button-ghost {
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--white);
}
.trust-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 17px;
  flex-wrap: wrap;
  color: #aec2cd;
  font-size: 13px;
}
.trust-list li:before {
  content: "●";
  color: var(--blue);
  margin-right: 7px;
}
.search-card {
  border: 1px solid rgba(169, 199, 218, 0.35);
  border-radius: 24px;
  padding: 19px;
  background: rgba(4, 23, 34, 0.58);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.25);
}
.search-top {
  font-size: 12px;
  color: #d8e9f1;
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 16px;
}
.google-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
}
.search-field {
  padding: 12px 14px;
  border-radius: 10px;
  background: #fff;
  color: #526a79;
  font-size: 13px;
  margin-bottom: 15px;
}
.search-field span {
  font-size: 19px;
  margin-right: 8px;
  color: var(--navy);
}
.result {
  position: relative;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 15px;
  border-radius: 13px;
  margin: 10px 0;
}
.result-muted {
  opacity: 0.53;
}
.result-highlight {
  border-color: rgba(22, 143, 189, 0.8);
  background: rgba(22, 143, 189, 0.18);
}
.result-pin {
  color: var(--sky);
  font-size: 22px;
  line-height: 1;
}
.result b {
  display: block;
  font-size: 14px;
}
.result small {
  display: block;
  color: #c0d2dc;
  font-size: 11px;
  margin-top: 3px;
}
.result-check {
  margin-left: auto;
  color: #71d0f2;
  font-size: 18px;
}
.search-note {
  font-size: 11px;
  color: #b3c6d0;
  margin: 17px 0 1px;
}
.problem-section {
  padding: 105px 0;
  background: #fff;
}
.intro-grid {
  display: grid;
  grid-template-columns: 0.6fr 1.4fr;
  gap: 70px;
  margin-bottom: 52px;
}
.intro-grid h2 {
  font-size: clamp(35px, 4.3vw, 55px);
}
.intro-grid p:not(.eyebrow),
.section-heading > p:last-child {
  color: var(--muted);
  font-size: 18px;
  max-width: 720px;
}
.problem-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.problem-cards article {
  padding: 29px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.problem-cards span,
.step-number {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
}
.problem-cards h3 {
  font-size: 25px;
  margin: 52px 0 11px;
  letter-spacing: -0.035em;
}
.problem-cards p {
  margin: 0;
  color: var(--muted);
}
.solution-section {
  padding: 105px 0;
  background: #07263a;
  color: #fff;
}
.section-heading {
  margin-bottom: 46px;
}
.section-heading h2 {
  font-size: clamp(37px, 4.6vw, 58px);
  max-width: 830px;
}
.section-heading > p:last-child {
  color: #adc1cb;
}
.solution-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  overflow: hidden;
}
.solution-flow article {
  min-height: 302px;
  padding: 25px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  position: relative;
}
.solution-flow article:last-child {
  border: 0;
}
.icon {
  width: 48px;
  height: 48px;
  margin: 39px 0 26px;
  display: grid;
  place-items: center;
  position: relative;
}
.icon svg {
  display: block;
  width: 42px;
  height: 42px;
}
.icon-site {
  color: var(--sky);
}
.icon-streetview span {
  position: absolute;
  right: -14px;
  bottom: -1px;
  padding: 2px 5px;
  border-radius: 6px;
  background: #0b344b;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.01em;
}
.solution-flow h3 {
  font-size: 26px;
  margin: 0 0 9px;
  letter-spacing: -0.04em;
}
.solution-flow p {
  margin: 0;
  color: #b3c6cf;
  font-size: 14px;
}
.tour-section {
  padding: 110px 0;
  background: #dcebf1;
}
.tour-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}
.tour-section h2 {
  font-size: clamp(37px, 4.5vw, 57px);
}
.tour-section p:not(.eyebrow) {
  font-size: 18px;
  color: var(--muted);
  max-width: 600px;
}
.text-link {
  display: inline-block;
  color: #0a6085;
  font-weight: 900;
  margin-top: 16px;
}
.text-link span {
  color: var(--blue);
  margin-left: 5px;
}
.tour-visual {
  position: relative;
  min-height: 360px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 26px;
  background:
    radial-gradient(circle, rgba(22, 143, 189, 0.25), transparent 45%), #092b41;
}
.tour-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(169, 199, 218, 0.35);
}
.ring-one {
  width: 228px;
  height: 228px;
}
.ring-two {
  width: 330px;
  height: 330px;
}
.tour-center {
  width: 116px;
  height: 116px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--navy);
  display: grid;
  place-content: center;
  text-align: center;
  z-index: 2;
}
.tour-center b {
  font-size: 31px;
  line-height: 1;
}
.tour-center span {
  font-size: 10px;
  font-weight: 800;
  margin-top: 5px;
}
.tour-tag {
  position: absolute;
  border: 1px solid rgba(169, 199, 218, 0.48);
  background: #0a344d;
  border-radius: 999px;
  padding: 7px 11px;
  color: #fff;
  font-size: 11px;
}
.tag-one {
  top: 46px;
  left: 45px;
}
.tag-two {
  right: 37px;
  top: 140px;
}
.tag-three {
  bottom: 42px;
  left: 58px;
}
.pricing-section {
  padding: 105px 0;
  background: #fff;
}
.center {
  text-align: center;
}
.center > p:last-child {
  margin: 0 auto;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  align-items: stretch;
}
.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: #fff;
}
.price-card.featured {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
  box-shadow: 0 20px 46px rgba(4, 23, 34, 0.23);
}
.price-label {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  color: #0b82ad;
  margin: 0;
}
.featured .price-label {
  color: var(--sky);
}
.price-card.featured .price-label {
  max-width: 78%;
}
.badge {
  position: absolute;
  right: 15px;
  top: 15px;
  background: var(--blue);
  color: var(--navy);
  padding: 4px 7px;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 900;
  white-space: nowrap;
}
.price-card h3 {
  font-size: 25px;
  letter-spacing: -0.04em;
  line-height: 1.08;
  margin: 32px 0 15px;
}
.price {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 14px;
}
.price b {
  font-size: 37px;
  color: var(--navy);
  letter-spacing: -0.05em;
}
.featured .price {
  color: #abc0cb;
}

.price-from {
  margin: 0 0 2px;
  font-size: 13px;
  font-weight: 700;
  color: #abc0cb;
  text-align: center;
}
.site-recommended .price {
  margin-top: 0;
}
.featured .price b {
  color: #fff;
}
.price-card ul {
  padding: 0;
  margin: 0 0 28px;
  list-style: none;
  flex: 1;
  border-top: 1px solid var(--line);
}
.featured ul {
  border-color: rgba(255, 255, 255, 0.18);
}
.price-card li {
  font-size: 13px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}
.featured li {
  border-color: rgba(255, 255, 255, 0.18);
  color: #c1d0d7;
}
.price-card li:before {
  content: "✓";
  color: var(--blue);
  font-weight: 900;
  margin-right: 7px;
}
.price-card a {
  font-size: 13px;
  font-weight: 900;
  color: #0a6085;
}
.featured a {
  color: var(--sky);
}
.renewal {
  font-size: 12px;
  color: var(--muted);
  margin-top: 18px;
}
.proof-section {
  padding: 104px 0;
  background: #07263a;
  color: #fff;
}
.proof-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 100px;
  align-items: center;
}
.proof-section h2 {
  font-size: clamp(37px, 4.4vw, 55px);
}
.proof-section p:not(.eyebrow) {
  font-size: 17px;
  color: #b4c5cc;
}
.light-link {
  color: var(--sky);
}
.project-list {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.project-list article {
  display: flex;
  gap: 24px;
  padding: 21px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.project-list span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
}
.project-list b {
  font-size: 19px;
}
.project-list p {
  margin: 2px 0 0 !important;
  font-size: 13px !important;
}
.diagnostic-section {
  padding: 105px 0;
  background: #e7f1f5;
}
.diagnostic-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 90px;
  align-items: center;
}
.diagnostic-section h2 {
  font-size: clamp(38px, 4.5vw, 56px);
}
.diagnostic-section p:not(.eyebrow) {
  font-size: 18px;
  color: var(--muted);
  max-width: 570px;
}
.diagnostic-points {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.diagnostic-points span {
  padding: 7px 10px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  font-size: 12px;
  font-weight: 800;
}
.leadform {
  border-radius: 20px;
  padding: 29px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(4, 23, 34, 0.12);
}
.leadform label {
  display: block;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 14px;
}
.leadform input,
.leadform select {
  display: block;
  width: 100%;
  padding: 12px;
  margin-top: 6px;
  border: 1px solid #b8cbd5;
  background: #fff;
  border-radius: 8px;
  font: inherit;
  font-size: 14px;
  color: var(--navy);
}
.form-button {
  width: 100%;
  margin-top: 5px;
}
.leadform small {
  display: block;
  color: var(--muted);
  font-size: 10px;
  text-align: center;
  margin-top: 12px;
}
.campaign-footer {
  padding: 38px 0;
  background: var(--navy);
  color: #b8cbd5;
}
.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.footer-row img {
  width: 190px;
  background: #fff;
  border-radius: 8px;
  padding: 7px 10px;
}
.footer-row p {
  margin: 0;
  font-size: 13px;
}
.footer-row a {
  font-size: 13px;
  color: var(--sky);
  font-weight: 800;
}
.whatsapp-float {
  position: fixed;
  bottom: 18px;
  right: 18px;
  z-index: 15;
  padding: 12px 16px;
  background: var(--blue);
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}
@media (max-width: 900px) {
  .hero-grid,
  .tour-grid,
  .proof-grid,
  .diagnostic-grid,
  .intro-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .pricing-grid {
    grid-template-columns: 1fr 1fr;
  }
  .solution-flow {
    grid-template-columns: 1fr 1fr;
  }
  .solution-flow article:nth-child(2) {
    border-right: 0;
  }
  .solution-flow article:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }
  .problem-cards {
    grid-template-columns: 1fr;
  }
  .problem-cards article {
    border-left: 0;
  }
  .intro-grid {
    margin-bottom: 40px;
  }
  .hero {
    padding-top: 70px;
  }
  .search-card {
    max-width: 580px;
  }
  .tour-visual {
    max-width: 560px;
  }
  .proof-grid {
    gap: 52px;
  }
}
@media (max-width: 600px) {
  .container {
    width: min(100% - 32px, 1160px);
  }
  .campaign-header {
    height: 67px;
  }
  .brand img {
    width: 176px;
  }
  .header-cta {
    font-size: 12px;
  }
  .hero {
    padding: 58px 0 68px;
  }
  .hero h1 {
    font-size: 40px;
  }
  .lead {
    font-size: 17px;
  }
  .hero-actions {
    flex-direction: column;
  }
  .button {
    width: 100%;
  }
  .trust-list {
    display: block;
  }
  .trust-list li {
    margin: 7px 0;
  }
  .problem-section,
  .solution-section,
  .tour-section,
  .pricing-section,
  .proof-section,
  .diagnostic-section {
    padding: 75px 0;
  }
  .problem-cards h3 {
    margin-top: 28px;
  }
  .solution-flow,
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .solution-flow article,
  .solution-flow article:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    min-height: auto;
  }
  .solution-flow article:last-child {
    border-bottom: 0;
  }
  .icon {
    margin: 22px 0;
  }
  .tour-visual {
    min-height: 300px;
  }
  .ring-two {
    width: 280px;
    height: 280px;
  }
  .tag-one {
    left: 20px;
  }
  .tag-two {
    right: 18px;
  }
  .tag-three {
    left: 25px;
  }
  .footer-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 13px;
  }
  .whatsapp-float {
    bottom: 12px;
    right: 12px;
  }
  .section-heading {
    margin-bottom: 33px;
  }
}

/* ===== Signals bar (CRO addition) ===== */
.signals-bar {
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.signals-list {
  list-style: none;
  margin: 0;
  padding: 16px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 28px;
  font-size: 13px;
  font-weight: 800;
  color: var(--navy-2);
}
.signals-list li {
  display: flex;
  align-items: center;
  gap: 7px;
}
.signals-list li:before {
  content: "✓";
  color: var(--blue);
  font-weight: 900;
}

/* ===== Testimonials (CRO addition) ===== */
.testimonial-section {
  padding: 100px 0;
  background: var(--navy-2);
  color: #fff;
}
.testimonial-section .eyebrow {
  color: var(--sky);
}
.testimonial-section h2 {
  color: #fff;
  font-size: clamp(32px, 3.8vw, 46px);
  max-width: 720px;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.testimonial-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  padding: 26px;
}
.quote-mark {
  margin: 0;
  font-size: 42px;
  line-height: 1;
  color: var(--blue);
  font-family: Georgia, serif;
}
.testimonial-text {
  margin: 6px 0 22px;
  font-size: 14px;
  color: #cbdbe2;
  font-style: italic;
}
.testimonial-name {
  margin: 0;
  font-size: 13px;
  font-weight: 800;
  color: var(--sky);
}

/* ===== Guarantee bar above pricing (CRO addition) ===== */
.guarantee-bar {
  list-style: none;
  margin: 0 0 46px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.guarantee-bar li {
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--pale);
  border: 1px solid var(--line);
  font-size: 12px;
  font-weight: 800;
  color: var(--navy-2);
}

/* ===== FAQ accordion (CRO addition) ===== */
.faq-section {
  padding: 105px 0;
  background: #fff;
}
.faq-list {
  border-top: 1px solid var(--line);
}
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: -0.02em;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary:after {
  content: "+";
  flex-shrink: 0;
  font-size: 24px;
  font-weight: 400;
  color: var(--blue);
}
.faq-item[open] summary:after {
  content: "–";
}
.faq-item p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 15px;
  max-width: 680px;
}

/* ===== Next-steps mini timeline in lead form (CRO addition) ===== */
.next-steps {
  list-style: none;
  margin: 26px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.next-steps li {
  display: flex;
  align-items: baseline;
  gap: 11px;
  font-size: 14px;
  color: var(--navy-2);
}
.next-steps b {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--blue);
  color: var(--navy);
  font-size: 11px;
}

/* ===== LGPD consent checkbox (CRO addition) ===== */
.leadform label.consent {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 11px;
  font-weight: 400;
  color: var(--muted);
  margin-bottom: 16px;
}
.leadform input[type="checkbox"] {
  width: auto;
  margin: 2px 0 0;
  flex-shrink: 0;
}

/* ===== Final CTA band before footer (CRO addition) ===== */
.final-cta {
  padding: 64px 0;
  background: var(--navy);
  color: #fff;
}
.final-cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}
.final-cta .eyebrow {
  margin-bottom: 10px;
  color: var(--sky);
}
.final-cta h2 {
  margin: 0;
  font-size: clamp(26px, 3vw, 38px);
  letter-spacing: -0.03em;
  max-width: 560px;
}

@media (max-width: 900px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
  .signals-list {
    justify-content: flex-start;
    text-align: left;
  }
}

@media (max-width: 600px) {
  .testimonial-section,
  .faq-section {
    padding: 70px 0;
  }
  .final-cta {
    padding: 46px 0;
  }
  .final-cta-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .final-cta .button {
    width: 100%;
  }
  .signals-list {
    flex-direction: column;
    gap: 8px;
  }
}


/* ===== Revisão visual 2026-09: centralização, clareza e conversão ===== */
.problem-heading-centered,
.pricing-heading-centered,
.faq-heading-centered {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.problem-heading-centered { margin-bottom: 52px; }
.problem-heading-centered h2,
.faq-heading-centered h2 {
  font-size: clamp(38px, 4.5vw, 58px);
  line-height: 1.02;
  letter-spacing: -0.045em;
  margin: 14px auto 20px;
}
.problem-heading-centered > p:last-child,
.faq-heading-centered > p:last-child {
  max-width: 780px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}
.problem-cards { border-radius: 18px; overflow: hidden; }
.problem-cards article { text-align: center; padding: 34px 30px 38px; }
.problem-cards h3 { margin: 28px 0 12px; }
.problem-cards p { max-width: 360px; margin: 0 auto; }
.solution-flow article {
  min-height: 330px;
  padding: 30px 26px 34px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.solution-flow .step-number { align-self: flex-start; }
.solution-flow .icon {
  width: 72px;
  height: 72px;
  margin: 42px auto 24px;
}
.solution-flow .icon svg { width: 62px; height: 62px; }
.solution-flow .icon-streetview span { right: -18px; bottom: 1px; font-size: 11px; padding: 3px 6px; }
.solution-flow h3 { margin-left: auto; margin-right: auto; font-size: 27px; }
.solution-flow p { margin-left: auto; margin-right: auto; max-width: 290px; }
.pricing-heading-centered h2 { margin-left: auto; margin-right: auto; }
.pricing-grid-three { grid-template-columns: repeat(3, minmax(0, 1fr)); max-width: 1180px; }
.price-card { text-align: center; padding: 32px 30px; }
.price-card .price-label { margin-left: auto; margin-right: auto; }
.price-card.featured .price-label { max-width: none; }
.price-card h3 { margin-top: 28px; }
.price-card ul { text-align: left; }
.site-recommended { transform: translateY(-8px); }
.renewal-centered { text-align: center; max-width: 900px; margin-left: auto; margin-right: auto; }
.faq-heading-centered { margin-bottom: 42px; }
.faq-list-boxed {
  max-width: 1040px;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 18px 50px rgba(4,23,34,.06);
}
.faq-list-boxed .faq-item { padding: 0; }
.faq-list-boxed .faq-item summary { padding: 22px 26px; }
.faq-list-boxed .faq-item p { padding: 0 26px 24px; margin: -4px 0 0; max-width: 900px; line-height: 1.65; }
.faq-list-boxed .faq-item[open] { background: #f5fafc; }
.campaign-footer { padding: 56px 0 24px; }
.campaign-footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1.15fr .95fr;
  gap: 48px;
  align-items: start;
}
.campaign-footer-brand img { width: 220px; background: #fff; border-radius: 10px; padding: 8px 12px; }
.campaign-footer-brand p { max-width: 320px; margin: 18px 0 0; line-height: 1.6; }
.campaign-footer-column { display: grid; gap: 11px; }
.campaign-footer-column strong { color: #fff; margin-bottom: 5px; }
.campaign-footer-column a { color: #c1d0d7; text-decoration: none; }
.campaign-footer-column a:hover { color: #fff; }
.footer-cookie-button { border: 0; padding: 0; background: transparent; color: #c1d0d7; text-align: left; cursor: pointer; font: inherit; }
.footer-cookie-button:hover { color: #fff; }
.campaign-footer-bottom { border-top: 1px solid rgba(255,255,255,.16); margin-top: 40px; padding-top: 22px; display: flex; justify-content: space-between; gap: 20px; font-size: 12px; }
@media (max-width: 980px) {
  .pricing-grid-three { grid-template-columns: 1fr; }
  .site-recommended { transform: none; }
  .campaign-footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .campaign-footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .campaign-footer-bottom { flex-direction: column; }
  .solution-flow article { min-height: 0; }
}

/* Ajuste 2026-09-06 — centralização do bloco de pacotes */
.pricing-section .pricing-heading-centered {
  width: min(100% - 40px, 980px);
  padding-left: 0;
  padding-right: 0;
}
.pricing-section .pricing-heading-centered .eyebrow,
.pricing-section .pricing-heading-centered h2,
.pricing-section .pricing-heading-centered > p {
  width: 100%;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.pricing-section .guarantee-bar {
  width: min(100% - 40px, 1180px);
  margin: 36px auto 44px;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.pricing-section .guarantee-bar li {
  flex: 0 0 auto;
  margin: 0;
  text-align: center;
}
.pricing-section .pricing-grid-three {
  width: min(100% - 40px, 1180px);
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 720px) {
  .pricing-section .pricing-heading-centered,
  .pricing-section .guarantee-bar,
  .pricing-section .pricing-grid-three { width: min(100% - 28px, 1180px); }
  .pricing-section .guarantee-bar { gap: 8px; }
}

/* Revisão: diagnóstico, prazos e centralização */
.signals-list{justify-content:center!important;align-items:center;text-align:center}
.problem-heading-centered{max-width:980px;margin:0 auto 52px!important;text-align:center}
.problem-heading-centered .eyebrow,.problem-heading-centered h2,.problem-heading-centered>p:last-child{margin-left:auto;margin-right:auto;text-align:center}
.problem-heading-centered>p:last-child{max-width:800px}
.price-card-note{margin:-6px 0 24px;padding:15px 16px;border-radius:12px;background:#f3f8fa;text-align:left}
.price-card-note strong{display:block;margin-bottom:6px;color:var(--navy);font-size:12px;line-height:1.4}
.price-card-note p{margin:0;color:var(--muted);font-size:11px;line-height:1.55}
.price-card.featured .price-card-note{background:rgba(255,255,255,.08)}
.price-card.featured .price-card-note strong{color:#fff}
.price-card.featured .price-card-note p{color:#c1d0d7}
@media(max-width:900px){.signals-list{justify-content:center!important;text-align:center!important}}
@media(max-width:600px){.signals-list{align-items:center}.signals-list li{justify-content:center;text-align:center}}

/* ===== Campanha: foco, demonstração real e hero compacto ===== */
.campaign-hero { padding-top: 58px; padding-bottom: 58px; }
.campaign-hero h1 { font-size: clamp(44px, 5.2vw, 72px); line-height: .98; max-width: 780px; }
.campaign-hero .lead { max-width: 690px; margin-bottom: 24px; }
.hero-actions { margin-top: 22px; }
.campaign-demo-section { padding: 90px 0; background: var(--navy); color: #fff; }
.campaign-demo-grid { display:grid; grid-template-columns: 1fr 1fr; gap: 54px; align-items:center; }
.campaign-demo-grid h2 { font-size: clamp(34px,4vw,54px); line-height:1.02; margin:14px 0 20px; }
.campaign-demo-grid p { color:#c1d0d7; line-height:1.65; max-width:600px; }
.campaign-company-link { display:inline-block; margin:22px 0 0 18px; color:#c1d0d7; text-decoration:none; font-weight:700; font-size:13px; }
.campaign-company-link:hover { color:#fff; }
.campaign-demo-card { display:block; padding:42px; min-height:320px; border:1px solid rgba(255,255,255,.18); border-radius:22px; background:rgba(255,255,255,.06); color:#fff; text-decoration:none; box-shadow:0 22px 60px rgba(0,0,0,.15); }
.campaign-demo-label { display:block; color:var(--sky); font-weight:800; letter-spacing:.12em; font-size:12px; margin-bottom:58px; }
.campaign-demo-card strong { display:block; font-size:38px; letter-spacing:-.04em; margin-bottom:14px; }
.campaign-demo-card p { margin:0 0 36px; }
.campaign-demo-action { font-weight:800; color:#fff; }
@media(max-width:900px){.campaign-demo-grid{grid-template-columns:1fr}.campaign-hero{padding-top:42px;padding-bottom:42px}}
@media(max-width:600px){.campaign-company-link{display:block;margin:18px 0 0}.campaign-demo-section{padding:64px 0}.campaign-demo-card{padding:28px;min-height:260px}}

.qualification-row{display:grid;grid-template-columns:1fr 1fr;gap:14px}.qualification-row label{min-width:0}@media(max-width:650px){.qualification-row{grid-template-columns:1fr}}

/* Campo anti-spam: invisível para visitantes */
.hp-field{position:absolute!important;left:-9999px!important;width:1px!important;height:1px!important;opacity:0!important;pointer-events:none!important}
