:root {
  --green: #0b615a;
  --green-dark: #07433f;
  --sage: #dfe8df;
  --cream: #f7f3ea;
  --paper: #fffdf7;
  --ink: #18221f;
  --muted: #65716c;
  --line: rgba(24, 34, 31, 0.14);
  --gold: #c5a46b;
  --shadow: 0 24px 70px rgba(15, 35, 31, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image: url("../images/new/pono-folha-watermark.png");
  background-repeat: no-repeat;
  background-size: min(72vw, 980px) auto;
  background-position: calc(100% + 220px) 18vh;
  opacity: 0.055;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 16px clamp(18px, 4vw, 54px);
  background: rgba(255, 253, 247, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 118px;
}

.brand-logo {
  width: 116px;
  height: 58px;
  object-fit: contain;
  object-position: left center;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 26px;
  font-size: 13px;
  font-weight: 600;
  color: #3b4844;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 14px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  cursor: pointer;
}

.header-cta {
  border: 1px solid var(--green);
  color: var(--green);
}

.button:hover,
.header-cta:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 16px 38px rgba(11, 97, 90, 0.24);
}

.button-ghost {
  background: rgba(255, 255, 255, 0.66);
  color: var(--green-dark);
  border: 1px solid var(--line);
}

.button-dark {
  background: var(--ink);
  color: #fff;
}

.button-outline-dark {
  border: 1px solid rgba(24, 34, 31, 0.25);
  color: var(--ink);
}

.button-light {
  background: #f6ead2;
  color: #15332f;
}

.section-shell {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  gap: clamp(30px, 4vw, 54px);
  align-items: center;
  min-height: calc(100vh - 77px);
  padding: clamp(32px, 5vw, 64px) 0;
}

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

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

h1,
h2 {
  font-family: "Playfair Display", serif;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(40px, 4.45vw, 60px);
  line-height: 1;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.04;
}

.hero-lead,
.section-heading p,
.pricing-copy p,
.reviews-copy p,
.luana-copy p,
.assessment-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.hero-actions,
.luana-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 24px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-row span {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.64);
  color: #41504b;
  font-size: 13px;
  font-weight: 700;
}

.hero-media {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--sage);
  box-shadow: var(--shadow);
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 590px;
  object-fit: cover;
}

.hero-card {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: min(315px, calc(100% - 36px));
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  background: rgba(255, 253, 247, 0.9);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(14px);
}

.hero-card strong,
.hero-card span {
  display: block;
}

.hero-card strong {
  margin-bottom: 5px;
  color: var(--green-dark);
}

.hero-card span {
  color: var(--muted);
  line-height: 1.5;
}

.pain-strip {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  padding: 28px clamp(18px, 5vw, 58px);
  background: var(--green);
  color: #fff;
}

.pain-strip div {
  display: grid;
  gap: 6px;
}

.pain-strip strong {
  font-family: "Playfair Display", serif;
  font-size: clamp(28px, 3.5vw, 42px);
}

.pain-strip span {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.5;
}

.pain-strip a {
  flex: 0 0 auto;
  padding: 14px 18px;
  border-radius: 999px;
  background: #f6ead2;
  color: var(--green-dark);
  font-weight: 900;
}

.benefits,
.services,
.pricing,
.team,
.faq {
  padding: clamp(68px, 8vw, 108px) 0;
}

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

.benefit-grid,
.service-grid,
.team-grid,
.plan-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.benefit-grid article {
  min-height: 255px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.benefit-grid span {
  display: block;
  margin-bottom: 34px;
  color: var(--gold);
  font-weight: 900;
}

.benefit-grid h3,
.service-grid h3,
.plan-card h3 {
  margin-bottom: 10px;
  font-size: 21px;
}

.benefit-grid p,
.service-grid p,
.plan-card p,
.faq p {
  color: var(--muted);
  line-height: 1.62;
}

.assessment {
  padding: clamp(68px, 8vw, 110px) clamp(18px, 4vw, 54px);
  background: #edf3ed;
}

.assessment-inner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  width: min(1160px, 100%);
  margin: 0 auto;
}

.steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.steps article {
  min-height: 150px;
  padding: 24px;
  border: 1px solid rgba(11, 97, 90, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.steps strong,
.steps span {
  display: block;
}

.steps strong {
  margin-bottom: 10px;
  color: var(--green-dark);
}

.steps span {
  color: var(--muted);
  line-height: 1.55;
}

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

.service-grid article {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 22px;
  align-items: center;
  min-height: 230px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.service-grid img {
  width: 180px;
  height: 190px;
  border-radius: 6px;
  object-fit: cover;
}

.pricing {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.pricing-copy {
  max-width: 760px;
}

.gallery-section {
  padding: clamp(70px, 8vw, 108px) 0;
  overflow: hidden;
  background: #f1eee5;
}

.gallery-section .section-heading {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto 30px;
}

.photo-marquee {
  width: 100%;
  overflow: hidden;
}

.photo-track {
  display: flex;
  width: max-content;
  gap: 16px;
  animation: slidePhotos 42s linear infinite;
}

.photo-track img {
  width: clamp(220px, 23vw, 340px);
  height: clamp(320px, 36vw, 480px);
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 20px 60px rgba(24, 34, 31, 0.16);
}

@keyframes slidePhotos {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.reviews {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(520px, 1.22fr);
  gap: clamp(28px, 5vw, 70px);
  padding: clamp(70px, 8vw, 110px) clamp(18px, 4vw, 54px);
  background: var(--green-dark);
  color: #fff;
}

.reviews-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.reviews .eyebrow {
  color: #d4c59a;
}

.reviews-wrap {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 18px;
  align-items: stretch;
}

.review-stack {
  position: relative;
  min-height: 340px;
}

.review-card {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  opacity: 0;
  animation: fadeReviews 24s infinite;
}

.review-card:nth-child(2) { animation-delay: 6s; }
.review-card:nth-child(3) { animation-delay: 12s; }
.review-card:nth-child(4) { animation-delay: 18s; }

.review-card span {
  margin-bottom: 20px;
  color: #e5cf7d;
  font-size: 15px;
}

.review-card p {
  font-family: "Playfair Display", serif;
  font-size: clamp(25px, 3vw, 36px);
  line-height: 1.18;
}

.review-card strong {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

@keyframes fadeReviews {
  0%, 7% { opacity: 0; transform: translateY(10px); }
  10%, 24% { opacity: 1; transform: translateY(0); }
  28%, 100% { opacity: 0; transform: translateY(-10px); }
}

.review-photo img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  border-radius: 8px;
  object-fit: cover;
}

.team-grid {
  grid-template-columns: 1.25fr 0.85fr 0.9fr;
}

.team-grid img {
  width: 100%;
  height: 420px;
  border-radius: 8px;
  object-fit: cover;
}

.luana {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: clamp(70px, 8vw, 110px) clamp(18px, 4vw, 54px);
  background: #eef3ee;
}

.luana-media img {
  width: 100%;
  max-height: 650px;
  border-radius: 8px;
  object-fit: cover;
}

.luana-copy {
  max-width: 680px;
}

.faq details {
  border-top: 1px solid var(--line);
  padding: 22px 0;
}

.faq details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  cursor: pointer;
  font-weight: 900;
  font-size: 19px;
}

.faq p {
  max-width: 760px;
  margin: 14px 0 0;
}

.final-cta {
  padding: clamp(76px, 9vw, 128px) clamp(18px, 4vw, 54px);
  text-align: center;
  color: #fff;
  background: var(--green);
}

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

.final-cta h2 {
  max-width: 820px;
  margin: 0 auto 28px;
}

.site-footer {
  display: grid;
  gap: 9px;
  padding: 34px clamp(18px, 4vw, 54px);
  color: rgba(255, 255, 255, 0.72);
  background: #082d2a;
  text-align: center;
}

.site-footer strong {
  color: #fff;
}

.site-footer a {
  color: #f6ead2;
  font-weight: 800;
}

.floating-wa {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  padding: 14px 16px;
  border-radius: 999px;
  background: #1faf62;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.2);
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

body.show-floating .floating-wa {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.pricing-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.pricing-modal.is-open {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 20, 18, 0.72);
  backdrop-filter: blur(8px);
}

.modal-panel {
  position: relative;
  width: min(1040px, 100%);
  max-height: min(92vh, 880px);
  overflow: auto;
  padding: clamp(24px, 4vw, 42px);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.35);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: #eef3ee;
  color: var(--green-dark);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.modal-intro {
  max-width: 620px;
  color: var(--muted);
  line-height: 1.6;
}

.plan-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 22px;
}

.plan-card {
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.plan-card.featured {
  border-color: rgba(11, 97, 90, 0.55);
  box-shadow: 0 18px 48px rgba(11, 97, 90, 0.16);
}

.plan-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(11, 97, 90, 0.24);
  border-radius: 50%;
  color: var(--green);
  font-weight: 900;
}

.plan-card ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
  color: var(--muted);
}

.button-plan {
  margin-top: auto;
  background: var(--green);
  color: #fff;
}

.modal-assessment {
  display: inline-flex;
  margin-top: 22px;
  color: var(--green-dark);
  font-weight: 900;
}

body.modal-open {
  overflow: hidden;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    display: none;
  }

  .hero,
  .assessment-inner,
  .reviews,
  .luana {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media,
  .hero-media img {
    min-height: 520px;
  }

  .benefit-grid,
  .service-grid,
  .team-grid,
  .plan-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reviews-wrap {
    grid-template-columns: 1fr;
  }

  .review-photo img {
    max-height: 430px;
  }
}

@media (max-width: 680px) {
  body::before {
    background-size: 620px auto;
    background-position: 48vw 18vh;
    opacity: 0.045;
  }

  .site-header {
    padding: 13px 16px;
  }

  .header-cta {
    min-height: 42px;
    padding: 0 13px;
    font-size: 12px;
  }

  .brand-logo {
    width: 92px;
    height: 48px;
  }

  .hero {
    width: min(100% - 28px, 1160px);
    padding: 34px 0 56px;
  }

  h1 {
    font-size: clamp(38px, 10.8vw, 48px);
  }

  .hero-lead,
  .section-heading p,
  .pricing-copy p,
  .reviews-copy p,
  .luana-copy p,
  .assessment-copy p {
    font-size: 16px;
  }

  .hero-actions,
  .luana-actions {
    display: grid;
  }

  .button {
    width: 100%;
    min-height: 52px;
  }

  .hero-media,
  .hero-media img {
    min-height: 430px;
  }

  .hero-media img {
    object-position: center center;
  }

  .pain-strip,
  .pricing {
    display: grid;
  }

  .benefit-grid,
  .service-grid,
  .steps,
  .team-grid,
  .plan-grid {
    grid-template-columns: 1fr;
  }

  .service-grid article {
    grid-template-columns: 1fr;
  }

  .service-grid img,
  .team-grid img {
    width: 100%;
    height: 300px;
    object-position: center center;
  }

  .reviews {
    padding-inline: 16px;
  }

  .review-stack {
    min-height: 390px;
  }

  .review-card {
    padding: 24px;
  }

  .photo-track img {
    width: 230px;
    height: 340px;
    object-position: center center;
  }

  .floating-wa {
    right: 12px;
    bottom: 12px;
  }
}
