:root {
  --cream: #fff8ef;
  --paper: #fffdf8;
  --sage: #9ac957;
  --forest: #315f18;
  --mint: #dcebd1;
  --coral: #f4432a;
  --whatsapp: #25d366;
  --rose: #f3b6a3;
  --ink: #17231f;
  --muted: #63716a;
  --line: rgba(33, 66, 52, 0.16);
  --shadow: 0 24px 70px rgba(23, 35, 31, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 5vw, 64px);
  color: #fff;
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-scrolled {
  color: var(--forest);
  background: rgba(255, 253, 248, 0.94);
  box-shadow: 0 10px 36px rgba(23, 35, 31, 0.08);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  width: auto;
  min-width: 0;
}

.brand img {
  width: 42px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.28));
}

.site-header.is-scrolled .brand img {
  filter: none;
}

.brand span,
.footer-brand span {
  color: var(--coral);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 500;
  line-height: 1;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 3vw, 30px);
  font-size: 14px;
  font-weight: 700;
}

.nav a,
.header-cta {
  text-decoration: none;
}

.header-cta {
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 118px clamp(20px, 6vw, 80px) 70px;
  color: #fff;
}

.hero-media,
.hero-media img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  overflow: hidden;
  background:
    linear-gradient(90deg, #102117 0%, #102117 43%, #dfe8d6 43%, #eef3ea 100%);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right bottom;
  transform: none;
  transform-origin: right bottom;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(16, 33, 23, 0.98) 0%, rgba(16, 33, 23, 0.9) 38%, rgba(16, 33, 23, 0.2) 64%, rgba(16, 33, 23, 0) 100%),
    linear-gradient(180deg, rgba(16, 33, 23, 0.16) 0%, rgba(16, 33, 23, 0) 44%, rgba(16, 33, 23, 0.24) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(790px, 100%);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--rose);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--coral);
}

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

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

h1 {
  max-width: 790px;
  margin-bottom: 22px;
  font-size: clamp(34px, 4.6vw, 58px);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 4vw, 56px);
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.2;
}

.hero-subtitle {
  max-width: 620px;
  margin-bottom: 32px;
  font-size: clamp(18px, 2.1vw, 23px);
  color: rgba(255, 255, 255, 0.9);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border-radius: 999px;
  padding: 13px 22px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button.primary {
  background: var(--coral);
  color: #fff;
  box-shadow: 0 14px 30px rgba(217, 95, 67, 0.3);
}

.button.secondary {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.08);
}

.button.full {
  width: 100%;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-proof span {
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 700;
}

.section {
  position: relative;
  padding: clamp(72px, 9vw, 120px) clamp(20px, 6vw, 80px);
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.section::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: clamp(34px, 5vw, 76px);
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(255, 253, 248, 0.62), rgba(255, 253, 248, 0));
}

.process::before {
  background: linear-gradient(to bottom, rgba(255, 248, 239, 0.68), rgba(242, 248, 237, 0));
}

.weeks::before {
  background: linear-gradient(to bottom, rgba(242, 248, 237, 0.72), rgba(255, 253, 248, 0));
}

.testimonial::before {
  background: linear-gradient(to bottom, rgba(255, 253, 248, 0.72), rgba(220, 235, 209, 0));
}

.included::before {
  background: linear-gradient(to bottom, rgba(220, 235, 209, 0.66), rgba(255, 248, 239, 0));
}

.about::before {
  background: linear-gradient(to bottom, rgba(255, 248, 239, 0.72), rgba(255, 255, 255, 0));
}

.offer::before {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.28), rgba(49, 95, 24, 0));
}

.section-grid,
.process,
.testimonial,
.about,
.offer-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 6vw, 90px);
  align-items: center;
}

.intro-band {
  background: var(--cream);
}

.lead-copy {
  color: var(--muted);
  font-size: 19px;
}

.promise-grid,
.included-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}

.promise-grid article,
.included-grid article,
.week-card,
.about-card,
.price-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 45px rgba(23, 35, 31, 0.06);
}

.promise-grid article,
.included-grid article {
  padding: 26px;
}

.promise-grid span,
.week-card span,
.price-card span {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--coral);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.process {
  background: #f2f8ed;
}

.process-copy p {
  color: var(--muted);
  font-size: 18px;
}

.process-points {
  display: grid;
  gap: 10px;
  margin: 0 0 28px;
  padding-left: 20px;
  color: var(--forest);
  font-size: 17px;
  font-weight: 700;
}

.process-photo,
.about-photo {
  margin: 28px 0 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.process-photo img {
  width: 100%;
  height: clamp(320px, 38vw, 520px);
  object-fit: cover;
  object-position: center;
}

.process-list {
  align-self: start;
  display: grid;
  gap: 14px;
  margin-top: calc(28px + clamp(34px, 4vw, 54px) * 2 + 120px);
}

.process-list div {
  display: grid;
  gap: 5px;
  border-left: 5px solid var(--sage);
  padding: 22px 24px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(33, 66, 52, 0.08);
}

.process-list strong {
  color: var(--forest);
  font-size: 20px;
}

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

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

.weeks {
  background: var(--paper);
}

.week-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.week-list::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 24px;
  right: 24px;
  height: 2px;
  background: linear-gradient(90deg, rgba(244, 67, 42, 0.14), rgba(154, 201, 87, 0.48), rgba(244, 67, 42, 0.18));
}

.week-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 26px;
  opacity: 0;
  transform: translateY(24px) scale(0.98);
  transition:
    opacity 620ms ease,
    transform 620ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease,
    background 220ms ease;
}

.weeks.is-visible .week-card {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.weeks.is-visible .week-card:nth-child(2) {
  transition-delay: 80ms;
}

.weeks.is-visible .week-card:nth-child(3) {
  transition-delay: 160ms;
}

.weeks.is-visible .week-card:nth-child(4) {
  transition-delay: 240ms;
}

.weeks.is-visible .week-card:nth-child(5) {
  transition-delay: 320ms;
}

.weeks.is-visible .week-card:nth-child(6) {
  transition-delay: 400ms;
}

.week-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(154, 201, 87, 0.16), rgba(244, 67, 42, 0));
  opacity: 0;
  transition: opacity 220ms ease;
}

.week-card::after {
  content: "";
  position: absolute;
  top: 25px;
  right: 24px;
  width: 12px;
  height: 12px;
  border: 3px solid rgba(244, 67, 42, 0.3);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 7px rgba(154, 201, 87, 0.12);
}

.week-card:hover {
  border-color: rgba(244, 67, 42, 0.34);
  box-shadow: 0 26px 70px rgba(23, 35, 31, 0.13);
  transform: translateY(-8px);
}

.week-card:active {
  transform: translateY(-4px) scale(0.99);
}

.week-card:hover::before {
  opacity: 1;
}

.week-card > * {
  position: relative;
  z-index: 1;
}

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

.week-card ul {
  margin: 20px 0 0;
  padding-left: 18px;
  color: var(--ink);
}

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

.week-card.featured {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(154, 201, 87, 0.16), rgba(244, 67, 42, 0)),
    var(--forest);
}

.week-card.featured p,
.week-card.featured span {
  color: rgba(255, 255, 255, 0.82);
}

.week-card.featured::after {
  border-color: var(--sage);
  background: var(--coral);
  box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.12);
}

.week-card.featured li {
  color: rgba(255, 255, 255, 0.9);
}

.testimonial {
  background:
    linear-gradient(90deg, rgba(220, 235, 209, 0.94), rgba(255, 248, 239, 0.94)),
    url("./assets/facilitari-papel-timbrado.jpg") center / cover;
}

blockquote {
  margin: 0;
  padding: clamp(28px, 4vw, 48px);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

blockquote p {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.16;
}

cite {
  color: var(--muted);
  font-style: normal;
  font-weight: 800;
}

.included {
  background: var(--cream);
}

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

.about {
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
  background: #fff;
}

.about-photo {
  margin: 0;
  align-self: stretch;
}

.about-photo img {
  width: 100%;
  height: 100%;
  min-height: 580px;
  object-fit: cover;
  object-position: center;
}

.about-card {
  padding: clamp(28px, 5vw, 52px);
}

.about-card p {
  color: var(--muted);
  font-size: 18px;
}

.credentials {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.credentials div {
  display: grid;
  gap: 4px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--cream);
}

.credentials strong {
  color: var(--forest);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 42px;
  line-height: 1;
}

.credentials span {
  color: var(--muted);
  font-weight: 700;
}

.offer {
  color: #fff;
  background:
    linear-gradient(120deg, rgba(49, 95, 24, 0.97), rgba(26, 54, 30, 0.9)),
    radial-gradient(circle at 80% 20%, rgba(217, 95, 67, 0.45), transparent 32%);
}

.offer-panel {
  align-items: stretch;
}

.offer-panel > div:first-child {
  display: grid;
  align-content: center;
}

.offer-panel p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.price-card {
  padding: clamp(28px, 5vw, 46px);
  background: #fff;
  color: var(--ink);
}

.price-card strong {
  display: block;
  margin-bottom: 14px;
  color: var(--forest);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(48px, 7vw, 76px);
  line-height: 0.95;
}

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

.footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 32px clamp(20px, 6vw, 80px);
  background: var(--ink);
  color: #fff;
}

.footer div {
  display: grid;
  gap: 8px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  text-decoration: none;
}

.footer-brand img {
  width: 44px;
  height: auto;
}

.footer-brand span {
  font-size: clamp(26px, 4vw, 36px);
}

.footer span,
.footer a {
  color: rgba(255, 255, 255, 0.68);
  text-decoration: none;
}

.floating-cta {
  position: fixed;
  z-index: 25;
  right: 20px;
  bottom: max(18px, env(safe-area-inset-bottom));
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  border-radius: 999px;
  padding: 14px 24px;
  background: var(--whatsapp);
  color: #fff;
  box-shadow: 0 16px 38px rgba(37, 211, 102, 0.34);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
}

@media (prefers-reduced-motion: reduce) {
  .section,
  .week-card {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

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

  .section-grid,
  .process,
  .testimonial,
  .about,
  .offer-panel {
    grid-template-columns: 1fr;
  }

  .process-list {
    margin-top: 0;
  }

  .promise-grid,
  .included-grid,
  .week-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(20, 36, 24, 0.95), rgba(20, 36, 24, 0.56));
  }

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

@media (max-width: 680px) {
  .site-header {
    padding: 14px 18px;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 36px;
  }

  .brand span {
    font-size: 24px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    display: flex;
    min-height: auto;
    flex-direction: column;
    align-items: stretch;
    padding: 88px 0 38px;
    background: #102117;
  }

  .hero-media {
    position: relative;
    inset: auto;
    width: 100%;
    height: min(76vh, 520px);
    min-height: 390px;
    background: #eef3ea;
  }

  .hero-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 58% center;
  }

  .hero-overlay {
    position: absolute;
    inset: auto 0 0;
    height: 42%;
    background:
      linear-gradient(180deg, rgba(16, 33, 23, 0), rgba(16, 33, 23, 0.78));
  }

  .hero-content {
    width: 100%;
    padding: 28px 24px 0;
    background: #102117;
  }

  h1 {
    font-size: clamp(32px, 10vw, 42px);
    line-height: 1.08;
  }

  .hero-subtitle {
    font-size: 19px;
    line-height: 1.5;
  }

  .about-photo img {
    min-height: 420px;
  }

  .button {
    width: 100%;
  }

  .promise-grid,
  .included-grid,
  .week-list {
    grid-template-columns: 1fr;
  }

  .week-list::before {
    top: 24px;
    bottom: 24px;
    left: 28px;
    right: auto;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, rgba(244, 67, 42, 0.18), rgba(154, 201, 87, 0.48), rgba(244, 67, 42, 0.18));
  }

  .week-card {
    padding-left: 34px;
  }

  .footer {
    display: grid;
  }

  .floating-cta {
    left: 16px;
    right: 16px;
    bottom: max(14px, env(safe-area-inset-bottom));
    display: flex;
    max-width: calc(100vw - 32px);
    padding: 15px 16px;
    font-size: 17px;
    white-space: normal;
  }
}
