/* Base layout, followed by one block per responsive breakpoint. */
:root {
  --ink: #211a16;
  --coffee: #2b211a;
  --coffee-2: #17120f;
  --brown: #805c43;
  --brown-2: #9b7052;
  --peach: #d69a74;
  --cream: #f7f0e8;
  --paper: #fffdfb;
  --muted: #74675e;
  --line: #eadfd5;
  --green: #1fc46a;
  --shadow: 0 18px 55px rgba(55,39,28,.14);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: 'DM Sans',system-ui,-apple-system,sans-serif;
  line-height: 1.45;
  overflow-x: hidden;
}

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

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

button,a {
  touch-action: manipulation;
}

section[id] {
  scroll-margin-top: 80px;
}

.container {
  width: min(1180px,calc(100% - 48px));
  margin-inline: auto;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon,.play-icon {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

.icon-sm {
  width: 18px;
  height: 18px;
}

.icon-xs {
  width: 14px;
  height: 14px;
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  color: #fff;
  transition: .25s;
}

.nav-wrap.container {
  width: min(1380px,calc(100% - 144px));
}

.nav-wrap {
  height: 84px;
  display: flex;
  align-items: center;
  gap: 34px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  white-space: nowrap;
}

.brand-monogram {
  font-family: 'Cormorant Garamond',serif;
  font-size: 41px;
  line-height: .85;
  letter-spacing: -2.5px;
  font-weight: 600;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: .95;
}

.brand-copy small {
  font-size: 8px;
  letter-spacing: 3.8px;
  margin-bottom: 4px;
  font-weight: 600;
}

.brand-copy strong {
  font-family: 'Cormorant Garamond',serif;
  font-size: 19px;
  font-weight: 600;
  letter-spacing: .01em;
}

.desktop-nav {
  margin-left: auto;
  display: flex;
  gap: 30px;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: .01em;
}

.desktop-nav a {
  opacity: .9;
  transition: .2s;
}

.desktop-nav a:hover {
  opacity: 1;
  color: #efbd98;
}

.btn {
  border: 0;
  border-radius: 11px;
  padding: 14px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  transition: transform .2s,box-shadow .2s,background .2s;
}

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

.btn-soft {
  background: #d39a74;
  color: #fff;
  padding: 12px 18px;
  box-shadow: 0 8px 22px rgba(125,73,46,.14);
}

.btn-primary {
  background: linear-gradient(135deg,#d69a75,#c17f60);
  color: #fff;
  box-shadow: 0 12px 30px rgba(182,108,73,.25);
}

.btn-brown {
  background: linear-gradient(135deg,#8b654b,#74513c);
  color: #fff;
}

.btn-light {
  background: #fff;
  color: var(--ink);
  border: 1px solid #e4d8cf;
}

.menu-btn {
  display: none;
  margin-left: auto;
  color: #fff;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.34);
  border-radius: 11px;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
}

.mobile-menu {
  display: none;
}

.hero {
  height: 710px;
  position: relative;
  overflow: hidden;
  background: #1b120c;
  color: #fff;
}

.hero-media {
  position: absolute;
  inset: 0;
  display: block;
  overflow: hidden;
}

.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 67% 39%;
  transform: scale(1.01);
  filter: saturate(.92) contrast(1.03) brightness(.88);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,rgba(16,12,9,.985) 0%,rgba(24,17,12,.965) 25%,rgba(35,24,16,.80) 43%,rgba(45,29,19,.34) 61%,rgba(30,20,14,.08) 78%,rgba(20,14,10,.03) 100%),linear-gradient(0deg,rgba(19,13,9,.45) 0%,rgba(19,13,9,.08) 38%,rgba(29,18,11,.08) 100%);
}

.hero-content.container {
  width: min(1380px,calc(100% - 144px));
}

.hero-content {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
}

.hero-copy {
  padding-top: 82px;
  width: 50%;
  position: relative;
  z-index: 2;
}

.eyebrow {
  font-size: 11px;
  letter-spacing: 3.5px;
  color: #d9a27b;
  font-weight: 700;
  margin: 0 0 18px;
}

.eyebrow.dark {
  color: #a77857;
}

.hero h1 {
  font-family: 'Cormorant Garamond',serif;
  font-size: 72px;
  line-height: .91;
  margin: 0 0 20px;
  font-weight: 600;
  letter-spacing: -1.7px;
}

.lead {
  font-size: 17px;
  font-weight: 500;
  margin: 0 0 32px;
  color: #f2ebe5;
  letter-spacing: .005em;
}

.hero-badges {
  display: flex;
  gap: 32px;
  margin-bottom: 32px;
}

.hero-badges>div {
  display: grid;
  grid-template-columns: 34px auto;
  grid-template-rows: auto auto;
  column-gap: 10px;
  align-items: center;
}

.hero-badges .icon {
  grid-row: 1/3;
  width: 25px;
  height: 25px;
  color: #efb27f;
}

.hero-badges>div:first-child .icon {
  fill: #efb27f;
  stroke: #efb27f;
}

.hero-badges strong {
  font-size: 11.5px;
  font-weight: 700;
}

.hero-badges small {
  font-size: 10px;
  color: #d9cec6;
}

.hero-actions {
  display: flex;
  gap: 22px;
  align-items: center;
}

.hero-actions .btn-primary {
  min-width: 228px;
  min-height: 48px;
}

.watch-btn {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #fff;
  background: none;
  border: 0;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  font-size: 11px;
  letter-spacing: .01em;
}

.play-icon {
  width: 48px;
  height: 48px;
  stroke-width: 1.35;
}

.hero-script {
  font-family: 'Sacramento',cursive;
  font-size: 47px;
  font-weight: 400;
  line-height: .84;
  position: absolute;
  right: 8.6%;
  bottom: 144px;
  transform: rotate(-7deg);
  color: #fff;
  text-align: center;
  text-shadow: 0 5px 18px rgba(0,0,0,.32);
}

.quick-actions-wrap {
  position: relative;
  z-index: 10;
  margin-top: -78px;
  padding-bottom: 6px;
}

.quick-actions.container {
  width: min(1390px,calc(100% - 132px));
}

.quick-actions {
  position: relative;
  background: linear-gradient(105deg,#382920 0%,#2b201a 45%,#201815 100%);
  border: 1px solid rgba(255,255,255,.065);
  border-radius: 20px;
  color: #fff;
  display: grid;
  grid-template-columns: repeat(4,1fr) 1.3fr;
  box-shadow: 0 24px 64px rgba(39,25,17,.28),0 4px 16px rgba(39,25,17,.14);
  overflow: hidden;
}

.quick-actions:after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(180deg,rgba(255,255,255,.025),transparent 38%);
}

.quick {
  min-height: 126px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-right: 1px solid rgba(255,255,255,.085);
  transition: background .2s,transform .2s;
  position: relative;
  z-index: 1;
}

.quick-wifi {
  display: none;
  appearance: none;
  font: inherit;
  color: inherit;
  background: none;
  cursor: pointer;
}

.quick:hover {
  background: rgba(255,255,255,.035);
  transform: translateY(-1px);
}

.quick-icon {
  width: 43px;
  height: 43px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
  color: #35261e;
  margin-bottom: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,.14);
}

.quick-icon .icon {
  width: 21px;
  height: 21px;
  stroke-width: 1.8;
}

.quick strong {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
}

.quick small {
  font-size: 10px;
  color: #cfc5bd;
  margin-top: 2px;
  letter-spacing: .01em;
}

.quick-note {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 34px;
  color: #d5a079;
  letter-spacing: .12em;
  font-family: 'Cormorant Garamond',serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.28;
  text-align: left;
  text-transform: uppercase;
  text-shadow: 0 1px 0 rgba(0,0,0,.08);
}

.section {
  padding: 42px 0 8px;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 18px;
}

.section-head.compact {
  margin-bottom: 14px;
}

.section-kicker {
  display: inline-block;
  margin: 0 8px 0 0;
  color: #bb805e;
  font-size: 20px;
  line-height: 1;
  float: left;
  position: relative;
  top: 2px;
}

.section-head h2,.review-block h2,.location-block h2,.about h2 {
  font-size: 24px;
  margin: 0;
  font-weight: 700;
  line-height: 1.08;
}

.section-head p,.muted {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  background: #efe5dc;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 600;
  white-space: nowrap;
  transition: .2s;
}

.pill:hover {
  background: #e7d8cb;
  transform: translateY(-1px);
}

.service-grid {
  width: 100%;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(4,minmax(0,1fr));
  gap: 18px;
}

.service-card {
  background: #fff;
  border: 1px solid #eee5dd;
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 8px 22px rgba(51,42,34,.045);
  position: relative;
  transition: .25s;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(51,42,34,.08);
}

.service-card img {
  height: 132px;
  object-fit: cover;
  filter: saturate(.9) contrast(.96);
}

.service-card .service-image-consultoria {
  object-position: center 25%;
}

.service-icon {
  position: absolute;
  left: 50%;
  top: 111px;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
  color: #8d654c;
  box-shadow: 0 6px 15px rgba(0,0,0,.09);
}

.service-icon .icon {
  width: 19px;
  height: 19px;
}

.service-body {
  padding: 25px 15px 16px;
}

.service-body h3 {
  font-size: 14px;
  margin: 0 0 7px;
}

.service-body p {
  font-size: 12px;
  color: var(--muted);
  min-height: 54px;
  margin: 0;
  line-height: 1.5;
}

.service-body a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 10px;
  font-size: 11px;
  color: #98694d;
  font-weight: 700;
  min-height: 28px;
}

.results-shell {
  position: relative;
  padding-inline: 38px;
}

.results-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 24px)/3);
  gap: 12px;
  overflow: auto;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
  padding: 0;
  scroll-padding: 0;
}

.results-track::-webkit-scrollbar {
  display: none;
}

.result-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  overflow: visible;
  scroll-snap-align: start;
  box-shadow: none;
  min-width: 0;
}

.result-pair figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  height: auto;
  background: #e9ddd4;
  border: 1px solid #eee5dd;
  aspect-ratio: 4/5;
}

.result-pair img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform .35s ease;
}

.result-pair:hover img {
  transform: scale(1.018);
}

.result-pair figcaption {
  position: absolute;
  left: 50%;
  bottom: 6px;
  transform: translateX(-50%);
  min-width: 50px;
  text-align: center;
  color: #fff;
  border-radius: 999px;
  padding: 3px 8px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  backdrop-filter: blur(5px);
  box-shadow: 0 3px 9px rgba(0,0,0,.12);
}

.before-label {
  background: rgba(42,32,25,.74);
}

.after-label {
  background: rgba(42,32,25,.74);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: #f1e8df;
  color: #825f47;
  font-size: 21px;
  z-index: 3;
  cursor: pointer;
  box-shadow: 0 5px 14px rgba(0,0,0,.07);
  display: grid;
  place-items: center;
}

.carousel-btn.prev {
  left: 0;
}

.carousel-btn.next {
  right: 0;
}

.center {
  text-align: center;
  margin-top: 12px;
}

.about {
  width: min(1050px,calc(100% - 48px));
  margin: 34px auto 0;
  display: grid;
  grid-template-columns: 1.5fr 1fr .68fr;
  align-items: stretch;
  background: linear-gradient(90deg,#f4e9df 0%,#fbf7f3 100%);
  border: 1px solid #eee3da;
  border-radius: 18px;
  overflow: hidden;
  min-height: 255px;
}

.about-image {
  padding: 18px 0 18px 18px;
}

.about-image-trigger {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 219px;
  padding: 0;
  border: 0;
  border-radius: 14px;
  overflow: hidden;
  background: #dccbbd;
  cursor: zoom-in;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.35);
}

.about-image-trigger img {
  width: 100%;
  height: 100%;
  min-height: 219px;
  object-fit: cover;
  object-position: center;
  transition: transform .45s ease,filter .45s ease;
  filter: saturate(.98) contrast(1.01) brightness(.98);
}

.about-image-trigger:hover img {
  transform: scale(1.025);
}

.about-expand {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(74,45,34,.82);
  color: #fff;
  font-size: 21px;
  box-shadow: 0 8px 22px rgba(0,0,0,.16);
  backdrop-filter: blur(7px);
}

.about-image-hint {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(36,28,23,.72);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .02em;
  backdrop-filter: blur(7px);
  opacity: 1;
  transform: none;
  transition: .25s;
}

.about-image-trigger:hover .about-image-hint {
  opacity: 1;
  transform: translateY(0);
}

.about-copy {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid #eadfd5;
}

.about-copy h2 {
  font-family: 'Cormorant Garamond',serif;
  font-size: 34px;
  font-weight: 600;
  letter-spacing: -.6px;
  margin: 0 0 12px;
  line-height: 1;
}

.about-copy p:not(.eyebrow) {
  font-size: 12px;
  line-height: 1.6;
  color: #5e554e;
  margin: 0 0 19px;
  max-width: 420px;
}

.about-copy strong {
  color: #3f322b;
}

.about-copy .btn {
  align-self: flex-start;
  padding: 11px 17px;
  font-size: 11px;
}

.about-points {
  margin: 18px 14px;
  background: rgba(255,255,255,.76);
  border: 1px solid rgba(255,255,255,.82);
  border-radius: 15px;
  padding: 16px 12px;
  display: grid;
  gap: 0;
  align-content: center;
}

.about-points>div {
  display: grid;
  grid-template-columns: 28px minmax(0,1fr);
  grid-template-rows: auto auto;
  column-gap: 8px;
  padding: 15px 0;
}

.about-points>div+div {
  border-top: 1px solid #eadfd5;
}

.about-points .icon {
  grid-row: 1/3;
  width: 23px;
  height: 23px;
  color: #8c6249;
  align-self: center;
}

.about-points strong {
  font-size: 12px;
  line-height: 1.15;
}

.about-points small {
  font-size: 11px;
  color: #75675e;
  line-height: 1.4;
  margin-top: 2px;
}

.testimonials-location {
  width: min(1050px,calc(100% - 48px));
  padding: 28px 0 32px;
  display: grid;
  grid-template-columns: 1.28fr 1fr;
  gap: 26px;
}

.review-block,.location-block {
  min-width: 0;
}

.review-block h2,.location-block h2 {
  font-size: 23px;
  line-height: 1.05;
  margin: 0;
  font-weight: 700;
}

.review-block>.muted,.location-block>.muted {
  font-size: 10px;
  margin: 4px 0 0;
}

.google-review-card {
  position: relative;
  margin: 10px 0 8px;
  padding: 14px 44px;
  border: 1px solid #eee3da;
  border-radius: 12px;
  background: #fffdfa;
  box-shadow: 0 8px 22px rgba(50,39,30,.04);
  display: grid;
  grid-template-columns: 52px minmax(0,1fr);
  align-items: start;
  gap: 13px;
  min-height: 170px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg,#d6a685,#a56f51);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .03em;
  box-shadow: 0 5px 14px rgba(112,76,54,.16);
}

.review-content {
  min-width: 0;
}

.stars {
  color: #eda14f;
  letter-spacing: 1.4px;
  font-size: 13px;
  line-height: 1;
  margin-bottom: 4px;
}

.review-comment {
  margin: 0 0 5px;
  color: #514942;
  font-size: 12px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 54px;
}

.google-review-card strong {
  display: block;
  font-size: 12px;
  line-height: 1.15;
  margin: 0;
}

.google-review-card small {
  display: block;
  font-size: 10px;
  color: var(--muted);
  line-height: 1.2;
}

.review-role {
  margin-top: 1px;
}

.review-date {
  display: none!important;
}

.review-position {
  display: none;
}

.review-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
  border: 1px solid #e8d9cd;
  border-radius: 50%;
  background: #fff;
  color: #7f5b44;
  font-size: 18px;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: .2s;
}

.review-prev {
  left: 8px;
}

.review-next {
  right: 8px;
}

.review-nav:hover {
  background: #f2e7de;
}

.review-carousel[data-live="false"] .review-nav {
  opacity: .28;
  pointer-events: none;
}

.review-dots {
  height: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  margin: 2px 0 8px;
  width: 100%;
  padding: 0;
}

.review-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #d9c8bb;
  transition: .2s;
}

.review-dot.active {
  width: 13px;
  border-radius: 6px;
  background: #a87657;
}

.review-cta {
  display: flex;
  justify-content: center;
  gap: 9px;
  flex-wrap: wrap;
}

.review-cta .pill {
  padding: 7px 12px;
  font-size: 11px;
  min-height: 40px;
  white-space: normal;
  justify-content: center;
}

.review-cta .review-write {
  background: #8b6349;
  border-color: #8b6349;
  color: #fff;
}

.location-card {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 12px;
  background: #fffdfa;
  border: 1px solid #eee3da;
  border-radius: 12px;
  padding: 9px;
  margin-top: 10px;
  min-height: 220px;
  box-shadow: 0 8px 22px rgba(50,39,30,.04);
}

.location-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4px 2px;
}

.location-info p {
  font-size: 10px;
  line-height: 1.35;
  margin: 0 0 10px;
}

.location-info strong {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  margin-bottom: 3px;
}

.location-info span {
  display: block;
  margin-left: 23px;
}

.location-phone {
  display: inline-block;
  margin: 5px 0 0 23px;
  color: var(--brown);
  font-weight: 700;
}

.location-phone:hover,
.location-phone:focus-visible {
  color: var(--ink);
}

.location-info .btn {
  align-self: flex-start;
  padding: 10px 12px;
  font-size: 12px;
  min-height: 44px;
}

.map-frame {
  width: 100%;
  height: 100%;
  min-height: 124px;
  border: 0;
  border-radius: 9px;
  display: block;
}

.floating-whatsapp {
  display: none;
}

.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(20,16,13,.75);
  backdrop-filter: blur(7px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal.open {
  display: flex;
}

.modal-card {
  position: relative;
  max-width: 760px;
  width: 100%;
  background: #fbf5ef;
  border-radius: 18px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  box-shadow: 0 30px 90px rgba(0,0,0,.35);
}

.modal-photo {
  min-height: 430px;
  background-image: url('https://images.unsplash.com/photo-1595476108010-b4d1f102b1b1?auto=format&fit=crop&w=1200&q=88');
  background-position: 58% center;
  background-size: cover;
}

.modal-card>div:last-child {
  padding: 45px;
}

.modal-card h2 {
  font-family: 'Playfair Display',serif;
  font-size: 38px;
  line-height: 1.05;
}

.modal-card p {
  color: #5f554e;
}

.modal-close {
  position: absolute;
  right: 13px;
  top: 12px;
  border: 0;
  background: #fff;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  font-size: 22px;
  cursor: pointer;
  z-index: 2;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .6s ease,transform .6s ease;
}

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

.site-header.scrolled {
  position: fixed;
  background: rgba(35,27,22,.93);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 30px rgba(0,0,0,.12);
}

.site-header.scrolled .nav-wrap {
  height: 62px;
}

#servicos,#resultados {
  width: min(1050px,calc(100% - 48px));
  margin-left: auto;
  margin-right: auto;
}

#servicos {
  padding-top: 34px;
}

#resultados {
  padding-top: 34px;
}

.panorama-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 120;
  background: rgba(18,13,10,.9);
  backdrop-filter: blur(8px);
  padding: 28px;
  align-items: center;
  justify-content: center;
}

.panorama-modal.open {
  display: flex;
}

.panorama-dialog {
  position: relative;
  width: min(1240px,96vw);
  background: #1e1713;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 34px 100px rgba(0,0,0,.45);
}

.panorama-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 4;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(24,18,14,.78);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(7px);
}

.panorama-stage {
  position: relative;
  height: min(68vh,640px);
  overflow: hidden;
  cursor: grab;
  touch-action: pan-y;
  background: #120e0b;
}

.panorama-stage:active {
  cursor: grabbing;
}

.panorama-stage img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: auto;
  max-width: none;
  user-select: none;
  pointer-events: none;
  will-change: transform;
}

.panorama-caption {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  padding: 12px 18px;
  color: #fff;
}

.panorama-caption strong {
  font-family: 'Cormorant Garamond',serif;
  font-size: 22px;
}

.panorama-caption span {
  font-size: 10px;
  color: #cbbeb5;
}

.google-review-card.review-carousel {
  position: relative;
}

.google-review-card .review-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 44px;
  border: 1px solid #e8d9cd;
  border-radius: 18px;
  background: #fff;
  color: #7f5b44;
  font-size: 18px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
  transition: background .2s,border-color .2s,transform .2s;
}

.google-review-card .review-prev {
  left: 5px;
  right: auto;
  bottom: auto;
}

.google-review-card .review-next {
  right: 5px;
  left: auto;
  bottom: auto;
}

.google-review-card .review-nav:hover {
  background: #f2e7de;
  border-color: #ddcbbd;
  transform: translateY(-50%);
}

.final-cta {
  position: relative;
  width: min(1050px,calc(100% - 48px));
  margin: 28px auto 0;
  border-radius: 18px;
  overflow: hidden;
  background: #d7b196;
  display: grid;
  grid-template-columns: 32% 43% 25%;
  align-items: center;
  aspect-ratio: 2804/561;
}

.cta-backdrop {
  position: absolute;
  inset: 0;
  background: url('assets/final-cta-studio-monica.webp') center/100% 100% no-repeat;
  pointer-events: none;
}

.cta-copy {
  position: relative;
  z-index: 1;
  grid-column: 2;
  padding: 16px 0;
  min-width: 0;
}

.cta-copy .eyebrow {
  font-size: 9px;
  letter-spacing: 2px;
  margin: 0 0 6px;
}

.cta-copy h2 {
  font-family: 'Cormorant Garamond',serif;
  font-size: 30px;
  line-height: 1.02;
  font-weight: 600;
  letter-spacing: -.4px;
  color: #31251f;
  margin: 0 0 8px;
}

.cta-copy p:not(.eyebrow) {
  font-size: 11px;
  line-height: 1.45;
  color: #514237;
  margin: 0 0 12px;
  max-width: 390px;
}

.cta-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.cta-actions .btn {
  min-height: 40px;
  padding: 10px 12px;
  font-size: 10.5px;
}

.cta-actions .btn-light {
  background: #fff;
  border-color: #eadfd5;
}

button {
  font-family: inherit;
}

a:focus-visible,button:focus-visible,[tabindex]:focus-visible {
  outline: 3px solid #a46c49;
  outline-offset: 4px;
}

[hidden] {
  display: none!important;
}

.services-mobile-cta {
  display: none;
}

.carousel-btn .icon,.review-nav .icon {
  width: 16px;
  height: 16px;
}

.carousel-btn.prev .icon,.review-prev .icon {
  transform: rotate(180deg);
}

.location-info p,.location-info strong {
  font-size: 12px;
  line-height: 1.5;
}

.review-block>.muted,.location-block>.muted,.section-head p:not(.section-kicker) {
  font-size: 12px;
  line-height: 1.5;
}

.footer {
  width: min(1050px,calc(100% - 48px));
  padding: 26px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.footer-brand {
  color: var(--ink);
}

.footer nav {
  display: flex;
  gap: 16px;
  margin-left: auto;
  font-size: 11px;
}

.footer-socials {
  display: flex;
  gap: 8px;
}

.footer-socials a {
  display: grid;
  place-items: center;
  width: 36px;
  height: 44px;
  color: var(--brown);
}

.footer-meta {
  display: flex;
  flex-basis: 100%;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
  font-size: 11px;
  color: var(--muted);
}

.developer-link {
  color: inherit;
  text-decoration: none;
  transition: color .2s;
}

.developer-link:hover,
.developer-link:focus-visible {
  color: var(--brown);
}

.panorama-stage:focus-visible {
  outline-offset: -4px;
}

@media(max-width:900px) {
  #servicos,#resultados,.about,.testimonials-location {
    width: min(100% - 40px,760px);
  }
  
  .nav-wrap.container,.hero-content.container {
    width: min(100% - 40px,760px);
  }
  
  .desktop-nav,.header-cta {
    display: none;
  }
  
  .menu-btn {
    display: flex;
  }
  
  .mobile-menu {
    position: absolute;
    right: 20px;
    top: 68px;
    width: 220px;
    background: rgba(36,28,23,.985);
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 13px;
    padding: 10px;
    box-shadow: var(--shadow);
  }
  
  .mobile-menu.open {
    display: grid;
  }
  
  .mobile-menu a {
    padding: 11px 12px;
    border-radius: 8px;
    font-size: 13px;
  }
  
  .hero {
    height: clamp(620px,88svh,680px);
  }
  
  .hero-photo {
    inset: 0;
    object-position: 68% 32%;
    filter: saturate(.9) contrast(1.02) brightness(.82);
  }
  
  .hero-shade {
    background: linear-gradient(0deg,rgba(28,19,13,.99) 0%,rgba(31,21,15,.92) 45%,rgba(29,19,13,.34) 72%,rgba(23,15,10,.08) 100%);
  }
  
  .hero-content {
    align-items: flex-end;
  }
  
  .hero-copy {
    width: 100%;
    padding: 0 0 100px;
    padding-bottom: 96px;
  }
  
  .hero h1 {
    font-size: 50px;
  }
  
  .hero-badges>div:nth-child(n+2) {
    display: none;
  }
  
  .hero-script {
    display: none;
  }
  
  .quick-actions-wrap {
    margin-top: -64px;
    padding-bottom: 0;
  }
  
  .quick-actions.container {
    width: min(760px,calc(100% - 40px));
  }
  
  .quick-actions {
    grid-template-columns: repeat(4,1fr);
    border-radius: 16px;
  }
  
  .quick-note {
    display: none;
  }
  
  .service-grid {
    width: 100%;
    grid-template-columns: repeat(2,1fr);
    gap: 12px;
  }
  
  .results-track {
    grid-auto-columns: calc((100% - 12px)/2);
  }
  
  .about {
    grid-template-columns: 1fr 1fr;
  }
  
  .about-image {
    padding: 14px 0 14px 14px;
  }
  
  .about-copy {
    padding: 30px 26px;
    border-right: 0;
  }
  
  .about-points {
    grid-column: 1/3;
    margin: 0 14px 14px;
    grid-template-columns: repeat(3,1fr);
    gap: 0;
  }
  
  .about-points>div {
    padding: 12px;
  }
  
  .about-points>div+div {
    border-top: 0;
    border-left: 1px solid #eadfd5;
  }
  
  .testimonials-location {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .floating-whatsapp {
    display: flex;
    position: fixed;
    z-index: 70;
    left: 50%;
    bottom: max(13px,env(safe-area-inset-bottom));
    transform: translateX(-50%);
    background: var(--green);
    color: #fff;
    border-radius: 999px;
    padding: 14px 24px;
    box-shadow: 0 14px 35px rgba(19,160,81,.38);
    align-items: center;
    gap: 10px;
    font-size: 13px;
    width: min(350px,calc(100% - 28px));
    justify-content: center;
  }
  
  #servicos,#resultados,.about,.testimonials-location,.final-cta {
    width: min(100% - 40px,760px);
  }
  
  .about-image-trigger,
    .about-image-trigger img {
    min-height: 210px;
  }
  
  .google-review-card {
    min-height: 170px;
  }
  
  .final-cta {
    display: block;
    aspect-ratio: auto;
    background: #fff7f0;
  }
  
  .cta-backdrop {
    height: 150px;
    background-size: cover;
    background-position: center;
  }
  
  .cta-copy {
    padding: 170px 26px 26px;
    max-width: 560px;
    margin: auto;
  }
  
  .cta-copy h2 {
    font-size: 32px;
  }
  
  .cta-copy p:not(.eyebrow) {
    font-size: 13px;
    max-width: none;
  }
  
  .cta-actions .btn {
    min-height: 44px;
    font-size: 12px;
  }
  
  .footer {
    width: min(760px,calc(100% - 40px));
    padding-bottom: 96px;
  }
  
  .footer nav {
    display: none;
  }
  
  .footer-socials {
    margin-left: auto;
  }
}

@media(max-width:560px) {
  #servicos,#resultados,.about,.testimonials-location {
    width: min(100% - 28px,480px);
  }
  
  .nav-wrap.container,.hero-content.container {
    width: min(100% - 28px,480px);
  }
  
  .container {
    width: min(100% - 28px,480px);
  }
  
  .nav-wrap {
    height: 68px;
  }
  
  .brand-monogram {
    font-size: 31px;
  }
  
  .brand-copy strong {
    font-size: 15px;
  }
  
  .hero {
    height: clamp(650px,92svh,720px);
    border-radius: 0 0 22px 22px;
  }
  
  .hero-photo {
    object-fit: cover;
    object-position: 66% top;
    filter: none;
    height: 68%;
    bottom: auto;
    transform: none;
  }
  
  .hero-shade {
    background: linear-gradient(0deg,#251a12 0%,rgba(37,26,18,.99) 42%,rgba(31,21,15,.46) 72%,rgba(22,15,10,.08) 100%);
  }
  
  .hero-copy {
    padding-bottom: 125px;
  }
  
  .eyebrow {
    font-size: 9px;
    letter-spacing: 2.1px;
  }
  
  .hero h1 {
    font-size: clamp(36px,10.4vw,42px);
    line-height: 1;
  }
  
  .lead {
    font-size: 14px;
    max-width: 290px;
    margin-bottom: 17px;
  }
  
  .hero-badges {
    margin-bottom: 17px;
  }
  
  .hero-badges .icon {
    width: 21px;
    height: 21px;
  }
  
  .hero-actions .watch-btn {
    display: none;
  }
  
  .hero-actions .btn {
    width: 100%;
    max-width: none;
  }
  
  .quick-actions-wrap {
    margin-top: -105px;
    padding-bottom: 14px;
  }
  
  .quick-actions.container {
    width: calc(100% - 28px);
  }
  
  .quick-actions {
    grid-template-columns: repeat(5,1fr);
    min-height: 90px;
    border-radius: 0;
    background: none;
    border: 0;
    box-shadow: none;
  }
  
  .quick {
    min-height: 90px;
    padding-inline: 4px;
    border: 0;
  }
  
  .quick-icon {
    width: 30px;
    height: 30px;
    margin-bottom: 5px;
    background: none;
    box-shadow: none;
    color: #e7b48b;
  }
  
  .quick-icon .icon {
    width: 24px;
    height: 24px;
  }
  
  .quick strong {
    font-size: 11px;
    font-weight: 500;
    text-align: center;
    line-height: 1.15;
    width: 100%;
  }

  .quick-review strong {
    max-width: 60px;
  }

  .quick-wifi {
    display: flex;
    background: transparent;
  }

  .quick-wifi:hover {
    background: transparent;
    transform: none;
  }

  .quick-wifi.is-copied .quick-icon {
    color: #fff;
  }

  .quick-wifi.is-copied strong {
    color: #e7b48b;
  }
  
  .quick small {
    font-size: 7.5px;
    display: none;
  }
  
  .section {
    padding-top: 38px;
  }
  
  .section-head {
    align-items: flex-start;
    margin-bottom: 14px;
  }
  
  .section-head .pill {
    display: none;
  }
  
  .section-head h2,.review-block h2,.location-block h2,.about h2 {
    font-size: 22px;
  }
  
  .service-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  
  .service-card {
    display: grid;
    grid-template-columns: 82px minmax(0,1fr);
    text-align: left;
    min-height: 106px;
    border-radius: 13px;
  }
  
  .service-card img {
    height: 100%;
    width: 82px;
    object-fit: cover;
  }
  
  .service-icon {
    display: none;
  }
  
  .service-body {
    padding: 14px 30px 14px 12px;
  }
  
  .service-body h3 {
    font-size: 13px;
    margin-bottom: 5px;
    line-height: 1.35;
  }
  
  .service-body p {
    font-size: 12px;
    min-height: 0;
    line-height: 1.45;
  }
  
  .service-body a {
    display: flex;
    position: absolute;
    inset: 0;
    margin: 0;
    justify-content: flex-end;
    padding-right: 9px;
  }
  
  .results-track {
    padding-inline: 20px;
    grid-auto-columns: 100%;
    gap: 12px;
    padding: 0;
  }
  
  .result-pair figure {
    height: auto;
    aspect-ratio: 3/4;
  }
  
  .about {
    grid-template-columns: minmax(0,1fr);
  }
  
  .about-image {
    display: block;
    padding: 12px 12px 0;
  }
  
  .about-image-trigger,.about-image-trigger img {
    min-height: 0;
    aspect-ratio: 1.65;
  }
  
  .about-copy {
    padding: 24px 18px 20px;
    border-right: 0;
  }
  
  .about-copy h2 {
    font-size: 28px;
  }
  
  .about-points {
    grid-column: auto;
    margin: 0 12px 12px;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 12px 18px;
  }
  
  .about-points>div {
    padding: 13px 0;
  }
  
  .about-points>div+div {
    border-left: 0;
    border-top: 1px solid #eadfd5;
  }
  
  .about-points>div:last-child {
    grid-column: auto;
  }
  
  .about-expand {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }
  
  .about-image-hint {
    opacity: 1;
    transform: none;
  }
  
  .panorama-modal {
    padding: 12px;
  }
  
  .panorama-stage {
    height: 58vh;
  }
  
  .panorama-caption {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }
  
  .testimonials-location {
    padding-top: 24px;
    gap: 24px;
  }
  
  .google-review-card {
    padding: 18px 36px;
    grid-template-columns: 36px minmax(0,1fr);
    gap: 10px;
    min-height: 240px;
    align-items: start;
  }
  
  .review-avatar {
    width: 36px;
    height: 36px;
    font-size: 11px;
  }
  
  .review-comment {
    font-size: 13px;
    -webkit-line-clamp: unset;
    line-height: 1.5;
    display: block;
    overflow: visible;
    min-height: 0;
    margin-bottom: 10px;
  }
  
  .location-card {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 8px;
  }
  
  .map-frame {
    min-height: 180px;
    height: 180px;
  }
  
  .location-info {
    padding: 8px;
  }
  
  .modal-card {
    grid-template-columns: 1fr;
  }
  
  .modal-photo {
    min-height: 220px;
  }
  
  .modal-card>div:last-child {
    padding: 28px;
  }
  
  .modal-card h2 {
    font-size: 30px;
  }
  
  .google-review-card .review-nav {
    width: 28px;
    height: 44px;
    top: 50%;
    font-size: 18px;
  }
  
  .google-review-card .review-prev {
    left: 3px;
  }
  
  .google-review-card .review-next {
    right: 3px;
  }
  
  .review-dots {
    margin: 3px 0 8px;
  }
  
  .nav-wrap.container,
    .hero-content.container,
    #servicos,#resultados,.about,.testimonials-location,.final-cta {
    width: min(100% - 28px,480px);
  }
  
  .about-image-trigger,
    .about-image-trigger img {
    min-height: 205px;
  }
  
  .about-copy p:not(.eyebrow) {
    font-size: 13px;
  }
  
  .final-cta {
    margin-top: 24px;
    border-radius: 18px;
  }
  
  .cta-backdrop {
    height: 215px;
    background-size: auto 215px;
    background-position: 12% top;
  }
  
  .cta-backdrop:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg,#fff7f0,transparent 45%);
  }
  
  .cta-copy {
    padding: 200px 20px 24px;
  }
  
  .cta-copy h2 {
    font-size: 30px;
    line-height: 1.08;
  }
  
  .cta-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }
  
  .cta-actions .btn {
    width: 100%;
  }
  
  .quick-actions:after {
    display: none;
  }
  
  .service-body a span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip-path: inset(50%);
  }
  
  .services-mobile-cta {
    display: flex;
    justify-content: center;
    margin-top: 14px;
  }
  
  .services-mobile-cta .pill {
    width: 100%;
    justify-content: center;
    min-height: 44px;
    font-size: 12px;
    border: 1px solid #c9ad97;
    background: transparent;
    border-radius: 10px;
  }
  
  .results-shell {
    padding-inline: 30px;
  }
  
  .carousel-btn {
    width: 28px;
    height: 44px;
  }
  
  .about-copy .btn {
    font-size: 12px;
    min-height: 44px;
  }
  
  .about-points strong,.about-points small {
    font-size: 12px;
  }
  
  .google-review-card strong {
    font-size: 12px;
    line-height: 1.4;
  }
  
  .google-review-card small {
    font-size: 11px;
    line-height: 1.4;
  }
  
  .location-info p,.location-info strong {
    font-size: 13px;
  }
  
  .footer {
    width: calc(100% - 28px);
    justify-content: center;
    text-align: center;
    gap: 14px;
    padding-top: 24px;
  }
  
  .footer-socials {
    margin: 0;
    flex-basis: 100%;
    justify-content: center;
  }
  
  .footer-meta {
    display: grid;
    justify-content: center;
    gap: 6px;
    font-size: 11px;
  }
}

@media(max-width:380px) {
  .nav-wrap.container,
    .hero-content.container,
    #servicos,#resultados,.about,.testimonials-location,.final-cta {
    width: calc(100% - 22px);
  }
  
  .brand-monogram {
    font-size: 29px;
  }
  
  .brand-copy small {
    font-size: 7px;
    letter-spacing: 2.8px;
  }
  
  .brand-copy strong {
    font-size: 14px;
  }
  
  .hero {
    height: clamp(650px,94svh,690px);
  }
  
  .hero h1 {
    font-size: 34px;
  }
  
  .lead {
    font-size: 14px;
  }
  
  .hero-actions .btn {
    max-width: none;
  }
  
  .quick-actions.container {
    width: calc(100% - 22px);
  }
  
  .quick strong {
    font-size: 11px;
  }
  
  .quick small {
    font-size: 7px;
  }
  
  .google-review-card {
    grid-template-columns: 30px minmax(0,1fr);
    padding: 16px 34px;
    gap: 8px;
    min-height: 250px;
  }
  
  .review-avatar {
    width: 30px;
    height: 30px;
    font-size: 10px;
  }
  
  .review-comment {
    font-size: 13px;
  }
  
  .cta-copy {
    padding-inline: 16px;
  }
  
  .cta-copy h2 {
    font-size: 28px;
  }
  
  .footer {
    width: calc(100% - 22px);
  }
}

@media(prefers-reduced-motion:reduce) {
  html {
    scroll-behavior: auto;
  }
  
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  
  .btn,.service-card,.pill {
    transition: none;
  }
}
