:root {
  --white: #fbfdfb;
  --white-green: #f3f8f4;
  --gray-green-50: #e8efe9;
  --gray-green-100: #d4ddd6;
  --gray-green-400: #6e7d73;
  --gray-green-600: #3f4d44;
  --ink: #1a231e;
  --green: #12b76a;
  --green-vivid: #16d47a;
  --green-deep: #0b6b3a;
  --green-dark: #083d22;
  --shadow: 0 18px 50px rgba(26, 35, 30, 0.08);
  --radius: 28px;
  --nav-h: 64px;
  --font-display: "Plus Jakarta Sans", Inter, system-ui, sans-serif;
  --font-serif: "Fraunces", "Times New Roman", serif;
  --font-body: Inter, system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: rgba(18, 183, 106, 0.22);
  color: var(--ink);
}

img {
  max-width: 100%;
}

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

h1,
h2,
h3,
.nav-float__logo,
.footer-logo {
  font-family: var(--font-display);
  letter-spacing: -0.035em;
}

h1,
h2,
h3 {
  color: var(--ink);
  font-weight: 600;
  line-height: 1.08;
}

h1 {
  font-size: clamp(2.6rem, 6vw, 5rem);
  margin: 0 0 1.25rem;
}

h2 {
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  margin: 0 0 1rem;
}

h3 {
  font-size: 1.35rem;
  letter-spacing: -0.025em;
  margin: 0 0 0.65rem;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 2000;
  padding: 0.6rem 1rem;
  background: var(--green-deep);
  color: #fff;
  border-radius: 999px;
}

.skip-link:focus {
  top: 1rem;
}

.eyebrow {
  margin: 0 0 1rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-deep);
}

.eyebrow--light {
  color: var(--green-vivid);
}

.lead-text {
  font-size: 1.15rem;
  color: var(--gray-green-600);
  max-width: 36rem;
  margin-bottom: 1.25rem;
}

.body-text {
  color: var(--gray-green-400);
  max-width: 36rem;
  margin-bottom: 2rem;
}

.section {
  padding: clamp(5rem, 10vw, 8.5rem) 0;
}

.section__intro {
  max-width: 40rem;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.logo-mark {
  display: inline-flex;
  width: 1.35rem;
  height: 1.35rem;
  color: var(--green);
}

.logo-mark svg {
  width: 100%;
  height: 100%;
}

/* ---------- Navbar flutuante ---------- */

.nav-float {
  position: fixed;
  top: 1.1rem;
  left: 50%;
  z-index: 1000;
  width: min(920px, calc(100% - 1.5rem));
  transform: translate(-50%, -120%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s ease;
}

.nav-float.is-visible {
  transform: translate(-50%, 0);
  opacity: 1;
  pointer-events: auto;
}

.nav-float__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.45rem 0.45rem 0.45rem 1.15rem;
  background: rgba(251, 253, 251, 0.78);
  border: 1px solid rgba(232, 239, 233, 0.9);
  border-radius: 999px;
  box-shadow: var(--shadow);
  backdrop-filter: saturate(180%) blur(22px);
  -webkit-backdrop-filter: saturate(180%) blur(22px);
}

.nav-float__logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
  white-space: nowrap;
}

.nav-float__links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.nav-float__links a {
  padding: 0.55rem 0.9rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-green-600);
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-float__links a:hover {
  color: var(--ink);
  background: rgba(18, 183, 106, 0.08);
}

.nav-float__cta {
  background: var(--green) !important;
  color: #fff !important;
  padding-inline: 1.15rem !important;
}

.nav-float__cta:hover {
  background: var(--green-deep) !important;
}

.nav-float__toggle {
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.nav-float__toggle span {
  display: block;
  width: 16px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.25s ease;
}

.nav-float.is-open .nav-float__toggle span:first-child {
  transform: translateY(3.75px) rotate(45deg);
}

.nav-float.is-open .nav-float__toggle span:last-child {
  transform: translateY(-3.75px) rotate(-45deg);
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--white-green);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: url("../imgs/hero-img.png") right center / cover no-repeat;
  transform: scale(1.06);
  animation: heroSettle 18s ease-out forwards;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(251, 253, 251, 0.94) 0%,
    rgba(251, 253, 251, 0.78) 34%,
    rgba(251, 253, 251, 0.28) 58%,
    rgba(251, 253, 251, 0) 74%
  );
}

.hero__container {
  position: relative;
  z-index: 1;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.hero__content {
  max-width: 36rem;
}

.hero__lead {
  font-size: 1.12rem;
  color: var(--gray-green-600);
  margin-bottom: 2rem;
  max-width: 32rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1.25rem;
}

@keyframes heroSettle {
  to {
    transform: scale(1);
  }
}

/* ---------- Buttons ---------- */

.btn-main,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 52px;
  padding: 0.8rem 1.45rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.btn-main {
  background: var(--green);
  color: #fff;
  box-shadow: 0 10px 24px rgba(18, 183, 106, 0.28);
}

.btn-main:hover {
  background: var(--green-deep);
  color: #fff;
  transform: translateY(-1px);
}

.btn-main--on-dark {
  background: #fff;
  color: var(--green-dark);
  box-shadow: none;
}

.btn-main--on-dark:hover {
  background: var(--white-green);
  color: var(--green-dark);
}

.btn-ghost {
  color: var(--ink);
  padding-left: 0.2rem;
}

.btn-ghost svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}

.btn-ghost:hover svg {
  transform: translateX(4px);
}

/* ---------- Quem sou ---------- */

.about {
  position: relative;
  overflow: visible;
  background:
    radial-gradient(ellipse at 100% 0%, rgba(18, 183, 106, 0.08), transparent 42%),
    radial-gradient(ellipse at 0% 100%, rgba(11, 107, 58, 0.05), transparent 46%),
    linear-gradient(180deg, #fbfdfb 0%, #f3f8f4 100%);
}

.about h2 {
  font-family: var(--font-serif);
  font-optical-sizing: auto;
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.about__role {
  margin: -0.35rem 0 1.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-deep);
}

.about__quote {
  margin: 0 0 1.5rem;
  padding: 0 0 0 1.15rem;
  border: 0;
  border-left: 2px solid var(--green);
  font-family: var(--font-serif);
  font-optical-sizing: auto;
  font-size: clamp(1.28rem, 2.2vw, 1.7rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.025em;
  color: var(--ink);
}

.about__copy .body-text {
  margin-bottom: 0;
}

.about__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.25rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--gray-green-50);
}

.about__photo {
  position: relative;
  max-width: 460px;
  margin-inline: auto;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  background: url("../imgs/hero-img.png") 78% 18% / cover no-repeat;
}

.stat strong {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  font-weight: 500;
  font-style: italic;
  letter-spacing: -0.04em;
  color: var(--green-deep);
  line-height: 1.1;
}

.stat span {
  display: block;
  font-size: 0.78rem;
  color: var(--gray-green-400);
  line-height: 1.35;
  margin-top: 0.35rem;
}

/* ---------- Dores ---------- */

.pains {
  background: var(--white-green);
}

.pains__list {
  margin-top: clamp(2.5rem, 6vw, 4.5rem);
  border-bottom: 1px solid var(--gray-green-100);
}

.pain-row {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 1rem 3.5rem;
  align-items: baseline;
  padding: 1.7rem 0;
  border-top: 1px solid var(--gray-green-100);
}

.pain-row__from,
.pain-row__to {
  margin: 0;
}

.pain-row__from {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.3vw, 1.7rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.25;
  color: var(--ink);
}

.pain-row__to {
  color: var(--green-deep);
  font-size: 1rem;
  line-height: 1.45;
}

.pain-row__to::before {
  content: "";
  display: inline-block;
  width: 1.35rem;
  height: 1px;
  margin-right: 0.7rem;
  margin-bottom: 0.28rem;
  background: var(--green);
  vertical-align: middle;
}

/* ---------- Atendimentos ---------- */

.services {
  position: relative;
  background:
    radial-gradient(ellipse at 88% 12%, rgba(22, 212, 122, 0.22), transparent 46%),
    radial-gradient(ellipse at 8% 90%, rgba(11, 107, 58, 0.1), transparent 42%),
    linear-gradient(165deg, #e4f3e8 0%, #cfe6d5 52%, #d7ecde 100%);
}

.services__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: min(100vh, 680px);
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.services__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../imgs/hero-img.png") 82% 18% / cover no-repeat;
  opacity: 0.16;
  filter: saturate(0.75) contrast(1.05);
  mask-image: linear-gradient(180deg, black 42%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, black 42%, transparent 100%);
}

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

.services__intro {
  max-width: 22rem;
}

.services h2 {
  font-family: var(--font-serif);
  font-optical-sizing: auto;
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.services__list {
  border-top: 1px solid rgba(11, 107, 58, 0.14);
}

.service-row {
  display: grid;
  grid-template-columns: 3.2rem minmax(0, 1fr);
  gap: 0.5rem 1.25rem;
  padding: 2.1rem 0;
  border-bottom: 1px solid rgba(11, 107, 58, 0.14);
}

.service-row__index {
  padding-top: 0.55rem;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--green-deep);
}

.service-row h3 {
  font-family: var(--font-serif);
  font-optical-sizing: auto;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  margin-bottom: 0.7rem;
}

.service-row p {
  margin: 0 0 1rem;
  max-width: 38rem;
  color: var(--gray-green-600);
}

.service-row__meta {
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  color: var(--green-deep);
}

@media (min-width: 992px) {
  .services .row {
    align-items: stretch;
  }

  .services__intro {
    position: sticky;
    top: 6.5rem;
  }
}

/* ---------- Depoimentos ---------- */

.testimonials {
  background: var(--white-green);
}

.testimonials__frame {
  max-width: 64rem;
  margin-inline: auto;
  text-align: center;
}

.quote-carousel {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.75rem;
  margin: 2.2rem 0 2rem;
}

.quote-arrow {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(11, 107, 58, 0.22);
  border-radius: 50%;
  background: rgba(251, 253, 251, 0.8);
  color: var(--green-deep);
  box-shadow: 0 8px 22px rgba(26, 35, 30, 0.06);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.quote-arrow svg {
  width: 22px;
  height: 22px;
}

.quote-arrow:hover {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
  transform: scale(1.06);
}

.quote-arrow:active {
  transform: scale(0.96);
}

.quote-stage {
  display: grid;
  min-height: 15rem;
}

.quote-stage__item {
  grid-area: 1 / 1;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(28px);
  pointer-events: none;
  transition: opacity 0.5s ease, transform 0.5s ease, visibility 0.5s ease;
}

.quote-stage__item.from-left {
  transform: translateX(-28px);
}

.quote-stage__item.is-active {
  opacity: 1;
  visibility: visible;
  transform: none;
  pointer-events: auto;
}

.quote-stage__item.is-exit-left {
  opacity: 0;
  transform: translateX(-28px);
}

.quote-stage__item.is-exit-right {
  opacity: 0;
  transform: translateX(28px);
}

.quote-stage__item p {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3.4vw, 2.35rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.28;
  color: var(--ink);
}

.quote-stage__item p::before {
  content: "“";
}

.quote-stage__item p::after {
  content: "”";
}

.quote-stage__item footer {
  margin-top: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.quote-stage__item cite {
  font-style: normal;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
}

.quote-stage__item footer span {
  font-size: 0.82rem;
  color: var(--gray-green-400);
}

.quote-nav {
  display: flex;
  justify-content: center;
  gap: clamp(1.25rem, 4vw, 2.75rem);
}

.quote-nav__btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  padding: 0;
  border: 0;
  background: none;
  color: var(--gray-green-400);
  font-size: 0.92rem;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.2s ease;
}

.quote-nav__btn span {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  color: var(--gray-green-100);
}

.quote-nav__btn.is-active,
.quote-nav__btn:hover {
  color: var(--ink);
}

.quote-nav__btn.is-active span {
  color: var(--green);
}

/* ---------- CTA ---------- */

.cta {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(18, 183, 106, 0.1), transparent 52%),
    #eaf5ed;
  text-align: center;
}

.cta-inner {
  max-width: 40rem;
  margin-inline: auto;
}

.cta h2 {
  font-family: var(--font-serif);
  font-optical-sizing: auto;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(2.35rem, 5vw, 3.85rem);
  line-height: 1.22;
  letter-spacing: -0.03em;
  margin: 0 0 1.4rem;
}

.cta p {
  max-width: 28rem;
  margin: 0 auto 2.15rem;
  line-height: 1.75;
  color: var(--gray-green-600);
}

.cta-meta {
  margin: 1.5rem 0 0;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  line-height: 1.5;
  color: var(--gray-green-400);
}

/* ---------- Footer ---------- */

.site-footer {
  padding: 4.5rem 0 2.5rem;
  background: var(--white-green);
  color: var(--gray-green-400);
  font-size: 0.92rem;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--ink);
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer li + li {
  margin-top: 0.45rem;
}

.site-footer a:hover {
  color: var(--green-deep);
}

.footer-label {
  margin-bottom: 0.85rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray-green-600);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem 1.5rem;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray-green-50);
  font-size: 0.8rem;
}

.footer-bottom p {
  margin: 0;
}

/* ---------- WhatsApp ---------- */

.whatsapp-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 1100;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: #fff;
  background: #1fbf5a;
  border-radius: 50%;
  box-shadow: 0 12px 28px rgba(18, 183, 106, 0.38);
  transition: transform 0.2s ease, background 0.2s ease;
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  position: relative;
  z-index: 1;
  display: block;
  overflow: visible;
  flex-shrink: 0;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.04);
  background: var(--green-deep);
  color: #fff;
}

.whatsapp-float__pulse {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(31, 191, 90, 0.45);
  animation: pulseRing 2.2s ease-out infinite;
}

@keyframes pulseRing {
  70%,
  100% {
    transform: scale(1.55);
    opacity: 0;
  }
}

/* ---------- Reveal ---------- */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  animation: none;
}

.reveal.is-in {
  animation: rise 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.pain-row:nth-child(2),
.service-row:nth-child(2) {
  animation-delay: 0.06s;
}

.pain-row:nth-child(3),
.service-row:nth-child(3) {
  animation-delay: 0.12s;
}

.pain-row:nth-child(4),
.service-row:nth-child(4) {
  animation-delay: 0.18s;
}

.pain-row:nth-child(5) {
  animation-delay: 0.24s;
}

.pain-row:nth-child(6) {
  animation-delay: 0.3s;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------- Responsive ---------- */

@media (max-width: 991.98px) {
  .nav-float__inner {
    flex-wrap: wrap;
    border-radius: 24px;
    padding: 0.55rem 0.55rem 0.55rem 1rem;
  }

  .nav-float__links {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    padding: 0.4rem 0.4rem 0.55rem;
  }

  .nav-float.is-open .nav-float__links {
    display: flex;
  }

  .nav-float__links a {
    padding: 0.75rem 0.9rem;
  }

  .nav-float__cta {
    text-align: center;
    justify-content: center;
  }

  .hero {
    min-height: 100svh;
    align-items: flex-end;
  }

  .hero__bg {
    background-position: 72% center;
  }

  .hero__overlay {
    background: linear-gradient(
      180deg,
      rgba(251, 253, 251, 0.2) 0%,
      rgba(251, 253, 251, 0.55) 38%,
      rgba(251, 253, 251, 0.92) 68%,
      rgba(243, 248, 244, 0.98) 100%
    );
  }

  .hero__container {
    padding-top: 2rem;
    padding-bottom: 3.5rem;
  }

  .hero__content {
    max-width: 100%;
  }

  .pain-row {
    grid-template-columns: 1fr;
    gap: 0.55rem;
    padding: 1.35rem 0;
  }

  .pain-row__to::before {
    width: 1rem;
    margin-right: 0.5rem;
  }

  .quote-carousel {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "stage stage"
      "prev next";
    gap: 1.1rem 1.5rem;
    justify-items: center;
  }

  .quote-stage {
    grid-area: stage;
    width: 100%;
    min-height: 0;
  }

  #quotePrev {
    grid-area: prev;
    justify-self: end;
  }

  #quoteNext {
    grid-area: next;
    justify-self: start;
  }

  .quote-arrow {
    width: 46px;
    height: 46px;
  }
}

@media (max-width: 575.98px) {
  .whatsapp-float {
    right: 1rem;
    bottom: 1rem;
    width: 54px;
    height: 54px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero__bg,
  .reveal,
  .whatsapp-float__pulse,
  .nav-float,
  .quote-stage__item,
  .btn-main,
  .btn-ghost svg {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
