/* Landing Page para Google Search - Grupo Araújo Services
   Estrutura estática: pode subir direto em public_html.
*/

:root {
  --green-950: #0b2531;
  --green-900: #113646;
  --green-800: #1c5563;
  --green-700: #43c463;
  --green-100: #ebf9ef;
  --green-50: #f7fbf8;
  --gold: #43c463;
  --gold-100: #e8f8ed;
  --slate: #233541;
  --muted: #60717a;
  --line: #d8e7df;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(11, 37, 49, .14);
  --radius: 24px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  background: var(--green-50);
  color: var(--slate);
  line-height: 1.55;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

button, input, select, textarea {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--green-900);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 10px;
  z-index: 999;
}

.skip-link:focus {
  top: 16px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, .88);
  border-bottom: 1px solid rgba(223, 232, 226, .8);
  backdrop-filter: blur(16px);
}

.topbar__inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0;
  font-weight: 850;
  color: var(--green-950);
  letter-spacing: -.02em;
}

.brand img {
  width: auto;
  height: 62px;
  display: block;
}

.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;
}

.nav {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--muted);
  font-weight: 650;
  font-size: 14px;
}

.nav a:hover {
  color: var(--green-800);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  padding: 15px 22px;
  font-weight: 800;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  min-height: 50px;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  background: linear-gradient(135deg, #48c859, #0f5960);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(72, 200, 89, .28);
}

.btn--hero-whatsapp {
  min-width: 300px;
  justify-content: center;
}

@media (max-width: 640px) {
  .btn--hero-whatsapp {
    width: 100%;
    min-width: 0;
  }
}


.btn--secondary {
  background: var(--white);
  color: var(--green-900);
  border: 1px solid var(--line);
}

.btn--light {
  background: var(--white);
  color: var(--green-900);
}

.btn--small {
  padding: 12px 18px;
  min-height: 42px;
  background: var(--green-900);
  color: var(--white);
  font-size: 14px;
}

.btn--full {
  width: 100%;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 20%, rgba(72, 200, 89, .18), transparent 28%),
    linear-gradient(135deg, #fbfefd 0%, #f1f8f5 45%, #ebf4f6 100%);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(120deg, rgba(15, 36, 25, .08) 0 1px, transparent 1px),
    linear-gradient(30deg, rgba(15, 36, 25, .05) 0 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, #000, transparent 82%);
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 44px;
  align-items: center;
  padding: 84px 0 70px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green-700);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

h1, h2, h3, p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  color: var(--green-950);
  font-size: clamp(38px, 5vw, 66px);
  line-height: .98;
  letter-spacing: -.055em;
}

h2 {
  margin-bottom: 16px;
  color: var(--green-950);
  font-size: clamp(30px, 3.5vw, 48px);
  line-height: 1.05;
  letter-spacing: -.045em;
}

h3 {
  margin-bottom: 10px;
  color: var(--green-950);
  font-size: 21px;
  line-height: 1.18;
  letter-spacing: -.02em;
}

.hero__lead {
  max-width: 660px;
  margin-bottom: 26px;
  color: #4b5c52;
  font-size: 19px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 0;
  margin: 4px 0 10px;
  list-style: none;
}

.trust-list li {
  position: relative;
  overflow: hidden;
  min-height: 112px;
  padding: 22px 24px 20px;
  border: 1px solid rgba(35, 112, 68, .14);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .96) 0%, rgba(246, 251, 248, .98) 100%);
  box-shadow: 0 16px 32px rgba(10, 37, 49, .08);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.trust-list li::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #39c35a 0%, #0f5a5e 100%);
}

.trust-list li::after {
  content: "";
  position: absolute;
  top: -34px;
  right: -26px;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(57, 195, 90, .16) 0%, rgba(57, 195, 90, 0) 68%);
  pointer-events: none;
}

.trust-list li:nth-child(2) {
  background: linear-gradient(180deg, rgba(255, 255, 255, .96) 0%, rgba(239, 248, 247, .98) 100%);
}

.trust-list li:nth-child(2)::after {
  background: radial-gradient(circle, rgba(15, 90, 94, .14) 0%, rgba(15, 90, 94, 0) 68%);
}

.trust-list li:hover {
  transform: translateY(-3px);
  border-color: rgba(35, 112, 68, .26);
  box-shadow: 0 22px 42px rgba(10, 37, 49, .12);
}

.trust-list strong {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 6px;
  color: var(--green-950);
  font-size: clamp(34px, 3.2vw, 46px);
  font-weight: 900;
  line-height: .95;
  letter-spacing: -.05em;
}

.trust-list span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #55685d;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
}

.trust-list span::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(180deg, #39c35a 0%, #0f5a5e 100%);
  box-shadow: 0 0 0 6px rgba(57, 195, 90, .10);
}

.microcopy {
  color: var(--muted);
  font-size: 14px;
}


.hero-visual {
  position: relative;
  min-height: 610px;
}

.hero-visual__badge {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .9);
  color: var(--green-900);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  box-shadow: 0 10px 28px rgba(11, 37, 49, .12);
  backdrop-filter: blur(10px);
}

.hero-visual__frame {
  position: relative;
  height: 100%;
  min-height: 610px;
  margin: 0;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(216, 231, 223, .88);
  box-shadow: var(--shadow);
  background: #dfe8e2;
}

.hero-visual__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 37, 49, .06) 0%, rgba(11, 37, 49, .10) 46%, rgba(11, 37, 49, .52) 100%);
}

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

.hero-visual__card {
  position: absolute;
  z-index: 3;
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(216, 231, 223, .95);
  border-radius: 22px;
  box-shadow: 0 18px 50px rgba(11, 37, 49, .16);
  backdrop-filter: blur(14px);
}

.hero-visual__card strong {
  display: block;
  margin-bottom: 6px;
  color: var(--green-950);
  font-size: 18px;
  line-height: 1.1;
}

.hero-visual__card span {
  display: block;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.hero-visual__card--bottom {
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 22px 22px 20px;
}

.hero-visual__card--floating {
  top: 86px;
  right: -18px;
  max-width: 240px;
  padding: 18px 18px 16px;
}

.lead-card {
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(223, 232, 226, .9);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
}

.lead-card__header {
  margin-bottom: 22px;
}

.lead-card__header span {
  display: inline-block;
  margin-bottom: 10px;
  background: var(--gold-100);
  color: var(--green-900);
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.lead-card__header h2 {
  margin-bottom: 8px;
  font-size: 30px;
}

.lead-card__header p {
  color: var(--muted);
  margin-bottom: 0;
}

.form {
  display: grid;
  gap: 13px;
}

.form label {
  display: grid;
  gap: 7px;
  color: var(--green-950);
  font-size: 13px;
  font-weight: 800;
}

.form input, .form select, .form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fbfffc;
  color: var(--slate);
  padding: 14px 14px;
  outline: none;
}

.form input:focus, .form select:focus, .form textarea:focus {
  border-color: var(--green-700);
  box-shadow: 0 0 0 4px rgba(35, 112, 68, .12);
}

.form__note {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

.section {
  padding: 78px 0;
}

.section__head {
  max-width: 760px;
  margin-bottom: 34px;
}

.section__head p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.proof-strip {
  padding: 34px 0;
  background: linear-gradient(180deg, #ffffff, #f8fbf9);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-strip__stack {
  display: grid;
  gap: 22px;
}

.proof-strip__head {
  display: grid;
  gap: 8px;
  max-width: 760px;
}

.proof-strip__head h2 {
  margin: 0;
  color: var(--green-950);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.02;
  letter-spacing: -.04em;
}

.proof-strip__head span {
  color: var(--muted);
  font-size: 16px;
}

.client-logo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.client-logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 14px 36px rgba(11, 37, 49, .06);
}

.client-logo-card img {
  width: 100%;
  max-height: 64px;
  object-fit: contain;
  object-position: center;
}

.client-logo-card--hersil img {
  max-height: 86px;
  transform: scale(1.18);
}

.client-logo-card--artesp img {
  max-height: 84px;
  transform: scale(1.16);
}

.client-logo-card--defensoria img {
  max-height: 92px;
  transform: scale(1.2);
}

.client-logo-card--dark {
  background: #08161d;
  border-color: #08161d;
}

.client-logo-card--dark img {
  max-height: 88px;
}

.client-logo-card--soft {
  background: #f4f7fb;
}

.client-logo-card--text {
  background: linear-gradient(135deg, #113646, #1c5563);
  border-color: transparent;
}

.client-logo-card--text span {
  color: var(--white);
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -.03em;
  text-align: center;
}

.logos, .client-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.logos span, .client-list span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  background: var(--green-50);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 13px;
  color: #546259;
  font-size: 13px;
  font-weight: 800;
}

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

.service-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbf9 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: 0 12px 34px rgba(15, 36, 25, .07);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 6px;
  background: var(--green-700);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(15, 36, 25, .11);
}

.service-card--highlight {
  background: linear-gradient(180deg, #0d3444 0%, #1e6370 100%);
  color: var(--white);
  border-color: transparent;
}

.service-card--highlight::before {
  background: linear-gradient(90deg, #43c463, #8ee6a0);
}

.service-card:nth-child(2) {
  background: linear-gradient(180deg, #f2fff6 0%, #ffffff 100%);
  border-color: #bfe9ca;
}

.service-card:nth-child(2)::before {
  background: linear-gradient(90deg, #43c463, #8ee6a0);
}

.service-card:nth-child(3) {
  background: linear-gradient(180deg, #f3fbff 0%, #ffffff 100%);
  border-color: #c8e6ee;
}

.service-card:nth-child(3)::before {
  background: linear-gradient(90deg, #1c5563, #55bdd0);
}

.service-card:nth-child(4) {
  background: linear-gradient(180deg, #fff9ef 0%, #ffffff 100%);
  border-color: #ead8b9;
}

.service-card:nth-child(4)::before {
  background: linear-gradient(90deg, #d9a440, #f0c96d);
}

.service-card--highlight h3,
.service-card--highlight p,
.service-card--highlight li {
  color: var(--white);
}

.service-card p {
  color: var(--muted);
}

.service-card ul {
  margin: 18px 0 0;
  padding-left: 18px;
  color: #465a63;
  font-size: 14px;
}

.service-card li + li {
  margin-top: 8px;
}

.icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  background: #e9f8ee;
  border-radius: 16px;
  font-size: 25px;
  box-shadow: inset 0 0 0 1px rgba(67, 196, 99, .12);
}

.service-card:nth-child(2) .icon {
  background: #def8e7;
}

.service-card:nth-child(3) .icon {
  background: #e3f5fa;
}

.service-card:nth-child(4) .icon {
  background: #fff0d2;
}

.service-card--highlight .icon {
  background: rgba(255, 255, 255, .15);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .18);
}

.split {
  background: var(--white);
}

.split__grid, .clients__grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 42px;
  align-items: center;
}

.split__copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.benefits {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.benefits div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--green-50);
}

.benefits strong {
  display: block;
  margin-bottom: 4px;
  color: var(--green-950);
}

.benefits span {
  color: var(--muted);
}

.quote-card {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 34px;
  color: var(--white);
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(15, 36, 25, .35), rgba(15, 36, 25, .92)),
    radial-gradient(circle at 15% 20%, rgba(72, 200, 89, .26), transparent 28%),
    linear-gradient(135deg, #113646, #0b2531);
  box-shadow: var(--shadow);
}

.quote-card p {
  margin-bottom: 18px;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.06;
  letter-spacing: -.04em;
  font-weight: 900;
}

.quote-card span {
  color: rgba(255, 255, 255, .74);
  font-weight: 800;
}


.services-carousel {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  border-radius: 34px;
  background: var(--green-950);
  box-shadow: var(--shadow);
}

.services-carousel__viewport {
  position: relative;
  width: 100%;
  height: 470px;
  overflow: hidden;
}

.services-carousel__slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity .45s ease, transform .65s ease;
  pointer-events: none;
}

.services-carousel__slide.is-active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.services-carousel__slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.services-carousel__slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 37, 49, 0) 58%, rgba(11, 37, 49, .28) 100%);
}

.services-carousel__badge {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 4;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .92);
  color: var(--green-950);
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 12px 30px rgba(0,0,0,.14);
}

.services-carousel__control {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, .9);
  color: var(--green-950);
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(0,0,0,.16);
  transform: translateY(-50%);
  transition: transform .2s ease, background .2s ease;
}

.services-carousel__control:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.04);
}

.services-carousel__control--prev {
  left: 18px;
}

.services-carousel__control--next {
  right: 18px;
}

.services-carousel__dots {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 5;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.services-carousel__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, .54);
  cursor: pointer;
  transition: width .2s ease, background .2s ease;
}

.services-carousel__dot.is-active {
  width: 26px;
  background: var(--white);
}

@media (max-width: 980px) {
  .services-carousel,
  .services-carousel__viewport {
    min-height: 430px;
    height: 430px;
  }
}

@media (max-width: 640px) {
  .services-carousel,
  .services-carousel__viewport {
    min-height: 390px;
    height: 390px;
    border-radius: 26px;
  }

  .services-carousel__control {
    width: 40px;
    height: 40px;
    font-size: 28px;
  }

  .services-carousel__dots {
    left: 20px;
    right: 20px;
  }
}

.process {
  background: linear-gradient(180deg, var(--green-50), #fff);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.step {
  position: relative;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.step span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  background: var(--green-900);
  color: var(--white);
  border-radius: 50%;
  font-weight: 900;
}

.step p {
  color: var(--muted);
  margin-bottom: 0;
}

.clients {
  background: var(--green-950);
  color: var(--white);
}

.clients h2 {
  color: var(--white);
}

.clients p:not(.eyebrow) {
  color: rgba(255, 255, 255, .72);
  font-size: 18px;
}

.clients .eyebrow {
  color: #aee2bf;
}

.client-list span {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .14);
  color: rgba(255, 255, 255, .82);
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 920px;
}

details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px 22px;
}

summary {
  cursor: pointer;
  color: var(--green-950);
  font-weight: 900;
  font-size: 17px;
}

details p {
  margin: 14px 0 0;
  color: var(--muted);
}

.final-cta {
  padding-top: 0;
}

.final-cta__box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 42px;
  background:
    radial-gradient(circle at 12% 20%, rgba(72, 200, 89, .22), transparent 30%),
    linear-gradient(135deg, var(--green-900), var(--green-950));
  color: var(--white);
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.final-cta h2 {
  color: var(--white);
  margin-bottom: 10px;
}

.final-cta p:not(.eyebrow) {
  margin-bottom: 0;
  color: rgba(255, 255, 255, .72);
}

.final-cta .eyebrow {
  color: #aee2bf;
}

.footer {
  padding: 34px 0 90px;
  background: var(--green-950);
  color: var(--white);
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding-top: 28px;
}

.footer p, .footer span {
  margin: 4px 0 0;
  display: block;
  color: rgba(255, 255, 255, .66);
}

.footer a {
  font-weight: 900;
}

.footer__contact {
  display: grid;
  justify-items: end;
}

.footer__instagram {
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  color: var(--white);
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.footer__instagram:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, .14);
  border-color: rgba(255, 255, 255, .32);
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 82px;
  height: 82px;
  padding: 8px;
  background: rgba(255,255,255,.94);
  color: var(--white);
  border-radius: 999px;
  box-shadow: 0 18px 48px rgba(29, 170, 91, .28);
  font-weight: 900;
  border: 3px solid rgba(255,255,255,.95);
}

.floating-whatsapp__icon {
  width: 60px;
  height: 60px;
  display: block;
  object-fit: contain;
}

[data-animate] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s ease, transform .55s ease;
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .nav {
    display: none;
  }

  .hero__grid,
  .split__grid,
  .clients__grid {
    grid-template-columns: 1fr;
  }

  .hero__grid {
    padding-top: 54px;
  }

  .service-grid,
  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .client-logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-visual {
    min-height: auto;
  }

  .hero-visual__frame {
    min-height: 540px;
  }

  .hero-visual__card--floating {
    right: 20px;
    top: 82px;
  }
}

@media (max-width: 640px) {
  .topbar__inner {
    min-height: 64px;
  }

  .brand img {
    width: auto;
    height: 50px;
  }

  .topbar .btn--small {
    font-size: 13px;
    padding: 10px 14px;
  }

  .hero__grid {
    padding: 42px 0 46px;
    gap: 28px;
  }

  .hero-visual__badge {
    top: 16px;
    left: 16px;
    font-size: 11px;
  }

  .hero-visual__frame {
    min-height: 420px;
    border-radius: 24px;
  }

  .hero-visual__card {
    position: static;
    margin-top: 14px;
    box-shadow: 0 14px 34px rgba(11, 37, 49, .12);
  }

  .hero-visual__card--bottom,
  .hero-visual__card--floating {
    left: auto;
    right: auto;
    bottom: auto;
    top: auto;
    max-width: none;
    padding: 18px;
  }

  h1 {
    font-size: 38px;
  }

  .hero__lead {
    font-size: 16px;
  }

  .trust-list,
  .service-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .hero__actions {
    display: grid;
  }

  .section {
    padding: 56px 0;
  }

  .lead-card,
  .service-card,
  .step {
    padding: 22px;
    border-radius: 20px;
  }

  .final-cta__box {
    display: grid;
    padding: 28px;
  }

  .footer__inner {
    display: grid;
  }

  .footer__contact {
    justify-items: start;
  }

  .floating-whatsapp {
    left: auto;
    right: 16px;
    bottom: 16px;
    width: 74px;
    height: 74px;
    padding: 7px;
  }

  .floating-whatsapp__icon {
    width: 54px;
    height: 54px;
  }
}


/* Hero com foto de fundo — versão solicitada */
.hero {
  min-height: 760px;
  background: #f7fbf8;
}

.hero__bg {
  opacity: 1;
  background-image:
    linear-gradient(90deg,
      rgba(248, 253, 250, .97) 0%,
      rgba(248, 253, 250, .92) 38%,
      rgba(248, 253, 250, .58) 58%,
      rgba(11, 37, 49, .50) 78%,
      rgba(11, 37, 49, .78) 100%),
    linear-gradient(180deg, rgba(255,255,255,.16), rgba(11,37,49,.22)),
    url("./assets/hero-jardinagem.png");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  mask-image: none;
}

.hero__grid {
  min-height: 760px;
  padding: 88px 0 78px;
}

.hero__copy {
  max-width: 760px;
}

.hero__copy::before {
  content: "";
  position: absolute;
  width: 680px;
  height: 680px;
  left: max(-120px, -8vw);
  top: 50%;
  transform: translateY(-50%);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255,255,255,.72), rgba(255,255,255,0) 68%);
  z-index: -1;
}

.hero-panel {
  position: relative;
  overflow: hidden;
  align-self: center;
  border-radius: 30px;
  padding: 34px;
  color: var(--white);
  background:
    radial-gradient(circle at 18% 18%, rgba(72, 200, 89, .18), transparent 30%),
    linear-gradient(135deg, rgba(11, 37, 49, .96), rgba(16, 48, 65, .92));
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 28px 90px rgba(11, 37, 49, .34);
  backdrop-filter: blur(14px);
}

.hero-panel::after {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  right: -70px;
  bottom: -70px;
  border-radius: 999px;
  background: rgba(72, 200, 89, .16);
}

.hero-panel__tag {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  margin-bottom: 18px;
  padding: 0 14px;
  border-radius: 999px;
  color: #86f19c;
  background: rgba(255,255,255,.10);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .10em;
  text-transform: uppercase;
}

.hero-panel h2 {
  max-width: 460px;
  margin-bottom: 14px;
  color: var(--white);
  font-size: clamp(34px, 3.4vw, 52px);
  line-height: .98;
  letter-spacing: -.055em;
}

.hero-panel p {
  max-width: 500px;
  color: rgba(255,255,255,.82);
  font-size: 18px;
}

.hero-panel__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 26px 0 26px;
}

.hero-panel__mini-card {
  min-height: 132px;
  padding: 18px;
  border-radius: 18px;
  color: var(--white);
  background: linear-gradient(135deg, rgba(255,255,255,.14), rgba(255,255,255,.08));
  border: 1px solid rgba(255,255,255,.14);
}

.hero-panel__mini-card:hover {
  transform: translateY(-2px);
}

.hero-panel__mini-card span {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 7px 11px;
  border-radius: 999px;
  color: var(--green-950);
  background: #86f19c;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.hero-panel__mini-card strong {
  display: block;
  font-size: 18px;
  line-height: 1.18;
}

.hero-panel__footer {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 14px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.14);
}

.hero-panel__footer .btn {
  width: 100%;
  justify-content: center;
}

.hero-panel__phone {
  color: rgba(255,255,255,.86);
  font-size: 15px;
  font-weight: 800;
  text-align: center;
}

@media (max-width: 900px) {
  .hero {
    min-height: auto;
  }

  .hero__bg {
    background-image:
      linear-gradient(180deg,
        rgba(248,253,250,.96) 0%,
        rgba(248,253,250,.88) 46%,
        rgba(11,37,49,.54) 100%),
      url("./assets/hero-jardinagem.png");
    background-position: center top;
  }

  .hero__grid {
    min-height: auto;
  }

  .hero-panel {
    padding: 26px;
  }
}

@media (max-width: 640px) {
  .hero__grid {
    padding-top: 38px;
  }

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

  .client-logo-card {
    min-height: 102px;
    padding: 16px;
  }

  .client-logo-card img {
    max-height: 56px;
  }

  .client-logo-card--text span {
    font-size: 24px;
  }

  .hero__copy::before {
    display: none;
  }

  .hero-panel h2 {
    font-size: 34px;
  }

  .hero-panel__cards {
    grid-template-columns: 1fr;
  }

  .hero-panel__mini-card {
    min-height: auto;
  }
}


/* Ajuste final do hero: versão sem card lateral */
.hero__grid--single {
  grid-template-columns: 1fr;
  align-items: center;
}

.hero__grid--single .hero__copy {
  position: relative;
  max-width: 860px;
  padding: 24px 0;
}

.hero__grid--single .hero__copy::before {
  width: 760px;
  height: 760px;
  left: max(-140px, -8vw);
  background: radial-gradient(circle, rgba(255,255,255,.82), rgba(255,255,255,.18) 52%, rgba(255,255,255,0) 74%);
}

.hero__grid--single .hero__lead {
  max-width: 760px;
}

@media (max-width: 900px) {
  .hero__grid--single .hero__copy {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .client-logo-card--hersil img,
  .client-logo-card--artesp img,
  .client-logo-card--defensoria img {
    transform: scale(1.08);
  }

  .client-logo-card--hersil img {
    max-height: 72px;
  }

  .client-logo-card--artesp img {
    max-height: 70px;
  }

  .client-logo-card--defensoria img {
    max-height: 78px;
  }
}


/* Hero com carrossel de fotos reais */
.hero__grid {
  grid-template-columns: minmax(0, .95fr) minmax(360px, .9fr);
  gap: clamp(28px, 5vw, 60px);
}

.hero__copy {
  position: relative;
  z-index: 2;
}

.services-carousel--hero {
  align-self: center;
  min-height: 540px;
  border-radius: 34px;
  isolation: isolate;
  box-shadow: 0 34px 90px rgba(11, 37, 49, .22);
  transform: translateY(6px);
}

.services-carousel--hero::before {
  content: "";
  position: absolute;
  inset: -18px;
  z-index: -1;
  border-radius: 44px;
  background:
    radial-gradient(circle at 16% 18%, rgba(67,196,99,.22), transparent 34%),
    radial-gradient(circle at 86% 74%, rgba(17,54,70,.20), transparent 36%);
  filter: blur(2px);
}

.services-carousel--hero .services-carousel__viewport {
  height: clamp(430px, 42vw, 540px);
}

.services-carousel--hero .services-carousel__slide::after {
  background:
    linear-gradient(180deg, rgba(11,37,49,.08) 0%, rgba(11,37,49,.06) 36%, rgba(11,37,49,.88) 100%);
}

.services-carousel--hero .services-carousel__badge {
  top: 22px;
  left: 22px;
  color: var(--green-950);
  background: rgba(255,255,255,.94);
}

.services-carousel--hero .services-carousel--hero .services-carousel__dots {
  left: 28px;
  right: 28px;
  bottom: 28px;
}

.split__grid--content {
  grid-template-columns: minmax(0, 980px);
  justify-content: center;
}

.split__grid--content .split__copy {
  max-width: 980px;
}

.split__grid--content .benefits {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 980px) {
  .services-carousel--hero {
    min-height: 430px;
    transform: none;
  }

  .services-carousel--hero .services-carousel__viewport {
    height: 430px;
  }

  .split__grid--content .benefits {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero__grid {
    padding-top: 34px;
    gap: 28px;
  }

  .services-carousel--hero {
    min-height: 360px;
    border-radius: 26px;
  }

  .services-carousel--hero::before {
    inset: -10px;
    border-radius: 32px;
  }

  .services-carousel--hero .services-carousel__viewport {
    height: 360px;
  }

  .services-carousel--hero .services-carousel--hero .services-carousel__badge {
    top: 18px;
    left: 18px;
  }

  .services-carousel--hero .services-carousel__dots {
    left: 20px;
    right: 20px;
    bottom: 20px;
  }
}


/* Ajuste: primeira dobra sem foto de fundo, com degradê verde da identidade visual */
.hero {
  min-height: 760px;
  background:
    radial-gradient(circle at 86% 18%, rgba(67, 196, 99, .20), transparent 32%),
    radial-gradient(circle at 12% 14%, rgba(255, 255, 255, .92), transparent 34%),
    linear-gradient(135deg, #fbfefd 0%, #f1faf4 42%, #e2f3e8 72%, #d6ecdf 100%) !important;
}

.hero__bg {
  opacity: 1;
  background-image:
    linear-gradient(105deg,
      rgba(255, 255, 255, .92) 0%,
      rgba(255, 255, 255, .78) 42%,
      rgba(236, 249, 241, .48) 66%,
      rgba(14, 87, 61, .10) 100%),
    radial-gradient(circle at 82% 22%, rgba(67, 196, 99, .18), transparent 34%),
    radial-gradient(circle at 72% 88%, rgba(11, 37, 49, .09), transparent 34%),
    linear-gradient(120deg, rgba(15, 36, 25, .045) 0 1px, transparent 1px),
    linear-gradient(30deg, rgba(15, 36, 25, .035) 0 1px, transparent 1px) !important;
  background-size: auto, auto, auto, 58px 58px, 58px 58px !important;
  background-position: center center !important;
  background-repeat: no-repeat, no-repeat, no-repeat, repeat, repeat !important;
  mask-image: none !important;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -12% -30% 48%;
  height: 46%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(67, 196, 99, .22), transparent 68%);
  filter: blur(18px);
  pointer-events: none;
}

.hero__grid {
  position: relative;
  z-index: 1;
}

@media (max-width: 980px) {
  .hero {
    min-height: auto;
    background:
      radial-gradient(circle at 80% 16%, rgba(67, 196, 99, .18), transparent 32%),
      linear-gradient(180deg, #fbfefd 0%, #eff9f2 58%, #dff2e6 100%) !important;
  }

  .hero__bg {
    background-image:
      linear-gradient(180deg,
        rgba(255, 255, 255, .92) 0%,
        rgba(245, 252, 247, .78) 56%,
        rgba(14, 87, 61, .08) 100%),
      radial-gradient(circle at 84% 16%, rgba(67, 196, 99, .16), transparent 34%),
      linear-gradient(120deg, rgba(15, 36, 25, .04) 0 1px, transparent 1px) !important;
    background-size: auto, auto, 54px 54px !important;
    background-repeat: no-repeat, no-repeat, repeat !important;
  }
}

@media (max-width: 640px) {
  .trust-list { gap: 14px; }
  .trust-list li { min-height: 96px; padding: 18px 18px 16px; border-radius: 20px; }
  .trust-list strong { font-size: 36px; }
  .trust-list span { font-size: 14px; }
}


/* Visual upgrade - Por que escolher */
.split--visual {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(67, 196, 99, .08), transparent 26%),
    radial-gradient(circle at 85% 20%, rgba(28, 85, 99, .06), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f8fcf9 100%);
}

.split--visual::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(67, 196, 99, .03), transparent 18%, transparent 82%, rgba(28, 85, 99, .03));
}

.split__copy--visual {
  position: relative;
  z-index: 1;
}

.choose-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.choose-highlights span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .86);
  border: 1px solid rgba(35, 112, 68, .12);
  box-shadow: 0 10px 24px rgba(11, 37, 49, .05);
  color: var(--green-950);
  font-size: 14px;
  font-weight: 800;
}

.choose-highlights span::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(180deg, #43c463 0%, #1c5563 100%);
  box-shadow: 0 0 0 5px rgba(67, 196, 99, .10);
}

.benefits--visual {
  gap: 18px;
  margin-top: 30px;
}

.benefits--visual .benefit-card {
  position: relative;
  display: grid;
  grid-template-columns: 64px 1fr;
  align-items: start;
  gap: 18px;
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(35, 112, 68, .12);
  background: linear-gradient(180deg, rgba(255,255,255,.96) 0%, rgba(248,251,249,.98) 100%);
  box-shadow: 0 16px 36px rgba(11, 37, 49, .07);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  overflow: hidden;
}

.benefits--visual .benefit-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: linear-gradient(90deg, #43c463, #1c5563);
}

.benefits--visual .benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 46px rgba(11, 37, 49, .11);
  border-color: rgba(35, 112, 68, .22);
}

.benefit-card__icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 20px;
  color: var(--white);
  font-size: 28px;
  font-weight: 900;
  box-shadow: 0 14px 28px rgba(11, 37, 49, .12);
}

.benefit-card__body strong {
  display: block;
  margin-bottom: 6px;
  color: var(--green-950);
  font-size: 28px;
  line-height: 1;
  letter-spacing: -.03em;
}

.benefit-card__body small {
  display: inline-block;
  margin-bottom: 10px;
  color: #4e7a69;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.benefit-card__body span {
  color: var(--muted);
  line-height: 1.6;
}

.benefit-card--green .benefit-card__icon {
  background: linear-gradient(135deg, #43c463 0%, #1f8f4f 100%);
}

.benefit-card--teal .benefit-card__icon {
  background: linear-gradient(135deg, #1c5563 0%, #2b7f86 100%);
}

.benefit-card--blue .benefit-card__icon {
  background: linear-gradient(135deg, #22506f 0%, #3786c4 100%);
}

.benefit-card--gold .benefit-card__icon {
  background: linear-gradient(135deg, #b88a2d 0%, #e0b656 100%);
}

.benefit-card--green {
  background: linear-gradient(180deg, #ffffff 0%, #f3fcf5 100%);
}

.benefit-card--teal {
  background: linear-gradient(180deg, #ffffff 0%, #f2fbfc 100%);
}

.benefit-card--blue {
  background: linear-gradient(180deg, #ffffff 0%, #f4f8ff 100%);
}

.benefit-card--gold {
  background: linear-gradient(180deg, #ffffff 0%, #fffaf1 100%);
}

@media (max-width: 980px) {
  .benefits--visual .benefit-card {
    grid-template-columns: 56px 1fr;
    padding: 22px;
  }

  .benefit-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    font-size: 24px;
  }

  .benefit-card__body strong {
    font-size: 24px;
  }
}

@media (max-width: 640px) {
  .choose-highlights {
    gap: 10px;
  }

  .choose-highlights span {
    width: 100%;
    justify-content: flex-start;
  }

  .benefits--visual .benefit-card {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 20px;
    border-radius: 20px;
  }

  .benefit-card__icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
  }

  .benefit-card__body strong {
    font-size: 22px;
  }
}


/* Ajustes finais: cabeçalho branco, menu visual e seção Como Funciona mais forte */
.topbar {
  background: #ffffff !important;
  border-bottom: 1px solid rgba(11, 37, 49, .08) !important;
  box-shadow: 0 10px 30px rgba(11, 37, 49, .06);
  backdrop-filter: none !important;
}

.topbar__inner {
  min-height: 86px;
}

.brand img {
  max-height: 64px;
  width: auto;
  display: block;
}

.nav {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px;
  border-radius: 999px;
  background: #f4faf7;
  border: 1px solid rgba(26, 176, 89, .16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .8);
}

.nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  color: #3d5260;
  font-weight: 800;
  font-size: .94rem;
  text-decoration: none;
  transition: background .22s ease, color .22s ease, transform .22s ease, box-shadow .22s ease;
}

.nav a:hover,
.nav a:focus-visible {
  background: #ffffff;
  color: #0b7244;
  box-shadow: 0 8px 22px rgba(11, 37, 49, .08);
  transform: translateY(-1px);
  outline: none;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 6px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #2fc665, #147c59);
  opacity: 0;
  transform: scaleX(.3);
  transition: opacity .22s ease, transform .22s ease;
}

.nav a:hover::after,
.nav a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.process--enhanced {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(47, 198, 101, .16), transparent 34%),
    radial-gradient(circle at 88% 78%, rgba(20, 124, 89, .13), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f4fbf7 100%);
}

.process--enhanced::before {
  content: "";
  position: absolute;
  inset: 38px auto auto -120px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(47, 198, 101, .12);
  filter: blur(12px);
}

.process--enhanced::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -120px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(11, 37, 49, .08);
  filter: blur(18px);
}

.process__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr);
  gap: 36px;
  align-items: center;
}

.process__intro {
  padding: 34px;
  border-radius: 32px;
  background: rgba(255, 255, 255, .78);
  border: 1px solid rgba(26, 176, 89, .16);
  box-shadow: 0 24px 60px rgba(11, 37, 49, .08);
}

.process__intro h2 {
  margin: 0 0 16px;
}

.process__intro p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
  margin: 0;
}

.process__proofs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.process__proofs span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 13px;
  border-radius: 999px;
  background: #eaf8ef;
  color: #0d6b45;
  border: 1px solid rgba(26, 176, 89, .18);
  font-weight: 800;
  font-size: .86rem;
}

.process__proofs span::before {
  content: "✓";
  width: 18px;
  height: 18px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: #1fb45d;
  color: #ffffff;
  font-size: .72rem;
}

.process__timeline {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.process-step {
  position: relative;
  min-height: 230px;
  padding: 24px;
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid rgba(11, 37, 49, .08);
  box-shadow: 0 18px 45px rgba(11, 37, 49, .08);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.process-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(11, 37, 49, .12);
  border-color: rgba(26, 176, 89, .26);
}

.process-step::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  border-radius: 28px 28px 0 0;
  background: linear-gradient(90deg, #2fc665, #147c59);
}

.process-step__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.process-step__number {
  width: 48px;
  height: 48px;
  display: inline-grid;
  place-items: center;
  border-radius: 17px;
  background: linear-gradient(135deg, #0e3745, #147c59);
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 900;
  box-shadow: 0 14px 28px rgba(11, 37, 49, .18);
}

.process-step__tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 11px;
  border-radius: 999px;
  background: #f0f8f3;
  color: #147c59;
  border: 1px solid rgba(26, 176, 89, .16);
  font-weight: 900;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.process-step h3 {
  margin: 0 0 10px;
  color: var(--dark);
  font-size: 1.22rem;
}

.process-step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

@media (max-width: 980px) {
  .nav {
    display: none;
  }

  .process__layout {
    grid-template-columns: 1fr;
  }

  .process__intro {
    padding: 26px;
  }
}

@media (max-width: 680px) {
  .topbar__inner {
    min-height: 76px;
  }

  .brand img {
    max-height: 54px;
  }

  .process__timeline {
    grid-template-columns: 1fr;
  }

  .process-step {
    min-height: auto;
  }
}


.section--services-gradient {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(67, 196, 99, .14) 0%, rgba(67, 196, 99, 0) 28%),
    radial-gradient(circle at right 20%, rgba(28, 85, 99, .10) 0%, rgba(28, 85, 99, 0) 22%),
    linear-gradient(135deg, #f5fcf6 0%, #eef8f1 42%, #f8fcf8 100%);
}

.section--services-gradient::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(67, 196, 99, .04), transparent 18%, transparent 82%, rgba(28, 85, 99, .04));
}

.section--services-gradient .container {
  position: relative;
  z-index: 1;
}

/* Ajuste fino do hero para integrar melhor o carrossel */
.hero__grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(390px, .95fr);
  gap: clamp(28px, 4.6vw, 58px);
  align-items: center;
}

.hero__copy {
  max-width: 680px;
}

.hero__media {
  position: relative;
  padding: 18px;
  border-radius: 38px;
  background: linear-gradient(180deg, rgba(255,255,255,.82) 0%, rgba(245,251,247,.96) 100%);
  border: 1px solid rgba(206, 226, 214, .95);
  box-shadow: 0 30px 60px rgba(11, 37, 49, .10);
}

.hero__media::before {
  content: "";
  position: absolute;
  inset: -14px -14px auto auto;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(67,196,99,.20) 0%, rgba(67,196,99,0) 68%);
  pointer-events: none;
  filter: blur(4px);
}

.hero__media-intro {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 14px;
  margin-bottom: 14px;
  padding: 2px 4px 0;
}

.hero__media-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(67, 196, 99, .10);
  border: 1px solid rgba(67, 196, 99, .16);
  color: var(--green-800);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero__media-intro strong {
  color: var(--green-950);
  font-size: 15px;
  line-height: 1.35;
}

.services-carousel--hero {
  min-height: unset;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 24px 55px rgba(11, 37, 49, .18);
  transform: none;
}

.services-carousel--hero::before {
  display: none;
}

.services-carousel--hero .services-carousel__viewport {
  height: clamp(390px, 38vw, 560px);
}

.services-carousel--hero .services-carousel__badge {
  top: 18px;
  left: 18px;
}

.services-carousel--hero .services-carousel__control {
  width: 52px;
  height: 52px;
  background: rgba(255,255,255,.90);
  box-shadow: 0 10px 24px rgba(11, 37, 49, .18);
}

.hero__media-foot {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.hero__media-foot span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(206, 226, 214, .95);
  color: #4b5c52;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(11, 37, 49, .05);
}

@media (max-width: 980px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .hero__media {
    padding: 14px;
    border-radius: 30px;
  }

  .hero__media-intro {
    justify-content: flex-start;
  }

  .services-carousel--hero .services-carousel__viewport {
    height: 430px;
  }
}

@media (max-width: 640px) {
  .hero__media {
    padding: 12px;
    border-radius: 24px;
  }

  .hero__media-intro strong {
    font-size: 14px;
  }

  .services-carousel--hero {
    border-radius: 24px;
  }

  .services-carousel--hero .services-carousel__viewport {
    height: 340px;
  }

  .services-carousel--hero .services-carousel__control {
    width: 46px;
    height: 46px;
  }

  .hero__media-foot span {
    font-size: 12px;
    min-height: 34px;
  }
}

/* Correções globais para encaixe mobile */
html, body {
  overflow-x: hidden;
}

@media (max-width: 820px) {
  .container {
    width: min(var(--container), calc(100% - 24px));
  }

  .section {
    padding: 52px 0;
  }

  .section__head {
    margin-bottom: 26px;
  }

  .section__head h2,
  .proof-strip__head h2,
  .split__copy h2,
  .process__intro h2,
  .final-cta h2 {
    font-size: clamp(30px, 8vw, 42px);
    line-height: 1.04;
  }

  .topbar__inner {
    min-height: 74px;
    gap: 12px;
  }

  .brand img {
    height: 50px;
    max-height: 50px;
  }

  .topbar .btn--small {
    padding: 10px 14px;
    font-size: 13px;
    white-space: nowrap;
  }

  .hero__grid {
    padding: 30px 0 18px;
    gap: 24px;
  }

  .hero__copy {
    max-width: 100%;
  }

  .hero__media {
    padding: 12px;
    border-radius: 24px;
  }

  .hero__media::before {
    width: 120px;
    height: 120px;
    inset: -10px -10px auto auto;
  }

  .hero__media-intro {
    gap: 8px;
    margin-bottom: 10px;
  }

  .hero__media-intro strong {
    font-size: 14px;
  }

  .services-carousel--hero {
    border-radius: 22px;
  }

  .services-carousel--hero .services-carousel__viewport {
    height: 360px;
  }

  .services-carousel--hero .services-carousel__badge {
    top: 12px;
    left: 12px;
    min-height: 34px;
    padding: 0 12px;
    font-size: 11px;
  }

  .services-carousel--hero .services-carousel__control {
    width: 44px;
    height: 44px;
    font-size: 24px;
  }

  .services-carousel__dots {
    left: 12px;
    right: 12px;
    bottom: 12px;
    justify-content: center;
  }

  .hero__media-foot {
    margin-top: 10px;
    gap: 8px;
  }

  .hero__media-foot span {
    min-height: 32px;
    padding: 0 12px;
    font-size: 12px;
  }

  .client-logo-grid {
    gap: 12px;
  }

  .client-logo-card {
    min-height: 104px;
    padding: 14px;
    border-radius: 18px;
  }

  .service-grid,
  .process__timeline,
  .benefits--visual {
    gap: 14px;
  }

  .service-card,
  .benefits--visual .benefit-card,
  .process-step,
  details,
  .final-cta__box {
    border-radius: 20px;
  }

  .service-card,
  .process-step,
  details {
    padding: 20px;
  }

  .choose-highlights {
    margin-top: 20px;
  }

  .process__intro {
    padding: 22px;
    border-radius: 24px;
  }

  .final-cta__box {
    padding: 24px;
  }
}

@media (max-width: 640px) {
  body {
    line-height: 1.5;
  }

  .topbar {
    position: sticky;
  }

  .topbar__inner {
    min-height: 68px;
    padding: 10px 0;
    gap: 10px;
  }

  .brand img {
    height: 46px;
    max-height: 46px;
  }

  .topbar .btn--small {
    font-size: 12px;
    padding: 9px 12px;
    border-radius: 999px;
  }

  .eyebrow {
    font-size: 11px;
    letter-spacing: .13em;
  }

  h1 {
    font-size: clamp(2.45rem, 11vw, 3.55rem);
    line-height: .97;
    letter-spacing: -.055em;
  }

  .hero__lead,
  .split__copy p:not(.eyebrow),
  .section__head p:not(.eyebrow),
  .process__intro p:not(.eyebrow) {
    font-size: 16px;
    line-height: 1.65;
  }

  .hero__actions {
    margin-bottom: 22px;
  }

  .btn--hero-whatsapp,
  .hero__actions .btn,
  .final-cta .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .trust-list {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 0;
  }

  .trust-list li {
    min-height: 96px;
    padding: 18px 18px 16px;
    border-radius: 18px;
  }

  .trust-list strong {
    font-size: 34px;
  }

  .trust-list span {
    font-size: 14px;
  }

  .proof-strip {
    padding: 28px 0;
  }

  .proof-strip__head span {
    font-size: 15px;
  }

  .client-logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .client-logo-card {
    min-height: 90px;
    padding: 12px;
  }

  .client-logo-card img {
    max-height: 54px;
  }

  .service-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .service-card h3,
  .process-step h3 {
    font-size: 1.08rem;
  }

  .service-card p,
  .service-card li,
  .process-step p,
  details p,
  .benefit-card__body span {
    font-size: 15px;
    line-height: 1.6;
  }

  .split__grid,
  .split__grid--content,
  .process__layout {
    gap: 24px;
  }

  .choose-highlights span {
    min-height: 38px;
    padding: 8px 13px;
    font-size: 13px;
  }

  .benefits--visual .benefit-card {
    padding: 18px;
    gap: 12px;
  }

  .benefit-card__body strong {
    font-size: 20px;
    line-height: 1.05;
  }

  .benefit-card__body small {
    font-size: 11px;
  }

  .process__proofs span {
    font-size: 12px;
    padding: 8px 11px;
  }

  .process-step__top {
    margin-bottom: 14px;
  }

  .process-step__number {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    font-size: 1rem;
  }

  summary {
    font-size: 16px;
    line-height: 1.4;
  }

  .faq-list {
    gap: 10px;
  }

  .final-cta__box {
    gap: 18px;
    padding: 22px;
  }

  .footer {
    padding: 28px 0 88px;
  }

  .footer__inner {
    gap: 12px;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    width: 70px;
    height: 70px;
    padding: 7px;
  }

  .floating-whatsapp__icon {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 420px) {
  .container {
    width: calc(100% - 20px);
  }

  .topbar__inner {
    min-height: 64px;
    gap: 8px;
  }

  .brand img {
    height: 42px;
    max-height: 42px;
  }

  .topbar .btn--small {
    padding: 9px 11px;
    font-size: 11px;
  }

  .hero__grid {
    padding-top: 24px;
    gap: 20px;
  }

  h1 {
    font-size: clamp(2.2rem, 10.4vw, 3rem);
  }

  .hero__lead {
    font-size: 15px;
  }

  .services-carousel--hero .services-carousel__viewport {
    height: 300px;
  }

  .services-carousel--hero .services-carousel__control {
    width: 40px;
    height: 40px;
    font-size: 22px;
  }

  .hero__media-foot {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__media-foot span {
    justify-content: center;
  }

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

  .service-card,
  .process-step,
  details,
  .benefits--visual .benefit-card,
  .final-cta__box,
  .process__intro {
    padding: 18px;
  }

  .service-card ul,
  .service-card p,
  details p,
  .process-step p {
    margin-bottom: 0;
  }
}

/* Garantir texto totalmente branco no card destaque */
.service-card--highlight,
.service-card--highlight h3,
.service-card--highlight p,
.service-card--highlight ul,
.service-card--highlight li,
.service-card--highlight li::marker {
  color: #ffffff !important;
}

/* Header mobile com hambúrguer, logo centralizada e menu recolhível */
.menu-toggle,
.topbar__mobile-spacer {
  display: none;
}

.menu-toggle {
  position: relative;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(11, 37, 49, .10);
  border-radius: 14px;
  background: #ffffff;
  align-items: center;
  justify-content: center;
  padding: 0;
  box-shadow: 0 8px 20px rgba(11, 37, 49, .08);
}

.menu-toggle span {
  position: absolute;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #10384a;
  transition: transform .22s ease, opacity .22s ease, top .22s ease;
}

.menu-toggle span:nth-child(1) { top: 15px; }
.menu-toggle span:nth-child(2) { top: 22px; }
.menu-toggle span:nth-child(3) { top: 29px; }

.topbar.is-menu-open .menu-toggle span:nth-child(1) {
  top: 22px;
  transform: rotate(45deg);
}

.topbar.is-menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.topbar.is-menu-open .menu-toggle span:nth-child(3) {
  top: 22px;
  transform: rotate(-45deg);
}

@media (max-width: 980px) {
  .topbar {
    overflow: visible;
  }

  .topbar__inner {
    position: relative;
    grid-template-columns: 48px 1fr 48px;
    display: grid;
    align-items: center;
    gap: 12px;
  }

  .menu-toggle,
  .topbar__mobile-spacer {
    display: flex;
  }

  .topbar__mobile-spacer {
    width: 46px;
    height: 46px;
  }

  .brand {
    justify-self: center;
  }

  .nav {
    display: flex;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    z-index: 30;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 14px;
    border-radius: 22px;
    background: rgba(255, 255, 255, .98);
    border: 1px solid rgba(11, 37, 49, .08);
    box-shadow: 0 18px 40px rgba(11, 37, 49, .14);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
  }

  .topbar.is-menu-open .nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav a {
    width: 100%;
    justify-content: center;
    min-height: 46px;
    background: #f7fbf8;
    border: 1px solid rgba(26, 176, 89, .10);
  }

  .topbar .btn--small {
    display: none !important;
  }
}

@media (max-width: 680px) {
  .topbar__inner {
    grid-template-columns: 46px 1fr 46px;
    min-height: 74px;
  }

  .brand img {
    max-height: 48px;
    height: 48px;
  }
}

@media (max-width: 420px) {
  .topbar__inner {
    grid-template-columns: 44px 1fr 44px;
    min-height: 70px;
    gap: 10px;
  }

  .menu-toggle,
  .topbar__mobile-spacer {
    width: 44px;
    height: 44px;
  }

  .brand img {
    max-height: 44px;
    height: 44px;
  }
}


/* Ajuste: nova logo Terra Caxambu Raízes na prova de confiança */
.client-logo-card--terra-raizes img {
  width: min(230px, 78%);
  max-height: 122px;
  object-fit: contain;
  border-radius: 8px;
}

@media (min-width: 901px) {
  .client-logo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 1180px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 900px) and (min-width: 641px) {
  .client-logo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .client-logo-card--terra-raizes img {
    width: 78%;
    max-height: 96px;
  }
}

@media (max-width: 640px) {
  .client-logo-card--terra-raizes img {
    width: 82%;
    max-height: 86px;
  }
}
