:root {
  --bg: #FDFCF8;
  --bg-soft: #F4ECE0;
  --ink: #1B1712;
  --ink-mid: #3B3025;
  --muted: #7D6E5C;
  --border: #E2D4C0;
  --green: #3C6B38;
  --green-soft: #EBF2E9;
  --radius: 10px;
  --ease-out: cubic-bezier(0.16,1,0.3,1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 28px; }
section { padding: 96px 0; }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem; font-weight: 600;
  padding: 14px 28px; border-radius: 8px;
  cursor: pointer; border: 2px solid transparent;
  transition: all 0.2s var(--ease-out);
  white-space: nowrap;
}
.btn-solid { background: var(--green); color: white; border-color: var(--green); }
.btn-solid:hover { background: #2e5429; border-color: #2e5429; }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--border); }
.btn-outline:hover { border-color: var(--ink); }
.btn-white { background: white; color: var(--ink); border-color: white; }
.btn-white:hover { background: rgba(255,255,255,0.88); }
.btn-white-outline { background: transparent; color: white; border-color: rgba(255,255,255,0.4); }
.btn-white-outline:hover { border-color: white; }

.kicker {
  display: block;
  font-size: 0.6875rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--green); margin-bottom: 16px;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100; padding: 22px 0;
  transition: all 0.3s;
}
nav.scrolled {
  background: rgba(253,252,248,0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 0 var(--border);
}
.nav-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 28px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: clamp(38px, 8vw, 46px); width: auto; display: block; }

.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  font-size: 0.875rem; font-weight: 500;
  color: rgba(255,255,255,0.8);
  transition: color 0.2s;
}
.nav-links a:hover { color: white; }
nav.scrolled .nav-links a { color: var(--muted); }
nav.scrolled .nav-links a:hover { color: var(--ink); }

.nav-cta {
  background: white !important; color: var(--ink) !important;
  padding: 9px 22px; border-radius: 8px; font-weight: 600 !important;
  transition: background 0.2s, color 0.2s !important;
}
nav.scrolled .nav-cta { background: var(--green) !important; color: white !important; }

.nav-hamburger {
  display: none; background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 5px; padding: 4px;
}
.nav-hamburger span {
  display: block; width: 24px; height: 2px;
  background: white; border-radius: 2px; transition: background 0.3s;
}
nav.scrolled .nav-hamburger span { background: var(--ink); }

.mobile-menu {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: var(--bg); z-index: 200; flex-direction: column;
  padding: 80px 28px 40px; gap: 8px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 1.25rem; font-weight: 700; color: var(--ink);
  padding: 14px 0; border-bottom: 1px solid var(--border);
}
.mobile-menu .close-btn {
  position: absolute; top: 22px; right: 28px;
  font-size: 1.5rem; background: none; border: none;
  cursor: pointer; color: var(--ink);
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
}

/* ── HERO ── */
.hero {
  min-height: 100vh; position: relative;
  display: flex; align-items: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('images/hero.webp');
  background-size: cover; background-position: center 35%;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    160deg,
    rgba(20,15,10,0.55) 0%,
    rgba(20,15,10,0.25) 50%,
    rgba(20,15,10,0.65) 100%
  );
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 1100px; margin: 0 auto;
  padding: 0 28px; padding-top: 80px;
}
.hero-kicker {
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.65); margin-bottom: 20px;
}
.hero-h1 {
  font-size: clamp(3rem, 7vw, 5.5rem);
  color: white; margin-bottom: 22px; max-width: 740px;
}
.hero-sub {
  font-size: 1.125rem; color: rgba(255,255,255,0.75);
  max-width: 500px; line-height: 1.65;
  margin-bottom: 40px; font-weight: 400;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.45);
  font-size: 0.625rem; letter-spacing: 0.12em; text-transform: uppercase;
  animation: scroll-bounce 2.4s ease-in-out infinite;
}
.hero-scroll-line {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
}
@keyframes scroll-bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ── STATS STRIP ── */
.stats-strip { background: var(--ink); padding: 0; }
.stats-inner {
  display: flex; align-items: stretch; justify-content: center;
}
.stat-item {
  padding: 28px 40px; text-align: center; flex: 1;
  border-right: 1px solid rgba(255,255,255,0.07);
}
.stat-item:last-child { border-right: none; }
.stat-value {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.5rem; font-weight: 800;
  color: white; letter-spacing: -0.03em; margin-bottom: 5px;
}
.stat-label {
  font-size: 0.6875rem; color: rgba(255,255,255,0.4);
  font-weight: 600; text-transform: uppercase; letter-spacing: 0.07em;
}
@media (max-width: 680px) {
  .stats-inner { flex-wrap: wrap; }
  .stat-item { flex: 1 0 50%; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .stat-item:nth-child(2n) { border-right: none; }
  .stat-item:nth-last-child(-n+2) { border-bottom: none; }
  .stat-item { padding: 22px 20px; }
}

/* ── SECTION HEADER ── */
.section-header { margin-bottom: 56px; }
.section-header h2 { font-size: clamp(1.875rem, 4vw, 2.625rem); margin-bottom: 14px; }
.section-header p { font-size: 1.0625rem; color: var(--muted); max-width: 520px; line-height: 1.7; }

/* ── O ESPAÇO ── */
.espaco-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
}
.espaco-text h2 { font-size: clamp(1.875rem, 4vw, 2.625rem); margin-bottom: 20px; }
.espaco-text p { font-size: 1.0625rem; color: var(--ink-mid); line-height: 1.85; margin-bottom: 18px; }
.espaco-text p:last-of-type { margin-bottom: 32px; }
.espaco-img { border-radius: 16px; overflow: hidden; aspect-ratio: 4/3; }
.espaco-img img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 860px) { .espaco-grid { grid-template-columns: 1fr; gap: 40px; } }

/* ── QUARTOS ── */
.quartos-bg { background: var(--bg-soft); }
.quartos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.quarto-card {
  background: var(--bg); border-radius: var(--radius);
  overflow: hidden; border: 1px solid var(--border);
}
.quarto-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.quarto-body { padding: 24px 22px; }
.quarto-name {
  font-size: 1.0625rem; font-weight: 700; color: var(--ink);
  margin-bottom: 8px; letter-spacing: -0.015em;
}
.quarto-desc { font-size: 0.875rem; color: var(--muted); line-height: 1.65; margin-bottom: 14px; }
.quarto-tag {
  display: inline-block; font-size: 0.6875rem; font-weight: 600;
  padding: 3px 10px; background: var(--green-soft);
  color: var(--green); border-radius: 4px; letter-spacing: 0.04em;
}
@media (max-width: 860px) {
  .quartos-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
}

/* ── COMODIDADES ── */
.como-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.como-item {
  padding: 20px 18px; background: var(--bg-soft);
  border-radius: var(--radius); border: 1px solid var(--border);
}
.como-icon { font-size: 1.375rem; margin-bottom: 9px; }
.como-name { font-size: 0.875rem; font-weight: 600; color: var(--ink); margin-bottom: 3px; }
.como-desc { font-size: 0.8125rem; color: var(--muted); line-height: 1.5; }
@media (max-width: 860px) { .como-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .como-grid { grid-template-columns: 1fr; } }

/* ── EXPERIÊNCIAS ── */
.exp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.exp-card {
  border-radius: 14px; overflow: hidden;
  position: relative; aspect-ratio: 3/4;
  display: block; text-decoration: none; color: inherit;
}
.exp-img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  transition: transform 0.55s var(--ease-out);
  display: block;
}
.exp-card:hover .exp-img { transform: scale(1.04); }
.exp-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,15,10,0.88) 0%, rgba(20,15,10,0.0) 55%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 28px 24px;
}
.exp-tag {
  font-size: 0.625rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.55); margin-bottom: 8px;
}
.exp-name {
  font-size: 1.25rem; font-weight: 800; color: white;
  letter-spacing: -0.02em; margin-bottom: 8px;
}
.exp-desc { font-size: 0.875rem; color: rgba(255,255,255,0.7); line-height: 1.55; }
@media (max-width: 860px) {
  .exp-grid { grid-template-columns: 1fr; }
  .exp-card { aspect-ratio: 16/9; }
}

/* ── QUEM SOMOS ── */
.quem-bg { background: var(--bg-soft); }
.quem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.quem-img { border-radius: 16px; overflow: hidden; aspect-ratio: 3/4; }
.quem-img img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }
.quem-text h2 { font-size: clamp(1.875rem, 4vw, 2.5rem); margin-bottom: 22px; }
.quem-text p { font-size: 1.0625rem; color: var(--ink-mid); line-height: 1.85; margin-bottom: 16px; }
.quem-text p:last-child { margin-bottom: 0; }
@media (max-width: 860px) {
  .quem-grid { grid-template-columns: 1fr; gap: 40px; }
  .quem-img { aspect-ratio: 16/9; }
}

/* ── REVIEW ── */
.review-section { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.review-inner { max-width: 680px; margin: 0 auto; text-align: center; }
.review-stars { font-size: 1.25rem; color: #D4961A; letter-spacing: 3px; margin-bottom: 28px; }
.review-text {
  font-size: clamp(1.25rem, 3vw, 1.75rem); font-weight: 700;
  color: var(--ink); line-height: 1.45; letter-spacing: -0.02em; margin-bottom: 24px;
}
.review-author { font-size: 0.9rem; color: var(--muted); font-weight: 500; }
.review-source {
  display: inline-block; margin-top: 6px;
  font-size: 0.75rem; color: var(--green); font-weight: 600; letter-spacing: 0.04em;
}

/* ── RESERVAR ── */
.reservar-section { background: var(--ink); text-align: center; }
.reservar-section h2 { font-size: clamp(2rem, 4vw, 3rem); color: white; margin-bottom: 14px; }
.reservar-section p {
  font-size: 1.0625rem; color: rgba(255,255,255,0.55);
  max-width: 460px; margin: 0 auto 40px; line-height: 1.65;
}
.reservar-btns {
  display: flex; justify-content: center; gap: 12px;
  flex-wrap: wrap; margin-bottom: 48px;
}
.reservar-sep {
  width: 1px; height: 44px;
  background: rgba(255,255,255,0.1); margin: 0 auto 36px;
}
.reservar-contacts { display: flex; justify-content: center; gap: 36px; flex-wrap: wrap; }
.reservar-contact {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.9375rem; color: rgba(255,255,255,0.55);
}
.reservar-contact a { color: rgba(255,255,255,0.85); }
.reservar-contact a:hover { color: white; }

/* ── ICONS ── */
svg-icon { display: inline-flex; line-height: 0; color: var(--green); }
svg-icon svg { width: 1em; height: 1em; }

/* ── BOOKING WIDGET (Holidu) ── */
booking-widget { display: block; }
.widget-wrap {
  max-width: 1280px; margin: 0 auto;
  background: #fff; border: 1px solid var(--border);
  border-radius: 16px; padding: 10px; overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
@media (max-width: 860px) { .widget-wrap { padding: 6px; border-radius: 12px; } }

/* ── FOOTER ── */
site-footer { display: block; }
footer {
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 32px 0;
}
.footer-inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 20px; flex-wrap: wrap;
}
.footer-logo { display: inline-flex; align-items: center; }
.footer-logo img { height: 52px; width: auto; display: block; }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-links a {
  font-size: 0.8125rem; color: rgba(255,255,255,0.35); font-weight: 500;
  transition: color 0.2s;
}
.footer-links a:hover { color: rgba(255,255,255,0.75); }
.footer-meta { display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.footer-copy { font-size: 0.75rem; color: rgba(255,255,255,0.25); }
.footer-credit {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 0.6875rem; font-weight: 500; letter-spacing: 0.01em;
  color: rgba(255,255,255,0.4);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 5px 12px; border-radius: 999px;
  transition: color 0.2s, border-color 0.2s;
}
.footer-credit strong { font-weight: 700; }
.footer-credit:hover { color: rgba(255,255,255,0.9); border-color: rgba(255,255,255,0.4); }

@media (max-width: 640px) {
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-meta { align-items: flex-start; }
}

/* ── INTERIOR PAGE HERO ── */
.interior-hero {
  height: 52vh; min-height: 360px; position: relative;
  display: flex; align-items: flex-end; overflow: hidden;
}
.interior-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center 35%;
}
.interior-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,15,10,0.75) 0%, rgba(20,15,10,0.2) 60%);
}
.interior-hero-content {
  position: relative; z-index: 2;
  max-width: 1100px; width: 100%; margin: 0 auto;
  padding: 0 28px 52px;
}
.interior-hero-content .kicker { color: rgba(255,255,255,0.6); }
.interior-hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  color: white; margin-bottom: 10px;
}
.interior-hero-content p {
  font-size: 1.0625rem; color: rgba(255,255,255,0.7);
  max-width: 500px; line-height: 1.6; font-weight: 400;
}

/* ── NAV OPAQUE (interior pages) ── */
nav.opaque {
  background: rgba(253,252,248,0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
nav.opaque .nav-logo { color: var(--ink); }
nav.opaque .nav-links a { color: var(--muted); }
nav.opaque .nav-links a:hover { color: var(--ink); }
nav.opaque .nav-cta { background: var(--green) !important; color: white !important; }
nav.opaque .nav-hamburger span { background: var(--ink); }

/* ── ACTIVE NAV STATE ── */
.nav-links a.active { color: var(--ink) !important; font-weight: 600; }

/* ── DROPDOWN ── */
.nav-dropdown { position: relative; }

.nav-dropdown-btn {
  display: flex; align-items: center; gap: 5px;
  font-size: 0.875rem; font-weight: 500;
  color: rgba(255,255,255,0.8);
  cursor: pointer; background: none; border: none;
  font-family: 'Inter', sans-serif; padding: 0;
  transition: color 0.2s;
}
.nav-dropdown-btn:hover { color: white; }
nav.scrolled .nav-dropdown-btn,
nav.opaque .nav-dropdown-btn { color: var(--muted); }
nav.scrolled .nav-dropdown-btn:hover,
nav.opaque .nav-dropdown-btn:hover { color: var(--ink); }
nav.scrolled .nav-dropdown-btn.active,
nav.opaque .nav-dropdown-btn.active { color: var(--ink); font-weight: 600; }

.dropdown-arrow {
  font-size: 0.55rem; line-height: 1;
  transition: transform 0.2s var(--ease-out);
  margin-top: 1px;
}
.nav-dropdown:hover .dropdown-arrow { transform: rotate(180deg); }

.nav-dropdown-menu {
  position: absolute; top: calc(100% + 10px); left: -14px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 6px;
  min-width: 230px;
  opacity: 0; pointer-events: none;
  transform: translateY(-4px);
  transition: opacity 0.18s, transform 0.18s var(--ease-out);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1), 0 2px 8px rgba(0,0,0,0.04);
  z-index: 300;
}
/* Invisible bridge fills the gap so hover chain doesn't break */
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -10px; left: 0; right: 0;
  height: 10px;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1; pointer-events: all; transform: none;
}

.dropdown-section-label {
  font-size: 0.5875rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); padding: 8px 10px 3px;
}
.nav-dropdown-menu a {
  display: block; padding: 7px 10px; border-radius: 6px;
  font-size: 0.8125rem; color: var(--ink-mid); font-weight: 500;
  transition: background 0.12s, color 0.12s;
}
.nav-dropdown-menu a:hover { background: var(--bg-soft); color: var(--green); }
.nav-dropdown-menu a.active { color: var(--green); font-weight: 600; }
.dropdown-sep { height: 1px; background: var(--border); margin: 4px 6px; }

/* ── MOBILE MENU ACCORDION ── */
.mobile-accordion-btn {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 1.25rem; font-weight: 700; color: var(--ink);
  padding: 14px 0; border-bottom: 1px solid var(--border);
  background: none; border-top: none; border-left: none; border-right: none;
  width: 100%; text-align: left; cursor: pointer; font-family: 'Plus Jakarta Sans', sans-serif;
}
.mobile-accordion-icon { font-size: 0.7rem; transition: transform 0.2s; }
.mobile-accordion-btn.open .mobile-accordion-icon { transform: rotate(180deg); }
.mobile-submenu {
  display: none; flex-direction: column; padding-left: 16px;
  border-bottom: 1px solid var(--border);
}
.mobile-submenu.open { display: flex; }
.mobile-submenu a {
  font-size: 0.9375rem; font-weight: 500; color: var(--ink-mid);
  padding: 10px 0; border-bottom: 1px solid rgba(0,0,0,0.05);
  border-radius: 0;
}
.mobile-submenu-label {
  font-size: 0.5875rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--muted); padding: 10px 0 3px;
}

/* ── REVEAL ── */
.reveal {
  opacity: 0; transform: translateY(22px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
