/* =========================================================
   CHALÉS 4 ESTAÇÕES
   Design premium / responsivo
   ========================================================= */

:root {
  --bg: #f7f3ec;
  --bg-soft: #fcfaf6;
  --sand: #eee5d8;
  --panel: #ffffff;

  --green: #53634d;
  --green-dark: #243126;
  --green-deep: #182119;
  --green-light: #7f9075;

  --gold: #c5a15b;
  --gold-light: #ddc58f;

  --text: #1d211d;
  --muted: #6c7069;
  --white: #ffffff;

  --border: rgba(36, 49, 38, 0.12);
  --shadow: 0 20px 60px rgba(27, 34, 27, 0.10);
  --shadow-hover: 0 28px 70px rgba(27, 34, 27, 0.16);

  --radius: 22px;
  --container: 1180px;
  --transition: 260ms ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

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

button,
a {
  font: inherit;
}

button {
  border: 0;
}

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

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

/* =========================
   HEADER
   ========================= */

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  background: rgba(24, 33, 25, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 50%;
}

.brand-text {
  display: grid;
  line-height: 1;
}

.brand-text strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 25px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand-text small {
  margin-top: 4px;
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-menu a {
  position: relative;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 600;
  transition: color var(--transition);
}

.nav-menu a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition);
}

.nav-menu a:hover {
  color: var(--white);
}

.nav-menu a:hover::after {
  transform: scaleX(1);
}

.nav-menu .nav-cta {
  padding: 11px 18px;
  color: var(--green-deep);
  background: var(--gold-light);
  border-radius: 999px;
}

.nav-menu .nav-cta:hover {
  background: var(--white);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
  transition: transform var(--transition), opacity var(--transition);
}

/* =========================
   HERO
   ========================= */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 760px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    url("../images/fundo.jpg") center center / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 24, 18, 0.86) 0%, rgba(17, 24, 18, 0.60) 48%, rgba(17, 24, 18, 0.28) 100%),
    linear-gradient(0deg, rgba(17, 24, 18, 0.48), transparent 45%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 80px;
  max-width: 850px;
  color: var(--white);
}

.eyebrow,
.section-kicker {
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
}

.hero h1 {
  max-width: 850px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(50px, 7vw, 86px);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.025em;
}

.hero-description {
  max-width: 650px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  transition: transform var(--transition), background var(--transition), color var(--transition), box-shadow var(--transition);
}

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

.btn-primary {
  color: var(--green-deep);
  background: var(--gold-light);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.14);
}

.btn-primary:hover {
  background: var(--white);
}

.btn-light-outline {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.06);
}

.btn-light-outline:hover {
  background: rgba(255, 255, 255, 0.14);
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  margin-top: 58px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.hero-highlights div {
  display: grid;
}

.hero-highlights strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 27px;
  line-height: 1;
}

.hero-highlights span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.scroll-indicator {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 30px;
  width: 22px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  transform: translateX(-50%);
}

.scroll-indicator span {
  position: absolute;
  top: 7px;
  left: 50%;
  width: 3px;
  height: 7px;
  border-radius: 999px;
  background: var(--white);
  transform: translateX(-50%);
  animation: scrollDot 1.8s infinite;
}

@keyframes scrollDot {
  0%, 100% { opacity: 0.3; transform: translate(-50%, 0); }
  50% { opacity: 1; transform: translate(-50%, 9px); }
}

/* =========================
   SECTIONS
   ========================= */

.section {
  padding: 110px 0;
}

.section-light {
  background: var(--bg-soft);
}

.section-sand {
  background: var(--sand);
}

.section-dark {
  color: var(--white);
  background: var(--green-deep);
}

.section h2 {
  max-width: 720px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(42px, 5vw, 62px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 52px;
}

.section-heading > p {
  max-width: 390px;
  color: var(--muted);
  font-size: 14px;
}

.section-heading.centered {
  display: block;
  max-width: 720px;
  margin: 0 auto 52px;
  text-align: center;
}

.section-heading.centered h2 {
  margin-inline: auto;
}

.section-heading.centered > p {
  margin: 20px auto 0;
}

.section-heading.light > p {
  color: rgba(255, 255, 255, 0.60);
}

/* =========================
   SOBRE
   ========================= */

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  align-items: center;
  gap: 90px;
}

.about-media {
  position: relative;
}

.about-media img {
  height: 620px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.image-badge {
  position: absolute;
  right: -25px;
  bottom: 30px;
  min-width: 190px;
  padding: 18px 22px;
  color: var(--white);
  background: var(--green-dark);
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.image-badge strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  line-height: 1;
}

.image-badge span {
  display: block;
  margin-top: 5px;
  color: var(--gold-light);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.about-content > p:not(.section-kicker) {
  margin-top: 20px;
  color: var(--muted);
  font-size: 15px;
}

.feature-list {
  margin-top: 32px;
}

.feature-item {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid var(--border);
}

.feature-icon {
  flex: 0 0 40px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.feature-item strong {
  display: block;
  font-size: 14px;
}

.feature-item p {
  margin-top: 2px;
  color: var(--muted);
  font-size: 14px;
}

/* =========================
   CHALÉS
   ========================= */

.accommodation-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.accommodation-card {
  overflow: hidden;
  background: var(--panel);
  border: 1px solid rgba(36, 49, 38, 0.08);
  border-radius: var(--radius);
  box-shadow: 0 10px 35px rgba(27, 34, 27, 0.06);
  transition: transform var(--transition), box-shadow var(--transition);
}

.accommodation-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-hover);
}

.card-image {
  position: relative;
  overflow: hidden;
}

.card-image img {
  height: 320px;
  object-fit: cover;
  transition: transform 600ms ease;
}

.accommodation-card:hover .card-image img {
  transform: scale(1.045);
}

.card-image > span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 7px 12px;
  color: var(--white);
  background: rgba(24, 33, 25, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  backdrop-filter: blur(8px);
}

.card-body {
  padding: 27px;
}

.card-body h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 31px;
  line-height: 1;
}

.card-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 12px;
  margin: 17px 0;
  padding: 13px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.card-specs span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
}

.card-specs span:not(:last-child)::after {
  content: "•";
  margin-left: 12px;
  color: var(--gold);
}

.card-body p {
  min-height: 76px;
  color: var(--muted);
  font-size: 13px;
}

.text-link {
  margin-top: 17px;
  padding: 0;
  color: var(--green);
  background: transparent;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
}

.text-link span {
  margin-left: 6px;
  transition: margin var(--transition);
}

.text-link:hover span {
  margin-left: 11px;
}

.airbnb-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  margin-top: 17px;
  padding: 9px 13px;
  color: var(--white);
  background: #ff5a5f;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  transition: transform var(--transition), background var(--transition), box-shadow var(--transition);
}

.airbnb-link img {
  width: 17px;
  height: 17px;
  object-fit: contain;
}

.airbnb-link:hover {
  background: #e04b50;
  box-shadow: 0 7px 18px rgba(224, 75, 80, 0.24);
  transform: translateY(-2px);
}

.airbnb-link-arrow {
  font-size: 15px;
  line-height: 1;
}

/* =========================
   EXPERIÊNCIA
   ========================= */

.experience-section {
  background: var(--green);
  color: var(--white);
}

.experience-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 80px;
}

.experience-content p:not(.section-kicker) {
  margin: 22px 0 30px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.experience-images {
  position: relative;
  min-height: 560px;
}

.experience-image {
  position: absolute;
  overflow: hidden;
  border: 7px solid rgba(255, 255, 255, 0.96);
  border-radius: 18px;
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.20);
}

.experience-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-large {
  inset: 0 24% 0 0;
}

.image-top {
  top: 25px;
  right: 0;
  width: 39%;
  height: 45%;
}

.image-bottom {
  right: 0;
  bottom: 25px;
  width: 39%;
  height: 45%;
}

/* =========================
   GALERIA
   ========================= */

.gallery-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.8fr 0.8fr;
  grid-auto-rows: 230px;
  gap: 14px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  min-width: 0;
  padding: 0;
  background: var(--sand);
  cursor: pointer;
  border-radius: 14px;
}

.gallery-item-large {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease, filter 500ms ease;
}

.gallery-item::after {
  content: "Ver imagem";
  position: absolute;
  inset: auto 14px 14px auto;
  padding: 7px 10px;
  color: var(--white);
  background: rgba(24, 33, 25, 0.72);
  border-radius: 999px;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  opacity: 0;
  transform: translateY(5px);
  transition: opacity var(--transition), transform var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.05);
  filter: brightness(0.86);
}

.gallery-item:hover::after {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   VÍDEOS
   ========================= */

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.video-card {
  padding: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--radius);
}

.video-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: 15px;
}

.video-wrapper iframe,
.video-wrapper video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}

/* =========================
   DIFERENCIAIS
   ========================= */

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(36, 49, 38, 0.12);
  border: 1px solid rgba(36, 49, 38, 0.12);
}

.benefit-card {
  min-height: 215px;
  padding: 32px;
  background: var(--sand);
}

.benefit-card span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.benefit-card h3 {
  margin-top: 24px;
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  line-height: 1;
}

.benefit-card p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
}

/* =========================
   LOCALIZAÇÃO
   ========================= */

.location-grid {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: 90px;
  align-items: center;
}

.location-content > p:not(.section-kicker) {
  max-width: 650px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 14px;
}

.location-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 35px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.location-list div {
  padding: 20px 14px 20px 0;
  border-right: 1px solid var(--border);
}

.location-list div:not(:first-child) {
  padding-left: 14px;
}

.location-list div:last-child {
  border-right: 0;
}

.location-list strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 30px;
  line-height: 1;
}

.location-list span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.btn-secondary {
  color: var(--white);
  background: var(--green-dark);
}

.btn-secondary:hover {
  background: var(--green);
}

.location-card {
  padding: 35px;
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.05), rgba(255,255,255,0)),
    var(--green-dark);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.location-card-top {
  display: flex;
  gap: 15px;
  align-items: center;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.location-pin {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--gold-light);
  border: 1px solid rgba(221, 197, 143, 0.45);
  border-radius: 50%;
  font-size: 13px;
}

.location-card-top strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 25px;
}

.location-card-top p {
  color: rgba(255, 255, 255, 0.56);
  font-size: 11px;
}

.location-address {
  padding: 25px 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.location-attractions {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.location-attractions span {
  padding: 7px 10px;
  color: var(--gold-light);
  border: 1px solid rgba(221, 197, 143, 0.22);
  border-radius: 999px;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* =========================
   RESERVAS
   ========================= */

.reservation-section {
  padding: 75px 0;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(36,49,38,0.98), rgba(36,49,38,0.90)),
    url("../images/fundo.jpg") center / cover;
}

.reservation-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.reservation-inner h2 {
  max-width: 650px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(40px, 5vw, 58px);
  line-height: 1;
}

.reservation-inner p:not(.section-kicker) {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
}

.btn-whatsapp {
  flex-shrink: 0;
  color: var(--green-deep);
  background: var(--gold-light);
}

.btn-whatsapp:hover {
  background: var(--white);
}

/* =========================
   CONTATO
   ========================= */

.contact-section {
  padding: 85px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
}

.contact-brand > p:not(.section-kicker) {
  max-width: 500px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.60);
  font-size: 14px;
}

.contact-details {
  display: grid;
}

.contact-details > * {
  padding: 19px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.contact-link {
  position: relative;
  padding-left: 43px !important;
  transition: color var(--transition), transform var(--transition);
}

.contact-link:hover {
  color: var(--gold-light);
  transform: translateX(4px);
}

.contact-icon {
  position: absolute;
  top: 21px;
  left: 0;
  width: 25px;
  height: 25px;
  fill: none;
  stroke: var(--gold-light);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.instagram-icon .instagram-dot {
  fill: var(--gold-light);
  stroke: none;
}

.contact-details span {
  display: block;
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.contact-details strong {
  display: block;
  margin-top: 4px;
  color: var(--white);
  font-size: 14px;
}

/* =========================
   FOOTER
   ========================= */

.site-footer {
  color: rgba(255, 255, 255, 0.60);
  background: #111711;
  padding: 30px 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
}

.footer-inner strong {
  color: var(--white);
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
}

.footer-inner p {
  font-size: 10px;
}

.footer-inner nav {
  display: flex;
  gap: 18px;
}

.footer-inner nav a {
  font-size: 10px;
}

.footer-inner nav a:hover {
  color: var(--white);
}

.copyright {
  text-align: right;
}

.site-credit {
  grid-column: 1 / -1;
  padding-top: 18px;
  color: rgba(255, 255, 255, 0.42);
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  font-size: 12px;
  text-align: center;
}

.site-credit a {
  display: inline-flex;
  align-items: center;
  flex-direction: column;
  vertical-align: middle;
  transition: color var(--transition);
}

.site-credit img {
  width: auto;
  height: 50px;
  max-width: 270px;
  object-fit: contain;
  border-radius: 3px;
  vertical-align: middle;
}

.site-credit a span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.70);
  font-size: 14px;
  font-weight: 400;
}

.site-credit a small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 13px;
}

.site-credit a:hover {
  opacity: 0.78;
}

/* =========================
   WHATSAPP — SOMENTE LOGO OFICIAL
   ========================= */

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  padding: 0;
  border: 0;
  outline: 0;
  color: transparent;
  background: #25d366;
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24), 0 0 0 4px rgba(37, 211, 102, 0.16);
  transition: transform var(--transition), box-shadow var(--transition);
  font-size: 0;
  line-height: 0;
  text-decoration: none;
}

/* Impede qualquer ícone/símbolo antigo de aparecer por cima da logo. */
.whatsapp-float::before,
.whatsapp-float::after {
  content: none !important;
  display: none !important;
}

.whatsapp-icon {
  display: block;
  width: 40px;
  height: 40px;
  margin: 0;
  flex: 0 0 40px;
  object-fit: contain;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28), 0 0 0 5px rgba(37, 211, 102, 0.22);
}

.whatsapp-float:focus-visible {
  outline: 3px solid var(--gold-light);
  outline-offset: 4px;
}

/* =========================
   MODAL
   ========================= */

.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 35px;
  background: rgba(8, 12, 9, 0.94);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--transition), visibility var(--transition);
}

.gallery-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.modal-content {
  width: min(1000px, calc(100% - 100px));
  max-height: calc(100vh - 80px);
  text-align: center;
}

.modal-content img {
  width: 100%;
  max-height: calc(100vh - 130px);
  object-fit: contain;
  border-radius: 10px;
}

.modal-content p {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
}

.modal-close,
.modal-prev,
.modal-next {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}

.modal-close:hover,
.modal-prev:hover,
.modal-next:hover {
  background: rgba(255, 255, 255, 0.16);
}

.modal-close {
  top: 20px;
  right: 24px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 30px;
  line-height: 1;
}

.modal-prev,
.modal-next {
  top: 50%;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  transform: translateY(-50%);
  font-size: 34px;
}

.modal-prev {
  left: 22px;
}

.modal-next {
  right: 22px;
}

.modal-prev:hover,
.modal-next:hover {
  transform: translateY(-50%) scale(1.05);
}

/* =========================
   ANIMAÇÕES
   ========================= */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   RESPONSIVO
   ========================= */

@media (max-width: 1050px) {
  .nav-menu {
    gap: 16px;
  }

  .about-grid,
  .location-grid {
    gap: 55px;
  }

  .experience-grid {
    gap: 50px;
  }

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

  .accommodation-card:last-child {
    grid-column: 1 / -1;
    max-width: calc(50% - 12px);
    width: 100%;
    justify-self: center;
  }

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

@media (max-width: 820px) {
  .container {
    width: min(var(--container), calc(100% - 28px));
  }

  .site-header {
    background: rgba(24, 33, 25, 0.96);
  }

  .header-inner {
    min-height: 72px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 12px 20px 20px;
    background: rgba(24, 33, 25, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transform: translateY(-15px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  }

  .nav-menu.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-menu a {
    padding: 13px 0;
  }

  .nav-menu a:not(.nav-cta)::after {
    display: none;
  }

  .nav-menu .nav-cta {
    margin-top: 8px;
    text-align: center;
  }

  .hero {
    min-height: 720px;
  }

  .hero-content {
    padding-top: 75px;
  }

  .hero h1 {
    font-size: clamp(48px, 12vw, 72px);
  }

  .section {
    padding: 80px 0;
  }

  .about-grid,
  .experience-grid,
  .location-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .about-grid {
    gap: 50px;
  }

  .about-media img {
    height: 520px;
  }

  .image-badge {
    right: 15px;
  }

  .experience-images {
    min-height: 500px;
  }

  .location-grid {
    gap: 45px;
  }

  .reservation-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-grid {
    gap: 45px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-inner nav {
    justify-content: center;
    flex-wrap: wrap;
  }

  .copyright {
    text-align: center;
  }
}

@media (max-width: 620px) {
  .brand img {
    width: 42px;
    height: 42px;
  }

  .brand-text strong {
    font-size: 22px;
  }

  .hero {
    min-height: 680px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(17, 24, 18, 0.88), rgba(17, 24, 18, 0.62)),
      linear-gradient(0deg, rgba(17, 24, 18, 0.48), transparent);
  }

  .hero-description {
    font-size: 14px;
  }

  .hero-actions {
    display: grid;
  }

  .hero-highlights {
    gap: 20px;
    margin-top: 42px;
  }

  .hero-highlights strong {
    font-size: 23px;
  }

  .section h2 {
    font-size: 43px;
  }

  .section-heading {
    display: block;
    margin-bottom: 35px;
  }

  .section-heading > p {
    margin-top: 18px;
  }

  .about-media img {
    height: 430px;
  }

  .accommodation-grid,
  .benefits-grid,
  .video-grid {
    grid-template-columns: 1fr;
  }

  .accommodation-card:last-child {
    grid-column: auto;
    max-width: none;
  }

  .card-image img {
    height: 280px;
  }

  .experience-images {
    min-height: 430px;
  }

  .image-large {
    inset: 0 16% 0 0;
  }

  .image-top,
  .image-bottom {
    width: 35%;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 180px;
  }

  .gallery-item-large {
    grid-column: 1 / -1;
    grid-row: span 1;
  }

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

  .location-list div,
  .location-list div:not(:first-child) {
    padding: 16px 0;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .location-list div:last-child {
    border-bottom: 0;
  }

  .location-card {
    padding: 25px;
  }

  .whatsapp-float {
    right: 15px;
    bottom: 15px;
    width: 60px;
    height: 60px;
  }

  .whatsapp-icon {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
  }

  .gallery-modal {
    padding: 18px;
  }

  .modal-content {
    width: calc(100% - 10px);
  }

  .modal-prev,
  .modal-next {
    width: 42px;
    height: 42px;
  }

  .modal-prev {
    left: 10px;
  }

  .modal-next {
    right: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

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

/* =========================
   RESERVAS AIRBNB
   ========================= */
.airbnb-section { position: relative; background: var(--bg-soft); }
.airbnb-grid { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:20px; }
.airbnb-card { position:relative; min-height:360px; padding:34px 30px 30px; overflow:hidden; background:var(--panel); border:1px solid rgba(36,49,38,.09); border-radius:var(--radius); box-shadow:0 10px 35px rgba(27,34,27,.06); transition:transform var(--transition),box-shadow var(--transition),border-color var(--transition); }
.airbnb-card::before { content:""; position:absolute; top:0; left:0; width:100%; height:3px; background:var(--gold); transform:scaleX(0); transform-origin:left; transition:transform var(--transition); }
.airbnb-card:hover { transform:translateY(-7px); box-shadow:var(--shadow-hover); border-color:rgba(36,49,38,.15); }
.airbnb-card:hover::before { transform:scaleX(1); }
.airbnb-card-icon { display:flex; align-items:center; justify-content:center; width:46px; height:46px; margin-bottom:30px; color:var(--green-deep); background:var(--sand); border:1px solid rgba(36,49,38,.08); border-radius:50%; font-family:"Cormorant Garamond",serif; font-size:18px; font-weight:600; }
.airbnb-card-content { display:flex; flex-direction:column; height:calc(100% - 76px); }
.airbnb-season { margin-bottom:9px; color:var(--green); font-size:10px; font-weight:700; letter-spacing:.16em; text-transform:uppercase; }
.airbnb-card h3 { margin-bottom:15px; color:var(--green-deep); font-family:"Cormorant Garamond",serif; font-size:30px; font-weight:600; line-height:1; }
.airbnb-card p { margin:0; color:var(--muted); font-size:13px; line-height:1.75; }
.airbnb-button { display:inline-flex; align-items:center; justify-content:space-between; gap:14px; width:100%; margin-top:auto; padding:14px 16px; color:var(--white); background:var(--green-deep); border:1px solid var(--green-deep); border-radius:6px; font-size:11px; font-weight:700; letter-spacing:.08em; text-transform:uppercase; transition:background var(--transition),transform var(--transition); }
.airbnb-button span { font-size:17px; line-height:1; transition:transform var(--transition); }
.airbnb-button:hover { color:var(--green-deep); background:var(--gold-light); border-color:var(--gold-light); transform:translateY(-2px); }
.airbnb-button:hover span { transform:translate(3px,-3px); }
.airbnb-note { display:flex; align-items:center; justify-content:center; gap:14px; max-width:760px; margin:42px auto 0; text-align:center; }
.airbnb-note > span { flex-shrink:0; padding:7px 11px; color:var(--green-deep); background:var(--sand); border-radius:4px; font-size:10px; font-weight:800; letter-spacing:.1em; text-transform:uppercase; }
.airbnb-note p { margin:0; color:var(--muted); font-size:12px; line-height:1.6; }
@media (max-width:1100px) { .airbnb-grid { grid-template-columns:repeat(2,minmax(0,1fr)); } }
@media (max-width:640px) { .airbnb-grid { grid-template-columns:1fr; gap:18px; } .airbnb-card { min-height:330px; padding:30px 25px 25px; } .airbnb-card-icon { margin-bottom:25px; } .airbnb-card h3 { font-size:28px; } .airbnb-note { align-items:flex-start; flex-direction:column; text-align:left; } }

