@font-face {
  font-family: "DM Sans";
  src: url("fonts/dm-sans-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
}

@font-face {
  font-family: "Playfair Display";
  src: url("fonts/playfair-display-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 500 600;
  font-display: swap;
}

:root {
  --forest: #343b2b;
  --leaf: #565b46;
  --leaf-light: #8c9077;
  --gold: #9f6539;
  --gold-light: #d09a67;
  --cream: #e9dfd2;
  --soft: #d8cbbc;
  --ink: #20211e;
  --white: #fff;
  --line: rgba(36, 56, 45, .16);
  --sans: "DM Sans", system-ui, sans-serif;
  --serif: "Playfair Display", Georgia, serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--cream); font-family: var(--sans); font-size: 16px; line-height: 1.7; }
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
.skip-link { position: fixed; left: 1rem; top: -5rem; z-index: 1000; padding: .7rem 1rem; background: var(--white); color: var(--ink); }
.skip-link:focus { top: 1rem; }

.site-header { position: fixed; inset: 0 0 auto; z-index: 100; height: 100px; padding: 0 max(1.4rem, calc((100vw - 1320px) / 2)); display: flex; align-items: center; gap: clamp(1.5rem, 4vw, 4rem); color: var(--white); transition: background .35s, height .35s, padding .35s, box-shadow .35s; }
.site-header.scrolled { height: 78px; padding-top: .55rem; padding-bottom: .55rem; background: rgba(25, 35, 29, .96); box-shadow: 0 10px 35px rgba(0,0,0,.12); }
.brand { width: 132px; height: 92px; display: flex; align-items: center; margin-right: auto; transition: width .35s, height .35s; }
.site-header.scrolled .brand { width: 108px; height: 60px; }
.brand img, .footer-brand img { width: 100%; height: 100%; object-fit: contain; object-position: center; padding:7px; }
.desktop-nav { display: flex; gap: 2rem; font-size: .94rem; font-weight: 500; }
.desktop-nav a { position: relative; padding: .5rem 0; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 1px; background: var(--gold); transition: right .25s; }
.desktop-nav a:hover::after, .desktop-nav a:focus-visible::after { right: 0; }
.header-cta, .button { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; border: 0; border-radius: 999px; padding: .8rem 1.5rem; font-weight: 600; font-family: inherit; cursor: pointer; transition: transform .25s, background .25s; }
.header-cta { background: var(--gold); color: var(--white); }
.header-cta:hover, .button:hover { transform: translateY(-2px); }
.menu-toggle { display: none; border: 0; background: transparent; color: inherit; cursor: pointer; font-weight: 600; }
.mobile-menu { position: fixed; inset: 78px 0 auto; z-index: 99; display: grid; gap: 0; background: var(--forest); color: var(--white); padding: 1.2rem 1.5rem 1.6rem; transform: translateY(-130%); opacity: 0; pointer-events: none; transition: transform .35s, opacity .35s; }
.mobile-menu.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.mobile-menu a { border-bottom: 1px solid rgba(255,255,255,.15); padding: .8rem 0; }
.mobile-contact { border: 0; border-bottom: 1px solid rgba(255,255,255,.15); padding: .8rem 0; background: transparent; color: inherit; text-align: left; cursor: pointer; }

.hero { min-height: 100svh; position: relative; display: grid; align-items: center; overflow: hidden; color: var(--white); }
.hero-image, .hero-shade { position: absolute; inset: 0; height: 100%; }
.hero-image { object-fit: cover; object-position: center; }
.hero-shade { background: linear-gradient(90deg, rgba(16,27,20,.78) 0%, rgba(16,27,20,.48) 48%, rgba(16,27,20,.2) 100%), linear-gradient(0deg, rgba(16,27,20,.35), transparent 45%); }
.hero-copy { position: relative; z-index: 2; width: 100%; padding: 150px max(1.4rem, calc((100vw - 1320px) / 2)) 90px; }
.hero-copy > * { max-width: 820px; }
.eyebrow { margin: 0 0 1rem; color: var(--leaf); font-size: .76rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; }
.eyebrow.light { color: #e4dfd2; }
h1, h2, blockquote { font-family: var(--serif); font-weight: 500; line-height: 1.05; letter-spacing: -.035em; }
.hero h1 { margin: 0; font-size: 60px; }
h2 { margin: 0 0 1.5rem; font-size: clamp(2.5rem, 4.5vw, 4.8rem); }
h3 { line-height: 1.2; }
.hero-text { max-width: 620px; margin: 1.6rem 0 2rem; font-size: clamp(1.05rem, 1.4vw, 1.3rem); color: rgba(255,255,255,.84); }
.hero-actions { display: flex; align-items: center; gap: 1.6rem; flex-wrap: wrap; }
.button-gold { background: var(--gold); color: var(--white); }
.text-link { display: inline-flex; align-items: center; border-bottom: 1px solid currentColor; padding-bottom: .2rem; font-weight: 600; }
.light-link { color: var(--white); }
.scroll-cue { position: absolute; z-index: 2; bottom: 2.2rem; right: clamp(1.4rem, 5vw, 5rem); font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; writing-mode: vertical-rl; }

.section { padding: clamp(5rem, 10vw, 9rem) clamp(1.4rem, 6vw, 6rem); }
.intro, .experience, .faq { padding-right: max(1.4rem, calc((100vw - 1320px) / 2)); padding-left: max(1.4rem, calc((100vw - 1320px) / 2)); }
.intro { display: grid; grid-template-columns: minmax(280px, .85fr) minmax(340px, 1fr); align-items: center; gap: clamp(3rem, 8vw, 8rem); background: #fbfaf7; }
.intro-image { position: relative; max-width: 620px; }
.intro-image img { aspect-ratio: .84; object-fit: cover; border-radius: 28px; }
.image-note { position: absolute; right: -2.2rem; bottom: 2.2rem; max-width: 230px; padding: 1.3rem; border-radius: 18px; background: var(--gold); color: var(--white); font-family: var(--serif); font-size: 1.2rem; line-height: 1.35; }
.intro-copy { max-width: 670px; }
.intro-copy > p:not(.eyebrow) { color: #555b55; max-width: 620px; }
.facts { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 2rem; }
.facts span { border: 1px solid var(--line); border-radius: 99px; padding: .5rem .85rem; font-size: .84rem; }

.section-dark { padding: clamp(5rem, 10vw, 9rem) clamp(1.4rem, 10vw, 11rem); background: var(--forest); color: var(--white); text-align: center; }
.manifesto blockquote { max-width: 1100px; margin: 0 auto 1.7rem; font-size: clamp(2.5rem, 5vw, 5.8rem); }
.manifesto > p:last-child { color: rgba(255,255,255,.65); }

.services { background: var(--soft); padding-top: clamp(5rem, 9vw, 8rem); }
.section-heading { max-width: 850px; margin: 0 auto clamp(3rem, 6vw, 5rem); padding: 0 1.5rem; text-align: center; }
.section-heading > p:last-child { max-width: 650px; margin: 0 auto; color: #5e635e; }
.service-grid { display: grid; grid-template-columns: repeat(5, 1fr); }
.service-card { min-height: 470px; padding: 2rem; display: flex; flex-direction: column; justify-content: flex-end; border-right: 1px solid rgba(255,255,255,.28); color: var(--white); background: linear-gradient(180deg, rgba(29,42,33,.12), rgba(29,42,33,.93)), url("imagens/servico-pilates.webp") center/cover; cursor: pointer; overflow: hidden; transition: transform .35s ease, filter .35s ease; }
.service-card:hover, .service-card:focus-visible { transform: translateY(-8px); filter: saturate(1.08) brightness(1.05); outline: 3px solid var(--gold); outline-offset: -3px; }
.service-card:nth-child(2) { background-image: linear-gradient(180deg, rgba(29,42,33,.1), rgba(29,42,33,.94)), url("imagens/servico-fisioterapia.webp"); }
.service-card:nth-child(3) { background-image: linear-gradient(180deg, rgba(29,42,33,.1), rgba(29,42,33,.94)), url("imagens/servico-liberacao-miofascial.webp"); }
.service-card:nth-child(4) { background-image: linear-gradient(180deg, rgba(29,42,33,.1), rgba(29,42,33,.94)), url("imagens/servico-drenagem-linfatica.webp"); }
.service-card:nth-child(5) { background-image: linear-gradient(180deg, rgba(29,42,33,.1), rgba(29,42,33,.94)), url("imagens/servico-bandagem.webp"); background-position: 65% center; }
.service-number { margin-bottom: auto; font-family: var(--serif); font-size: 1.7rem; color: var(--gold-light); }
.service-card h3 { margin: 0 0 .7rem; font-family: var(--serif); font-size: 1.9rem; }
.service-card p { margin: 0; color: rgba(255,255,255,.75); font-size: .94rem; }

.experience { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(3rem, 7vw, 7rem); align-items: center; background: #fbfaf7; }
.experience-copy { max-width: 570px; }
.experience-copy > p:not(.eyebrow) { color: #5e635e; margin-bottom: 2rem; }
.experience-gallery { min-height: 680px; position: relative; }
.gallery-main { width: 78%; height: 85%; object-fit: cover; position: absolute; top: 0; right: 0; border-radius: 28px; }
.gallery-detail { width: 45%; height: 48%; object-fit: cover; position: absolute; bottom: 0; left: 0; border: 12px solid #fbfaf7; border-radius: 28px; }

.section-soft { padding: clamp(5rem, 9vw, 8rem) clamp(1.4rem, 6vw, 6rem); background: var(--soft); }
.process-list { max-width: 1200px; margin: 0 auto; padding: 0; list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); }
.process-list li { padding: 1rem clamp(1.5rem, 3vw, 3rem) 2rem; border-left: 1px solid var(--line); }
.process-list li:last-child { border-right: 1px solid var(--line); }
.process-list span { font-family: var(--serif); color: var(--gold); font-size: 2.2rem; }
.process-list h3 { font-family: var(--serif); font-size: 1.65rem; }
.process-list p { color: #5e635e; }

.reviews { background: var(--forest); color: var(--white); }
.reviews-heading { max-width: 900px; margin: 0 auto 3.5rem; text-align: center; }
.reviews-heading .eyebrow { color: #b9c1ae; }
.reviews-heading h2 { margin-bottom: 0; }
.google-rating { width: fit-content; margin: 0 auto 1.8rem; display: flex; align-items: center; gap: .65rem; padding: .7rem 1rem; border: 1px solid rgba(255,255,255,.16); border-radius: 999px; background: rgba(255,255,255,.07); }
.google-rating img { width: 25px; height: 25px; }
.google-rating strong { font-size: 1.1rem; }
.google-rating span, .review-stars { color: #fbbc04; letter-spacing: .08em; }
.google-rating small { color: rgba(255,255,255,.65); }
.review-carousel { position: relative; max-width: 1320px; margin: 0 auto; padding: 0 3.4rem; }
.review-track { display: flex; gap: 1rem; overflow-x: auto; padding: .2rem .1rem 1rem; scroll-behavior: smooth; scroll-snap-type: x mandatory; scrollbar-width: none; }
.review-track::-webkit-scrollbar { display: none; }
.review-card { flex: 0 0 min(390px, calc(100vw - 5rem)); min-height: 350px; padding: clamp(1.6rem, 3vw, 2.5rem); display: flex; flex-direction: column; border: 1px solid rgba(255,255,255,.13); border-radius: 24px; background: rgba(255,255,255,.055); scroll-snap-align: start; }
.review-author { display: flex; align-items: center; gap: .85rem; }
.review-author p { margin: 0; font-weight: 600; }
.review-author div > span { display: block; color: rgba(255,255,255,.55); font-size: .78rem; }
.review-avatar { width: 48px; height: 48px; flex: 0 0 auto; display: grid; place-items: center; border-radius: 50%; background: #8c9077; color: #fff; font-size: .78rem; font-weight: 700; letter-spacing: .04em; }
.review-avatar.tone-2 { background: #a66d3f; }
.review-avatar.tone-3 { background: #656a52; }
.review-avatar.tone-4 { background: #75655a; }
.review-stars { margin-top: 1.6rem; }
.review-card blockquote { margin: 1.1rem 0 0; font-family: var(--serif); font-size: clamp(1.35rem, 2vw, 1.8rem); line-height: 1.35; letter-spacing: -.025em; }
.review-arrow { position: absolute; top: 50%; z-index: 2; width: 46px; height: 46px; border: 1px solid rgba(255,255,255,.3); border-radius: 50%; background: var(--white); color: var(--forest); cursor: pointer; transform: translateY(-50%); transition: transform .2s, background .2s; }
.review-arrow:hover { background: var(--gold); color: var(--white); transform: translateY(-50%) scale(1.06); }
.review-prev { left: 0; }
.review-next { right: 0; }
.google-link { width: fit-content; margin: 2.2rem auto 0; display: block; border-bottom: 1px solid currentColor; padding-bottom: .2rem; color: rgba(255,255,255,.8); font-weight: 600; }

.faq { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(3rem, 7vw, 7rem); align-items: center; background: #fbfaf7; }
.faq-photo img { height: 680px; object-fit: cover; border-radius: 28px; }
.faq-content { max-width: 680px; }
.accordion details { border-top: 1px solid var(--line); padding: 1.15rem 0; }
.accordion details:last-child { border-bottom: 1px solid var(--line); }
.accordion summary { cursor: pointer; list-style: none; font-weight: 600; font-size: 1.05rem; display: flex; justify-content: space-between; gap: 1rem; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after { content: "+"; color: var(--gold); font-size: 1.3rem; }
.accordion details[open] summary::after { content: "−"; }
.accordion p { color: #5e635e; margin: .7rem 2rem 0 0; }

.final-cta { min-height: 680px; position: relative; display: grid; place-items: center; color: var(--white); text-align: center; overflow: hidden; }
.final-cta > img, .final-cta-shade { position: absolute; inset: 0; height: 100%; object-fit: cover; }
.final-cta-shade { background: rgba(20,34,25,.72); }
.final-cta-copy { position: relative; z-index: 2; max-width: 960px; padding: 5rem 1.5rem; }
.final-cta-copy h2 { font-size: 60px; }
.final-cta-copy .eyebrow { font-size: .66rem; letter-spacing: .2em; }

.site-footer { background: #151a16; color: rgba(255,255,255,.72); padding: 5rem max(1.4rem, calc((100vw - 1320px) / 2)) 1.5rem; display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 3rem; }
.footer-brand img { width: 150px; height: 118px; }
.footer-brand p { max-width: 430px; margin: .35rem 0 0; line-height: 1.75; }
.footer-visit, .footer-contact { padding-top: 94px; }
.footer-contact { display: flex; flex-direction: column; align-items: flex-start; }
.footer-contact .instagram-link { margin-top: .45rem; }
.site-footer h2 { margin: 0 0 1rem; color: var(--white); font-family: var(--sans); font-size: .8rem; letter-spacing: .16em; text-transform: uppercase; }
.site-footer address { font-style: normal; }
.site-footer a { display: block; width: fit-content; margin-bottom: .35rem; }
.site-footer a:hover { color: var(--gold); }
.directions-link { margin-top: .9rem; border-bottom: 1px solid var(--gold); padding-bottom: .08rem; color: var(--white); font-weight: 600; }
.footer-bottom { grid-column: 1 / -1; border-top: 1px solid rgba(255,255,255,.12); padding: 1.5rem 9rem 0 0; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 1rem; font-size: .84rem; }
.developer-credit { justify-self: end; color: var(--white); }
.instagram-link { display: inline-flex !important; align-items: center; gap: .6rem; }
.instagram-link img { width: 24px; height: 24px; flex: 0 0 auto; }
.phone-link { display: inline-flex !important; align-items: center; gap: .6rem; }
.phone-link img { width: 22px; height: 22px; flex: 0 0 auto; }
.floating-contact { position: fixed; right: 1.2rem; bottom: 1.2rem; z-index: 90; display: inline-flex; align-items: center; gap: .55rem; border: 0; padding: .65rem 1rem .65rem .7rem; border-radius: 999px; background: #f7f5ef; color: #223027; font-size: .85rem; font-weight: 600; font-family: inherit; cursor: pointer; box-shadow: 0 10px 36px rgba(0,0,0,.22); }
.floating-contact img { width: 38px; height: 38px; }

.contact-dialog { width: min(92vw, 570px); max-height: 92vh; border: 0; border-radius: 24px; padding: 0; background: #f8f5ef; color: var(--ink); box-shadow: 0 28px 90px rgba(12,18,14,.32); }
.contact-dialog::backdrop { background: rgba(21,29,23,.72); backdrop-filter: blur(5px); }
.contact-form { position: relative; display: grid; gap: .75rem; padding: clamp(1.5rem, 5vw, 3rem); }
.contact-form h2 { max-width: 430px; margin: 0; font-size: clamp(2rem, 6vw, 3.4rem); }
.dialog-intro { margin: .2rem 0 .8rem; color: #62665f; }
.contact-form label { margin-top: .2rem; font-size: .86rem; font-weight: 600; }
.contact-form input, .contact-form select { width: 100%; min-height: 54px; border: 1px solid rgba(52,59,43,.2); border-radius: 12px; padding: .8rem 1rem; background: #fff; color: var(--ink); font: inherit; outline: none; }
.contact-form input:focus, .contact-form select:focus { border-color: var(--leaf); box-shadow: 0 0 0 3px rgba(101,106,82,.14); }
.dialog-close { position: absolute; top: 1.2rem; right: 1.2rem; border: 0; border-bottom: 1px solid currentColor; padding: .1rem 0; background: transparent; color: #62665f; font: inherit; font-size: .78rem; cursor: pointer; }
.button-whatsapp { width: 100%; margin-top: .75rem; gap: .65rem; background: #245f3d; color: #fff; }
.button-whatsapp img { width: 26px; height: 26px; }
.form-note { margin: 0; color: #74776f; text-align: center; font-size: .75rem; line-height: 1.45; }
.contact-dialog[open] { animation: dialog-in .24s ease-out; }
.service-dialog { width: min(92vw, 740px); max-height: 92vh; border: 0; border-radius: 28px; padding: 0; background: #f8f5ef; color: var(--ink); box-shadow: 0 28px 90px rgba(12,18,14,.32); }
.service-dialog::backdrop { background: rgba(21,29,23,.72); backdrop-filter: blur(5px); }
.service-dialog[open] { animation: dialog-in .28s ease-out; }
.service-dialog-inner { position: relative; padding: clamp(2rem, 6vw, 4.2rem); }
.service-dialog-inner > h2 { max-width: 600px; margin-bottom: 2.2rem; font-size: clamp(2.7rem, 6vw, 4.8rem); }
.service-dialog-close { position: absolute; top: 1.4rem; right: 1.5rem; border: 0; border-bottom: 1px solid currentColor; padding: .1rem 0; background: transparent; color: #62665f; font: inherit; font-size: .78rem; cursor: pointer; }
.service-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-bottom: 2.2rem; }
.service-info-grid > div { padding-top: 1.2rem; border-top: 1px solid var(--line); }
.service-info-grid h3 { margin: 0 0 .7rem; font-family: var(--serif); font-size: 1.4rem; }
.service-info-grid p { margin: 0; color: #5d625b; }
.service-schedule { min-width: 190px; }
@keyframes dialog-in { from { opacity: 0; transform: translateY(18px) scale(.98); } to { opacity: 1; transform: none; } }

.reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s ease, transform .8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { animation: none !important; transition: none !important; } .reveal { opacity: 1; transform: none; } }

@media (max-width: 1100px) {
  .desktop-nav { display: none; }
  .header-cta { margin-left: 0; }
  .menu-toggle { display: block; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card:last-child { grid-column: 1 / -1; min-height: 380px; }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .site-header { height: 78px; padding: 0 1.1rem; }
  .brand { width: 84px; height: 68px; }
  .site-header.scrolled .brand { width: 78px; height: 58px; }
  .header-cta { display: none; }
  .hero { min-height: 840px; align-items: end; }
  .hero h1{font-size:44px;}
  .hero-image { object-position: 62% center; }
  .hero-shade { background: linear-gradient(0deg, rgba(14,26,18,.88) 0%, rgba(14,26,18,.28) 78%); }
  .hero-copy { padding: 7rem 1.3rem 7.5rem; }
  h1 { font-size: clamp(3rem, 14vw, 4.6rem); }
  h2 { font-size: clamp(2.35rem, 10vw, 3.6rem); }
  .scroll-cue { display: none; }
  .intro, .experience, .faq { grid-template-columns: 1fr; }
  .intro { padding-top: 4rem; }
  .intro-image { margin-right: 1.5rem; }
  .image-note { right: -1.5rem; bottom: 1.5rem; }
  .intro-copy { padding-top: 1rem; }
  .manifesto { text-align: left; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card, .service-card:last-child { grid-column: auto; min-height: 500px; }
  .experience { padding-bottom: 5rem; }
  .experience-gallery { min-height: 540px; }
  .gallery-main { width: 87%; height: 78%; }
  .gallery-detail { width: 55%; height: 42%; }
  .intro-image img, .gallery-main, .gallery-detail, .faq-photo img { border-radius: 20px; }
  .process-list { grid-template-columns: 1fr; }
  .process-list li, .process-list li:last-child { border: 0; border-top: 1px solid var(--line); }
  .faq-photo { order: 2; }
  .faq-photo img { height: 520px; }
  .final-cta { min-height: 620px; }
  .site-footer { grid-template-columns: 1fr; gap: 2rem; }
  .footer-visit, .footer-contact { padding-top: 0; }
  .footer-bottom { grid-template-columns: 1fr; padding-right: 0; }
  .developer-credit { justify-self: start; }
  .floating-contact { bottom: .8rem; right: .8rem; }
  .floating-contact span { display: none; }
  .floating-contact { padding: .55rem; }
  .contact-dialog { border-radius: 20px; }
  .review-carousel { padding: 0; }
  .review-card { min-height: 320px; }
  .review-arrow { display: none; }
  .google-rating { flex-wrap: wrap; justify-content: center; }
  .service-dialog { border-radius: 20px; }
  .service-info-grid { grid-template-columns: 1fr; gap: 1.3rem; }
  .service-schedule { width: 100%; }
  .final-cta-copy h2{font-size:30px;}
}

@media (max-width: 390px) {
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .text-link { align-self: flex-start; }
  .button { width: 100%; }
}
