/* Rosangela Studio Bem Estar - Landingpage v5 */

:root {
  --bg: #fff7ec;
  --paper: rgba(255, 252, 247, .78);
  --paper2: rgba(255, 255, 255, .64);
  --paper-strong: rgba(255, 252, 247, .94);
  --brown: #332016;
  --muted: #6e5c4e;
  --gold: #a96c1f;
  --gold2: #d4a455;
  --green: #1f8f52;
  --shadow: 0 26px 78px rgba(63, 39, 22, .13);
  --shadow2: 0 16px 42px rgba(63, 39, 22, .08);
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Inter', Arial, sans-serif;
  --fs-xs: clamp(.76rem, .72rem + .2vw, .88rem);
  --fs-sm: clamp(.86rem, .80rem + .25vw, .98rem);
  --fs-base: clamp(.95rem, .88rem + .32vw, 1.08rem);
  --fs-lg: clamp(1.32rem, 1.04rem + .95vw, 1.9rem);
  --fs-title: clamp(1.95rem, 1.28rem + 2.35vw, 3.25rem);
  --fs-hero: clamp(2.28rem, 1.35rem + 4vw, 4.35rem);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
  margin: 0;
  min-width: 320px;
  font-family: var(--sans);
  color: var(--brown);
  background:
    radial-gradient(circle at 8% 6%, rgba(212, 164, 85, .20), transparent 330px),
    radial-gradient(circle at 92% 4%, rgba(217, 165, 141, .16), transparent 360px),
    linear-gradient(180deg, #fffaf2 0%, #f8ead8 54%, #f2dec6 100%);
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 120px auto auto -170px;
  width: 360px;
  height: 640px;
  border-radius: 999px;
  pointer-events: none;
  opacity: .14;
  background: repeating-linear-gradient(122deg, transparent 0 26px, rgba(183, 123, 38, .22) 27px, transparent 29px);
  transform: rotate(-13deg);
  z-index: 0;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
figure { margin: 0; }
section[id] { scroll-margin-top: 96px; }

.rs-page { position: relative; z-index: 1; min-height: 100vh; padding-top: 78px; }
.rs-container { width: min(calc(100% - 48px), 1180px); margin: 0 auto; }

.rs-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(255, 250, 242, .92);
  backdrop-filter: blur(18px);
  box-shadow: 0 14px 40px rgba(63, 39, 22, .08);
}

.rs-header-row {
  min-height: 78px;
  display: grid;
  grid-template-columns: 205px 1fr auto;
  align-items: center;
  gap: 16px;
}

.rs-logo { display: grid; gap: 3px; line-height: 1; }
.rs-logo-main { font-family: var(--serif); font-size: clamp(1.55rem, 1.2rem + 1.15vw, 2rem); font-weight: 700; letter-spacing: -.055em; color: #422817; }
.rs-logo-sub { color: #8a684d; font-size: clamp(.55rem, .48rem + .2vw, .68rem); font-weight: 900; letter-spacing: .28em; text-transform: uppercase; }

.rs-nav {
  justify-self: center;
  display: flex;
  gap: 5px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .58);
  box-shadow: 0 12px 32px rgba(63, 39, 22, .05);
}

.rs-nav a {
  padding: 9px 12px;
  border-radius: 999px;
  color: #5d4b3f;
  font-size: var(--fs-xs);
  font-weight: 800;
  transition: background .22s ease, color .22s ease, transform .22s ease, box-shadow .22s ease;
}

.rs-nav a:hover { color: var(--brown); background: rgba(212, 164, 85, .14); transform: translateY(-1px); }
.rs-nav a.is-active { color: var(--brown); background: rgba(212, 164, 85, .24); box-shadow: 0 10px 22px rgba(183, 123, 38, .12); }

.rs-btn,
.rs-consult-link {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 999px;
  font-size: var(--fs-sm);
  line-height: 1;
  font-weight: 900;
  white-space: nowrap;
  cursor: pointer;
  transition: transform .28s cubic-bezier(.2,.8,.2,1), box-shadow .28s ease, background .28s ease, filter .28s ease;
}

.rs-btn::before,
.rs-consult-link::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,.34) 42%, transparent 72%);
  transform: translateX(-115%);
  transition: transform .65s cubic-bezier(.2,.8,.2,1), opacity .28s ease;
}

.rs-btn:hover,
.rs-consult-link:hover { transform: translateY(-2px); }
.rs-btn:hover::before,
.rs-consult-link:hover::before { opacity: 1; transform: translateX(115%); }

.rs-btn-primary { color: #fff; background: linear-gradient(135deg, #a96c1f, #c8943c 52%, #8f5a19); box-shadow: 0 16px 34px rgba(143,90,25,.25); }
.rs-btn-primary:hover { box-shadow: 0 22px 48px rgba(143,90,25,.34); }
.rs-btn-dark { color: #fffaf1; background: #382416; box-shadow: 0 16px 34px rgba(56,36,22,.20); }
.rs-btn-light { color: var(--brown); background: rgba(255,255,255,.84); box-shadow: 0 12px 30px rgba(63,39,22,.07); }

.rs-hero { padding: 58px 0 46px; }
.rs-hero-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(420px, .95fr); align-items: center; gap: 46px; }
.rs-kicker,
.rs-section-kicker { margin: 0 0 11px; color: #9b631c; font-size: var(--fs-xs); font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.rs-title { margin: 0; max-width: 740px; font-family: var(--serif); font-size: var(--fs-hero); line-height: .98; font-weight: 700; letter-spacing: -.055em; }
.rs-title span { color: #9b631c; }
.rs-subtitle { margin: 18px 0 0; max-width: 650px; color: #695a4f; font-size: var(--fs-base); line-height: 1.7; }
.rs-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.rs-hero-note { margin: 12px 0 0; color: #7c6a5e; font-size: var(--fs-xs); line-height: 1.5; }

.rs-choice-strip { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; margin-top: 30px; max-width: 710px; }
.rs-choice-pill { display: grid; gap: 6px; min-height: 94px; padding: 15px; border-radius: 20px; background: var(--paper); box-shadow: var(--shadow2); transition: transform .28s cubic-bezier(.2,.8,.2,1), box-shadow .28s ease, background .28s ease; }
.rs-choice-pill:hover { transform: translateY(-3px); background: var(--paper-strong); box-shadow: 0 22px 52px rgba(63,39,22,.10); }
.rs-choice-pill span { color: #9b631c; font-size: var(--fs-xs); font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.rs-choice-pill strong { color: #2f1c12; font-size: var(--fs-sm); line-height: 1.25; }

.rs-media-shell { position: relative; min-height: 540px; z-index: 1; }
.rs-hero-photo { position: absolute; inset: 0 -9vw 0 0; overflow: hidden; border-radius: 280px 0 0 280px; background: #d4ad7b; box-shadow: 0 30px 86px rgba(63,39,22,.20); }
.rs-hero-photo::before { content: ''; position: absolute; inset: 0; z-index: 2; background: linear-gradient(90deg, rgba(52,33,22,.18), rgba(52,33,22,.02) 44%, rgba(52,33,22,.20)); pointer-events: none; }
.rs-hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.rs-booking-card { position: absolute; z-index: 4; left: -12px; bottom: 28px; width: min(330px, calc(100% - 18px)); padding: 18px; border-radius: 24px; background: rgba(255,250,243,.92); backdrop-filter: blur(16px); box-shadow: 0 22px 58px rgba(63,39,22,.18); }
.rs-booking-card small { color: #8f5a19; font-size: var(--fs-xs); font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.rs-booking-card strong { display: block; margin-top: 4px; font-family: var(--serif); font-size: var(--fs-lg); line-height: 1; }

.rs-booking-list,
.rs-short-list,
.rs-about-list { display: grid; gap: 10px; margin: 16px 0; padding: 0; list-style: none; color: #5d4b3e; font-size: var(--fs-xs); line-height: 1.45; }

.rs-booking-list li,
.rs-short-list li,
.rs-about-list li { display: flex; gap: 10px; align-items: flex-start; }

.rs-check { display: inline-grid; place-items: center; flex: 0 0 20px; width: 20px; height: 20px; border-radius: 50%; color: #fff; background: var(--green); font-size: .72rem; font-weight: 900; }

.rs-section { position: relative; z-index: 1; padding: 58px 0; }
.rs-section-head { max-width: 780px; margin: 0 auto 30px; text-align: center; }
.rs-section-head-left { text-align: left; margin-left: 0; margin-right: 0; }
.rs-section-title { margin: 0; font-family: var(--serif); font-size: var(--fs-title); line-height: 1.02; font-weight: 700; letter-spacing: -.04em; }
.rs-section-text { margin: 13px auto 0; max-width: 640px; color: #6f6256; font-size: var(--fs-base); line-height: 1.68; }
.rs-section-head-left .rs-section-text { margin-left: 0; }

.rs-about-wrap,
.rs-local-wrap { background: rgba(255,252,247,.34); box-shadow: inset 0 30px 80px rgba(255,255,255,.20); }

.rs-about-grid { display: grid; grid-template-columns: minmax(300px, .82fr) minmax(0, 1.18fr); gap: 34px; align-items: center; }
.rs-about-photo { min-height: 420px; border-radius: 34px; overflow: hidden; background: #d4ad7b; box-shadow: var(--shadow); }
.rs-about-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.rs-about-card,
.rs-offer-card,
.rs-faq-item,
.rs-final-card { background: var(--paper); box-shadow: var(--shadow2); }
.rs-about-card { padding: 34px; border-radius: 30px; }
.rs-about-list strong { display: block; color: #332016; margin-bottom: 2px; }
.rs-search-intent { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin-top: 24px; }
.rs-search-intent span { min-height: 46px; display: inline-flex; align-items: center; padding: 10px 13px; border-radius: 999px; background: var(--paper2); color: #5d4b3f; font-size: var(--fs-xs); font-weight: 800; box-shadow: 0 10px 26px rgba(63,39,22,.05); }

.rs-offer-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; align-items: stretch; }
.rs-offer-card { position: relative; display: flex; flex-direction: column; min-height: 480px; padding: 28px; border-radius: 28px; overflow: hidden; transition: transform .30s cubic-bezier(.2,.8,.2,1), box-shadow .30s ease; }
.rs-offer-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.rs-offer-card::before { content: ''; position: absolute; inset: -80px -90px auto auto; width: 180px; height: 180px; border-radius: 50%; background: rgba(212,164,85,.13); }
.rs-offer-card.featured { color: #fff8ed; background: radial-gradient(circle at 80% 18%, rgba(240,215,144,.24), transparent 180px), linear-gradient(180deg, #3e2819, #65411f); box-shadow: 0 28px 86px rgba(83,52,26,.24); transform: translateY(-10px); }
.rs-offer-card.featured:hover { transform: translateY(-14px); box-shadow: 0 34px 96px rgba(83,52,26,.30); }
.rs-ribbon { position: absolute; top: 18px; right: 18px; padding: 8px 10px; border-radius: 999px; color: #382416; background: linear-gradient(135deg, #f0d790, #d6a955); font-size: .68rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.rs-card-type { position: relative; margin: 0; padding-right: 110px; color: #9b631c; font-size: var(--fs-xs); font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.rs-offer-card.featured .rs-card-type { color: #f0d790; }
.rs-offer-title { position: relative; margin: 18px 0 0; font-family: var(--serif); font-size: var(--fs-lg); line-height: 1.04; letter-spacing: -.04em; }
.rs-for { position: relative; margin: 16px 0 18px; color: #6f6256; font-size: var(--fs-sm); line-height: 1.6; }
.rs-offer-card.featured .rs-for { color: #f0e4d8; }
.rs-price-box { position: relative; display: grid; gap: 10px; margin-bottom: 18px; }
.rs-price-line { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 14px; padding: 14px 15px; border-radius: 18px; background: var(--paper2); box-shadow: inset 0 0 24px rgba(255,255,255,.18); }
.rs-offer-card.featured .rs-price-line { background: rgba(255,255,255,.09); }
.rs-price-line span { color: #66564b; font-size: var(--fs-xs); font-weight: 800; }
.rs-offer-card.featured .rs-price-line span { color: #eaded1; }
.rs-price-line strong { font-family: var(--serif); font-size: clamp(1.42rem, 1.08rem + 1.35vw, 1.8rem); color: #2f1c12; white-space: nowrap; }
.rs-offer-card.featured .rs-price-line strong { color: #fff8ed; }
.rs-price-line.is-special { background: linear-gradient(135deg, rgba(240,213,141,.34), rgba(255,255,255,.64)); }
.rs-offer-card.featured .rs-price-line.is-special { background: rgba(240,215,144,.14); }
.rs-price-line span em { display: block; margin-top: 4px; color: #9b631c; font-size: .68rem; font-style: normal; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.rs-offer-card.featured .rs-price-line span em { color: #f0d790; }
.rs-consult-link { min-height: 34px; padding: 8px 12px; color: #fff; background: linear-gradient(135deg, #a96c1f, #c8943c); font-size: var(--fs-xs); box-shadow: 0 10px 22px rgba(143,90,25,.18); }
.rs-offer-card.featured .rs-consult-link { background: linear-gradient(135deg, #d6a955, #a96c1f); }
.rs-special-copy { position: relative; margin: -5px 0 18px; padding: 11px 13px; border-radius: 16px; background: rgba(255,255,255,.45); color: #5d4b3f; font-size: var(--fs-xs); line-height: 1.48; font-weight: 750; }
.rs-offer-card.featured .rs-special-copy { background: rgba(255,255,255,.08); color: #fff4e3; }
.rs-single-price { position: relative; display: grid; place-items: center; min-height: 108px; margin-bottom: 18px; border-radius: 22px; background: var(--paper2); text-align: center; }
.rs-single-price strong { font-family: var(--serif); font-size: clamp(2.15rem, 1.45rem + 2.65vw, 3.05rem); line-height: .9; color: #2f1c12; }
.rs-single-price span { display: block; margin-top: 8px; color: #66564b; font-size: var(--fs-xs); font-weight: 800; }
.rs-offer-card .rs-btn { position: relative; margin-top: auto; width: 100%; }
.rs-offer-card.featured .rs-short-list,
.rs-offer-card.featured .rs-short-list span:not(.rs-check) { color: #fff8ed; }
.rs-offer-card.featured .rs-check { background: #f0d790; color: #342113; box-shadow: 0 8px 18px rgba(0,0,0,.16); }


.rs-services-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.rs-services-grid article { min-height: 132px; padding: 18px; border-radius: 22px; background: rgba(255,255,255,.62); box-shadow: var(--shadow2); }
.rs-services-grid strong { display: block; color: #332016; font-size: var(--fs-sm); line-height: 1.3; }
.rs-services-grid span { display: block; margin-top: 8px; color: #6f6256; font-size: var(--fs-xs); line-height: 1.5; }

.rs-map-grid { display: grid; grid-template-columns: minmax(0, .95fr) minmax(420px, 1.05fr); gap: 24px; align-items: stretch; }
.rs-map-card,
.rs-map-frame,
.rs-review-slide,
.rs-gallery-item { border-radius: 28px; background: var(--paper); box-shadow: var(--shadow2); overflow: hidden; }

.rs-map-card { padding: 28px; display: flex; flex-direction: column; gap: 18px; }
.rs-address-line { margin: 0; color: #4e3a2c; font-size: var(--fs-base); line-height: 1.7; font-weight: 750; }
.rs-address-line span { display: block; margin-top: 8px; color: #776557; font-size: var(--fs-sm); font-weight: 500; }
.rs-hours-card { padding: 16px; border-radius: 18px; background: rgba(255,255,255,.64); box-shadow: inset 0 0 24px rgba(255,255,255,.18); }
.rs-hours-card strong { display: block; margin-bottom: 8px; color: #332016; font-size: var(--fs-sm); }
.rs-hours-card p { margin: 4px 0; color: #6f6256; font-size: var(--fs-xs); }
.rs-location-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: auto; }
.rs-map-frame { min-height: 440px; position: relative; }
.rs-map-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

.rs-review-rating {
  width: fit-content;
  margin: -8px auto 28px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,.62);
  box-shadow: var(--shadow2);
}

.rs-review-rating strong { font-size: clamp(1.6rem, 1.2rem + 1.5vw, 2.4rem); line-height: 1; color: #4e3320; }
.rs-review-rating span { color: #f5ae00; letter-spacing: .02em; font-size: clamp(1.1rem, 1rem + .6vw, 1.55rem); }
.rs-review-rating em { color: #6e5c4e; font-style: normal; font-size: var(--fs-sm); font-weight: 800; }

.rs-review-shell { position: relative; display: grid; gap: 12px; padding: 0 48px 28px; }
.rs-review-viewport { overflow: hidden; border-radius: 28px; }
.rs-review-track { display: flex; will-change: transform; transition: transform .48s cubic-bezier(.2,.8,.2,1); }

.rs-review-slide {
  flex: 0 0 100%;
  min-height: unset;
  padding: clamp(22px, 3vw, 34px);
  background:
    radial-gradient(circle at 78% 18%, rgba(240, 215, 144, .20), transparent 160px),
    linear-gradient(135deg, rgba(62, 40, 25, .96), rgba(101, 65, 31, .96));
  color: #fff8ed;
  box-shadow: 0 28px 86px rgba(83,52,26,.22);
}

.rs-review-meta { display: flex; flex-wrap: wrap; align-items: baseline; gap: 10px; }
.rs-review-meta strong { font-size: var(--fs-base); }
.rs-review-meta span { color: #d8c3af; font-size: var(--fs-xs); font-weight: 700; }
.rs-stars { margin: 14px 0 14px; color: #f5ae00; font-size: clamp(1.1rem, 1rem + .6vw, 1.55rem); letter-spacing: .04em; }
.rs-review-slide p { margin: 0; max-width: 820px; color: #fff3e5; font-size: clamp(.98rem, .92rem + .28vw, 1.12rem); line-height: 1.68; }
.rs-review-slide a {
  width: fit-content;
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 10px 16px;
  border-radius: 999px;
  color: #342113;
  background: linear-gradient(135deg, #f0d790, #d6a955);
  font-size: var(--fs-sm);
  font-weight: 900;
  box-shadow: 0 14px 34px rgba(0,0,0,.16);
  transition: transform .24s ease, filter .24s ease;
}
.rs-review-slide a:hover { transform: translateY(-2px); filter: brightness(1.04); }

.rs-carousel-btn {
  position: absolute;
  top: calc(50% - 30px);
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,250,242,.94);
  color: #4e3320;
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 16px 34px rgba(63,39,22,.16);
  transition: transform .22s ease, box-shadow .22s ease;
}
.rs-carousel-btn:hover { transform: translateY(-2px); box-shadow: 0 20px 44px rgba(63,39,22,.20); }
.rs-carousel-prev { left: 0; }
.rs-carousel-next { right: 0; }

.rs-carousel-dots { display: flex; justify-content: center; gap: 8px; }
.rs-carousel-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(143,90,25,.28);
  cursor: pointer;
  transition: width .24s ease, background .24s ease;
}
.rs-carousel-dot.is-active { width: 26px; background: rgba(143,90,25,.82); }

.rs-gallery-grid { display: grid; grid-template-columns: 1.15fr .85fr .85fr; grid-auto-rows: 230px; gap: 16px; }
.rs-gallery-item { position: relative; min-height: 220px; transition: transform .28s cubic-bezier(.2,.8,.2,1), box-shadow .28s ease; }
.rs-gallery-item:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.rs-gallery-item:first-child { grid-row: span 2; }
.rs-gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.rs-gallery-item::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(47,28,18,.26)); pointer-events: none; }

.rs-faq-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 34px; align-items: start; }
.rs-faq-list { display: grid; gap: 12px; }
.rs-faq-item { border-radius: 18px; overflow: hidden; transition: box-shadow .28s ease, background .28s ease; }
.rs-faq-item:hover,
.rs-faq-item.is-open { background: var(--paper-strong); box-shadow: 0 18px 42px rgba(63,39,22,.08); }
.rs-faq-trigger { width: 100%; display: grid; grid-template-columns: 1fr 32px; align-items: center; gap: 16px; padding: 18px 20px; border: 0; background: transparent; color: #322116; text-align: left; font: inherit; font-weight: 850; cursor: pointer; }
.rs-faq-icon { position: relative; width: 32px; height: 32px; border-radius: 999px; background: rgba(212,164,85,.18); transition: transform .28s cubic-bezier(.2,.8,.2,1), background .28s ease; }
.rs-faq-icon::before,
.rs-faq-icon::after { content: ''; position: absolute; left: 50%; top: 50%; width: 12px; height: 2px; border-radius: 99px; background: #9b631c; transform: translate(-50%,-50%); transition: transform .28s ease, opacity .28s ease; }
.rs-faq-icon::after { transform: translate(-50%,-50%) rotate(90deg); }
.rs-faq-item.is-open .rs-faq-icon { background: rgba(183,123,38,.24); transform: rotate(180deg); }
.rs-faq-item.is-open .rs-faq-icon::after { opacity: 0; }
.rs-faq-panel { display: grid; grid-template-rows: 0fr; opacity: 0; transition: grid-template-rows .34s cubic-bezier(.2,.8,.2,1), opacity .26s ease; }
.rs-faq-item.is-open .rs-faq-panel { grid-template-rows: 1fr; opacity: 1; }
.rs-faq-panel-inner { overflow: hidden; }
.rs-faq-panel p { margin: 0; padding: 0 20px 18px; color: #6f6256; line-height: 1.65; font-size: var(--fs-sm); }

.rs-final { padding: 32px 0 70px; }
.rs-final-card { position: relative; display: grid; grid-template-columns: 260px 1fr auto; align-items: center; gap: 32px; padding: 26px; border-radius: 34px; overflow: hidden; }
.rs-final-photo { position: relative; z-index: 1; height: 150px; border-radius: 999px; overflow: hidden; background: #d4ad7b; box-shadow: 0 18px 45px rgba(63,39,22,.12); }
.rs-final-photo img { width: 100%; height: 100%; object-fit: cover; }
.rs-final-copy { position: relative; z-index: 1; }
.rs-final-copy h2 { margin: 0; max-width: 600px; font-family: var(--serif); font-size: clamp(1.85rem, 1.25rem + 2.3vw, 3rem); line-height: 1.02; letter-spacing: -.045em; }
.rs-final-copy h2 span { color: #9b631c; }
.rs-final-copy p { margin: 12px 0 0; color: #6e5c4e; font-size: var(--fs-base); line-height: 1.6; }
.rs-final-pills { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 16px; }
.rs-final-pill { display: inline-flex; align-items: center; min-height: 38px; padding: 8px 12px; border-radius: 999px; background: var(--paper2); color: #5d4b3e; font-size: var(--fs-xs); font-weight: 750; }
.rs-final-action { position: relative; z-index: 1; }

.rs-footer { position: relative; z-index: 1; padding: 28px 0; background: rgba(255,250,242,.72); box-shadow: inset 0 18px 50px rgba(255,255,255,.24); }
.rs-footer-grid { display: grid; grid-template-columns: 230px 1fr auto; gap: 28px; align-items: center; color: #746357; font-size: var(--fs-xs); line-height: 1.55; }
.rs-footer-center { text-align: center; }
.rs-footer-right { text-align: right; }

.rs-mobile-bar { position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 10000; display: none; gap: 10px; padding: 10px; border-radius: 999px; background: rgba(255,250,242,.94); backdrop-filter: blur(16px); box-shadow: 0 18px 46px rgba(63,39,22,.20); }
.rs-mobile-bar .rs-btn { flex: 1; min-height: 46px; padding-inline: 12px; font-size: clamp(.78rem, 2.8vw, .88rem); }

@media (max-width: 1120px) {
  .rs-container { width: min(calc(100% - 32px), 940px); }
  .rs-header-row { grid-template-columns: 210px 1fr; }
  .rs-nav { display: none; }
  .rs-header .rs-btn { justify-self: end; }
  .rs-hero-grid { grid-template-columns: 1fr; gap: 30px; }
  .rs-media-shell { min-height: 470px; }
  .rs-hero-photo { inset: 0; border-radius: 42px; }
  .rs-booking-card { left: 18px; bottom: 18px; }
  .rs-choice-strip,
  .rs-about-grid,
  .rs-offer-grid,
  .rs-services-grid,
  .rs-map-grid,
  .rs-gallery-grid,
  .rs-faq-grid,
  .rs-final-card,
  .rs-footer-grid { grid-template-columns: 1fr; }
  .rs-gallery-item:first-child { grid-row: span 1; }
  .rs-gallery-grid { grid-auto-rows: 240px; }
  .rs-map-frame { min-height: 340px; }
  .rs-about-photo { min-height: 340px; }
  .rs-offer-card.featured,
  .rs-offer-card.featured:hover { transform: none; }
  .rs-final-photo { width: min(330px,100%); }
  .rs-footer-grid,
  .rs-footer-right { text-align: center; }
  .rs-footer .rs-logo { margin: 0 auto; }
}

@media (max-width: 720px) {
  html { scroll-padding-top: 12px; }
  .rs-header { position: relative; box-shadow: 0 10px 28px rgba(63,39,22,.06); }
  .rs-page { padding-top: 0; }
  .rs-container { width: min(calc(100% - 24px), 560px); }
  .rs-header-row { min-height: 70px; grid-template-columns: 1fr; }
  .rs-header .rs-btn { display: none; }
  .rs-hero { padding: 34px 0 28px; }
  .rs-title { font-size: clamp(2.08rem, 10.6vw, 3.2rem); }
  .rs-hero-actions { flex-direction: column; }
  .rs-hero-actions .rs-btn { width: 100%; }
  .rs-media-shell { min-height: 480px; }
  .rs-booking-card { width: auto; right: 14px; left: 14px; }
  .rs-section { padding: 44px 0; }
  .rs-about-card { padding: 24px; }
  .rs-search-intent { grid-template-columns: 1fr; }
  .rs-offer-card { min-height: auto; }
  .rs-services-grid article { min-height: auto; }
  .rs-review-shell { position: relative; display: grid; gap: 12px; padding: 0 48px 28px; }
  .rs-carousel-btn { top: auto; bottom: -2px; width: 40px; height: 40px; font-size: 1.7rem; }
  .rs-carousel-prev { left: 0; }
  .rs-carousel-next { right: 0; }
  .rs-review-slide { padding: 22px; }
  .rs-final { padding-bottom: 94px; }
  .rs-final-card { padding: 18px; border-radius: 26px; }
  .rs-mobile-bar { display: flex; }
}


/* Proteção da galeria: evita card branco/alt text quando uma imagem externa falhar. */
.rs-gallery-item.is-image-failed {
  background:
    radial-gradient(circle at 24% 20%, rgba(240, 215, 144, .34), transparent 210px),
    linear-gradient(135deg, rgba(62, 40, 25, .94), rgba(101, 65, 31, .92));
}

.rs-gallery-item.is-image-failed::before {
  content: 'Imagem em atualização';
  position: absolute;
  inset: auto 18px 18px 18px;
  z-index: 2;
  color: #fff8ed;
  font-size: var(--fs-xs);
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
