/* ============================================================
   LUXE LENÇÓIS TRAVEL — style.css
   Paleta: oceano profundo · azul piscina · areia · branco · dourado
   ============================================================ */

:root {
  --ocean: #0A192F;
  --ocean-2: #10273F;
  --pool: #00B4D8;
  --pool-soft: #8FDCEA;
  --sand: #FAF6EC;
  --sand-2: #F1E8D2;
  --gold: #C5A059;
  --gold-2: #DDBE7E;
  --white: #FFFFFF;
  --ink: #13243A;
  --muted: #5C6B7A;
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Manrope', 'Segoe UI', sans-serif;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --header-h: 76px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-weight: 400;
  color: var(--ink);
  background: var(--sand);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; background: none; border: none; color: inherit; }
ul, ol { list-style: none; }
button, a, input, select, textarea { min-width: 0; }

/* Evita que textos longos criem overflow dentro de grids responsivos. */
.about__grid > *, .booking__grid > *, .quote__grid > *, .exp > *, .footer__inner > * { min-width: 0; }

::selection { background: var(--gold); color: var(--ocean); }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--ocean); color: var(--white); padding: 10px 18px;
}
.skip-link:focus { left: 12px; top: 12px; }

/* ---------- Preloader ---------- */
.preloader {
  position: fixed; inset: 0; z-index: 120;
  background: var(--ocean);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 26px;
  transition: opacity .7s var(--ease), visibility .7s;
}
.preloader__logo { width: 180px; mix-blend-mode: screen; }
.preloader__line { width: 120px; height: 1px; background: rgba(197,160,89,.25); position: relative; overflow: hidden; }
.preloader__line::after {
  content: ''; position: absolute; inset: 0; background: var(--gold);
  transform: scaleX(0); transform-origin: left; animation: loadLine 1.6s var(--ease) forwards;
}
@keyframes loadLine { to { transform: scaleX(1); } }
body.is-loaded .preloader { opacity: 0; visibility: hidden; }

/* ---------- Barra de progresso ---------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 110;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  transform: scaleX(0); transform-origin: left;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .45s var(--ease), box-shadow .45s var(--ease), backdrop-filter .45s;
}
.site-header__inner {
  max-width: 1280px; margin: 0 auto; height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 clamp(18px, 4vw, 44px);
}
.brand__logo { height: 72px; width: auto; mix-blend-mode: screen; transition: transform .4s var(--ease); }
.brand:hover .brand__logo { transform: scale(1.04); }

.main-nav { display: none; gap: 34px; }
.main-nav a {
  font-size: 13px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.82); position: relative; padding: 6px 0;
  transition: color .3s;
}
.main-nav a::after {
  content: ''; position: absolute; left: 0; bottom: 0; height: 1px; width: 100%;
  background: var(--gold); transform: scaleX(0); transform-origin: right;
  transition: transform .45s var(--ease);
}
.main-nav a:hover, .main-nav a.is-active { color: var(--white); }
.main-nav a:hover::after, .main-nav a.is-active::after { transform: scaleX(1); transform-origin: left; }

.site-header.is-scrolled {
  background: rgba(10, 25, 47, .82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 10px 40px rgba(4, 12, 24, .35);
}

.site-header__actions { display: flex; align-items: center; gap: 18px; }
.site-header__actions .btn--sm { display: none; }

.nav-toggle {
  width: 44px; height: 44px; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 7px; z-index: 102;
}
.nav-toggle span {
  display: block; width: 26px; height: 2px; background: var(--white);
  transition: transform .4s var(--ease), opacity .3s;
}
.nav-toggle.is-open span:first-child { transform: translateY(4.5px) rotate(45deg); }
.nav-toggle.is-open span:last-child { transform: translateY(-4.5px) rotate(-45deg); }

/* ---------- Menu mobile ---------- */
.mobile-menu {
  position: fixed; inset: 0; z-index: 101;
  background: rgba(10, 25, 47, .92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 40px;
  opacity: 0; visibility: hidden; transition: opacity .5s var(--ease), visibility .5s;
}
.mobile-menu.is-open { opacity: 1; visibility: visible; }
.mobile-menu__nav { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.mobile-menu__nav a {
  font-family: var(--serif); font-size: clamp(30px, 7vw, 42px); color: var(--white);
  padding: 6px 0; opacity: 0; transform: translateY(24px);
  transition: opacity .6s var(--ease), transform .6s var(--ease), color .3s;
}
.mobile-menu__nav a:hover { color: var(--gold-2); font-style: italic; }
.mobile-menu.is-open .mobile-menu__nav a { opacity: 1; transform: translateY(0); }
.mobile-menu.is-open .mobile-menu__nav a:nth-child(1) { transition-delay: .08s; }
.mobile-menu.is-open .mobile-menu__nav a:nth-child(2) { transition-delay: .14s; }
.mobile-menu.is-open .mobile-menu__nav a:nth-child(3) { transition-delay: .20s; }
.mobile-menu.is-open .mobile-menu__nav a:nth-child(4) { transition-delay: .26s; }
.mobile-menu.is-open .mobile-menu__nav a:nth-child(5) { transition-delay: .32s; }
.mobile-menu.is-open .mobile-menu__nav a:nth-child(6) { transition-delay: .38s; }
.mobile-menu__info { color: rgba(255,255,255,.55); font-size: 13px; letter-spacing: .08em; }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  padding: 17px 34px; border-radius: 100px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background-color .35s, color .35s, border-color .35s;
  position: relative; overflow: hidden;
}
.btn svg { transition: transform .35s var(--ease); }
.btn:hover svg { transform: translateX(5px); }
.btn:active { transform: scale(.97); }

.btn--gold { background: var(--gold); color: var(--ocean); }
.btn--gold::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.45) 50%, transparent 70%);
  transform: translateX(-100%); transition: transform .7s var(--ease);
}
.btn--gold:hover { background: var(--gold-2); box-shadow: 0 14px 34px rgba(197, 160, 89, .35); transform: translateY(-2px); }
.btn--gold:hover::before { transform: translateX(100%); }

.btn--ghost { border: 1px solid rgba(255,255,255,.5); color: var(--white); }
.btn--ghost:hover { border-color: var(--gold-2); color: var(--gold-2); transform: translateY(-2px); }

.btn--line { border: 1px solid rgba(19,36,58,.28); color: var(--ink); }
.btn--line:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

.btn--sm { padding: 12px 24px; font-size: 11px; }
.btn--full { width: 100%; justify-content: center; }

.btn__spinner {
  display: none; width: 16px; height: 16px; border-radius: 50%;
  border: 2px solid rgba(10,25,47,.25); border-top-color: var(--ocean);
  animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.btn.is-loading .btn__spinner { display: inline-block; }
.btn.is-loading { pointer-events: none; opacity: .85; }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100vh; min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  background: var(--ocean);
}
.hero__media { position: absolute; inset: 0; overflow: hidden; }
.hero__media::before {
  content: ''; position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1550318692-698677192cfd?auto=format&fit=crop&w=1920&q=70') center/cover no-repeat;
}
.hero__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(10,25,47,.55) 0%, rgba(10,25,47,.25) 40%, rgba(10,25,47,.72) 100%);
}
.hero__content {
  position: relative; z-index: 2; text-align: center;
  padding: 120px 22px 140px; max-width: 940px;
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  color: var(--gold-2); font-size: 12px; font-weight: 600;
  letter-spacing: .3em; text-transform: uppercase;
}
.hero__eyebrow .rule { display: inline-block; width: 52px; height: 1px; background: var(--gold); }
.hero__title {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(2.6rem, 6.5vw, 5rem);
  line-height: 1.12; color: var(--white);
  margin: 26px 0 24px; letter-spacing: -.01em;
}
.hero__title em { font-style: italic; color: var(--gold-2); }
.hero__text {
  color: rgba(255,255,255,.85); font-weight: 300;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  max-width: 620px; margin: 0 auto 44px;
}
.hero__ctas { display: flex; flex-wrap: wrap; gap: 18px; justify-content: center; }

.hero__anim { opacity: 0; transform: translateY(34px); }
body.is-loaded .hero__anim { animation: heroIn 1.1s var(--ease) forwards; }
body.is-loaded .hero__anim:nth-child(1) { animation-delay: .15s; }
body.is-loaded .hero__anim:nth-child(2) { animation-delay: .3s; }
body.is-loaded .hero__anim:nth-child(3) { animation-delay: .48s; }
body.is-loaded .hero__anim:nth-child(4) { animation-delay: .66s; }
@keyframes heroIn { to { opacity: 1; transform: translateY(0); } }

.hero__scroll {
  position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 12px;
  color: rgba(255,255,255,.6); font-size: 10px; letter-spacing: .3em; text-transform: uppercase;
  transition: color .3s;
}
.hero__scroll:hover { color: var(--gold-2); }
.hero__scroll-line { width: 1px; height: 52px; background: rgba(255,255,255,.25); position: relative; overflow: hidden; }
.hero__scroll-line::after {
  content: ''; position: absolute; top: -100%; left: 0; width: 100%; height: 100%;
  background: var(--gold-2); animation: scrollHint 2.2s var(--ease) infinite;
}
@keyframes scrollHint { 0% { top: -100%; } 60%, 100% { top: 100%; } }

/* ---------- Marquee ---------- */
.marquee { background: var(--ocean); border-top: 1px solid rgba(197,160,89,.25); overflow: hidden; padding: 18px 0; }
.marquee__track { display: flex; width: max-content; animation: marquee 36s linear infinite; }
.marquee__track span {
  font-family: var(--serif); font-style: italic; white-space: nowrap;
  color: rgba(255,255,255,.5); font-size: 15px; letter-spacing: .12em; padding-right: 12px;
}
.marquee__track i { color: var(--gold); font-style: normal; padding: 0 12px; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Layout base ---------- */
.container { max-width: 1280px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 44px); }
.section { padding: clamp(90px, 11vw, 160px) 0; scroll-margin-top: var(--header-h); }
.section--sand { background: var(--sand-2); }
.section--ocean { background: var(--ocean); color: var(--white); }

.kicker {
  font-size: 12px; font-weight: 600; letter-spacing: .3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 18px;
}
.kicker--light { color: var(--gold-2); }

.section-title {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  line-height: 1.18; letter-spacing: -.01em; margin-bottom: 22px;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-title--light { color: var(--white); }
.section-title--light em { color: var(--gold-2); }

.section-head { max-width: 720px; margin-bottom: clamp(50px, 7vw, 90px); }
.section-sub { color: var(--muted); font-size: 15px; }
.section--ocean .section-sub { color: rgba(255,255,255,.7); }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ---------- Sobre ---------- */
.about__grid { display: grid; gap: clamp(44px, 6vw, 90px); align-items: center; }
.about__media { position: relative; }
.about__figure {
  border-radius: 6px 90px 6px 6px; overflow: hidden;
  box-shadow: 0 30px 70px rgba(10,25,47,.14);
}
.about__figure img { width: 100%; height: clamp(340px, 44vw, 560px); object-fit: cover; }
.about__figure--small {
  position: absolute; right: -8%; bottom: -12%; width: 46%;
  border-radius: 6px 40px 6px 6px; border: 6px solid var(--sand);
}
.about__figure--small img { height: clamp(160px, 20vw, 260px); }
.about__badge {
  position: absolute; top: -30px; left: -22px;
  width: 132px; height: 132px; border-radius: 50%;
  background: var(--ocean); color: var(--white);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  box-shadow: 0 18px 44px rgba(10,25,47,.3);
  border: 1px solid rgba(197,160,89,.4);
}
.about__badge-num { font-family: var(--serif); font-size: 44px; color: var(--gold-2); line-height: 1; }
.about__badge-label { font-size: 10px; letter-spacing: .18em; text-transform: uppercase; text-align: center; margin-top: 4px; opacity: .8; }
.about__content p { color: var(--muted); margin-bottom: 18px; font-size: 15.5px; }
.about__content p strong { color: var(--ink); }
.about__quote {
  font-family: var(--serif); font-style: italic; font-size: clamp(1.15rem, 2vw, 1.45rem);
  color: var(--ink); border-left: 2px solid var(--gold); padding-left: 24px; margin-top: 30px;
  line-height: 1.5;
}

/* ---------- Diferenciais ---------- */
.diff-list { display: grid; gap: 0; counter-reset: diff; }
.diff-item {
  display: grid; grid-template-columns: 70px 1fr; gap: 8px 26px;
  padding: 34px 0; border-top: 1px solid rgba(19,36,58,.14);
  align-items: baseline;
  transition: padding-left .45s var(--ease), background-color .45s;
}
.diff-item:last-child { border-bottom: 1px solid rgba(19,36,58,.14); }
.diff-item:hover { padding-left: 18px; }
.diff-item__num {
  font-family: var(--serif); font-style: italic; font-size: 15px; color: var(--gold);
  grid-row: span 2;
}
.diff-item h3 { font-family: var(--serif); font-weight: 500; font-size: clamp(1.25rem, 2.4vw, 1.7rem); transition: color .3s; }
.diff-item:hover h3 { color: var(--gold); }
.diff-item p { color: var(--muted); font-size: 14.5px; max-width: 560px; }
.diff-item:nth-child(even) { margin-left: 0; }

/* ---------- Experiências ---------- */
.exp {
  display: grid; gap: clamp(28px, 4vw, 60px);
  padding: clamp(40px, 5vw, 70px) 0;
  border-top: 1px solid rgba(19,36,58,.12);
  align-items: center;
}
.exp:first-of-type { border-top: none; padding-top: 0; }
.exp__media { position: relative; overflow: hidden; border-radius: 6px 70px 6px 6px; }
.exp--reverse .exp__media { border-radius: 70px 6px 6px 6px; }
.exp__media img {
  width: 100%; height: clamp(300px, 40vw, 480px); object-fit: cover;
  transition: transform 1.1s var(--ease);
}
.exp:hover .exp__media img { transform: scale(1.05); }
.exp__tag {
  position: absolute; top: 20px; left: 20px; z-index: 2;
  background: rgba(10,25,47,.72); backdrop-filter: blur(8px);
  color: var(--gold-2); font-size: 11px; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  padding: 9px 16px; border-radius: 100px;
}
.exp__period { font-size: 12px; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 14px; }
.exp__name { font-family: var(--serif); font-weight: 500; font-size: clamp(1.8rem, 3.4vw, 2.7rem); margin-bottom: 16px; line-height: 1.15; }
.exp__desc { color: var(--muted); font-size: 15.5px; max-width: 520px; margin-bottom: 22px; }
.exp__meta { display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }
.exp__price { font-family: var(--serif); font-size: 1.5rem; color: var(--ink); }
.exp__price::before { content: ''; display: inline-block; width: 34px; height: 1px; background: var(--gold); margin-right: 12px; vertical-align: middle; }
.exp__note { font-size: 12.5px; color: var(--muted); }
.exp__open { font-size: 12px; }

/* ---------- Reservas ---------- */
.booking__grid { display: grid; gap: clamp(44px, 6vw, 90px); align-items: center; }
.booking__text { color: rgba(255,255,255,.78); margin-bottom: 16px; font-size: 15.5px; max-width: 540px; }
.booking__note {
  margin-top: 26px; padding: 18px 22px; border-left: 2px solid var(--gold);
  background: rgba(197,160,89,.08); color: var(--gold-2);
  font-size: 14.5px; font-style: italic; font-family: var(--serif);
}
.booking__visual {
  background: rgba(255,255,255,.045); border: 1px solid rgba(255,255,255,.1);
  border-radius: 6px 60px 6px 6px; padding: clamp(30px, 4vw, 52px);
}
.resv-bar { margin-bottom: 38px; }
.resv-bar__head { display: flex; align-items: baseline; gap: 16px; margin-bottom: 12px; }
.resv-bar__pct { font-family: var(--serif); font-size: clamp(2.2rem, 4vw, 3.2rem); line-height: 1; color: var(--pool-soft); }
.resv-bar__pct--gold { color: var(--gold-2); }
.resv-bar__title { font-size: 12px; letter-spacing: .24em; text-transform: uppercase; color: rgba(255,255,255,.75); font-weight: 600; }
.resv-bar__track { height: 8px; border-radius: 100px; background: rgba(255,255,255,.1); overflow: hidden; }
.resv-bar__fill {
  height: 100%; width: 0; border-radius: 100px;
  transition: width 1.5s var(--ease) .25s;
}
.resv-bar__fill--gold { background: linear-gradient(90deg, var(--gold), var(--gold-2)); }
.resv-bar__fill--pool { background: linear-gradient(90deg, var(--pool), var(--pool-soft)); }
.is-visible .resv-bar__fill { width: var(--w); }
.resv-bar__desc { margin-top: 10px; font-size: 13.5px; color: rgba(255,255,255,.6); }
.booking__cta { margin-top: 6px; }

/* ---------- Galeria ---------- */
.gallery__filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 44px; }
.gallery__filter {
  font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  padding: 11px 20px; border-radius: 100px; border: 1px solid rgba(19,36,58,.2);
  color: var(--muted); transition: all .35s var(--ease);
}
.gallery__filter:hover { border-color: var(--gold); color: var(--gold); }
.gallery__filter.is-active { background: var(--ocean); border-color: var(--ocean); color: var(--white); }

.gallery__grid { columns: 1; column-gap: 22px; }
.gallery__item {
  position: relative; break-inside: avoid; margin-bottom: 22px;
  border-radius: 6px; overflow: hidden; cursor: zoom-in;
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}
.gallery__item img { width: 100%; transition: transform 1s var(--ease); }
.gallery__item:hover img, .gallery__item:focus-visible img { transform: scale(1.06); }
.gallery__item figcaption {
  position: absolute; inset: auto 0 0 0; padding: 40px 18px 16px;
  background: linear-gradient(to top, rgba(10,25,47,.75), transparent);
  color: var(--white); font-family: var(--serif); font-style: italic; font-size: 15px;
  opacity: 0; transform: translateY(10px); transition: opacity .45s var(--ease), transform .45s var(--ease);
}
.gallery__item:hover figcaption, .gallery__item:focus-visible figcaption { opacity: 1; transform: translateY(0); }
.gallery__item.is-hidden { display: none; }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 130; background: rgba(6, 15, 28, .94);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: opacity .45s var(--ease), visibility .45s;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox__stage { max-width: min(1100px, 88vw); text-align: center; }
.lightbox__stage img {
  max-height: 78dvh; max-width: 100%; margin: 0 auto; border-radius: 6px;
  box-shadow: 0 40px 100px rgba(0,0,0,.5);
  transition: transform .5s var(--ease), opacity .4s;
}
.lightbox.is-open .lightbox__stage img { animation: lbIn .5s var(--ease); }
@keyframes lbIn { from { transform: scale(.94); opacity: 0; } }
.lightbox__stage figcaption { color: rgba(255,255,255,.7); font-family: var(--serif); font-style: italic; margin-top: 18px; }
.lightbox__close { position: absolute; top: 26px; right: 26px; color: var(--white); opacity: .7; transition: opacity .3s, transform .3s; }
.lightbox__close:hover { opacity: 1; transform: rotate(90deg); }
.lightbox__nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 56px; height: 56px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.25); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  transition: background .3s, border-color .3s;
}
.lightbox__nav:hover { background: rgba(197,160,89,.2); border-color: var(--gold); }
.lightbox__nav--prev { left: 18px; }
.lightbox__nav--next { right: 18px; }

/* ---------- Depoimentos ---------- */
.testimonials__grid { display: grid; gap: 26px; }
.testimonial {
  background: var(--white); border: 1px dashed rgba(197,160,89,.55);
  border-radius: 6px 44px 6px 6px; padding: 40px 34px;
  position: relative; transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.testimonial:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(10,25,47,.08); }
.testimonial__mark { font-family: var(--serif); font-size: 70px; color: var(--gold); line-height: .6; display: block; margin-bottom: 16px; }
.testimonial__placeholder { color: var(--muted); font-style: italic; font-family: var(--serif); font-size: 16.5px; margin-bottom: 20px; }
.testimonial__author { font-size: 12.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); font-weight: 600; }

/* ---------- Timeline cancelamento ---------- */
.timeline { position: relative; max-width: 760px; margin-left: 8px; }
.timeline::before {
  content: ''; position: absolute; left: 10px; top: 8px; bottom: 8px; width: 1px;
  background: rgba(19,36,58,.15);
}
.timeline__item { position: relative; padding: 0 0 46px 52px; }
.timeline__item:last-child { padding-bottom: 0; }
.timeline__dot {
  position: absolute; left: 0; top: 6px; width: 21px; height: 21px; border-radius: 50%;
  border: 1px solid var(--gold); background: var(--sand);
  display: flex; align-items: center; justify-content: center;
}
.timeline__dot::after {
  content: ''; width: 9px; height: 9px; border-radius: 50%; background: var(--gold);
  transform: scale(0); transition: transform .5s var(--ease) .3s;
}
.timeline__item.is-visible .timeline__dot::after { transform: scale(1); }
.timeline__content h3 { font-family: var(--serif); font-weight: 500; font-size: 1.35rem; margin-bottom: 6px; }
.timeline__content p { color: var(--muted); font-size: 15px; max-width: 520px; }
.timeline__content strong { color: var(--gold); font-size: 1.05em; }

/* ---------- Orçamento ---------- */
.quote__grid { display: grid; gap: clamp(44px, 6vw, 90px); align-items: start; }
.quote__text { color: rgba(255,255,255,.78); font-size: 15.5px; margin-bottom: 30px; max-width: 460px; }
.quote__points li {
  color: rgba(255,255,255,.85); font-size: 14.5px; padding: 12px 0 12px 30px;
  border-bottom: 1px solid rgba(255,255,255,.12); position: relative;
}
.quote__points li::before {
  content: ''; position: absolute; left: 0; top: 20px; width: 14px; height: 1px; background: var(--gold);
}
.quote__form {
  background: var(--white); color: var(--ink);
  border-radius: 6px 56px 6px 6px;
  padding: clamp(28px, 4vw, 48px);
  box-shadow: 0 40px 90px rgba(4,12,24,.4);
}
.field { margin-bottom: 22px; }
.field-row { display: grid; gap: 0 22px; }
.field label {
  display: block; font-size: 11px; font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 8px;
}
.field label small { text-transform: none; letter-spacing: 0; font-weight: 400; }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--sans); font-size: 15px; color: var(--ink);
  background: transparent; border: none; border-bottom: 1px solid rgba(19,36,58,.25);
  padding: 10px 2px 12px; outline: none; border-radius: 0;
  transition: border-color .35s;
}
.field textarea { resize: vertical; min-height: 70px; }
.field input:focus, .field select:focus, .field textarea:focus { border-bottom-color: var(--gold); }
.field.has-error input, .field.has-error select { border-bottom-color: #C0392B; }
.field__error { display: block; font-size: 12px; color: #C0392B; margin-top: 6px; min-height: 16px; }
.field__select { position: relative; }
.field__select::after {
  content: ''; position: absolute; right: 8px; top: 50%;
  width: 8px; height: 8px; border-right: 1.5px solid var(--gold); border-bottom: 1.5px solid var(--gold);
  transform: translateY(-70%) rotate(45deg); pointer-events: none;
}
.field select { appearance: none; -webkit-appearance: none; cursor: pointer; }
.quote__status { margin-top: 16px; font-size: 14px; text-align: center; min-height: 20px; }
.quote__status.is-success { color: #1E7E4A; font-weight: 600; }
.quote__status.is-error { color: #C0392B; font-weight: 600; }

/* ---------- Contato ---------- */
.contact { text-align: center; }
.contact__title {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(2.2rem, 5vw, 4rem); line-height: 1.15;
  max-width: 900px; margin: 0 auto clamp(46px, 6vw, 70px);
}
.contact__title em { font-style: italic; color: var(--gold); }
.contact__grid { display: grid; gap: 22px; margin-bottom: clamp(46px, 6vw, 70px); text-align: left; }
.contact__card {
  border-top: 1px solid var(--gold); padding-top: 24px;
  transition: transform .4s var(--ease);
}
.contact__card:hover { transform: translateY(-4px); }
.contact__card h3 {
  font-size: 11px; font-weight: 700; letter-spacing: .26em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
}
.contact__card p { color: var(--muted); font-size: 15px; }
.contact__card a { color: var(--ink); font-weight: 600; border-bottom: 1px solid rgba(197,160,89,.5); transition: color .3s, border-color .3s; }
.contact__card a:hover { color: var(--gold); border-color: var(--gold); }
.contact__ctas { display: flex; flex-wrap: wrap; gap: 18px; justify-content: center; }

/* ---------- Footer ---------- */
.footer { background: var(--ocean); color: rgba(255,255,255,.7); }
.footer__inner {
  display: grid; gap: 40px; padding-top: clamp(60px, 8vw, 100px); padding-bottom: 50px;
}
.footer__logo { height: 108px; width: auto; mix-blend-mode: screen; margin-bottom: 18px; }
.footer__brand p { font-size: 14px; }
.footer__nav { display: flex; flex-direction: column; gap: 12px; }
.footer__nav a {
  font-size: 13px; letter-spacing: .16em; text-transform: uppercase; width: fit-content;
  transition: color .3s, padding-left .3s;
}
.footer__nav a:hover { color: var(--gold-2); padding-left: 8px; }
.footer__social { display: flex; gap: 14px; align-items: flex-start; }
.footer__social a {
  width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center; color: var(--white);
  transition: background .35s, border-color .35s, transform .35s;
}
.footer__social a:hover { background: var(--gold); border-color: var(--gold); color: var(--ocean); transform: translateY(-3px); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 22px clamp(20px, 4vw, 44px);
  display: flex; flex-wrap: wrap; gap: 8px; justify-content: space-between;
  font-size: 12.5px; color: rgba(255,255,255,.45);
  max-width: 1280px; margin: 0 auto;
}
.footer__domain { color: var(--gold-2); }

/* ---------- FAB WhatsApp ---------- */
.whatsapp-fab {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 60px; height: 60px; border-radius: 50%;
  background: #22B45E; color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 14px 34px rgba(34, 180, 94, .4);
  transition: transform .35s var(--ease), box-shadow .35s;
  animation: fabIn .8s var(--ease) 1.4s backwards;
}
@keyframes fabIn { from { transform: scale(0); } }
.whatsapp-fab::after {
  content: ''; position: absolute; inset: -5px; border-radius: 50%;
  border: 1px solid rgba(34,180,94,.6); animation: fabPulse 2.4s var(--ease) infinite;
}
@keyframes fabPulse { 0% { transform: scale(.9); opacity: 1; } 100% { transform: scale(1.5); opacity: 0; } }
.whatsapp-fab:hover { transform: translateY(-4px) scale(1.05); box-shadow: 0 20px 44px rgba(34,180,94,.5); }

/* ---------- Modal experiência ---------- */
.exp-modal {
  border: none; padding: 0; border-radius: 8px 60px 8px 8px;
  max-width: min(880px, 92vw); max-height: 92dvh; width: 100%;
  background: var(--white); color: var(--ink);
  box-shadow: 0 60px 140px rgba(4,12,24,.5);
  overflow: auto;
}
.exp-modal::backdrop { background: rgba(6,15,28,.7); backdrop-filter: blur(6px); }
.exp-modal[open] { animation: modalIn .55s var(--ease); }
@keyframes modalIn { from { opacity: 0; transform: translateY(40px) scale(.97); } }
.exp-modal__close {
  position: absolute; top: 16px; right: 16px; z-index: 3;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(10,25,47,.7); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  transition: background .3s, transform .3s;
}
.exp-modal__close:hover { background: var(--gold); color: var(--ocean); transform: rotate(90deg); }
.exp-modal__media img { width: 100%; height: clamp(220px, 32vw, 340px); object-fit: cover; }
.exp-modal__body { padding: clamp(26px, 4vw, 44px); }
.exp-modal__period { font-size: 11.5px; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 10px; }
.exp-modal__title { font-family: var(--serif); font-weight: 500; font-size: clamp(1.7rem, 3.4vw, 2.4rem); margin-bottom: 10px; }
.exp-modal__price { font-family: var(--serif); font-size: 1.35rem; color: var(--ink); margin-bottom: 18px; }
.exp-modal__price::before { content: ''; display: inline-block; width: 30px; height: 1px; background: var(--gold); margin-right: 10px; vertical-align: middle; }
.exp-modal__desc { color: var(--muted); font-size: 15px; margin-bottom: 20px; }
.exp-modal__highlights { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 30px; }
.exp-modal__highlights li {
  font-size: 12px; font-weight: 600; letter-spacing: .06em;
  background: var(--sand-2); color: var(--ink);
  padding: 8px 15px; border-radius: 100px;
}
.exp-modal__cta { width: 100%; justify-content: center; }

/* ---------- Responsivo ---------- */
@media (min-width: 640px) {
  .gallery__grid { columns: 2; }
  .field-row { grid-template-columns: 1fr 1fr; }
  .testimonials__grid { grid-template-columns: repeat(2, 1fr); }
  .contact__grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 900px) {
  .main-nav { display: flex; }
  .site-header__actions .btn--sm { display: inline-flex; }
  .nav-toggle { display: none; }
  .mobile-menu { display: none; }
  .about__grid { grid-template-columns: 1fr 1.05fr; }
  .booking__grid { grid-template-columns: 1fr 1fr; }
  .quote__grid { grid-template-columns: 1fr 1.15fr; }
  .exp { grid-template-columns: 1.15fr 1fr; }
  .exp--reverse .exp__media { order: 2; }
  .exp--reverse .exp__body { order: 1; }
  .gallery__grid { columns: 3; }
  .testimonials__grid { grid-template-columns: repeat(3, 1fr); }
  .footer__inner { grid-template-columns: 1.3fr 1fr .6fr; align-items: start; }
  .diff-item:nth-child(even) { margin-left: clamp(40px, 8vw, 140px); }
  .diff-item { grid-template-columns: 90px 1fr; }
}

@media (min-width: 1200px) {
  .gallery__grid { columns: 3; }
}

@media (max-width: 899px) {
  :root { --header-h: 68px; }

  .site-header__inner { padding-inline: 16px; }
  .brand__logo { height: 60px; }
  .site-header__actions { gap: 4px; }
  .hero__content { padding: 104px 20px 128px; }
  .hero__eyebrow { max-width: 100%; justify-content: center; letter-spacing: .18em; line-height: 1.5; }
  .hero__title { font-size: clamp(2.35rem, 8vw, 4rem); }
  .hero__scroll { bottom: 22px; }

  .about__figure--small { right: 2%; bottom: -8%; width: 42%; }
  .about__badge { top: -18px; left: -8px; width: 112px; height: 112px; }
  .about__badge-num { font-size: 38px; }
  .about__badge-label { font-size: 9px; }

  .exp__period { letter-spacing: .14em; line-height: 1.5; }
  .booking__visual, .quote__form { border-radius: 6px 36px 6px 6px; }
  .footer__bottom { align-items: flex-start; }
  .footer__bottom p { overflow-wrap: anywhere; }
}

@media (max-width: 639px) {
  .container { padding-inline: 18px; }
  .section { padding-block: 76px; }
  .section-head { margin-bottom: 42px; }
  .kicker { letter-spacing: .2em; line-height: 1.5; }
  .section-title { font-size: clamp(1.9rem, 9vw, 2.65rem); }

  .hero__content { padding-inline: 18px; }
  .hero__eyebrow .rule { display: none; }
  .hero__title { margin-top: 20px; }
  .hero__text { margin-bottom: 30px; }
  .hero__ctas { width: 100%; gap: 12px; }
  .hero__ctas .btn { width: 100%; justify-content: center; }
  .hero__scroll span:first-child { white-space: nowrap; font-size: 9px; }

  .about__figure img { height: 340px; }
  .about__figure--small { width: 44%; }
  .about__figure--small img { height: 150px; }
  .about__content { padding-top: 14px; }

  .diff-item { grid-template-columns: 38px 1fr; gap: 6px 14px; padding: 26px 0; }
  .diff-item:hover { padding-left: 8px; }
  .diff-item p { grid-column: 2; }

  .exp { gap: 24px; padding-block: 38px; }
  .exp__media img { height: 250px; }
  .exp__media, .exp--reverse .exp__media { border-radius: 6px 42px 6px 6px; }
  .exp__tag { top: 14px; left: 14px; max-width: calc(100% - 28px); padding: 8px 12px; font-size: 10px; letter-spacing: .14em; }
  .exp__name { font-size: clamp(1.7rem, 8vw, 2.2rem); }
  .exp__desc { font-size: 15px; }
  .exp__price { font-size: 1.3rem; }
  .exp__open { width: 100%; justify-content: center; }

  .booking__visual { padding: 28px 22px; }
  .resv-bar__head { gap: 12px; flex-wrap: wrap; }
  .resv-bar__title { letter-spacing: .16em; }
  .booking__cta { width: 100%; justify-content: center; }

  .gallery__filters { flex-wrap: nowrap; overflow-x: auto; margin-inline: -18px; padding-inline: 18px 4px; padding-bottom: 4px; scrollbar-width: thin; }
  .gallery__filter { flex: 0 0 auto; }
  .gallery__item figcaption { opacity: 1; transform: none; }

  .lightbox__stage { max-width: calc(100vw - 32px); }
  .lightbox__stage img { max-height: 72dvh; }
  .lightbox__nav { width: 42px; height: 42px; }
  .lightbox__nav--prev { left: 8px; }
  .lightbox__nav--next { right: 8px; }
  .lightbox__close { top: 14px; right: 14px; }

  .testimonial { padding: 32px 24px; }
  .timeline { margin-left: 0; }
  .timeline__item { padding-left: 42px; }
  .quote__form { padding: 28px 22px; }
  .field-row { grid-template-columns: 1fr; }
  .contact__ctas .btn { width: 100%; justify-content: center; }
  .footer__logo { height: 88px; }
  .footer__bottom { flex-direction: column; }
  .whatsapp-fab { right: 14px; bottom: 14px; width: 54px; height: 54px; }

  .exp-modal { max-width: calc(100vw - 24px); max-height: 88dvh; border-radius: 8px 34px 8px 8px; }
  .exp-modal__media img { height: 210px; }
  .exp-modal__body { padding: 24px 20px 28px; }
  .exp-modal__period { letter-spacing: .14em; line-height: 1.5; padding-right: 28px; }
  .exp-modal__highlights li { max-width: 100%; overflow-wrap: anywhere; }
}

/* ---------- Movimento reduzido ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal, .hero__anim { opacity: 1; transform: none; }
  .is-visible .resv-bar__fill { width: var(--w); }
  .marquee__track { animation: none; }
}
