:root {
  --ink: #1d241b;
  --forest: #293222;
  --forest-2: #35422c;
  --sage: #809071;
  --cream: #f6f0e6;
  --paper: #fffaf3;
  --sand: #e7d8c3;
  --rose: #bd7774;
  --wine: #7a3435;
  --gold: #c59a5f;
  --white: #fff;
  --border: rgba(29, 36, 27, .13);
  --shadow: 0 24px 70px rgba(26, 35, 24, .13);
  --radius: 28px;
  --container: min(1180px, calc(100vw - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
.container { width: var(--container); margin-inline: auto; }
.section-shell { padding: 112px 0; }

.skip-link {
  position: fixed;
  z-index: 9999;
  left: 16px;
  top: -80px;
  background: var(--white);
  color: var(--ink);
  padding: 12px 18px;
  border-radius: 10px;
  transition: top .2s ease;
}
.skip-link:focus { top: 16px; }

.announcement {
  background: var(--forest);
  color: rgba(255,255,255,.88);
  font-size: 13px;
  letter-spacing: .035em;
}
.announcement__inner {
  min-height: 38px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.announcement a { color: #f0d8ae; font-weight: 700; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 250, 243, .9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(29,36,27,.08);
}
.nav-wrap { min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand__mark {
  width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--forest); color: var(--cream);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px; line-height: 1;
}
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__text strong { font-family: Georgia, "Times New Roman", serif; font-size: 25px; font-weight: 500; letter-spacing: -.02em; }
.brand__text small { margin-top: 5px; color: #6d7368; font-size: 10px; text-transform: uppercase; letter-spacing: .18em; }
.main-nav { display: flex; align-items: center; gap: 30px; font-size: 14px; font-weight: 650; }
.main-nav > a:not(.nav-cta) { position: relative; }
.main-nav > a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; bottom: -8px; width: 0; height: 1px; background: var(--forest); transition: width .25s ease; }
.main-nav > a:hover::after { width: 100%; }
.nav-cta { padding: 12px 18px; border-radius: 999px; background: var(--forest); color: var(--white); }
.menu-toggle { display: none; padding: 8px; border: 0; background: transparent; }
.menu-toggle span { display: block; width: 25px; height: 2px; margin: 5px 0; background: var(--ink); transition: .25s ease; }

.hero { overflow: hidden; padding-top: 76px; background: radial-gradient(circle at 85% 20%, rgba(197,154,95,.14), transparent 35%), var(--paper); }
.hero__grid { min-height: 650px; display: grid; grid-template-columns: .92fr 1.08fr; gap: 72px; align-items: center; }
.eyebrow { display: block; margin-bottom: 19px; color: var(--wine); font-size: 12px; line-height: 1.2; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; }
.hero h1, .section-heading h2, .signature h2, .about h2, .reviews h2, .contact h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -.035em;
}
.hero h1 { font-size: clamp(49px, 6.1vw, 86px); }
.hero h1 em { color: var(--rose); font-weight: 400; }
.hero__copy > p { max-width: 620px; margin: 28px 0 34px; color: #586052; font-size: 18px; }
.hero__actions { display: flex; align-items: center; gap: 13px; flex-wrap: wrap; }
.button { min-height: 55px; display: inline-flex; align-items: center; justify-content: center; gap: 12px; padding: 0 23px; border-radius: 999px; font-size: 14px; font-weight: 800; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.button--primary { background: var(--forest); color: var(--white); box-shadow: 0 14px 32px rgba(41,50,34,.2); }
.button--primary:hover { background: #1f281b; }
.button--ghost { border: 1px solid var(--border); background: rgba(255,255,255,.5); }
.button--light { background: var(--cream); color: var(--forest); }
.hero__trust { display: flex; align-items: center; gap: 21px; margin-top: 37px; color: #687061; font-size: 13px; }
.rating-block { display: flex; align-items: center; gap: 9px; }
.rating-block strong { color: var(--ink); font-size: 17px; }
.stars { color: #b78544; letter-spacing: .08em; }
.trust-divider { width: 1px; height: 32px; background: var(--border); }

.hero__visual { min-height: 590px; position: relative; }
.hero-card { margin: 0; overflow: hidden; border-radius: 220px 220px 34px 34px; box-shadow: var(--shadow); }
.hero-card img { width: 100%; height: 100%; object-fit: cover; }
.hero-card--main { position: absolute; inset: 0 0 35px 15%; }
.hero-card--small { position: absolute; width: 39%; height: 52%; left: 0; bottom: 0; border: 8px solid var(--paper); border-radius: 110px 110px 24px 24px; }
.hero-seal {
  position: absolute; right: -18px; bottom: 8px;
  width: 154px; height: 154px; border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; background: var(--rose); color: white;
  border: 9px solid var(--paper); transform: rotate(-7deg);
  line-height: 1.05; box-shadow: 0 16px 35px rgba(86,44,42,.2);
}
.hero-seal span { font-size: 10px; text-transform: uppercase; letter-spacing: .12em; }
.hero-seal strong { margin: 5px 0; font-family: Georgia, "Times New Roman", serif; font-size: 28px; font-weight: 400; }

.benefits-bar { background: var(--cream); border-block: 1px solid rgba(29,36,27,.07); }
.benefits-bar__grid { min-height: 118px; display: grid; grid-template-columns: repeat(4,1fr); align-items: center; }
.benefits-bar__grid > div { min-height: 58px; padding: 0 27px; display: grid; grid-template-columns: 32px 1fr; align-content: center; border-right: 1px solid rgba(29,36,27,.1); }
.benefits-bar__grid > div:last-child { border-right: 0; }
.benefit-icon { grid-row: span 2; font-size: 20px; color: var(--rose); }
.benefits-bar strong { font-family: Georgia, "Times New Roman", serif; font-size: 17px; font-weight: 500; }
.benefits-bar small { color: #7a7e75; font-size: 12px; }

.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 60px; margin-bottom: 50px; }
.section-heading h2 { max-width: 650px; font-size: clamp(39px, 5vw, 62px); }
.section-heading p { max-width: 420px; margin: 0; color: #6e7469; }
.section-heading--center { max-width: 760px; margin: 0 auto 58px; display: block; text-align: center; }
.section-heading--center p { max-width: 610px; margin: 20px auto 0; }

.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.service-card { overflow: hidden; border: 1px solid var(--border); border-radius: var(--radius); background: #fffdf9; transition: transform .3s ease, box-shadow .3s ease; }
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.service-card__image { height: 330px; overflow: hidden; }
.service-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.service-card:hover img { transform: scale(1.04); }
.service-card__body { padding: 29px 29px 31px; }
.service-card__body > span { color: var(--rose); font-size: 12px; font-weight: 800; letter-spacing: .16em; }
.service-card h3 { margin: 12px 0 12px; font-family: Georgia, "Times New Roman", serif; font-size: 28px; font-weight: 400; line-height: 1.15; }
.service-card p { margin: 0 0 23px; color: #6b7167; font-size: 14px; }
.service-card a { display: inline-flex; gap: 12px; align-items: center; font-size: 13px; font-weight: 800; }
.service-card a span { color: var(--rose); font-size: 18px; }

.signature { position: relative; min-height: 780px; overflow: hidden; display: grid; align-items: center; }
.signature__media { position: absolute; inset: 0; }
.signature__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(27,32,24,.78), rgba(27,32,24,.18) 65%, rgba(27,32,24,.05)); }
.signature__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 47%; }
.signature__content { position: relative; z-index: 1; }
.signature__card { width: min(520px, 90%); padding: 58px; border-radius: var(--radius); background: rgba(255,250,243,.94); box-shadow: var(--shadow); }
.signature h2 { font-size: clamp(43px, 5vw, 64px); }
.signature p { color: #62695e; }
.signature ul { padding: 0; margin: 28px 0; list-style: none; }
.signature li { padding: 10px 0 10px 28px; position: relative; border-bottom: 1px solid var(--border); font-size: 14px; }
.signature li::before { content: "✓"; position: absolute; left: 0; color: var(--rose); font-weight: 900; }
.text-link { display: inline-flex; gap: 10px; font-size: 14px; font-weight: 800; }
.text-link span { color: var(--rose); }

.about__grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: 92px; align-items: center; }
.about__collage { min-height: 630px; position: relative; }
.about__photo { margin: 0; position: absolute; overflow: hidden; box-shadow: var(--shadow); }
.about__photo img { width: 100%; height: 100%; object-fit: cover; }
.about__photo--one { width: 64%; height: 78%; left: 0; top: 0; border-radius: 210px 210px 24px 24px; }
.about__photo--two { width: 55%; height: 61%; right: 0; bottom: 0; border: 8px solid var(--paper); border-radius: 24px 170px 24px 24px; }
.about__stamp { position: absolute; left: 48%; top: 57%; z-index: 2; width: 130px; height: 130px; display: grid; place-content: center; text-align: center; border-radius: 50%; background: var(--forest); color: white; border: 8px solid var(--paper); }
.about__stamp strong { font-family: Georgia, "Times New Roman", serif; font-size: 36px; font-weight: 400; line-height: .9; }
.about__stamp span { max-width: 80px; margin-top: 8px; font-size: 9px; text-transform: uppercase; letter-spacing: .1em; }
.about h2 { font-size: clamp(42px, 5vw, 65px); }
.about__copy p { color: #62695e; }
.about__badges { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 31px; }
.about__badges span { padding: 9px 13px; border: 1px solid var(--border); border-radius: 999px; background: #fff; font-size: 11px; font-weight: 750; }

.gallery { background: var(--cream); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 265px; gap: 14px; }
.gallery-item { position: relative; padding: 0; overflow: hidden; border: 0; border-radius: 18px; background: #ddd; cursor: zoom-in; }
.gallery-item--tall { grid-row: span 2; }
.gallery-item--wide { grid-column: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease, filter .3s ease; }
.gallery-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 58%, rgba(17,22,16,.66)); opacity: .9; }
.gallery-item span { position: absolute; z-index: 1; left: 20px; bottom: 16px; color: white; font-size: 13px; font-weight: 800; letter-spacing: .03em; }
.gallery-item:hover img { transform: scale(1.045); filter: saturate(1.05); }

.reviews { background: var(--forest); color: white; }
.reviews__top { display: flex; justify-content: space-between; align-items: end; gap: 50px; margin-bottom: 50px; }
.reviews h2 { max-width: 700px; color: white; font-size: clamp(43px,5vw,65px); }
.reviews .eyebrow { color: #e8bd88; }
.reviews__score { display: grid; justify-items: end; }
.reviews__score strong { font-family: Georgia, "Times New Roman", serif; font-size: 64px; line-height: 1; font-weight: 400; }
.reviews__score small { color: rgba(255,255,255,.6); }
.review-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.review-card { min-height: 320px; padding: 35px; display: flex; flex-direction: column; border: 1px solid rgba(255,255,255,.13); border-radius: 22px; background: rgba(255,255,255,.055); }
.review-card__stars { color: #e7bd7c; letter-spacing: .1em; }
.review-card blockquote { margin: 25px 0 35px; font-family: Georgia, "Times New Roman", serif; font-size: 22px; line-height: 1.45; }
.review-card footer { margin-top: auto; display: flex; flex-direction: column; }
.review-card footer span { color: rgba(255,255,255,.56); font-size: 12px; }

.contact { background: var(--rose); color: white; }
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: center; }
.contact .eyebrow { color: #fff0da; }
.contact h2 { color: white; font-size: clamp(45px,5.5vw,70px); }
.contact__copy p { max-width: 570px; color: rgba(255,255,255,.8); margin: 24px 0 32px; }
.contact__details { border-top: 1px solid rgba(255,255,255,.32); }
.contact-row { min-height: 102px; padding: 18px 4px; display: grid; grid-template-columns: 46px 1fr 20px; align-items: center; gap: 14px; border-bottom: 1px solid rgba(255,255,255,.32); }
.contact-row__icon { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; border: 1px solid rgba(255,255,255,.45); }
.contact-row span:nth-child(2) { display: flex; flex-direction: column; }
.contact-row small { color: rgba(255,255,255,.68); font-size: 11px; text-transform: uppercase; letter-spacing: .12em; }
.contact-row strong { font-family: Georgia, "Times New Roman", serif; font-size: 18px; font-weight: 400; }
.contact-row b { font-weight: 400; }

.site-footer { padding: 70px 0 25px; background: #171d15; color: rgba(255,255,255,.7); }
.footer__grid { display: grid; grid-template-columns: 1.4fr .8fr .8fr; gap: 80px; padding-bottom: 56px; }
.brand--footer { color: white; }
.brand--footer .brand__mark { background: var(--cream); color: var(--forest); }
.footer__brand p { max-width: 390px; margin-top: 22px; }
.footer__grid > div:not(.footer__brand) { display: flex; flex-direction: column; gap: 9px; }
.footer__grid strong { color: white; margin-bottom: 10px; font-size: 13px; text-transform: uppercase; letter-spacing: .13em; }
.footer__grid a { font-size: 14px; }
.footer__grid a:hover { color: white; }
.footer__bottom { padding-top: 24px; display: flex; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255,255,255,.1); font-size: 11px; }

.whatsapp-float { position: fixed; right: 22px; bottom: 22px; z-index: 80; width: 62px; height: 62px; display: grid; place-items: center; border-radius: 50%; background: #25d366; box-shadow: 0 14px 30px rgba(21,102,55,.3); transition: transform .2s ease; }
.whatsapp-float:hover { transform: translateY(-4px) scale(1.02); }
.whatsapp-float svg { width: 32px; fill: white; }

.lightbox { width: min(94vw, 1100px); max-height: 92vh; padding: 0; border: 0; border-radius: 18px; overflow: hidden; background: #111; box-shadow: 0 35px 100px rgba(0,0,0,.45); }
.lightbox::backdrop { background: rgba(8,12,8,.88); backdrop-filter: blur(7px); }
.lightbox img { width: 100%; max-height: 92vh; object-fit: contain; }
.lightbox__close { position: absolute; z-index: 2; right: 12px; top: 12px; width: 44px; height: 44px; border: 0; border-radius: 50%; background: rgba(0,0,0,.55); color: white; font-size: 28px; cursor: pointer; }

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

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

@media (max-width: 1000px) {
  :root { --container: min(920px, calc(100vw - 34px)); }
  .section-shell { padding: 85px 0; }
  .main-nav { gap: 20px; }
  .hero__grid { grid-template-columns: 1fr; gap: 55px; }
  .hero__copy { max-width: 760px; }
  .hero__visual { min-height: 650px; }
  .benefits-bar__grid { grid-template-columns: repeat(2,1fr); padding: 18px 0; }
  .benefits-bar__grid > div:nth-child(2) { border-right: 0; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .service-card:last-child { grid-column: span 2; display: grid; grid-template-columns: 1.05fr .95fr; }
  .service-card:last-child .service-card__image { height: 100%; min-height: 370px; }
  .about__grid { gap: 50px; }
  .gallery-grid { grid-template-columns: repeat(3,1fr); }
  .review-grid { grid-template-columns: 1fr; }
  .review-card { min-height: auto; }
}

@media (max-width: 960px) {
  :root { --container: min(100% - 28px, 680px); --radius: 22px; }
  .announcement__inner { justify-content: center; }
  .announcement__inner span { display: none; }
  .nav-wrap { min-height: 72px; }
  .menu-toggle { display: block; z-index: 102; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .main-nav { position: fixed; inset: 72px 14px auto; padding: 25px; display: grid; gap: 18px; border: 1px solid var(--border); border-radius: 20px; background: rgba(255,250,243,.98); box-shadow: var(--shadow); opacity: 0; transform: translateY(-12px); pointer-events: none; transition: .25s ease; }
  .main-nav.is-open { opacity: 1; transform: none; pointer-events: auto; }
  .nav-cta { text-align: center; }
  .hero { padding-top: 55px; }
  .hero__grid { min-height: auto; gap: 48px; }
  .hero h1 { font-size: clamp(46px, 15vw, 69px); }
  .hero__copy > p { font-size: 16px; }
  .hero__trust { align-items: flex-start; flex-wrap: wrap; }
  .hero__visual { min-height: 500px; }
  .hero-card--main { left: 10%; }
  .hero-card--small { width: 44%; height: 50%; }
  .hero-seal { width: 122px; height: 122px; right: -7px; }
  .hero-seal strong { font-size: 23px; }
  .benefits-bar__grid { grid-template-columns: 1fr; }
  .benefits-bar__grid > div { border-right: 0; border-bottom: 1px solid rgba(29,36,27,.1); padding: 16px 18px; }
  .benefits-bar__grid > div:last-child { border-bottom: 0; }
  .section-heading { display: block; }
  .section-heading p { margin-top: 20px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card:last-child { grid-column: auto; display: block; }
  .service-card:last-child .service-card__image { min-height: 0; height: 330px; }
  .signature { min-height: 720px; align-items: end; padding-bottom: 25px; }
  .signature__media::after { background: linear-gradient(180deg, rgba(27,32,24,.08), rgba(27,32,24,.7)); }
  .signature__card { width: 100%; padding: 38px 29px; }
  .about__grid { grid-template-columns: 1fr; }
  .about__collage { min-height: 540px; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); grid-auto-rows: 220px; }
  .gallery-item--wide { grid-column: span 2; }
  .reviews__top { align-items: flex-start; }
  .reviews__score { justify-items: start; }
  .contact__grid { grid-template-columns: 1fr; gap: 55px; }
  .footer__grid { grid-template-columns: 1fr; gap: 35px; }
  .footer__bottom { flex-direction: column; }
}

@media (max-width: 470px) {
  .section-shell { padding: 72px 0; }
  .brand__mark { width: 39px; height: 39px; }
  .brand__text strong { font-size: 22px; }
  .hero__actions { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .hero__visual { min-height: 420px; }
  .hero-card--small { border-width: 5px; }
  .hero-seal { width: 105px; height: 105px; border-width: 6px; }
  .hero-seal span { font-size: 8px; }
  .hero-seal strong { font-size: 20px; }
  .gallery-grid { display: grid; grid-template-columns: 1fr 1fr; grid-auto-rows: 185px; gap: 9px; }
  .gallery-item--tall { grid-row: span 2; }
  .gallery-item span { left: 12px; bottom: 10px; font-size: 10px; }
  .about__collage { min-height: 450px; }
  .about__stamp { left: 44%; width: 104px; height: 104px; }
  .about__stamp strong { font-size: 29px; }
  .reviews__top { display: block; }
  .reviews__score { margin-top: 25px; }
  .review-card { padding: 28px; }
  .review-card blockquote { font-size: 19px; }
  .contact-row { grid-template-columns: 42px 1fr 15px; }
  .contact-row strong { font-size: 16px; }
}

/* ===== Modernização v2 ===== */
:root {
  --container: 92vw;
  --radius: 32px;
  --shadow-soft: 0 18px 55px rgba(29, 36, 27, .10);
}

body {
  overflow-x: hidden;
  background:
    radial-gradient(circle at 10% 8%, rgba(189,119,116,.08), transparent 28%),
    radial-gradient(circle at 92% 18%, rgba(197,154,95,.10), transparent 30%),
    var(--paper);
}

.container {
  width: var(--container);
  max-width: none;
}

.section-shell {
  padding: clamp(72px, 7vw, 112px) 0;
}

.site-header {
  background: rgba(255, 250, 243, .82);
  box-shadow: 0 8px 30px rgba(29,36,27,.035);
}

.nav-wrap {
  min-height: 76px;
}

.main-nav {
  gap: clamp(18px, 2vw, 34px);
}

.hero {
  padding-top: clamp(48px, 5vw, 76px);
}

.hero__grid {
  min-height: 590px;
  grid-template-columns: minmax(0, .9fr) minmax(520px, 1.1fr);
  gap: clamp(44px, 5vw, 88px);
}

.hero__copy > p,
.section-heading p,
.about__copy p,
.contact__copy p,
.location-map__copy p {
  font-size: clamp(16px, 1.1vw, 19px);
}

.hero-card,
.service-card,
.gallery-item,
.signature__card,
.review-card,
.location-map__frame {
  box-shadow: var(--shadow-soft);
}

.service-grid {
  gap: clamp(18px, 1.8vw, 30px);
}

.service-card {
  background: rgba(255,253,249,.92);
  backdrop-filter: blur(12px);
}

.service-card__image {
  height: clamp(290px, 24vw, 420px);
}

.gallery {
  padding-inline: 0;
  background:
    linear-gradient(180deg, rgba(246,240,230,.85), rgba(246,240,230,1)),
    var(--cream);
}

.gallery .container {
  width: 94vw;
}

.gallery .section-heading--center {
  max-width: 980px;
  margin-bottom: clamp(34px, 4vw, 58px);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  grid-auto-flow: dense;
  grid-auto-rows: clamp(210px, 16vw, 330px);
  gap: clamp(10px, 1vw, 18px);
}

.gallery-item {
  min-height: 0;
  border-radius: clamp(18px, 1.6vw, 30px);
  isolation: isolate;
}

.gallery-item::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border: 1px solid rgba(255,255,255,.32);
  border-radius: inherit;
  pointer-events: none;
}

.gallery-item::after {
  z-index: 1;
  background: linear-gradient(180deg, transparent 42%, rgba(15,19,14,.74));
}

.gallery-item span {
  z-index: 2;
  left: clamp(16px, 1.3vw, 26px);
  bottom: clamp(14px, 1.2vw, 22px);
  font-size: clamp(13px, .95vw, 17px);
  text-shadow: 0 2px 18px rgba(0,0,0,.35);
}

.gallery-item:nth-child(1),
.gallery-item:nth-child(6),
.gallery-item:nth-child(12) {
  grid-row: span 2;
}

.gallery-item:nth-child(4),
.gallery-item:nth-child(9) {
  grid-column: span 2;
}

.reviews__top,
.section-heading {
  margin-bottom: clamp(34px, 4vw, 52px);
}

.contact {
  background:
    radial-gradient(circle at 15% 20%, rgba(255,255,255,.11), transparent 30%),
    linear-gradient(135deg, #a85f61, var(--rose));
}

.location-map {
  padding: clamp(56px, 6vw, 94px) 0;
  background: #f0e7d9;
}

.location-map__content {
  width: 94vw;
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(320px, .78fr) minmax(560px, 1.22fr);
  gap: clamp(28px, 4vw, 70px);
  align-items: center;
}

.location-map__copy {
  padding-inline: clamp(0px, 2vw, 34px);
}

.location-map h2 {
  margin: 0;
  max-width: 720px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 5vw, 76px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -.035em;
}

.location-map__copy p {
  max-width: 650px;
  margin: 24px 0 30px;
  color: #62695e;
}

.location-map__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.location-map__frame {
  overflow: hidden;
  min-height: 520px;
  border: 8px solid rgba(255,255,255,.7);
  border-radius: clamp(24px, 2.4vw, 42px);
  background: #ddd;
}

.location-map__frame iframe {
  display: block;
  width: 100%;
  min-height: 520px;
}

/* Cursor personalizado apenas em dispositivos com mouse */
.custom-cursor,
.custom-cursor-dot {
  display: none;
}

@media (hover: hover) and (pointer: fine) {
  html,
  body,
  a,
  button,
  [role="button"] {
    cursor: none !important;
  }

  .custom-cursor,
  .custom-cursor-dot {
    display: block;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 99999;
    pointer-events: none;
    transform: translate(-50%, -50%);
  }

  .custom-cursor {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(122,52,53,.72);
    border-radius: 50%;
    transition: width .2s ease, height .2s ease, background .2s ease, border-color .2s ease;
    mix-blend-mode: multiply;
  }

  .custom-cursor span {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
  }

  .custom-cursor span::before {
    content: "✦";
    color: var(--wine);
    font-size: 10px;
    opacity: .85;
  }

  .custom-cursor-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--wine);
  }

  .custom-cursor.is-hovering {
    width: 58px;
    height: 58px;
    background: rgba(189,119,116,.14);
    border-color: rgba(122,52,53,.35);
  }
}

@media (min-width: 1900px) {
  .hero h1 {
    font-size: clamp(72px, 5.2vw, 112px);
  }

  .section-heading h2,
  .signature h2,
  .about h2,
  .reviews h2,
  .contact h2 {
    font-size: clamp(54px, 3.7vw, 86px);
  }

  .gallery-grid {
    grid-auto-rows: 15vw;
  }
}

@media (max-width: 1180px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }

  .location-map__content {
    grid-template-columns: 1fr;
  }

  .location-map__copy {
    padding-inline: 0;
  }

  .gallery-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: clamp(200px, 23vw, 310px);
  }
}

@media (max-width: 960px) {
  :root {
    --container: calc(100vw - 28px);
  }

  .section-shell {
    padding: 68px 0;
  }

  .gallery .container,
  .location-map__content {
    width: calc(100vw - 22px);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 54vw;
    gap: 10px;
  }

  .gallery-item:nth-child(4),
  .gallery-item:nth-child(9) {
    grid-column: span 2;
  }

  .gallery-item:nth-child(1),
  .gallery-item:nth-child(6),
  .gallery-item:nth-child(12) {
    grid-row: span 1;
  }

  .gallery-item:nth-child(3n + 1) {
    grid-row: span 2;
  }

  .location-map__frame,
  .location-map__frame iframe {
    min-height: 420px;
    height: 420px;
  }

  .location-map__actions .button {
    width: 100%;
  }
}

@media (max-width: 470px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 86vw;
  }

  .gallery-item,
  .gallery-item:nth-child(3n + 1),
  .gallery-item:nth-child(4),
  .gallery-item:nth-child(9) {
    grid-column: auto;
    grid-row: auto;
  }
}

/* Mantém o layout legível mesmo quando o navegador estiver muito afastado. */
@media (min-width: 2400px) and (max-resolution: .8dppx) {
  body { font-size: 1vw; }
  .announcement { font-size: .78vw; }
  .brand__mark { width: 2.8vw; height: 2.8vw; font-size: 1.7vw; }
  .brand__text strong { font-size: 1.55vw; }
  .brand__text small { font-size: .68vw; }
  .main-nav { font-size: .88vw; }
  .nav-cta { padding: .75vw 1.15vw; }
  .eyebrow { font-size: .72vw; }
  .hero h1 { font-size: 5.2vw; }
  .hero__copy > p,
  .section-heading p,
  .about__copy p,
  .contact__copy p,
  .location-map__copy p { font-size: 1.05vw; }
  .section-heading h2,
  .signature h2,
  .about h2,
  .reviews h2,
  .contact h2,
  .location-map h2 { font-size: 3.6vw; }
  .button { min-height: 3.2vw; padding-inline: 1.35vw; font-size: .86vw; }
  .benefits-bar strong { font-size: 1vw; }
  .benefits-bar small { font-size: .72vw; }
  .service-card h3 { font-size: 1.7vw; }
  .service-card p,
  .service-card a { font-size: .86vw; }
  .gallery-item span { font-size: .9vw; }
  .review-card blockquote { font-size: 1.35vw; }
  .contact-row strong { font-size: 1.08vw; }
  .contact-row small { font-size: .7vw; }
  .footer__grid a,
  .footer__brand p { font-size: .82vw; }
}

@media (prefers-reduced-motion: reduce) {
  .custom-cursor,
  .custom-cursor-dot { display: none !important; }
  html,
  body,
  a,
  button,
  [role="button"] { cursor: auto !important; }
}


/* ===== Ajuste solicitado: seção de contato clara + ícones temáticos ===== */
.benefit-icon {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  color: var(--rose);
}

.benefit-icon svg,
.contact-row__icon svg,
.contact-row__arrow svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact {
  color: var(--ink);
  background:
    radial-gradient(circle at 14% 18%, rgba(197,154,95,.15), transparent 28%),
    linear-gradient(180deg, #f9f3e9 0%, #f4ecdf 100%);
}

.contact .eyebrow {
  color: var(--wine);
}

.contact h2 {
  color: var(--ink);
}

.contact__copy p {
  color: #5f665b;
}

.contact .button--light {
  background: var(--forest);
  color: var(--white);
  box-shadow: 0 14px 32px rgba(41,50,34,.17);
}

.contact .button--light:hover {
  background: #1f281b;
}

.contact__details {
  padding: clamp(18px, 2vw, 28px);
  border: 1px solid rgba(41,50,34,.10);
  border-radius: clamp(24px, 2vw, 34px);
  background: rgba(255,255,255,.74);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-soft);
}

.contact-row {
  min-height: 96px;
  padding: 18px 6px;
  border-bottom: 1px solid rgba(41,50,34,.10);
  color: var(--ink);
}

.contact-row:last-child {
  border-bottom: 0;
}

.contact-row__icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  border: 1px solid rgba(122,52,53,.10);
  background: rgba(122,52,53,.07);
  color: var(--wine);
}

.contact-row small {
  color: #88796e;
}

.contact-row strong {
  color: var(--ink);
  font-size: 20px;
}

.contact-row__arrow {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  color: var(--wine);
}

@media (max-width: 960px) {
  .contact__details {
    padding: 14px 18px;
  }

  .contact-row strong {
    font-size: 17px;
  }
}

/* ===== Divisórias em estilo fita / dobra elegante ===== */
.section-divider {
  --divider-main: #d8cab4;
  --divider-left: #f7f1e8;
  --divider-right: #bca98d;
  --divider-crease: rgba(41,50,34,.18);
  --divider-fold: rgba(255,255,255,.85);
  --divider-edge: rgba(197,154,95,.95);
  position: relative;
  z-index: 6;
  width: 100%;
  height: 0;
  line-height: 0;
  overflow: visible;
  pointer-events: none;
  background: transparent;
}

.section-divider svg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: clamp(64px, 5.2vw, 94px);
  transform: translateY(-44%);
  overflow: visible;
  filter: drop-shadow(0 8px 14px rgba(41,50,34,.08));
}

.section-divider--aurora {
  --divider-main: #89977f;
  --divider-left: #b2bca9;
  --divider-right: #5f6d58;
  --divider-crease: rgba(32,42,29,.24);
  --divider-fold: rgba(255,255,255,.42);
  --divider-edge: rgba(232,220,198,.72);
}

.section-divider--light {
  --divider-main: #e3d6c4;
  --divider-left: #f8f2e9;
  --divider-right: #c9b69a;
  --divider-crease: rgba(56,63,48,.18);
  --divider-fold: rgba(255,255,255,.86);
  --divider-edge: rgba(197,154,95,.72);
}

.section-divider--rose {
  --divider-main: #e9dfd2;
  --divider-left: #fbf7f0;
  --divider-right: #d2c0ae;
  --divider-crease: rgba(74,54,48,.18);
  --divider-fold: rgba(255,255,255,.9);
  --divider-edge: rgba(189,119,116,.65);
}

.divider-ribbon__body,
.divider-ribbon__left,
.divider-ribbon__right {
  stroke: none;
}

.divider-ribbon__body { fill: var(--divider-main); }
.divider-ribbon__left { fill: var(--divider-left); }
.divider-ribbon__right { fill: var(--divider-right); }
.divider-ribbon__crease,
.divider-ribbon__fold,
.divider-ribbon__edge {
  fill: none;
  vector-effect: non-scaling-stroke;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.divider-ribbon__crease {
  stroke: var(--divider-crease);
  stroke-width: 1.4;
}

.divider-ribbon__fold {
  stroke: var(--divider-fold);
  stroke-width: 1.8;
  opacity: .9;
}

.divider-ribbon__edge {
  stroke: var(--divider-edge);
  stroke-width: 1.1;
  opacity: .9;
}

@media (max-width: 960px) {
  .section-divider svg {
    height: 58px;
    transform: translateY(-42%);
  }
}

@media (max-width: 520px) {
  .section-divider svg {
    height: 48px;
  }
}
