/* =========================================================================
   VanGogh by OlaMar — style.css
   Estático, sem frameworks. Mobile-first. Direção: painterly praiano.
   ========================================================================= */

/* ---------- Fonts (locais, woff2) ---------- */
@font-face {
  font-family: "Caviar Dreams";
  src: url("../fonts/CaviarDreams.woff2") format("woff2");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Caviar Dreams";
  src: url("../fonts/CaviarDreams-Bold.woff2") format("woff2");
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Caviar Dreams";
  src: url("../fonts/CaviarDreams-Italic.woff2") format("woff2");
  font-weight: 400; font-style: italic; font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
  --c-ink: #1A2E2C;
  --c-ink-soft: #46554F;
  --c-teal: #1B8A85;
  --c-teal-deep: #0C5B57;
  --c-teal-darker: #084744;
  --c-orange: #DD7A2B;
  --c-orange-deep: #B0561A;
  --c-amber: #F2B53E;
  --c-sand: #FBF5EA;
  --c-sand-2: #F3E9D7;
  --c-cream: #FFFDF8;
  --c-sea: #1C6E8C;
  --c-line: #E7DcC8;
  --c-white: #ffffff;

  --shadow-sm: 0 2px 10px rgba(26, 46, 44, .06);
  --shadow-md: 0 14px 36px -16px rgba(12, 46, 44, .28);
  --shadow-lg: 0 28px 60px -24px rgba(12, 46, 44, .38);

  --radius: 14px;
  --radius-lg: 22px;
  --maxw: 1180px;
  --gutter: clamp(1.4rem, 4.5vw, 2.75rem);
  --header-h: 72px;

  --font-display: "Caviar Dreams", "Segoe UI", system-ui, sans-serif;
  --font-body: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* canvas/paper texture (subtle) */
  --paper: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: calc(var(--header-h) + 12px); }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  color: var(--c-ink);
  background-color: var(--c-sand);
  background-image: var(--paper);
  background-blend-mode: multiply;
  line-height: 1.7;
  font-size: 1.02rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
:focus-visible {
  outline: 3px solid var(--c-orange);
  outline-offset: 3px;
  border-radius: 4px;
}
::selection { background: var(--c-amber); color: var(--c-ink); }

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 1200;
  background: var(--c-teal-deep); color: #fff; padding: .7rem 1.1rem;
  border-radius: 10px; transition: top .2s ease; font-weight: 700;
}
.skip-link:focus { top: 12px; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.08; color: var(--c-teal-deep); letter-spacing: -0.01em; }
h1 { font-size: clamp(2.5rem, 6.8vw, 5.2rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2.05rem, 5vw, 3.6rem); letter-spacing: -0.018em; }
h3 { font-size: clamp(1.25rem, 2.4vw, 1.6rem); }
p { max-width: 62ch; }
strong { font-weight: 700; color: var(--c-teal-deep); }
.italic { font-style: italic; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(3.6rem, 9vw, 7rem); position: relative; }
.bg-sand { background-color: var(--c-sand); }
.bg-sand-2 { background-color: var(--c-sand-2); }
.bg-cream { background-color: var(--c-cream); }
.bg-teal { background-color: var(--c-teal-deep); color: #fff; }
.bg-teal h2, .bg-teal h3 { color: #fff; }

/* Eyebrow with amber "sun" */
.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--font-body); font-weight: 700; font-size: .8rem;
  letter-spacing: .18em; text-transform: uppercase; color: var(--c-orange-deep);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: ""; width: 16px; height: 16px; border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, var(--c-amber), var(--c-orange) 120%);
  box-shadow: 0 0 0 4px rgba(242,181,62,.22);
  flex: 0 0 auto;
}
.bg-teal .eyebrow { color: var(--c-amber); }

/* Brush underline under section titles */
.title-brush { position: relative; display: inline-block; padding-bottom: .35em; }
.title-brush::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: clamp(120px, 40%, 220px); height: 14px;
  background: no-repeat center/contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 220 16'%3E%3Cpath d='M3 10C45 3 75 14 115 8s78-7 102 0' fill='none' stroke='%23DD7A2B' stroke-width='5' stroke-linecap='round'/%3E%3C/svg%3E");
}
.bg-teal .title-brush::after { filter: saturate(1.2) brightness(1.4); }

.section-head { max-width: 60ch; margin-bottom: clamp(2rem, 4vw, 3.2rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.lead { font-size: clamp(1.02rem, 1.6vw, 1.18rem); color: var(--c-ink-soft); margin-top: 1rem; max-width: 56ch; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .92em 1.6em; border-radius: 999px; font-weight: 700; font-size: 1rem;
  border: 2px solid transparent; line-height: 1; text-align: center;
  transition: transform .18s ease, box-shadow .25s ease, background-color .2s ease, color .2s ease;
  will-change: transform;
}
.btn svg { width: 1.1em; height: 1.1em; }
.btn-primary {
  background: linear-gradient(135deg, var(--c-orange) 0%, var(--c-orange-deep) 100%);
  color: #fff; box-shadow: 0 12px 24px -10px rgba(176,86,26,.7);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 30px -12px rgba(176,86,26,.8); }
.btn-secondary { background: var(--c-teal-deep); color: #fff; }
.btn-secondary:hover { transform: translateY(-2px); background: var(--c-teal-darker); }
.btn-ghost { background: transparent; color: var(--c-teal-deep); border-color: var(--c-teal-deep); }
.btn-ghost:hover { background: var(--c-teal-deep); color: #fff; transform: translateY(-2px); }
.btn-on-dark { background: #fff; color: var(--c-teal-deep); }
.btn-on-dark:hover { transform: translateY(-2px); background: var(--c-sand); }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }
.btn-outline-light:hover { background: rgba(255,255,255,.12); transform: translateY(-2px); }
.btn-lg { font-size: 1.06rem; padding: 1.05em 2em; }

/* ---------- Header ---------- */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 1000; height: var(--header-h);
  display: flex; align-items: center;
  transition: background-color .3s ease, box-shadow .3s ease, height .3s ease;
}
.header.scrolled {
  background: rgba(251,245,234,.92);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid var(--c-line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; width: 100%; }

.brand { display: flex; align-items: center; gap: .6rem; }
.brand img { width: 38px; height: 38px; }
.brand-name { display: flex; flex-direction: column; line-height: 1; }
.brand-name .b1 { font-family: var(--font-display); font-weight: 700; font-size: 1.16rem; color: #fff; letter-spacing: .01em; }
.brand-name .b2 { font-family: var(--font-body); font-weight: 600; font-size: .62rem; letter-spacing: .22em; text-transform: uppercase; color: rgba(255,255,255,.85); }
.header.scrolled .brand-name .b1 { color: var(--c-teal-deep); }
.header.scrolled .brand-name .b2 { color: var(--c-orange-deep); }

.nav { display: none; }
.nav ul { list-style: none; display: flex; align-items: center; gap: clamp(.8rem, 2vw, 1.7rem); padding: 0; }
.nav a {
  font-weight: 600; font-size: .95rem; color: #fff; padding: .4rem 0; position: relative;
  text-shadow: 0 1px 8px rgba(8,71,68,.35);
}
.nav a::after { content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0; background: var(--c-amber); transition: width .25s ease; }
.nav a:hover::after, .nav a.active::after { width: 100%; }
.header.scrolled .nav a { color: var(--c-ink); text-shadow: none; }
.header.scrolled .nav a:hover { color: var(--c-teal-deep); }

.header-actions { display: flex; align-items: center; gap: .7rem; }

/* Language switcher */
.lang { display: flex; align-items: center; gap: .15rem; background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.32); border-radius: 999px; padding: .2rem; }
.header.scrolled .lang { background: rgba(12,91,87,.08); border-color: var(--c-line); }
.lang a { font-size: .8rem; font-weight: 700; padding: .25rem .55rem; border-radius: 999px; color: #fff; line-height: 1; display: inline-flex; align-items: center; gap: .25rem; }
.header.scrolled .lang a { color: var(--c-ink); }
.lang a[aria-current="true"] { background: var(--c-amber); color: var(--c-ink); }
.lang .flag { width: 20px; height: 14px; border-radius: 2px; display: block; flex: 0 0 auto; box-shadow: 0 0 0 1px rgba(0,0,0,.06); }

.header .btn { padding: .62em 1.1em; font-size: .9rem; }
.cta-header { display: none; }

/* Hamburger */
.nav-toggle {
  display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.32);
  border-radius: 12px; padding: 0 10px;
}
.header.scrolled .nav-toggle { background: rgba(12,91,87,.06); border-color: var(--c-line); }
.nav-toggle span { height: 2px; width: 100%; background: #fff; border-radius: 2px; transition: transform .25s ease, opacity .2s ease; }
.header.scrolled .nav-toggle span { background: var(--c-teal-deep); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu panel */
.mobile-menu {
  position: fixed; inset: var(--header-h) 0 0 0; z-index: 999;
  background: var(--c-sand); background-image: var(--paper); background-blend-mode: multiply;
  padding: 1.6rem var(--gutter) 2.4rem; display: flex; flex-direction: column; gap: .3rem;
  transform: translateX(100%); transition: transform .32s cubic-bezier(.4,0,.2,1);
  overflow-y: auto; visibility: hidden;
}
.mobile-menu.open { transform: translateX(0); visibility: visible; }
.mobile-menu a.m-link {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--c-teal-deep);
  padding: .7rem 0; border-bottom: 1px solid var(--c-line);
}
.mobile-menu .m-actions { margin-top: 1.4rem; display: flex; flex-direction: column; gap: .8rem; }
.mobile-menu .lang { align-self: flex-start; background: rgba(12,91,87,.08); border-color: var(--c-line); }
.mobile-menu .lang a { color: var(--c-ink); }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center;
  padding-top: calc(var(--header-h) + 2.5rem); padding-bottom: clamp(5rem, 12vh, 8rem);
  color: #fff; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg picture { display: block; width: 100%; height: 100%; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(to top, rgba(8,71,68,.86) 0%, rgba(8,71,68,.30) 42%, rgba(8,71,68,.06) 70%),
    linear-gradient(105deg, rgba(8,71,68,.55) 0%, rgba(8,71,68,.12) 55%, transparent 78%);
}
.hero-inner { max-width: 40rem; }
.hero .eyebrow { color: var(--c-amber); }
.hero h1 { color: #fff; text-shadow: 0 2px 24px rgba(8,71,68,.4); }
.hero h1 .accent { color: var(--c-amber); font-style: italic; }
.hero-sub { font-size: clamp(1.05rem, 1.9vw, 1.3rem); margin-top: 1.2rem; max-width: 38ch; color: rgba(255,255,255,.94); text-shadow: 0 1px 12px rgba(8,71,68,.45); }
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2rem; }

/* Wave at hero bottom into next (sand) section */
.hero-wave { position: absolute; left: 0; right: 0; bottom: -1px; z-index: 0; line-height: 0; pointer-events: none; }
.hero-wave svg { width: 100%; height: clamp(40px, 7vw, 90px); display: block; }
.hero-wave path { fill: var(--c-sand); }

/* ---------- Painted image frame ---------- */
.framed { position: relative; isolation: isolate; }
.framed img {
  width: 100%; border-radius: 18px 60px 18px 60px / 60px 18px 60px 18px;
  box-shadow: var(--shadow-md); position: relative; z-index: 1;
}
.framed::before {
  content: ""; position: absolute; z-index: 0; inset: auto -16px -16px auto;
  width: 64%; height: 64%; right: -16px; bottom: -16px;
  background: var(--c-amber); opacity: .9;
  border-radius: 18px 60px 18px 60px / 60px 18px 60px 18px;
}
.framed.teal::before { background: var(--c-teal); }
.framed .sun {
  position: absolute; z-index: 2; top: -22px; left: -18px; width: 66px; height: 66px; border-radius: 50%;
  background: radial-gradient(circle at 38% 34%, var(--c-amber), var(--c-orange) 130%);
  box-shadow: 0 10px 24px -8px rgba(176,86,26,.6);
}

/* ---------- Experience ---------- */
.exp-grid { display: grid; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.exp-points { list-style: none; padding: 0; margin-top: 1.6rem; display: grid; gap: 1rem; }
.exp-points li { display: flex; gap: .75rem; align-items: flex-start; }
.exp-points svg { flex: 0 0 auto; width: 26px; height: 26px; color: var(--c-orange); margin-top: 2px; }
.exp-points b { color: var(--c-teal-deep); }
.signature { font-family: var(--font-display); font-style: italic; font-size: 1.15rem; color: var(--c-teal); margin-top: 1.6rem; }

/* ---------- Suites ---------- */
.suites-grid { display: grid; gap: clamp(1.2rem, 3vw, 2rem); }
.suite-card {
  background: var(--c-cream); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid var(--c-line);
  display: flex; flex-direction: column; transition: transform .25s ease, box-shadow .3s ease;
}
.suite-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.suite-media { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.suite-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s cubic-bezier(.2,.7,.2,1); }
.suite-card:hover .suite-media img { transform: scale(1.06); }
.suite-size {
  position: absolute; top: .8rem; left: .8rem; background: rgba(251,245,234,.95);
  color: var(--c-teal-deep); font-weight: 700; font-size: .82rem; padding: .35rem .75rem; border-radius: 999px;
  box-shadow: var(--shadow-sm);
}
.suite-body { padding: 1.4rem 1.4rem 1.6rem; display: flex; flex-direction: column; flex: 1; }
.suite-body h3 { color: var(--c-teal-deep); }
.suite-profile { font-style: italic; color: var(--c-orange-deep); font-size: .92rem; margin-top: .15rem; }
.suite-desc { color: var(--c-ink-soft); margin-top: .7rem; font-size: .96rem; }
.amenities { list-style: none; padding: 0; margin: 1rem 0 1.3rem; display: flex; flex-wrap: wrap; gap: .4rem; }
.amenities li {
  font-size: .78rem; font-weight: 600; color: var(--c-teal-deep);
  background: var(--c-sand-2); padding: .3rem .65rem; border-radius: 999px;
}
.suite-body .btn { margin-top: auto; width: 100%; }

/* ---------- Diferenciais ---------- */
.feat-grid { display: grid; gap: clamp(.9rem, 2vw, 1.3rem); }
.feat-card {
  background: var(--c-cream); border: 1px solid var(--c-line); border-radius: var(--radius);
  padding: 1.5rem 1.3rem; transition: transform .22s ease, box-shadow .25s ease, border-color .25s ease;
}
.feat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); border-color: var(--c-amber); }
.feat-ico {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 1rem;
  background: linear-gradient(135deg, rgba(242,181,62,.2), rgba(221,122,43,.16));
  color: var(--c-orange-deep);
}
.feat-ico svg { width: 28px; height: 28px; }
.feat-card h3 { font-size: 1.12rem; }
.feat-card p { font-size: .92rem; color: var(--c-ink-soft); margin-top: .35rem; }

/* ---------- Gallery ---------- */
.gallery {
  display: grid; gap: .8rem; grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 1fr; grid-auto-flow: dense;
}
.g-item { position: relative; overflow: hidden; border-radius: var(--radius); aspect-ratio: 4/3; box-shadow: var(--shadow-sm); }
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.7,.2,1); }
.g-item:hover img { transform: scale(1.07); }
.g-item figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 1.4rem .9rem .7rem;
  color: #fff; font-size: .85rem; font-weight: 600; letter-spacing: .02em;
  background: linear-gradient(to top, rgba(8,71,68,.78), transparent);
  opacity: 0; transform: translateY(8px); transition: opacity .3s ease, transform .3s ease;
}
.g-item:hover figcaption, .g-item:focus-within figcaption { opacity: 1; transform: translateY(0); }
.g-wide { grid-column: span 2; aspect-ratio: 16/9; }

/* ---------- Steps (como reservar) ---------- */
.steps { display: grid; gap: clamp(1.1rem, 3vw, 2rem); counter-reset: step; }
.step { position: relative; background: var(--c-cream); border: 1px solid var(--c-line); border-radius: var(--radius-lg); padding: 2.2rem 1.5rem 1.5rem; }
.step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  font-family: var(--font-display); font-weight: 700; font-size: 2.2rem; color: var(--c-amber);
  position: absolute; top: 1rem; right: 1.2rem; line-height: 1;
}
.step h3 { font-size: 1.18rem; }
.step p { font-size: .94rem; color: var(--c-ink-soft); margin-top: .4rem; }
.steps-cta { margin-top: clamp(2rem, 4vw, 2.8rem); text-align: center; }

/* ---------- Location ---------- */
.loc-grid { display: grid; gap: clamp(1.6rem, 4vw, 3rem); align-items: stretch; }
.loc-info .addr { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: var(--c-teal-deep); margin-top: .4rem; }
.loc-near { list-style: none; padding: 0; margin: 1.4rem 0; display: grid; gap: .65rem; }
.loc-near li { display: flex; gap: .6rem; align-items: center; color: var(--c-ink-soft); }
.loc-near svg { width: 20px; height: 20px; color: var(--c-orange); flex: 0 0 auto; }
.map-wrap { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); min-height: 320px; border: 1px solid var(--c-line); }
.map-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ---------- FAQ ---------- */
.faq-list { display: grid; gap: .7rem; max-width: 820px; margin-inline: auto; }
.faq-item { background: var(--c-cream); border: 1px solid var(--c-line); border-radius: var(--radius); overflow: hidden; }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 1.1rem 1.3rem; display: flex; justify-content: space-between; gap: 1rem; align-items: center;
  font-family: var(--font-display); font-weight: 700; font-size: 1.08rem; color: var(--c-teal-deep);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .chev { flex: 0 0 auto; width: 22px; height: 22px; color: var(--c-orange); transition: transform .25s ease; }
.faq-item[open] summary .chev { transform: rotate(180deg); }
.faq-item .faq-body { padding: 0 1.3rem 1.2rem; color: var(--c-ink-soft); }
.faq-item .faq-body p { font-size: .96rem; }

/* ---------- CTA final ---------- */
.cta-final { position: relative; overflow: hidden; color: #fff; text-align: center; }
.cta-final .bg { position: absolute; inset: 0; z-index: -2; }
.cta-final .bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-final::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(160deg, rgba(8,71,68,.92), rgba(12,91,87,.82)); }
.cta-final h2 { color: #fff; }
.cta-final p { margin: 1rem auto 0; color: rgba(255,255,255,.92); }
.cta-final .hero-actions { justify-content: center; }

/* ---------- Footer ---------- */
.footer { background: var(--c-teal-darker); color: rgba(255,255,255,.82); padding-block: clamp(3rem, 6vw, 4.5rem) 0; }
.footer a { color: rgba(255,255,255,.82); }
.footer a:hover { color: var(--c-amber); }
.footer-grid { display: grid; gap: 2.2rem; }
.footer .brand-name .b1 { color: #fff; }
.footer .brand-name .b2 { color: var(--c-amber); }
.footer-about { margin-top: 1rem; font-size: .92rem; max-width: 34ch; }
.footer-social { display: flex; gap: .7rem; margin-top: 1.1rem; }
.footer-social a { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; background: rgba(255,255,255,.1); transition: background .2s ease, transform .2s ease; }
.footer-social a:hover { background: var(--c-orange); transform: translateY(-2px); }
.footer-social svg { width: 20px; height: 20px; }
.footer-col h4 { color: #fff; font-size: 1.05rem; margin-bottom: .9rem; }
.footer-col ul { list-style: none; padding: 0; display: grid; gap: .55rem; font-size: .93rem; }
.footer-contact li { display: flex; gap: .55rem; align-items: flex-start; font-size: .93rem; margin-bottom: .55rem; }
.footer-contact svg { width: 18px; height: 18px; color: var(--c-amber); flex: 0 0 auto; margin-top: 3px; }
.footer-bottom { margin-top: 2.6rem; border-top: 1px solid rgba(255,255,255,.14); padding-block: 1.3rem; }
.footer-bottom .row { display: flex; flex-direction: column; gap: .8rem; align-items: flex-start; font-size: .82rem; }
.footer-bottom .fb-copy { max-width: 72ch; }
.footer-bottom .fb-meta { display: flex; align-items: center; gap: 1.1rem; flex-wrap: wrap; }
.w3-credit { font-weight: 700; color: rgba(255,255,255,.85); letter-spacing: .02em; }
.w3-credit:hover { color: var(--c-amber); }
.footer-bottom .lang { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.2); }
.footer-bottom .lang a { color: rgba(255,255,255,.85); }

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed; right: 16px; bottom: 16px; z-index: 900;
  width: 58px; height: 58px; border-radius: 50%; background: #25D366; color: #fff;
  display: grid; place-items: center; box-shadow: 0 12px 28px -8px rgba(37,211,102,.7);
  transition: transform .2s ease;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 32px; height: 32px; }

/* ---------- Mobile fixed reserve bar ---------- */
.mobile-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 950;
  background: rgba(251,245,234,.97); backdrop-filter: blur(8px);
  border-top: 1px solid var(--c-line); padding: .6rem var(--gutter);
  box-shadow: 0 -8px 24px -16px rgba(12,46,44,.4);
  display: flex;
}
.mobile-bar .btn { width: 100%; }
@media (min-width: 760px) { .mobile-bar { display: none; } }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .btn, .suite-card, .feat-card, .g-item img, .wa-float { transition: none !important; }
}

/* ---------- Responsive ---------- */
@media (min-width: 580px) {
  .feat-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom .row { flex-direction: row; justify-content: space-between; align-items: center; }
}
@media (min-width: 760px) {
  :root { --header-h: 84px; }
  .suites-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .gallery { grid-template-columns: repeat(3, 1fr); }
  .g-tall { grid-row: span 2; aspect-ratio: 3/4; }
  .g-wide { grid-column: span 2; aspect-ratio: 16/9; }
  .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1.3fr; }
}
@media (min-width: 940px) {
  .nav { display: block; }
  .nav-toggle { display: none; }
  .cta-header { display: inline-flex; }
  .exp-grid { grid-template-columns: 1.05fr 1fr; }
  .exp-grid.reverse > :first-child { order: 2; }
  .loc-grid { grid-template-columns: 1fr 1.1fr; }
  .feat-grid { grid-template-columns: repeat(3, 1fr); }
  body { padding-bottom: 0 !important; }
}
@media (max-width: 759px) {
  body { padding-bottom: 64px; } /* room for mobile reserve bar */
  .wa-float { bottom: 76px; } /* sit above the reserve bar */
}

/* =========================================================================
   REDESIGN LAYER v2 — editorial / Awwwards (sem libs, performático)
   ========================================================================= */

/* Film grain global sutil (canvas/arte) */
body::after {
  content: ""; position: fixed; inset: 0; z-index: 1500; pointer-events: none;
  background-image: var(--paper); background-size: 220px; opacity: .035; mix-blend-mode: multiply;
}
@media (prefers-reduced-motion: reduce) { body::after { opacity: .03; } }

/* Glows orgânicos (pinceladas de luz) por seção */
.section { overflow: clip; }
.bg-sand { background-image:
  radial-gradient(120% 80% at 95% -10%, rgba(27,138,133,.07), transparent 55%),
  radial-gradient(90% 70% at -10% 110%, rgba(242,181,62,.08), transparent 55%); }
.bg-sand-2 { background-image:
  radial-gradient(90% 70% at 100% 0%, rgba(242,181,62,.13), transparent 55%),
  radial-gradient(80% 70% at 0% 100%, rgba(27,138,133,.08), transparent 55%); }

/* Scroll progress bar */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%; z-index: 1100;
  background: linear-gradient(90deg, var(--c-amber), var(--c-orange) 60%, var(--c-teal));
  transition: width .08s linear;
}
@media (prefers-reduced-motion: reduce) { .scroll-progress { transition: none; } }

/* ---------- HERO editorial ---------- */
.hero::before {
  background:
    linear-gradient(to top, rgba(8,71,68,.90) 2%, rgba(8,71,68,.34) 46%, rgba(8,71,68,.08) 74%),
    linear-gradient(102deg, rgba(8,71,68,.66) 0%, rgba(8,71,68,.18) 52%, transparent 80%);
}
.hero-inner { position: relative; z-index: 2; max-width: 46rem; }
.hero-kicker {
  display: inline-flex; align-items: center; gap: .6rem; font-weight: 700;
  font-size: clamp(.72rem, 1.4vw, .84rem); letter-spacing: .2em; text-transform: uppercase;
  color: #fff; margin-bottom: 1.1rem;
}
.hero-kicker span { color: var(--c-amber); }
.hero-kicker::before { content: ""; width: 34px; height: 2px; background: var(--c-amber); }

.hero h1 { color: #fff; text-shadow: 0 2px 28px rgba(8,71,68,.45); font-size: clamp(1.85rem, 4.1vw, 3.25rem); line-height: 1.14; letter-spacing: -0.015em; }
.hero h1 em { font-style: normal; color: var(--c-amber); }
.hero h1 .accent { color: var(--c-amber); font-style: italic; }

/* selo circular giratório */
.hero-badge {
  position: absolute; z-index: 3; top: clamp(80px, 12vh, 130px); right: clamp(20px, 6vw, 80px);
  width: clamp(96px, 13vw, 150px); aspect-ratio: 1;
}
.hero-badge svg { width: 100%; height: 100%; display: block; animation: vg-spin 26s linear infinite; }
.hero-badge .badge-text { fill: #fff; font-family: var(--font-body); font-weight: 700; font-size: 8.1px; letter-spacing: 1.5px; text-transform: uppercase; }
.hero-badge .badge-center {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  font-family: var(--font-display); font-weight: 700; color: var(--c-amber);
  font-size: clamp(1.5rem, 3vw, 2.2rem); line-height: 1; text-shadow: 0 2px 10px rgba(8,71,68,.5);
}
.hero-badge .badge-center small { font-size: .5em; }
@keyframes vg-spin { to { transform: rotate(360deg); } }

/* rótulo vertical lateral */
.hero-side {
  position: absolute; z-index: 3; right: clamp(14px, 2vw, 30px); bottom: clamp(90px, 16vh, 150px);
  writing-mode: vertical-rl; text-orientation: mixed; transform: rotate(180deg);
  font-size: .72rem; font-weight: 700; letter-spacing: .26em; text-transform: uppercase;
  color: rgba(255,255,255,.7);
}
.hero-side::after { content: ""; display: block; width: 2px; height: 46px; background: rgba(255,255,255,.5); margin: .8rem auto 0; }

/* indicador de scroll */
.hero-scroll {
  position: absolute; z-index: 3; left: 50%; transform: translateX(-50%); bottom: clamp(96px, 9vh, 110px);
  display: inline-flex; flex-direction: column; align-items: center; gap: .5rem;
  font-size: .68rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: rgba(255,255,255,.85);
}
@media (max-height: 760px) { .hero-scroll { display: none; } }
.hero-scroll .ln { width: 1px; height: 42px; background: linear-gradient(rgba(255,255,255,.8), rgba(255,255,255,0)); position: relative; overflow: hidden; }
.hero-scroll .ln::after { content: ""; position: absolute; top: -50%; left: 0; width: 100%; height: 50%; background: var(--c-amber); animation: vg-drop 1.8s ease-in-out infinite; }
@keyframes vg-drop { 0% { top: -50%; } 60%,100% { top: 100%; } }

/* entrada coreografada */
@keyframes vg-up { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }
.hero-inner > * { opacity: 0; animation: vg-up .85s cubic-bezier(.2,.7,.2,1) forwards; }
.hero-inner > *:nth-child(1) { animation-delay: .06s; }
.hero-inner > *:nth-child(2) { animation-delay: .16s; }
.hero-inner > *:nth-child(3) { animation-delay: .28s; }
.hero-inner > *:nth-child(4) { animation-delay: .40s; }
.hero-badge, .hero-side, .hero-scroll { opacity: 0; animation: vg-up 1s ease .7s forwards; }
@media (prefers-reduced-motion: reduce) {
  .hero-inner > *, .hero-badge, .hero-side, .hero-scroll { opacity: 1; animation: none; }
  .hero-badge svg, .hero-scroll .ln::after { animation: none; }
}

/* ---------- Marquee (faixa editorial) ---------- */
.marquee {
  background: var(--c-teal-deep); color: var(--c-sand); overflow: hidden;
  border-block: 1px solid rgba(255,255,255,.08); padding-block: .95rem;
  display: flex; white-space: nowrap; user-select: none;
}
.marquee-track { display: inline-flex; align-items: center; gap: 2.4rem; padding-right: 2.4rem; animation: vg-marquee 32s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee span.it { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.05rem, 2.4vw, 1.7rem); letter-spacing: .01em; }
.marquee i.dot { width: 9px; height: 9px; border-radius: 50%; background: var(--c-amber); display: inline-block; flex: 0 0 auto; }
@keyframes vg-marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* ---------- Suítes premium (catálogo editorial) ---------- */
.suite-card { position: relative; }
.suite-media { aspect-ratio: 3/2; }
.suite-card .suite-media::after {
  content: ""; position: absolute; inset: 0; opacity: 0; transition: opacity .35s ease;
  background: linear-gradient(to top, rgba(8,71,68,.55), transparent 55%);
}
.suite-card:hover .suite-media::after { opacity: 1; }
.suite-cat {
  display: inline-block; font-size: .7rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--c-orange-deep); margin-bottom: .35rem;
}
.suite-body h3 { font-size: clamp(1.45rem, 2.6vw, 1.95rem); }
.suite-size { font-size: .86rem; padding: .4rem .8rem; }
.suite-card .btn { gap: .5rem; }
.suite-card .btn svg { transition: transform .25s ease; }
.suite-card:hover .btn svg { transform: translateX(4px); }

/* ---------- Galeria editorial ---------- */
.g-item { border-radius: var(--radius); }
.g-item::after {
  content: ""; position: absolute; inset: 0; border: 1px solid rgba(255,255,255,.0);
  border-radius: inherit; transition: border-color .3s ease, box-shadow .3s ease; pointer-events: none;
}
.g-item:hover::after { border-color: rgba(255,255,255,.5); box-shadow: inset 0 0 0 6px rgba(251,245,234,.06); }
.g-item figcaption { font-family: var(--font-display); font-size: 1rem; }

/* ---------- Botão: brilho/seta ---------- */
.btn-primary { position: relative; overflow: hidden; }
.btn-primary::after {
  content: ""; position: absolute; top: 0; left: -120%; width: 60%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.35), transparent);
  transform: skewX(-18deg); transition: left .6s ease;
}
.btn-primary:hover::after { left: 130%; }
@media (prefers-reduced-motion: reduce) { .btn-primary::after { display: none; } }

/* ---------- Section head: refino tipográfico ---------- */
.section-head .lead { max-width: 56ch; }
.section-head.center .lead { margin-inline: auto; }

/* ---------- Mobile ajustes do hero novo ---------- */
@media (max-width: 760px) {
  .hero {
    min-height: auto;              /* não força tela cheia -> some o vão do topo */
    align-items: flex-start;       /* conteúdo começa logo abaixo do header */
    padding-top: calc(var(--header-h) + 1.6rem);
    padding-bottom: clamp(2.5rem, 9vw, 3.5rem);
  }
  .hero-side { display: none; }
  .hero-scroll { display: none; }
  .hero-badge { display: none; }   /* "300m" já está no título; evita sobreposição */
}
@media (min-width: 940px) {
  .hero-inner { max-width: 50rem; }
}
