*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --white: #ffffff;
  --bg: #ffffff;
  --surface: #f7f7f7;
  --border: #ebebeb;
  --text: #111111;
  --muted: #666666;
  --light: #999999;
  --wa: #25d366;
  --wa-hover: #1fb855;
  --black: #111111;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 8px 30px rgba(0,0,0,.08);
  --shadow-lg: 0 20px 60px rgba(0,0,0,.12);
  --font: 'Plus Jakarta Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }

.wrap {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ── BUTTONS ── */
.btn-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--wa);
  color: #fff;
  font-family: var(--font);
  font-weight: 600;
  font-size: .875rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all .25s;
  white-space: nowrap;
}
.btn-wa svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-wa:hover { background: var(--wa-hover); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(37,211,102,.35); }
.btn-wa--small { padding: 10px 18px; font-size: .8125rem; }
.btn-wa--large { padding: 16px 32px; font-size: .9375rem; }
.btn-wa--block { width: 100%; padding: 14px 20px; }

.btn-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
  color: #fff;
  font-family: var(--font);
  font-weight: 600;
  font-size: .875rem;
  border-radius: 50px;
  transition: all .25s;
}
.btn-dark--large { padding: 16px 32px; font-size: .9375rem; }
.btn-dark:hover { background: #333; transform: translateY(-1px); }

/* ── HERO ── */
.hero {
  padding: 28px 0 56px;
  background: var(--white);
  overflow: hidden;
}

.hero__layout {
  display: grid;
  gap: 4px;
}

.hero__copy h1 {
  font-size: clamp(1.875rem, 6.5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.03em;
  color: var(--text);
  margin-bottom: 0;
}
.hero__copy h1 span {
  background: linear-gradient(135deg, #14532d 0%, #16a34a 55%, #25d366 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pill {
  display: inline-block;
  padding: 8px 14px;
  background: #f0fdf4;
  color: #15803d;
  font-size: .75rem;
  font-weight: 600;
  border-radius: 50px;
  margin-bottom: 8px;
  border: 1px solid #bbf7d0;
}

.hero__visual {
  width: 100%;
  margin-top: -8px;
}

.hero__img-frame {
  position: relative;
  line-height: 0;
}
.hero__img-frame img {
  width: 100%;
  max-height: 320px;
  object-fit: contain;
  object-position: center top;
  display: block;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 18%, #000 82%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, #000 18%, #000 82%, transparent 100%);
}

.hero__action > p {
  font-size: .9375rem;
  color: var(--muted);
  line-height: 1.65;
  margin-top: -4px;
  margin-bottom: 20px;
}

.hero__btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 0;
}
.hero__btns .btn-wa,
.hero__btns .btn-dark {
  width: 100%;
  justify-content: center;
}

.hero__trust {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.hero__trust li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  text-align: left;
}
.hero__trust-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
  line-height: 1;
}
.hero__trust strong {
  display: block;
  font-size: .9375rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}
.hero__trust li span:not(.hero__trust-icon) {
  font-size: .8125rem;
  color: var(--muted);
  line-height: 1.4;
}

/* ── SECTION HELPERS ── */
.label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--wa);
  margin-bottom: 6px;
}
.label--center { text-align: center; display: block; }

.title-center {
  text-align: center;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -.03em;
  margin-bottom: 16px;
}

.subtitle-center {
  text-align: center;
  font-size: .9375rem;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 48px;
  line-height: 1.65;
}

.section-top {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 40px;
}
.section-top h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -.03em;
}
.section-top__desc {
  font-size: .9375rem;
  color: var(--muted);
  max-width: 400px;
  line-height: 1.6;
}
.section-top--center {
  text-align: center;
  align-items: center !important;
}
.section-top--center .section-top__desc {
  max-width: 520px;
  margin: 0 auto;
}

/* ── SERVICES ── */
.services {
  padding: 80px 0;
  background: var(--surface);
}

.services__grid {
  display: grid;
  gap: 24px;
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--border);
  transition: transform .3s, box-shadow .3s;
}
.service-card .btn-wa--block { margin-top: auto; }
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.service-card--featured {
  border-color: var(--black);
  box-shadow: var(--shadow);
}

.service-card__icon {
  font-size: 2rem;
  margin-bottom: 16px;
}
.service-card__tag {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 6px 12px;
  background: var(--black);
  color: #fff;
  font-size: .625rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: 50px;
}
.service-card h3 {
  font-size: 1.375rem;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -.02em;
}
.service-card > p {
  font-size: .9375rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 20px;
}
.service-card__list {
  list-style: none;
  margin-bottom: 20px;
}
.service-card__list li {
  position: relative;
  padding: 14px 0 14px 30px;
  border-bottom: 1px solid var(--border);
}
.service-card__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 14px;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0fdf4;
  color: var(--wa);
  border-radius: 50%;
  font-weight: 700;
  font-size: .625rem;
}
.service-card__list li:last-child { border-bottom: none; }
.service-card__list strong {
  display: block;
  font-size: .9375rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 3px;
}
.service-card__list span {
  font-size: .8125rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ── PHRASE SHOWCASE ── */
.phrase-showcase {
  margin-top: 56px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
  text-align: center;
}

.phrase-showcase__title {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 800;
  letter-spacing: -.02em;
  margin-bottom: 8px;
}

.phrase-showcase__desc {
  font-size: .9375rem;
  color: var(--muted);
  margin-bottom: 32px;
}

.phrase-showcase__carousel {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 720px;
  margin: 0 auto;
}

.phrase-showcase__viewport {
  flex: 1;
  overflow: hidden;
}

.phrase-showcase__track {
  display: flex;
  transition: transform .35s ease;
}

.phrase-showcase__slide {
  flex: 0 0 100%;
  margin: 0;
  padding: 0 8px;
}

.phrase-showcase__img {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  overflow: hidden;
}

.phrase-showcase__img img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  object-position: center;
  display: block;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 12%, #000 88%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, #000 12%, #000 88%, transparent 100%);
}

.phrase-showcase__slide figcaption {
  margin-top: 12px;
  font-size: .9375rem;
  font-weight: 700;
  color: var(--text);
}

.phrase-showcase__btn {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--white);
  color: var(--text);
  font-size: 1.375rem;
  line-height: 1;
  cursor: pointer;
  transition: all .2s;
}
.phrase-showcase__btn:hover {
  border-color: var(--wa);
  color: var(--wa);
}

.phrase-showcase__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.phrase-showcase__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: #d4d4d4;
  cursor: pointer;
  transition: background .2s, transform .2s;
}
.phrase-showcase__dot.is-active {
  background: var(--wa);
  transform: scale(1.15);
}

.service-card__note {
  padding: 12px 16px;
  margin-bottom: 24px;
  background: var(--surface);
  border: 1px dashed var(--border);
  border-radius: var(--radius-sm);
  font-size: .8125rem;
  color: var(--muted);
}
.service-card__note strong {
  color: var(--text);
  font-weight: 700;
}

/* ── STEPS ── */
.steps {
  padding: 80px 0;
  background: var(--surface);
}

.steps__grid {
  display: grid;
  gap: 20px;
}

.step {
  background: var(--white);
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.step__num {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--wa);
  opacity: .5;
  line-height: 1;
  margin-bottom: 16px;
}
.step h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.step p {
  font-size: .875rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ── BANNER ── */
.banner {
  padding: 80px 0;
  background: var(--black);
}

.banner__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 32px;
}
.banner__inner h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -.03em;
  line-height: 1.1;
  margin-bottom: 8px;
}
.banner__inner p {
  font-size: 1rem;
  color: rgba(255,255,255,.65);
}

/* ── ABOUT ── */
.about {
  padding: 80px 0;
  background: var(--white);
}

.about__grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.about__text {
  width: 100%;
  max-width: 640px;
  text-align: center;
}

.about__stats {
  display: grid;
  gap: 16px;
  width: 100%;
  max-width: 900px;
}

.about__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 28px 24px;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  text-align: center;
}
.about__stat strong {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -.02em;
  line-height: 1;
  flex-shrink: 0;
  min-width: 0;
}
.about__stat strong em {
  font-style: normal;
  color: #f59e0b;
  font-size: 1.25rem;
}
.about__stat span {
  font-size: .875rem;
  color: var(--muted);
  font-weight: 500;
  line-height: 1.45;
}

.about__text h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.15;
  margin-bottom: 16px;
}
.about__text > p {
  font-size: .9375rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 32px;
}

.about__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 0 auto;
  max-width: 420px;
  text-align: left;
}
.about__list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.about__icon {
  width: 28px;
  height: 28px;
  background: #f0fdf4;
  color: var(--wa);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8125rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}
.about__list strong {
  display: block;
  font-size: .9375rem;
  font-weight: 600;
  color: var(--text);
}
.about__list span {
  font-size: .8125rem;
  color: var(--light);
}

/* ── REVIEWS ── */
.reviews {
  padding: 80px 0;
  background: var(--surface);
}

.reviews__grid {
  display: grid;
  gap: 20px;
}

.review {
  background: var(--white);
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.review__stars {
  color: #f59e0b;
  font-size: .875rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.review p {
  font-size: .9375rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 16px;
}
.review footer {
  font-size: .8125rem;
  font-weight: 600;
  color: var(--text);
}

/* ── CONTACT ── */
.contact {
  padding: 56px 0 72px;
  background: var(--white);
}

.contact__box {
  display: flex;
  justify-content: center;
}

/* ── FOOTER ── */
.footer {
  padding: 32px 0;
  border-top: 1px solid var(--border);
}
.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}
.brand--footer {
  font-size: .9375rem;
  font-weight: 800;
  letter-spacing: .12em;
  color: var(--text);
}
.footer p {
  font-size: .8125rem;
  color: var(--light);
}

/* ── FLOAT WA ── */
.float-wa {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 300;
  width: 56px;
  height: 56px;
  background: var(--wa);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,.4);
  transition: all .25s;
}
.float-wa:hover { transform: scale(1.08); background: var(--wa-hover); }
.float-wa svg { width: 28px; height: 28px; }

/* ── RESPONSIVE ── */
@media (min-width: 768px) {
  .hero {
    padding: 56px 0 72px;
  }

  .hero__layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
  }

  .hero__copy,
  .hero__action,
  .hero__visual {
    width: 100%;
  }

  .hero__copy h1 {
    margin: 0 auto;
    max-width: 720px;
  }

  .hero__visual {
    max-width: 520px;
    margin: -12px auto 0;
  }

  .hero__action > p {
    font-size: 1.0625rem;
    max-width: 560px;
    margin: -8px auto 20px;
  }

  .hero__btns {
    justify-content: center;
  }

  .hero__trust {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    width: 100%;
    max-width: 900px;
    padding-top: 32px;
    margin-top: 4px;
  }
  .hero__trust li {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    padding: 20px 16px;
  }

  .hero__img-frame {
    margin: 0 auto;
  }

  .hero__img-frame img {
    max-width: 520px;
    max-height: 360px;
    margin: 0 auto;
    object-fit: contain;
    object-position: center top;
  }

  .hero__btns {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .hero__btns .btn-wa,
  .hero__btns .btn-dark {
    width: auto;
  }

  .section-top {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }

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

  .phrase-showcase__carousel {
    max-width: 800px;
    gap: 16px;
  }

  .phrase-showcase__slide {
    flex: 0 0 50%;
    padding: 0 10px;
  }

  .steps__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .banner__inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .about__grid {
    gap: 56px;
  }

  .about__text {
    max-width: 760px;
  }

  .about__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 48px;
    max-width: 100%;
  }

  .about__stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .reviews__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer__inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

/* ── MOBILE: tudo centralizado ── */
@media (max-width: 767px) {
  .wrap { padding: 0 16px; }

  .hero__copy,
  .hero__action,
  .section-top,
  .section-top div,
  .service-card,
  .step,
  .banner__inner,
  .banner__inner div,
  .about__text,
  .review,
  .footer__inner {
    text-align: center;
  }

  .hero__copy h1 {
    font-size: clamp(1.75rem, 8vw, 2.25rem);
  }

  .hero__trust li {
    flex-direction: column;
    text-align: center;
    gap: 6px;
  }

  .section-top__desc { margin: 0 auto; }

  .service-card__tag {
    position: static;
    display: inline-block;
    margin-bottom: 12px;
  }
  .service-card__list li { padding-left: 0; }
  .service-card__list li::before {
    position: static;
    margin: 0 auto 8px;
  }

  .about__stat {
    padding: 24px 16px;
  }

  .about__list li {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
  }

  .review footer { display: block; }

  .float-wa {
    bottom: 16px;
    right: 16px;
    width: 52px;
    height: 52px;
  }
}
