:root {
  --bg: #fff8f7;
  --bg-soft: #fbe4e8;
  --surface: #ffffff;
  --surface-rose: #fff0f3;
  --text: #4b2f32;
  --muted: #7a6365;
  --accent: #c95b7e;
  --accent-strong: #a93d67;
  --brown: #6f3d35;
  --line: rgba(169, 61, 103, 0.16);
  --shadow: 0 24px 70px rgba(105, 50, 61, 0.14);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

.js .reveal,
.js .benefit-grid article,
.js .service-grid article,
.js .result-grid figure,
.js .about-card {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.72s ease,
    transform 0.72s ease;
}

.js .reveal.is-visible,
.js .benefit-grid article.is-visible,
.js .service-grid article.is-visible,
.js .result-grid figure.is-visible,
.js .about-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 14px clamp(18px, 5vw, 72px);
  background: rgba(255, 248, 247, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 76px;
  height: 54px;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 600;
}

nav a:hover {
  color: var(--accent-strong);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  line-height: 1;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background-color 0.22s ease;
}

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

.nav-cta,
.button.primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 16px 34px rgba(201, 91, 126, 0.3);
}

.button.secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.64);
  color: var(--accent-strong);
}

.button.light {
  background: #fff;
  color: var(--accent-strong);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.16);
}

.hero,
.intro-section,
.benefits,
.services,
.results,
.about,
.final-cta {
  padding: clamp(64px, 9vw, 116px) clamp(18px, 5vw, 72px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.86fr);
  align-items: center;
  gap: clamp(36px, 6vw, 86px);
  min-height: calc(100vh - 72px);
  background:
    radial-gradient(circle at 88% 12%, rgba(201, 91, 126, 0.14), transparent 28%),
    linear-gradient(135deg, #fff8f7 0%, #fbe4e8 100%);
  overflow: hidden;
}

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

h1,
h2,
h3 {
  margin: 0;
  color: var(--text);
  line-height: 1.08;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
}

.text-accent {
  color: var(--accent);
}

h1 {
  max-width: 760px;
  font-size: clamp(3rem, 6.6vw, 6.7rem);
}

h2 {
  font-size: clamp(2.15rem, 4vw, 4.1rem);
}

h3 {
  font-size: 1.16rem;
}

p {
  margin: 0;
}

.hero-text {
  max-width: 650px;
  margin-top: 24px;
  color: var(--muted);
  font-size: clamp(1.06rem, 1.5vw, 1.26rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 640px;
  margin: 40px 0 0;
}

.hero-facts div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.64);
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    border-color 0.24s ease;
}

.hero-facts div:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 91, 126, 0.3);
  box-shadow: 0 22px 46px rgba(105, 50, 61, 0.14);
}

.hero-facts dt {
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-facts dd {
  margin: 2px 0 0;
  color: var(--text);
  font-weight: 700;
}

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

.portrait-card {
  position: absolute;
  inset: 0 0 42px 36px;
  overflow: hidden;
  border: 12px solid #fff;
  border-radius: 44% 44% 18px 18px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.portrait-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.floating-note {
  position: absolute;
  left: 0;
  bottom: 0;
  width: min(310px, 76%);
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.floating-note strong,
.floating-note span {
  display: block;
}

.floating-note strong {
  color: var(--accent-strong);
  font-size: 0.92rem;
}

.floating-note span {
  margin-top: 4px;
  color: var(--muted);
}

.intro-section,
.about {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(34px, 6vw, 82px);
  background: var(--surface);
}

.image-panel {
  overflow: hidden;
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.image-panel img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
}

.intro-copy p:not(.eyebrow),
.about-copy p {
  margin-top: 20px;
  max-width: 680px;
  color: var(--muted);
  font-size: 1.06rem;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 32px;
  color: var(--text);
  font-weight: 600;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: inset 0 0 0 4px #fbe4e8;
}

.section-heading {
  max-width: 820px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading > p:not(.eyebrow) {
  max-width: 760px;
  margin: 18px auto 0;
  color: var(--muted);
}

.benefit-grid,
.service-grid,
.result-grid {
  display: grid;
  gap: 22px;
  max-width: 1180px;
  margin: 0 auto;
}

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

.benefit-grid article,
.service-grid article,
figure,
.about-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 50px rgba(105, 50, 61, 0.08);
  transition:
    transform 0.26s ease,
    box-shadow 0.26s ease,
    border-color 0.26s ease,
    background-color 0.26s ease;
}

.benefit-grid article:hover,
.service-grid article:hover,
figure:hover,
.about-card:hover {
  transform: translateY(-7px);
  border-color: rgba(201, 91, 126, 0.28);
  background: #fff;
  box-shadow: 0 28px 70px rgba(105, 50, 61, 0.16);
}

.benefit-grid article,
.service-grid article {
  padding: 28px;
}

.benefit-grid span {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 13px;
  border-radius: 999px;
  background: var(--surface-rose);
  color: var(--accent-strong);
  font-size: 0.8rem;
  font-weight: 800;
}

.benefit-grid p,
.service-grid p {
  margin-top: 12px;
  color: var(--muted);
}

.services,
.results {
  background: #fff;
}

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

.service-grid article {
  min-height: 190px;
}

.service-grid h3 {
  display: flex;
  align-items: center;
  gap: 12px;
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--surface-rose);
  box-shadow: inset 0 0 0 1px rgba(201, 91, 126, 0.12);
  font-family: "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", sans-serif;
  font-size: 1.22rem;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(54px, 8vw, 86px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(90deg, rgba(54, 31, 34, 0.86), rgba(84, 46, 54, 0.7)),
    url("assets/cta-massagem-costas.jpg") center/cover;
  color: #fff;
}

.cta-band h2,
.cta-band .eyebrow {
  color: #fff;
}

.cta-band p:not(.eyebrow) {
  max-width: 700px;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.82);
}

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

figure {
  overflow: hidden;
  margin: 0;
}

figure img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

figcaption {
  padding: 18px 20px 22px;
  color: var(--brown);
  font-weight: 700;
}

.about {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
}

.about-card {
  display: grid;
  justify-items: center;
  gap: 18px;
  padding: 42px 30px;
  background: linear-gradient(160deg, #fff 0%, #fff0f3 100%);
  text-align: center;
}

.about-card img {
  width: min(320px, 88%);
}

.about-card p {
  max-width: 350px;
  color: var(--accent-strong);
  font-weight: 800;
}

.final-cta {
  display: grid;
  justify-items: center;
  text-align: center;
  background: linear-gradient(135deg, #fbe4e8, #fff8f7);
}

.final-cta p:not(.eyebrow) {
  max-width: 680px;
  margin: 18px 0 30px;
  color: var(--muted);
}

.whatsapp-float {
  position: fixed;
  right: clamp(18px, 3vw, 34px);
  bottom: clamp(18px, 3vw, 34px);
  z-index: 20;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 20px 48px rgba(37, 211, 102, 0.38);
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 28px 60px rgba(37, 211, 102, 0.48);
}

.whatsapp-float svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
}

.site-footer {
  padding: clamp(58px, 8vw, 90px) clamp(18px, 5vw, 72px) 34px;
  background: #140d0f;
  color: rgba(255, 255, 255, 0.76);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.1fr) minmax(160px, 0.5fr) minmax(260px, 0.85fr);
  gap: clamp(40px, 8vw, 110px);
  max-width: 1280px;
  margin: 0 auto;
}

.footer-brand img {
  width: 150px;
  height: auto;
  margin-bottom: 24px;
}

.footer-brand p {
  max-width: 410px;
}

.footer-lines {
  display: flex;
  gap: 8px;
  margin-top: 28px;
}

.footer-lines span {
  display: block;
  width: 28px;
  height: 4px;
  border-radius: 999px;
  background: #f3cfdb;
}

.footer-lines span:first-child {
  background: var(--accent);
}

.footer-lines span:last-child {
  background: #fff;
}

.site-footer h2 {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.5);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-footer ul {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-weight: 700;
}

.site-footer a:hover {
  color: #fff;
}

.footer-contact {
  color: rgba(255, 255, 255, 0.7);
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  color: #fff;
}

.contact-link svg,
.social-links svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.contact-link svg {
  color: #f3cfdb;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  color: #fff;
  font-weight: 900;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background-color 0.2s ease;
}

.social-links a:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
}

.footer-bottom {
  max-width: 1280px;
  margin: 58px auto 0;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.45);
}

@media (max-width: 980px) {
  .site-header {
    align-items: center;
  }

  nav {
    display: none;
  }

  .hero,
  .intro-section,
  .about {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

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

  .portrait-card {
    inset: 0 0 42px 0;
  }

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

  .cta-band {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }
}

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

  .brand {
    width: 68px;
    height: 46px;
  }

  .nav-cta {
    min-height: 42px;
    padding: 0 18px;
  }

  .hero,
  .intro-section,
  .benefits,
  .services,
  .results,
  .about,
  .final-cta {
    padding: 54px 16px;
  }

  h1 {
    font-size: clamp(2.65rem, 14vw, 4.5rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3.1rem);
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-facts,
  .benefit-grid,
  .service-grid,
  .result-grid {
    grid-template-columns: 1fr;
  }

  .hero-facts {
    margin-top: 28px;
  }

  .hero-visual {
    min-height: 430px;
  }

  .portrait-card {
    border-width: 8px;
    border-radius: 42% 42% 16px 16px;
  }

  .floating-note {
    width: 88%;
  }

  .whatsapp-float {
    width: 58px;
    height: 58px;
  }

  .whatsapp-float svg {
    width: 31px;
    height: 31px;
  }

  .site-footer {
    padding-bottom: 86px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
