:root {
  --wine: #b87068;
  --wine-dark: #654b48;
  --rose: #b87068;
  --rose-soft: #ead2cf;
  --nude: #f5ece9;
  --cream: #fffaf8;
  --ink: #4f4241;
  --muted: #827675;
  --white: #ffffff;
  --line: rgba(153, 153, 153, .22);
  --shadow: 0 24px 65px rgba(104, 72, 68, .14);
  --radius-lg: 34px;
  --radius-md: 24px;
  --radius-sm: 17px;
  --max-width: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  color: var(--ink);
  background: #eee8e6;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.modal-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button { color: inherit; }
img { display: block; max-width: 100%; }

.page-shell {
  width: min(100%, 1480px);
  margin: 0 auto;
  background: var(--cream);
  box-shadow: 0 0 90px rgba(92, 68, 65, .16);
  overflow: hidden;
}

.hero {
  min-height: min(900px, 100svh);
  position: relative;
  display: grid;
  align-items: center;
  isolation: isolate;
  color: var(--white);
}
.hero-bg, .hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-bg { object-fit: cover; z-index: -3; }
.hero-overlay {
  z-index: -2;
  background:
    radial-gradient(circle at 78% 42%, rgba(184, 112, 104, .2), transparent 36%),
    linear-gradient(90deg, rgba(76, 59, 57, .91) 0%, rgba(126, 82, 77, .72) 45%, rgba(184, 112, 104, .34) 100%),
    linear-gradient(180deg, rgba(49, 39, 38, .18), rgba(55, 42, 40, .42));
}

.topbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  width: min(calc(100% - 40px), var(--max-width));
  margin: 0 auto;
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,.17);
}
.brand-mini { display: flex; align-items: center; }
.brand-logo-shell, .footer-logo-shell {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(255,255,255,.66);
  box-shadow: 0 10px 28px rgba(72, 52, 49, .13);
}
.brand-logo-shell { min-height: 58px; padding: 7px 14px; border-radius: 17px; }
.brand-logo { width: 142px; height: auto; }
.footer-logo-shell { padding: 12px 18px; border-radius: 19px; }
.footer-logo { width: 180px; height: auto; }
.main-menu { display: flex; gap: 30px; font-size: 14px; font-weight: 600; }
.main-menu a { opacity: .84; transition: .25s ease; }
.main-menu a:hover { opacity: 1; transform: translateY(-2px); }
.menu-toggle { display: none; border: 0; background: transparent; width: 44px; height: 44px; padding: 8px; }
.menu-toggle span { display: block; height: 2px; margin: 6px 0; background: white; border-radius: 99px; }

.hero-content {
  width: min(calc(100% - 40px), var(--max-width));
  margin: 0 auto;
  padding: 150px 0 110px;
  max-width: 760px;
  justify-self: start;
}
.profile-wrap {
  width: 122px;
  height: 122px;
  padding: 5px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.65);
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(12px);
  margin-bottom: 18px;
}
.profile-image { width: 100%; height: 100%; object-fit: cover; border-radius: inherit; }
.eyebrow, .section-kicker {
  letter-spacing: .17em;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 11px;
}
.sr-only { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0,0,0,0) !important; white-space: nowrap !important; border: 0 !important; }
.hero-logo-panel {
  width: fit-content;
  max-width: 100%;
  margin: 0 0 18px;
  padding: 15px 22px;
  border-radius: 24px;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(255,255,255,.72);
  box-shadow: 0 22px 54px rgba(58, 42, 40, .2);
  backdrop-filter: blur(16px);
}
.hero-logo { width: clamp(250px, 30vw, 390px); height: auto; }
.hero-copy { max-width: 520px; margin: 0 0 34px; font-size: clamp(18px, 2.2vw, 24px); color: rgba(255,255,255,.86); }
.hero-actions, .location-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.btn {
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
}
.btn:hover { transform: translateY(-3px); }
 .btn-primary { background: var(--wine); color: white; box-shadow: 0 16px 34px rgba(111, 74, 70, .27); }
.btn-primary:hover { background: #a25f58; box-shadow: 0 20px 42px rgba(111, 74, 70, .34); }
.btn-secondary { border-color: rgba(255,255,255,.45); color: white; background: rgba(255,255,255,.1); backdrop-filter: blur(12px); }
.btn-secondary:hover { background: rgba(255,255,255,.18); }
.btn-light { background: white; color: var(--wine); }
.btn-outline { border-color: var(--wine); color: var(--wine); background: transparent; }
.btn-full { width: 100%; }
.btn-icon { font-size: 19px; }
.scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 28px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.38);
  border-radius: 50%;
  animation: bounce 2s infinite;
}
@keyframes bounce { 0%,100% { transform: translate(-50%,0); } 50% { transform: translate(-50%,8px); } }

.section-pad { padding: 100px max(24px, calc((100% - var(--max-width))/2)); }
.section-pad-sm { margin: 0 max(24px, calc((100% - var(--max-width))/2)); }
.section-heading { max-width: 660px; margin-bottom: 42px; }
.section-heading.compact { margin-bottom: 28px; }
.section-kicker { color: var(--rose); }
.section-heading h2, .promo-banner h2, .location h2, .modal-card h2 {
  margin: 7px 0 12px;
  font-family: "Playfair Display", serif;
  font-size: clamp(35px, 4vw, 56px);
  line-height: 1.07;
  letter-spacing: -.025em;
}
.section-heading p, .promo-banner p, .modal-card > p { color: var(--muted); font-size: 17px; }

.quick-links { background: var(--cream); }
.quick-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}
.quick-card {
  min-height: 116px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: 0 10px 30px rgba(67, 29, 36, .06);
  transition: .25s ease;
}
.quick-card:hover { transform: translateY(-5px); border-color: rgba(125,38,56,.24); box-shadow: var(--shadow); }
.quick-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--nude);
  color: var(--wine);
  font-size: 20px;
}
.quick-card span:last-child { display: grid; }
.quick-card small { color: var(--muted); margin-top: 3px; }

.promo-banner {
  padding: 52px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  background:
    radial-gradient(circle at 92% 10%, rgba(255,255,255,.17), transparent 22%),
    linear-gradient(135deg, var(--wine-dark), var(--wine), #c6908a);
  color: white;
  box-shadow: var(--shadow);
}
.promo-banner > div { max-width: 760px; }
.promo-label { display: inline-flex; padding: 6px 12px; border: 1px solid rgba(255,255,255,.28); border-radius: 999px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; }
.promo-banner h2 { font-size: clamp(30px, 3.2vw, 48px); }
.promo-banner p { color: rgba(255,255,255,.72); margin-bottom: 0; }

.services { background: linear-gradient(180deg, var(--cream), #f7efed); }
.service-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; }
.service-card {
  position: relative;
  min-height: 290px;
  padding: 32px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.82);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: .3s ease;
}
.service-card::after {
  content: "";
  position: absolute;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  right: -55px;
  bottom: -55px;
  background: var(--rose-soft);
  opacity: .42;
  transition: .3s ease;
}
.service-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); background: white; }
.service-card:hover::after { transform: scale(1.25); }
.service-number { position: absolute; top: 24px; right: 26px; color: #c59b96; font-family: "Playfair Display", serif; font-size: 15px; }
.service-symbol { width: 64px; height: 64px; display: grid; place-items: center; border-radius: 18px; background: var(--nude); color: var(--wine); font-size: 27px; }
.service-card h3 { margin: 28px 0 8px; font-family: "Playfair Display", serif; font-size: 25px; }
.service-card p { margin: 0; color: var(--muted); }

.gallery { background: white; }
.gallery-viewport { position: relative; }
.gallery-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(270px, 31%);
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 4px 1px 22px;
}
.gallery-track::-webkit-scrollbar { display: none; }
.gallery-item {
  padding: 0;
  border: 0;
  background: none;
  border-radius: var(--radius-md);
  overflow: hidden;
  scroll-snap-align: start;
  cursor: zoom-in;
}
.gallery-item img { width: 100%; aspect-ratio: 4/5; object-fit: cover; transition: transform .45s ease; }
.gallery-item:hover img { transform: scale(1.045); }
.gallery-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: white;
  box-shadow: 0 12px 34px rgba(62, 23, 32, .18);
  cursor: pointer;
  transform: translateY(-50%);
}
.gallery-prev { left: -22px; }
.gallery-next { right: -22px; }
.center { text-align: center; }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--wine); font-weight: 700; border-bottom: 1px solid rgba(125,38,56,.28); padding-bottom: 5px; }

.testimonials { background: var(--nude); }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; }
.testimonial-card { padding: 30px; background: white; border: 1px solid var(--line); border-radius: var(--radius-md); }
.stars { color: #c49345; letter-spacing: .08em; }
.testimonial-card > p { min-height: 105px; font-family: "Playfair Display", serif; font-size: 20px; line-height: 1.55; }
.client { display: flex; gap: 12px; align-items: center; padding-top: 18px; border-top: 1px solid var(--line); }
.client > span { width: 42px; height: 42px; display: grid; place-items: center; background: var(--rose-soft); color: var(--wine); border-radius: 50%; font-weight: 700; }
.client div { display: grid; }
.client small { color: var(--muted); }

.location { background: white; }
.location-card { display: grid; grid-template-columns: 1.05fr .95fr; border-radius: var(--radius-lg); overflow: hidden; background: var(--cream); border: 1px solid var(--line); box-shadow: var(--shadow); }
.location-copy { padding: clamp(34px, 5vw, 68px); }
.address { color: var(--muted); }
.info-list { display: grid; gap: 14px; margin: 34px 0; }
.info-list > div { display: flex; gap: 14px; align-items: flex-start; }
.info-list span { width: 40px; height: 40px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 13px; background: var(--nude); color: var(--wine); }
.info-list p { margin: 0; }
.map-placeholder {
  position: relative;
  min-height: 540px;
  display: grid;
  place-items: center;
  align-content: center;
  background: #e6ddda;
  overflow: hidden;
}
.map-lines, .map-lines::before, .map-lines::after {
  position: absolute;
  inset: -10%;
  content: "";
  background:
    linear-gradient(25deg, transparent 44%, rgba(255,255,255,.6) 45%, rgba(255,255,255,.6) 47%, transparent 48%),
    linear-gradient(120deg, transparent 35%, rgba(255,255,255,.5) 36%, rgba(255,255,255,.5) 38%, transparent 39%),
    linear-gradient(165deg, transparent 60%, rgba(184,112,104,.24) 61%, rgba(184,112,104,.24) 63%, transparent 64%);
  background-size: 220px 180px, 260px 240px, 310px 260px;
  transform: rotate(-4deg);
}
.map-pin { position: relative; z-index: 2; width: 84px; height: 84px; display: grid; place-items: center; border-radius: 50%; background: var(--wine); color: white; font-size: 34px; box-shadow: 0 18px 45px rgba(79,21,34,.3); }
.map-placeholder strong, .map-placeholder small { position: relative; z-index: 2; margin-top: 13px; }
.map-placeholder small { margin-top: 2px; color: #736764; }

.footer {
  padding: 54px max(24px, calc((100% - var(--max-width))/2));
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  gap: 28px;
  align-items: center;
  background: #62504e;
  color: white;
}
.footer-brand { display: flex; align-items: center; }
.footer-brand small, .footer > small, .footer p { color: rgba(255,255,255,.62); }
.footer p { margin: 0; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 18px; font-size: 14px; }
.footer > small { grid-column: 1 / -1; border-top: 1px solid rgba(255,255,255,.11); padding-top: 24px; }

.floating-menu { position: fixed; right: max(18px, calc((100vw - 1480px)/2 + 22px)); bottom: 22px; z-index: 50; }
.floating-trigger { position: relative; z-index: 2; width: 58px; height: 58px; border: 0; border-radius: 50%; background: var(--wine); color: white; font-size: 28px; box-shadow: 0 17px 42px rgba(111,74,70,.32); cursor: pointer; transition: .25s ease; }
.floating-menu.open .floating-trigger { transform: rotate(45deg); }
.floating-actions { position: absolute; left: 50%; bottom: 68px; display: grid; gap: 9px; transform: translateX(-50%) translateY(12px); opacity: 0; pointer-events: none; transition: .25s ease; }
.floating-menu.open .floating-actions { transform: translateX(-50%) translateY(0); opacity: 1; pointer-events: auto; }
.floating-actions a { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 50%; background: white; color: var(--wine); box-shadow: 0 10px 26px rgba(111,74,70,.19); font-weight: 700; }

.modal, .lightbox { position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; padding: 20px; opacity: 0; visibility: hidden; transition: .25s ease; }
.modal.is-open, .lightbox.is-open { opacity: 1; visibility: visible; }
.modal-backdrop, .lightbox::before { position: absolute; inset: 0; content: ""; background: rgba(30, 10, 15, .72); backdrop-filter: blur(7px); }
.modal-card { position: relative; z-index: 2; width: min(100%, 560px); padding: 38px; border-radius: 28px; background: white; box-shadow: var(--shadow); transform: translateY(18px); transition: .25s ease; }
.modal.is-open .modal-card { transform: translateY(0); }
.modal-close, .lightbox-close { position: absolute; top: 16px; right: 16px; z-index: 3; width: 42px; height: 42px; border: 0; border-radius: 50%; background: var(--nude); color: var(--wine); font-size: 25px; cursor: pointer; }
.modal form { display: grid; gap: 15px; margin-top: 24px; }
.modal label { display: grid; gap: 7px; color: var(--ink); font-weight: 600; font-size: 13px; }
.modal input, .modal select { width: 100%; min-height: 50px; border: 1px solid var(--line); border-radius: 13px; background: #fffaf8; padding: 0 14px; outline: none; }
.modal input:focus, .modal select:focus { border-color: var(--rose); box-shadow: 0 0 0 4px rgba(183,100,119,.1); }
.lightbox img { position: relative; z-index: 2; max-width: min(900px, 92vw); max-height: 86vh; border-radius: 20px; box-shadow: var(--shadow); }
.lightbox-close { background: white; top: 22px; right: 22px; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s ease, transform .75s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
  .quick-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .quick-card:last-child { grid-column: 1 / -1; }
  .service-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .gallery-track { grid-auto-columns: minmax(260px, 45%); }
  .testimonial-grid { grid-template-columns: 1fr; }
  .testimonial-card > p { min-height: auto; }
  .location-card { grid-template-columns: 1fr; }
  .map-placeholder { min-height: 390px; }
  .footer { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .footer-links { justify-content: center; }
  .footer-brand { text-align: left; }
}

@media (max-width: 760px) {
  .page-shell { width: 100%; }
  .hero { min-height: 920px; text-align: center; }
  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(82,63,60,.46) 0%, rgba(112,78,74,.76) 45%, rgba(79,59,57,.94) 100%);
  }
  .topbar { width: calc(100% - 30px); min-height: 72px; }
  .brand-logo-shell { min-height: 50px; padding: 6px 10px; border-radius: 14px; }
  .brand-logo { width: 108px; }
  .menu-toggle { display: block; }
  .main-menu {
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 10px;
    border-radius: 18px;
    background: rgba(92,69,66,.96);
    backdrop-filter: blur(18px);
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: .22s ease;
  }
  .main-menu.open { opacity: 1; transform: none; pointer-events: auto; }
  .main-menu a { padding: 12px 14px; border-radius: 12px; text-align: left; }
  .main-menu a:hover { background: rgba(255,255,255,.08); transform: none; }
  .hero-content { width: calc(100% - 36px); padding: 128px 0 110px; justify-self: center; display: flex; flex-direction: column; align-items: center; }
  .profile-wrap { width: 132px; height: 132px; }
  .hero-logo-panel { padding: 12px 17px; border-radius: 21px; }
  .hero-logo { width: min(72vw, 292px); }
  .hero-copy { max-width: 340px; font-size: 18px; }
  .hero-actions { width: 100%; display: grid; }
  .hero-actions .btn { width: 100%; }
  .section-pad { padding: 74px 20px; }
  .section-pad-sm { margin: 0 20px; }
  .section-heading { margin-bottom: 30px; }
  .quick-grid { grid-template-columns: 1fr; }
  .quick-card:last-child { grid-column: auto; }
  .quick-card { min-height: 92px; }
  .promo-banner { padding: 34px 26px; flex-direction: column; align-items: flex-start; }
  .promo-banner .btn { width: 100%; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 245px; }
  .gallery-track { grid-auto-columns: 82%; gap: 12px; }
  .gallery-arrow { display: none; }
  .location-copy { padding: 34px 24px; }
  .location-actions { display: grid; }
  .location-actions .btn { width: 100%; }
  .footer { padding: 46px 24px 90px; }
  .floating-menu { right: 18px; bottom: 18px; }
  .modal-card { padding: 32px 22px 24px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Ajuste v3: foto oficial da Mari na primeira dobra */
.hero-person {
  position: absolute;
  right: clamp(-100px, -5vw, -28px);
  bottom: 0;
  z-index: -1;
  width: clamp(520px, 52vw, 790px);
  max-height: 93%;
  object-fit: contain;
  object-position: right bottom;
  filter: drop-shadow(-22px 20px 32px rgba(52, 36, 34, .24));
  pointer-events: none;
  user-select: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 610px;
}

@media (max-width: 760px) {
  .hero {
    min-height: 850px;
  }

  .hero-person {
    width: min(125vw, 610px);
    max-width: none;
    max-height: 66%;
    right: 50%;
    bottom: -2px;
    transform: translateX(50%);
    object-position: center bottom;
    opacity: .96;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(82,63,60,.9) 0%, rgba(112,78,74,.76) 41%, rgba(79,59,57,.38) 66%, rgba(79,59,57,.82) 100%);
  }

  .hero-content {
    padding: 118px 0 445px;
  }
}

/* ==========================================================
   AJUSTE V4 — primeira dobra equilibrada, sem logo duplicada
========================================================== */
.hero {
  height: clamp(690px, 88svh, 800px);
  min-height: 690px;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 27%, rgba(255,255,255,.14) 0 10%, transparent 10.3%),
    radial-gradient(circle at 78% 27%, transparent 0 18%, rgba(255,255,255,.08) 18.2% 27%, transparent 27.3%),
    linear-gradient(118deg, #604a47 0%, #805b56 49%, #b87068 100%);
}
.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 540px;
  height: 540px;
  right: 4%;
  top: 12%;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 50%;
  box-shadow: 0 0 0 92px rgba(255,255,255,.035), 0 0 0 185px rgba(255,255,255,.025);
}
.hero-overlay {
  background:
    linear-gradient(90deg, rgba(52,39,37,.48) 0%, rgba(67,46,43,.22) 48%, rgba(92,55,51,.03) 72%),
    linear-gradient(180deg, rgba(39,30,29,.08), rgba(45,34,32,.18));
}
.hero-content {
  position: relative;
  z-index: 3;
  width: min(calc(100% - 40px), var(--max-width));
  max-width: none;
  margin: 0 auto;
  padding: 118px 52% 78px 0;
  justify-self: stretch;
  align-self: center;
}
.hero-content .eyebrow {
  display: inline-flex;
  margin: 0 0 18px;
  padding: 7px 12px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
}
.hero-content h1 {
  max-width: 650px;
  margin: 0 0 20px;
  font-family: "Playfair Display", serif;
  font-size: clamp(48px, 5vw, 72px);
  line-height: 1.02;
  letter-spacing: -.035em;
  font-weight: 600;
  text-wrap: balance;
}
.hero-copy {
  max-width: 535px;
  margin: 0;
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.65;
  color: rgba(255,255,255,.78);
}
.hero-person {
  right: clamp(16px, 4.5vw, 76px);
  bottom: -2px;
  width: clamp(430px, 39vw, 580px);
  max-height: calc(100% - 96px);
  filter: drop-shadow(-20px 20px 30px rgba(41,28,27,.22));
}
.scroll-hint { bottom: 22px; }
.brand-logo-shell { min-height: 62px; padding: 7px 15px; }
.brand-logo { width: 150px; }

@media (max-width: 1050px) {
  .hero-content { padding-right: 46%; }
  .hero-content h1 { font-size: clamp(44px, 5.8vw, 62px); }
  .hero-person { right: -18px; width: clamp(400px, 46vw, 520px); }
}

@media (max-width: 760px) {
  .hero {
    height: 850px;
    min-height: 850px;
    text-align: left;
    background: linear-gradient(155deg, #604a47 0%, #8b615b 54%, #c17e75 100%);
  }
  .hero::before {
    width: 410px;
    height: 410px;
    right: -150px;
    top: 22%;
    box-shadow: 0 0 0 72px rgba(255,255,255,.035), 0 0 0 144px rgba(255,255,255,.02);
  }
  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(50,37,35,.34) 0%, rgba(71,49,46,.08) 49%, rgba(66,45,42,.42) 100%);
  }
  .topbar { min-height: 76px; }
  .brand-logo-shell { min-height: 52px; padding: 5px 10px; }
  .brand-logo { width: 112px; }
  .hero-content {
    width: calc(100% - 38px);
    padding: 116px 0 470px;
    align-self: stretch;
    display: block;
  }
  .hero-content .eyebrow { margin-bottom: 14px; font-size: 9px; letter-spacing: .13em; }
  .hero-content h1 {
    max-width: 470px;
    margin-bottom: 14px;
    font-size: clamp(39px, 11.5vw, 54px);
    line-height: 1.02;
  }
  .hero-copy { max-width: 380px; font-size: 16px; line-height: 1.55; }
  .hero-person {
    width: min(103vw, 470px);
    max-height: 58%;
    right: -20px;
    bottom: -3px;
    transform: none;
    opacity: 1;
  }
  .scroll-hint { bottom: 18px; }
}

@media (max-width: 390px) {
  .hero { height: 820px; min-height: 820px; }
  .hero-content { padding-bottom: 430px; }
  .hero-content h1 { font-size: 39px; }
  .hero-person { width: 430px; right: -31px; max-height: 57%; }
}

/* ==========================================================
   AJUSTE V5 — hero refinado + logo branco
========================================================== */
.brand-logo-shell,
.footer-logo-shell {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}

.brand-logo {
  width: clamp(170px, 14vw, 220px);
  filter: drop-shadow(0 8px 18px rgba(22, 12, 12, .18));
}

.footer-logo {
  width: clamp(190px, 18vw, 240px);
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, .15));
}

.topbar {
  width: min(calc(100% - 44px), var(--max-width));
  min-height: 94px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.hero {
  height: clamp(700px, 90svh, 820px);
  min-height: 700px;
  background:
    radial-gradient(circle at 77% 44%, rgba(255,255,255,.10) 0%, rgba(255,255,255,.05) 15%, transparent 38%),
    linear-gradient(115deg, #564341 0%, #7b5a56 40%, #be7a71 100%);
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  right: 6%;
  top: 50%;
  width: clamp(420px, 38vw, 620px);
  height: clamp(420px, 38vw, 620px);
  transform: translateY(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.16) 0%, rgba(255,255,255,.08) 32%, rgba(255,255,255,.03) 55%, transparent 74%);
  box-shadow: none;
  border: 0;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(47, 35, 34, .58) 0%, rgba(67, 46, 43, .32) 40%, rgba(92, 55, 51, 0) 72%),
    linear-gradient(180deg, rgba(39, 30, 29, .08), rgba(45, 34, 32, .14));
}

.hero-content {
  width: min(calc(100% - 44px), var(--max-width));
  padding: 148px 48% 92px 0;
}

.hero-content .eyebrow {
  margin: 0 0 22px;
  padding: 8px 14px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.16);
}

.hero-content h1 {
  max-width: 560px;
  margin: 0 0 20px;
  font-size: clamp(48px, 5vw, 68px);
  line-height: .97;
  letter-spacing: -.04em;
}

.hero-copy {
  max-width: 470px;
  font-size: clamp(18px, 1.55vw, 21px);
  line-height: 1.58;
  color: rgba(255,255,255,.84);
}

.hero-person {
  right: clamp(12px, 4vw, 64px);
  bottom: 0;
  width: clamp(390px, 34vw, 520px);
  max-height: 86%;
  filter: drop-shadow(-18px 18px 28px rgba(39, 23, 22, .22));
}

.scroll-hint {
  width: 46px;
  height: 46px;
  bottom: 24px;
}

@media (max-width: 1100px) {
  .hero-content {
    padding-right: 45%;
  }

  .hero-content h1 {
    font-size: clamp(44px, 5.4vw, 60px);
  }

  .hero-person {
    right: 0;
    width: clamp(380px, 40vw, 470px);
  }
}

@media (max-width: 760px) {
  .topbar {
    width: calc(100% - 30px);
    min-height: 76px;
  }

  .brand-logo {
    width: 126px;
  }

  .hero {
    height: 820px;
    min-height: 820px;
    text-align: left;
    background:
      radial-gradient(circle at 65% 70%, rgba(255,255,255,.08) 0%, rgba(255,255,255,.03) 16%, transparent 37%),
      linear-gradient(160deg, #5a4745 0%, #84605b 54%, #c27f76 100%);
  }

  .hero::before {
    right: 50%;
    top: auto;
    bottom: 138px;
    width: 330px;
    height: 330px;
    transform: translateX(50%);
    background: radial-gradient(circle, rgba(255,255,255,.12) 0%, rgba(255,255,255,.06) 34%, transparent 72%);
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(49, 37, 35, .34) 0%, rgba(71, 49, 46, .08) 42%, rgba(66, 45, 42, .08) 62%, rgba(66, 45, 42, .44) 100%);
  }

  .hero-content {
    width: calc(100% - 38px);
    padding: 124px 0 390px;
  }

  .hero-content .eyebrow {
    margin-bottom: 16px;
    font-size: 9px;
    letter-spacing: .14em;
  }

  .hero-content h1 {
    max-width: 320px;
    font-size: clamp(38px, 10.8vw, 50px);
    margin-bottom: 14px;
  }

  .hero-copy {
    max-width: 300px;
    font-size: 16px;
    line-height: 1.55;
  }

  .hero-person {
    right: -6px;
    width: min(92vw, 390px);
    max-height: 54%;
  }
}

@media (max-width: 390px) {
  .hero {
    height: 790px;
    min-height: 790px;
  }

  .hero-content {
    padding-bottom: 358px;
  }

  .hero-content h1 {
    max-width: 290px;
    font-size: 36px;
  }

  .hero-person {
    width: min(96vw, 360px);
    right: -8px;
  }
}

/* ==========================================================
   AJUSTE V6 — nova foto + hero premium refinado
========================================================== */
.hero {
  height: clamp(720px, 92svh, 860px);
  min-height: 720px;
  background:
    radial-gradient(circle at 79% 45%, rgba(255,255,255,.13) 0%, rgba(255,255,255,.07) 14%, transparent 36%),
    linear-gradient(116deg, #54403f 0%, #765652 40%, #bb776e 100%);
}

.hero::before {
  right: 4%;
  top: 50%;
  width: clamp(460px, 42vw, 700px);
  height: clamp(460px, 42vw, 700px);
  transform: translateY(-50%);
  background: radial-gradient(circle, rgba(255,255,255,.15) 0%, rgba(255,255,255,.07) 34%, rgba(255,255,255,.02) 57%, transparent 76%);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(42, 31, 30, .66) 0%, rgba(59, 41, 39, .34) 41%, rgba(92, 55, 51, 0) 76%),
    linear-gradient(180deg, rgba(39, 30, 29, .04), rgba(45, 34, 32, .14));
}

.topbar {
  width: min(calc(100% - 48px), var(--max-width));
  min-height: 96px;
  border-bottom: 1px solid rgba(255,255,255,.14);
}

.main-menu { gap: 34px; }
.main-menu a { font-size: 15px; }

.hero-content {
  width: min(calc(100% - 48px), var(--max-width));
  padding: 168px 47% 108px 0;
}

.hero-content h1 {
  max-width: 570px;
  margin: 0 0 18px;
  font-size: clamp(50px, 5vw, 70px);
  line-height: .96;
  letter-spacing: -.045em;
}

.hero-copy {
  max-width: 500px;
  margin: 0 0 28px;
  font-size: clamp(18px, 1.55vw, 21px);
  line-height: 1.6;
  color: rgba(255,255,255,.84);
}

.hero-actions { margin-bottom: 18px; }
.hero-actions .btn { min-width: 220px; }

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

.hero-notes span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.92);
  font-size: 13px;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

.hero-person {
  right: clamp(6px, 3.2vw, 54px);
  bottom: 0;
  width: clamp(420px, 37vw, 560px);
  max-height: 88%;
  object-position: center bottom;
  filter: drop-shadow(-16px 18px 28px rgba(34, 21, 20, .24));
}

.scroll-hint {
  width: 48px;
  height: 48px;
  bottom: 26px;
}

@media (max-width: 1140px) {
  .hero-content { padding-right: 43%; }
  .hero-content h1 { font-size: clamp(46px, 5.3vw, 62px); }
  .hero-person { width: clamp(390px, 41vw, 500px); right: 0; }
}

@media (max-width: 760px) {
  .topbar {
    width: calc(100% - 30px);
    min-height: 78px;
  }

  .brand-logo { width: 126px; }

  .hero {
    height: 870px;
    min-height: 870px;
    background:
      radial-gradient(circle at 55% 70%, rgba(255,255,255,.10) 0%, rgba(255,255,255,.04) 18%, transparent 40%),
      linear-gradient(160deg, #574342 0%, #7f5d59 56%, #c48077 100%);
  }

  .hero::before {
    right: 50%;
    top: auto;
    bottom: 112px;
    width: 340px;
    height: 340px;
    transform: translateX(50%);
    background: radial-gradient(circle, rgba(255,255,255,.13) 0%, rgba(255,255,255,.06) 34%, transparent 72%);
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(49,37,35,.34) 0%, rgba(71,49,46,.10) 42%, rgba(66,45,42,.06) 60%, rgba(66,45,42,.44) 100%);
  }

  .hero-content {
    width: calc(100% - 38px);
    padding: 128px 0 436px;
  }

  .hero-content h1 {
    max-width: 340px;
    font-size: clamp(40px, 11vw, 54px);
    margin-bottom: 14px;
  }

  .hero-copy {
    max-width: 312px;
    margin-bottom: 22px;
    font-size: 16px;
    line-height: 1.58;
  }

  .hero-actions .btn {
    width: 100%;
    min-width: 0;
  }

  .hero-notes {
    gap: 8px;
  }

  .hero-notes span {
    min-height: 36px;
    padding: 0 12px;
    font-size: 11px;
  }

  .hero-person {
    right: 50%;
    bottom: 0;
    width: min(88vw, 390px);
    max-height: 55%;
    transform: translateX(50%);
  }
}

@media (max-width: 390px) {
  .hero {
    height: 835px;
    min-height: 835px;
  }

  .hero-content {
    padding-bottom: 405px;
  }

  .hero-content h1 {
    max-width: 300px;
    font-size: 37px;
  }

  .hero-copy {
    max-width: 285px;
  }

  .hero-person {
    width: min(92vw, 360px);
  }
}

/* ==========================================================
   AJUSTE V7 — hero mais limpo, texto e foto mais próximos
========================================================== */
.topbar {
  min-height: 82px;
  border-bottom: 0;
}

.menu-toggle,
.main-menu {
  display: none !important;
}

.brand-logo {
  width: clamp(180px, 16vw, 250px);
}

.hero {
  height: clamp(700px, 90svh, 820px);
  min-height: 700px;
  background:
    radial-gradient(circle at 77% 42%, rgba(255,255,255,.10) 0%, rgba(255,255,255,.05) 14%, transparent 34%),
    linear-gradient(115deg, #56413f 0%, #775653 44%, #c08a81 100%);
}

.hero::before {
  right: 9%;
  top: 47%;
  width: clamp(420px, 36vw, 610px);
  height: clamp(420px, 36vw, 610px);
  background: radial-gradient(circle, rgba(255,255,255,.11) 0%, rgba(255,255,255,.05) 35%, transparent 72%);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(44,31,30,.70) 0%, rgba(63,44,42,.42) 36%, rgba(92,55,51,.08) 68%, rgba(92,55,51,0) 100%),
    linear-gradient(180deg, rgba(39,30,29,.04), rgba(45,34,32,.10));
}

.hero-content {
  width: min(calc(100% - 48px), 1160px);
  padding: 154px 40% 108px 0;
}

.hero-content h1 {
  max-width: 520px;
  margin: 0 0 22px;
  font-size: clamp(54px, 5.4vw, 74px);
  line-height: .94;
  letter-spacing: -.05em;
}

.hero-copy {
  max-width: 470px;
  margin: 0;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.62;
  color: rgba(255,255,255,.84);
}

.hero-person {
  right: clamp(18px, 6vw, 110px);
  width: clamp(430px, 34vw, 520px);
  max-height: 86%;
  filter: drop-shadow(-14px 18px 30px rgba(35,21,20,.22));
}

.scroll-hint {
  bottom: 24px;
}

@media (max-width: 1140px) {
  .hero-content {
    padding-right: 38%;
  }

  .hero-content h1 {
    font-size: clamp(48px, 5.3vw, 62px);
    max-width: 490px;
  }

  .hero-person {
    right: 36px;
    width: clamp(390px, 37vw, 470px);
  }
}

@media (max-width: 760px) {
  .topbar {
    width: calc(100% - 30px);
    min-height: 74px;
  }

  .brand-logo {
    width: 148px;
  }

  .hero {
    height: 820px;
    min-height: 820px;
    background:
      radial-gradient(circle at 52% 72%, rgba(255,255,255,.08) 0%, rgba(255,255,255,.03) 16%, transparent 36%),
      linear-gradient(160deg, #574342 0%, #7e5d58 55%, #cf9a91 100%);
  }

  .hero::before {
    right: 50%;
    top: auto;
    bottom: 122px;
    width: 315px;
    height: 315px;
    transform: translateX(50%);
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(49,37,35,.36) 0%, rgba(71,49,46,.10) 42%, rgba(66,45,42,.06) 60%, rgba(66,45,42,.36) 100%);
  }

  .hero-content {
    width: calc(100% - 38px);
    padding: 118px 0 395px;
  }

  .hero-content h1 {
    max-width: 300px;
    margin-bottom: 14px;
    font-size: clamp(38px, 10.7vw, 50px);
    line-height: .98;
  }

  .hero-copy {
    max-width: 285px;
    font-size: 16px;
    line-height: 1.58;
  }

  .hero-person {
    right: 50%;
    bottom: 0;
    width: min(83vw, 360px);
    max-height: 54%;
    transform: translateX(50%);
  }
}

@media (max-width: 390px) {
  .hero {
    height: 785px;
    min-height: 785px;
  }

  .hero-content {
    padding-bottom: 372px;
  }

  .hero-content h1 {
    max-width: 270px;
    font-size: 35px;
  }

  .hero-person {
    width: min(88vw, 330px);
  }
}

/* ==========================================================
   AJUSTE V8 — layout alinhado ao mockup aprovado
========================================================== */
body {
  background: #ece3df;
}

.page-shell {
  width: min(calc(100% - 28px), 1280px);
  margin: 18px auto;
  border-radius: 28px;
  background: #f7f1ef;
  box-shadow: 0 24px 70px rgba(91, 66, 63, .16);
}

.hero {
  position: relative;
  min-height: 520px;
  height: auto;
  padding: 48px 42px 0;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(88, 62, 59, .97) 0%, rgba(131, 92, 86, .88) 48%, rgba(182, 134, 126, .84) 100%),
    radial-gradient(circle at 84% 32%, rgba(255,255,255,.12) 0 12%, transparent 13%),
    radial-gradient(circle at 84% 32%, transparent 0 22%, rgba(255,255,255,.05) 22% 34%, transparent 35%);
}

.hero::before,
.topbar,
.scroll-hint,
.hero-content h1,
.hero-copy,
.hero-notes,
.hero-actions,
.hero-content .eyebrow,
.menu-toggle,
.main-menu {
  display: none !important;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(320px, 470px);
  align-items: center;
  gap: 18px;
  min-height: 472px;
}

.hero-overlay {
  background:
    radial-gradient(circle at 75% 40%, rgba(255,255,255,.08) 0%, transparent 35%),
    linear-gradient(180deg, rgba(35,23,22,.06), rgba(35,23,22,.14));
}

.hero-content {
  width: 100%;
  max-width: 480px;
  padding: 0 0 36px 18px;
  text-align: center;
  justify-self: center;
}

.hero-brand {
  margin: 0 auto 8px;
}

.hero-brand-logo {
  width: clamp(250px, 28vw, 380px);
  margin: 0 auto;
  filter: drop-shadow(0 12px 25px rgba(33, 21, 20, .14));
}

.hero-profession {
  margin: 4px 0 12px;
  font-size: 18px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(255,255,255,.94);
}

.hero-tagline {
  margin: 0;
  font-size: clamp(19px, 2vw, 29px);
  line-height: 1.55;
  color: rgba(255,255,255,.97);
}

.hero-divider {
  display: block;
  width: 66px;
  height: 2px;
  margin: 18px auto 0;
  border-radius: 99px;
  background: rgba(255,255,255,.85);
}

.hero-figure-wrap {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  align-self: end;
  min-height: 472px;
}

.hero-person {
  position: relative;
  right: auto;
  bottom: 0;
  width: min(100%, 425px);
  max-height: 470px;
  object-fit: contain;
  object-position: bottom center;
  transform: none;
  filter: drop-shadow(-10px 14px 28px rgba(43, 28, 26, .22));
}

.quick-links {
  padding-top: 28px;
}

.quick-links .section-heading {
  display: none;
}

.quick-grid {
  grid-template-columns: repeat(5, minmax(0,1fr));
  gap: 12px;
}

.quick-card {
  min-height: 86px;
  padding: 14px 16px;
  background: linear-gradient(180deg, #a85a66, #8f4d58);
  border: 0;
  color: white;
  border-radius: 12px;
  box-shadow: 0 14px 28px rgba(111, 67, 74, .18);
}

.quick-card:hover {
  border: 0;
  box-shadow: 0 16px 30px rgba(111, 67, 74, .25);
}

.quick-icon {
  background: rgba(255,255,255,.12);
  color: white;
}

.quick-card small {
  color: rgba(255,255,255,.82);
}

.section-pad {
  padding: 64px 44px;
}

.section-heading {
  max-width: none;
  margin-bottom: 26px;
  text-align: center;
}

.section-kicker {
  display: none;
}

.section-heading h2 {
  position: relative;
  display: inline-block;
  margin: 0 auto 10px;
  padding: 0 34px;
  font-size: clamp(28px, 3vw, 42px);
  font-style: italic;
  color: #7b4b52;
}

.section-heading h2::before,
.section-heading h2::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 24px;
  height: 1px;
  background: rgba(123, 75, 82, .5);
}

.section-heading h2::before { left: 0; }
.section-heading h2::after { right: 0; }

.section-heading p {
  color: #8b7b79;
  max-width: 680px;
  margin: 8px auto 0;
}

.promo-banner {
  display: none;
}

.services {
  background: #f7f1ef;
  padding-top: 26px;
}

.service-grid {
  max-width: 820px;
  margin: 0 auto;
  gap: 16px;
}

.service-card {
  min-height: 210px;
  padding: 26px 22px;
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(161, 121, 123, .14);
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(91, 66, 63, .06);
  text-align: center;
}

.service-number { display: none; }

.service-symbol {
  margin: 0 auto;
  width: 58px;
  height: 58px;
  background: #f4e5e2;
  color: #a7656f;
}

.service-card h3 {
  margin: 18px 0 8px;
  font-size: 24px;
  color: #6f4d50;
}

.gallery {
  background: #f7f1ef;
  padding-top: 6px;
}

.gallery-viewport {
  max-width: 930px;
  margin: 0 auto;
}

.gallery-track {
  grid-auto-columns: minmax(200px, 1fr);
  gap: 14px;
}

.gallery-item img {
  border-radius: 12px;
}

.gallery-arrow {
  display: none;
}

.center {
  margin-top: 12px;
}

.text-link {
  border: 0;
  padding: 12px 26px;
  border-radius: 10px;
  background: #9d5563;
  color: white;
}

.testimonials {
  background: #f7f1ef;
  padding-top: 4px;
}

.testimonial-grid {
  gap: 14px;
}

.testimonial-card {
  border-radius: 14px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 10px 22px rgba(91, 66, 63, .05);
}

.testimonial-card > p {
  min-height: auto;
  font-size: 18px;
  color: #63484a;
}

.location {
  padding-top: 14px;
}

.location-card {
  border-radius: 18px;
  background: linear-gradient(135deg, #6d3745, #8e505b 52%, #9c5b68 100%);
  color: white;
  border: 0;
}

.location-copy {
  color: white;
}

.location h2,
.location .address,
.location .info-list p,
.location .info-list strong,
.location .section-kicker,
.location .map-placeholder small,
.location .map-placeholder strong {
  color: white;
}

.info-list span {
  background: rgba(255,255,255,.15);
  color: white;
}

.btn-outline {
  border-color: rgba(255,255,255,.35);
  color: white;
}

.map-placeholder {
  background: rgba(255,255,255,.08);
}

.map-lines, .map-lines::before, .map-lines::after {
  opacity: .3;
}

.footer {
  padding: 34px 44px 24px;
  background: linear-gradient(135deg, #6d3745, #8e505b 52%, #9c5b68 100%);
  border-top: 1px solid rgba(255,255,255,.08);
}

.footer-brand {
  justify-content: center;
}

.footer > small {
  border-top: 1px solid rgba(255,255,255,.12);
}

.floating-menu {
  right: 22px;
  bottom: 22px;
}

@media (max-width: 980px) {
  .page-shell {
    width: calc(100% - 16px);
    margin: 8px auto;
    border-radius: 22px;
  }

  .section-pad {
    padding: 52px 20px;
  }

  .hero {
    min-height: 480px;
    padding: 36px 22px 0;
  }

  .hero-layout {
    grid-template-columns: 1fr 360px;
    min-height: 420px;
  }

  .hero-brand-logo {
    width: min(40vw, 300px);
  }

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

  .quick-card:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .page-shell {
    width: 100%;
    margin: 0;
    border-radius: 0;
  }

  .hero {
    padding: 28px 18px 0;
    min-height: 540px;
    border-radius: 0 0 26px 26px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 0;
    min-height: 512px;
  }

  .hero-content {
    max-width: 100%;
    padding: 18px 0 0;
    text-align: center;
  }

  .hero-brand-logo {
    width: min(72vw, 280px);
  }

  .hero-profession {
    font-size: 13px;
    letter-spacing: .22em;
  }

  .hero-tagline {
    font-size: 20px;
    line-height: 1.45;
  }

  .hero-figure-wrap {
    min-height: 260px;
    justify-content: center;
  }

  .hero-person {
    width: min(84vw, 310px);
    max-height: 250px;
  }

  .quick-links {
    padding-top: 18px;
  }

  .quick-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .quick-card,
  .quick-card:last-child {
    grid-column: auto;
    min-height: 78px;
  }

  .section-heading h2 {
    padding: 0 24px;
    font-size: 34px;
  }

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

  .gallery-track {
    grid-auto-columns: 74%;
  }

  .footer {
    padding: 34px 24px 92px;
  }
}

/* ==========================================================
   AJUSTE V9 — foto maior no desktop + fundo #e18282
========================================================== */
.hero {
  min-height: 650px;
  padding: 26px 34px 0;
  background:
    linear-gradient(90deg, rgba(96, 70, 68, .94) 0%, rgba(146, 105, 101, .78) 40%, rgba(225, 130, 130, .96) 100%),
    radial-gradient(circle at 80% 36%, rgba(255,255,255,.12) 0 12%, transparent 13%),
    radial-gradient(circle at 80% 36%, transparent 0 22%, rgba(255,255,255,.05) 22% 34%, transparent 35%);
}

.hero-layout {
  grid-template-columns: minmax(300px, .92fr) minmax(470px, 1.08fr);
  gap: 0;
  min-height: 624px;
}

.hero-content {
  max-width: 520px;
  padding: 0 0 32px 8px;
}

.hero-brand-logo {
  width: clamp(280px, 28vw, 410px);
}

.hero-profession {
  margin: 6px 0 14px;
  font-size: 19px;
  letter-spacing: .3em;
}

.hero-tagline {
  font-size: clamp(21px, 2.15vw, 33px);
  line-height: 1.5;
}

.hero-figure-wrap {
  min-height: 624px;
  align-items: flex-end;
  justify-content: center;
  overflow: visible;
}

.hero-person {
  width: clamp(500px, 40vw, 700px);
  max-width: none;
  max-height: 620px;
  object-position: bottom center;
  filter: drop-shadow(-10px 12px 24px rgba(39, 24, 23, .18));
}

@media (max-width: 1200px) {
  .hero-layout {
    grid-template-columns: minmax(290px, .95fr) minmax(420px, 1.05fr);
  }

  .hero-person {
    width: clamp(440px, 42vw, 610px);
    max-height: 560px;
  }
}

@media (max-width: 980px) {
  .hero {
    min-height: 590px;
    padding: 24px 22px 0;
    background:
      linear-gradient(160deg, rgba(96, 70, 68, .95) 0%, rgba(155, 111, 106, .84) 48%, rgba(225, 130, 130, .96) 100%);
  }

  .hero-layout {
    grid-template-columns: 1fr 1fr;
    min-height: 540px;
  }

  .hero-content {
    max-width: 420px;
    padding-left: 4px;
  }

  .hero-brand-logo {
    width: min(40vw, 300px);
  }

  .hero-tagline {
    font-size: 24px;
  }

  .hero-figure-wrap {
    min-height: 540px;
  }

  .hero-person {
    width: min(56vw, 470px);
    max-height: 500px;
  }
}

@media (max-width: 760px) {
  .hero {
    min-height: 700px;
    padding: 24px 18px 0;
    background:
      linear-gradient(180deg, rgba(112, 80, 77, .96) 0%, rgba(168, 120, 115, .86) 46%, rgba(225, 130, 130, .98) 100%);
  }

  .hero-layout {
    grid-template-columns: 1fr;
    min-height: 670px;
  }

  .hero-content {
    max-width: 100%;
    padding: 8px 0 0;
  }

  .hero-brand-logo {
    width: min(76vw, 290px);
  }

  .hero-profession {
    font-size: 13px;
    letter-spacing: .24em;
  }

  .hero-tagline {
    font-size: 22px;
    line-height: 1.45;
  }

  .hero-figure-wrap {
    min-height: 360px;
    justify-content: center;
    align-items: flex-end;
    margin-top: 6px;
  }

  .hero-person {
    width: min(82vw, 360px);
    max-height: 355px;
  }
}

@media (max-width: 420px) {
  .hero {
    min-height: 660px;
  }

  .hero-layout {
    min-height: 632px;
  }

  .hero-tagline {
    font-size: 20px;
  }

  .hero-person {
    width: min(86vw, 330px);
    max-height: 330px;
  }
}

/* ==========================================================
   AJUSTE V10 — sem foto, hero com logo colorida em fundo branco
========================================================== */
.hero {
  min-height: 430px;
  padding: 34px 28px 22px;
  background: linear-gradient(180deg, #ffffff 0%, #fff8f7 100%);
  color: #7d5a57;
  border: 1px solid rgba(225, 130, 130, .18);
}

.hero-overlay {
  background:
    radial-gradient(circle at 18% 22%, rgba(225, 130, 130, .08) 0%, transparent 22%),
    radial-gradient(circle at 84% 28%, rgba(225, 130, 130, .08) 0%, transparent 24%),
    linear-gradient(180deg, rgba(255,255,255,.18), rgba(255,255,255,0));
}

.hero-layout {
  grid-template-columns: 1fr;
  min-height: 370px;
  gap: 0;
}

.hero-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 26px 0 12px;
  text-align: center;
  align-self: center;
}

.hero-brand {
  margin-bottom: 14px;
}

.hero-brand-logo {
  width: clamp(270px, 30vw, 430px);
  filter: none;
}

.hero-profession {
  margin: 0 0 16px;
  font-size: clamp(14px, 1.15vw, 18px);
  letter-spacing: .32em;
  color: #c18282;
}

.hero-tagline {
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.4;
  color: #7a605d;
}

.hero-divider {
  width: 70px;
  height: 2px;
  margin-top: 18px;
  background: #e18282;
}

.hero-figure-wrap,
.hero-person {
  display: none !important;
}

.quick-links {
  padding-top: 8px;
}

@media (max-width: 760px) {
  .hero {
    min-height: 360px;
    padding: 22px 18px 14px;
    border-radius: 0 0 22px 22px;
  }

  .hero-layout {
    min-height: 320px;
  }

  .hero-content {
    max-width: 100%;
    padding: 16px 0 10px;
  }

  .hero-brand-logo {
    width: min(78vw, 300px);
  }

  .hero-profession {
    margin-bottom: 12px;
    font-size: 12px;
    letter-spacing: .24em;
  }

  .hero-tagline {
    font-size: 24px;
    line-height: 1.38;
  }

  .hero-divider {
    width: 58px;
    margin-top: 14px;
  }
}

@media (max-width: 420px) {
  .hero {
    min-height: 330px;
  }

  .hero-layout {
    min-height: 292px;
  }

  .hero-brand-logo {
    width: min(80vw, 270px);
  }

  .hero-tagline {
    font-size: 22px;
  }
}

/* ==========================================================
   AJUSTE V11 — galeria com trabalhos reais
========================================================== */
.gallery-track {
  grid-auto-columns: minmax(230px, 29%);
  align-items: stretch;
}

.gallery-item {
  background: #fff;
  box-shadow: 0 12px 28px rgba(91, 66, 63, .10);
}

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

@media (max-width: 980px) {
  .gallery-track {
    grid-auto-columns: minmax(240px, 44%);
  }
}

@media (max-width: 760px) {
  .gallery-track {
    grid-auto-columns: 78%;
  }
}
