/* =========================
   WALTERGUIA — LANDING PAGE
   Paleta: Verde-mata + Sunset + Areia + Lagoa
   ========================= */

:root {
  --green-deep: #0e2a22;
  --green: #1a3d33;
  --green-soft: #3a8a6f;
  --sunset: #e8853c;
  --sunset-deep: #c46a23;
  --sand: #f5ecd9;
  --sand-soft: #faf5e9;
  --lagoon: #4ab0d4;
  --ink: #0a1f18;
  --muted: #6a7a72;
  --white: #ffffff;
  --shadow-lg: 0 30px 60px -20px rgba(14, 42, 34, 0.35);
  --shadow-md: 0 12px 28px -10px rgba(14, 42, 34, 0.25);
  --radius: 18px;
  --radius-sm: 12px;
  --ease: cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--sand-soft);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .3s; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
em { font-style: italic; font-family: 'Fraunces', serif; color: var(--sunset); font-weight: 600; }
::selection { background: var(--sunset); color: var(--white); }

.container { max-width: 1240px; margin: 0 auto; padding: 0 28px; }

/* ========== LOADER ========== */
.loader {
  position: fixed; inset: 0; background: var(--green-deep);
  z-index: 9999; display: flex; align-items: center; justify-content: center;
  transition: opacity .6s var(--ease), visibility .6s;
}
.loader.hide { opacity: 0; visibility: hidden; }
.loader-inner { text-align: center; }
.loader-dunes { width: 220px; height: 70px; animation: float 2.2s ease-in-out infinite; }
.loader-text { color: var(--sand); font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 28px; letter-spacing: 2px; margin-top: 18px; }
.loader-text span { color: var(--sunset); }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }

/* ========== CURSOR ========== */
.cursor-dot, .cursor-ring {
  position: fixed; pointer-events: none; z-index: 9998;
  border-radius: 50%; transform: translate(-50%, -50%);
  transition: transform .15s ease;
}
.cursor-dot { width: 6px; height: 6px; background: var(--sunset); }
.cursor-ring { width: 38px; height: 38px; border: 1.5px solid var(--sunset); transition: transform .25s ease, width .25s, height .25s; }
.cursor-ring.grow { width: 64px; height: 64px; background: rgba(232,133,60,0.1); }
@media (max-width: 900px) { .cursor-dot, .cursor-ring { display: none; } }

/* ========== NAV ========== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 40px;
  background: rgba(14, 42, 34, 0.0);
  backdrop-filter: blur(0);
  transition: all .35s var(--ease);
}
.nav.scrolled {
  background: rgba(14, 42, 34, 0.92);
  backdrop-filter: blur(16px);
  padding: 12px 40px;
  box-shadow: 0 4px 30px rgba(0,0,0,0.15);
}
.nav-logo img { height: 52px; transition: height .3s; }
.nav.scrolled .nav-logo img { height: 42px; }
.nav-links { display: flex; gap: 32px; }
.nav-links a {
  color: var(--sand); font-weight: 500; font-size: 14px; letter-spacing: .3px;
  position: relative; padding: 6px 0;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: var(--sunset);
  transform: scaleX(0); transform-origin: right;
  transition: transform .4s var(--ease);
}
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }

.nav-cta {
  background: var(--sunset); color: var(--white);
  padding: 12px 22px; border-radius: 999px;
  font-weight: 600; font-size: 14px;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all .3s var(--ease);
}
.nav-cta:hover { background: var(--sunset-deep); transform: translateY(-2px); box-shadow: 0 10px 25px rgba(232,133,60,0.4); }

.nav-burger { display: none; flex-direction: column; gap: 5px; width: 28px; height: 24px; justify-content: center; }
.nav-burger span { display: block; height: 2px; background: var(--sand); transition: .3s; }
.nav-burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

.mobile-menu {
  position: fixed; top: 70px; right: -100%; width: min(320px, 80vw); height: calc(100vh - 70px);
  background: var(--green-deep); padding: 40px 32px;
  display: flex; flex-direction: column; gap: 22px; z-index: 99;
  transition: right .4s var(--ease);
}
.mobile-menu.open { right: 0; }
.mobile-menu a { color: var(--sand); font-size: 18px; font-weight: 500; }
.mobile-menu .mobile-cta { background: var(--sunset); color: white; padding: 14px; border-radius: 12px; text-align: center; margin-top: 12px; }

@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .nav { padding: 14px 24px; }
}

/* ========== HERO ========== */
.hero {
  position: relative; min-height: 100vh; overflow: hidden;
  background: #0a1f18;
  display: flex; align-items: center; padding: 140px 28px 100px;
  color: var(--sand);
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='0.85' numOctaves='3' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: 0.08; mix-blend-mode: overlay;
}
.dune { position: absolute; bottom: 0; left: 0; width: 100%; display: none; }
.dune-1 { height: 50%; opacity: .7; }
.dune-2 { height: 35%; }
.lagoa {
  position: absolute; bottom: 8%; left: 50%; transform: translateX(-50%);
  width: 70%; height: 80px;
  background: radial-gradient(ellipse, rgba(74,176,212,0.35), transparent 70%);
  filter: blur(20px);
  animation: shimmer 4s ease-in-out infinite;
  display: none;
}
@keyframes shimmer { 0%,100% { opacity: .6; transform: translateX(-50%) scale(1); } 50% { opacity: 1; transform: translateX(-50%) scale(1.05); } }

/* ========== HERO VIDEO ========== */
.hero-video-container {
  position: absolute; inset: 0; width: 100%; height: 100%;
  overflow: hidden; z-index: 0; background: #0a1f18;
}

.hero-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0;
  transition: opacity 0.6s ease-in-out;
  z-index: 1;
}

.hero-video-active {
  opacity: 1;
  z-index: 2;
}

.hero-video-overlay {
  position: absolute; inset: 0; z-index: 3;
  background: linear-gradient(180deg, rgba(14, 42, 34, 0.4) 0%, rgba(14, 42, 34, 0.5) 50%, rgba(14, 42, 34, 0.7) 100%);
  pointer-events: none;
}

.hero-content { position: relative; z-index: 2; max-width: 1100px; margin: 0 auto; width: 100%; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: 999px;
  background: rgba(245, 236, 217, 0.1); border: 1px solid rgba(245, 236, 217, 0.2);
  font-size: 13px; letter-spacing: 1px; text-transform: uppercase;
  color: var(--sand); margin-bottom: 28px;
}
.hero-eyebrow i { color: var(--sunset); }

.hero-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.4rem, 6vw, 5.2rem);
  font-weight: 600; line-height: 1.05; letter-spacing: -1px;
  margin-bottom: 24px;
}
.hero-title em { font-style: italic; color: var(--sand); font-weight: 400; }
.title-mark {
  display: inline-block; position: relative;
  background: linear-gradient(120deg, transparent 0%, transparent 5%, rgba(232,133,60,0.25) 5%, rgba(232,133,60,0.25) 95%, transparent 95%);
  padding: 0 8px;
  color: var(--sunset);
}

.hero-sub { font-size: 1.15rem; max-width: 620px; opacity: 0.85; margin-bottom: 40px; }

.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 70px; }
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 28px; border-radius: 999px;
  font-weight: 600; font-size: 15px; letter-spacing: .2px;
  transition: all .3s var(--ease);
  cursor: pointer;
}
.btn-primary { background: var(--sunset); color: var(--white); }
.btn-primary:hover { background: var(--sunset-deep); transform: translateY(-3px); box-shadow: 0 18px 35px -10px rgba(232,133,60,0.5); }
.btn-ghost { background: transparent; color: var(--sand); border: 1.5px solid rgba(245,236,217,0.3); }
.btn-ghost:hover { background: rgba(245,236,217,0.08); border-color: var(--sand); }
.btn-sm { padding: 11px 20px; font-size: 13.5px; }
.btn-block { width: 100%; justify-content: center; padding: 18px; font-size: 16px; }

.hero-stats { display: flex; gap: 48px; flex-wrap: wrap; }
.stat strong {
  display: block; font-family: 'Fraunces', serif; font-weight: 800;
  font-size: 3rem; color: var(--sunset); line-height: 1;
}
.stat span { font-size: 13px; text-transform: uppercase; letter-spacing: 1.5px; opacity: 0.75; }

.hero-scroll {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: var(--sand); opacity: 0.6; font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  z-index: 2;
}
.scroll-line { width: 1px; height: 40px; background: var(--sand); animation: scrollPulse 2s infinite; transform-origin: top; }
@keyframes scrollPulse { 0%{transform:scaleY(0)} 50%{transform:scaleY(1)} 100%{transform:scaleY(0); transform-origin:bottom} }

/* ========== REVEAL ========== */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ========== SECTIONS GENERAL ========== */
section { padding: 110px 0; position: relative; }
.section-head { max-width: 720px; margin: 0 auto 70px; text-align: center; }
.section-tag {
  display: inline-block;
  font-family: 'Archivo', sans-serif; font-size: 12px;
  text-transform: uppercase; letter-spacing: 3px;
  color: var(--sunset); font-weight: 700;
  padding: 6px 14px; border: 1px solid var(--sunset);
  border-radius: 4px; margin-bottom: 22px;
}
h2 {
  font-family: 'Fraunces', serif; font-weight: 600;
  font-size: clamp(2rem, 4.5vw, 3.6rem); line-height: 1.1; letter-spacing: -.5px;
  color: var(--green-deep); margin-bottom: 18px;
}
.section-head p { color: var(--muted); font-size: 1.05rem; }

/* ========== SOBRE ========== */
.sobre { background: var(--sand-soft); }
.sobre-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: center; }
.sobre-img { position: relative; }
.img-placeholder {
  width: 100%; aspect-ratio: 4/5; border-radius: var(--radius);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: rgba(245,236,217,0.5); gap: 10px; box-shadow: var(--shadow-lg);
}
.img-placeholder i { font-size: 48px; }
.img-placeholder span { font-size: 13px; text-align: center; }
.sobre-img-real {
  width: 100%; aspect-ratio: 4/5; border-radius: var(--radius);
  object-fit: cover; display: block; box-shadow: var(--shadow-lg);
}
.sobre-badge {
  position: absolute; bottom: -30px; right: -20px;
  background: var(--sunset); color: white;
  padding: 22px 28px; border-radius: var(--radius); box-shadow: var(--shadow-md);
  text-align: center;
}
.sobre-badge strong { display: block; font-family: 'Fraunces', serif; font-size: 3.2rem; font-weight: 700; line-height: 1; }
.sobre-badge span { font-size: 12px; text-transform: uppercase; letter-spacing: 1px; }

.sobre-text .section-tag { display: inline-block; }
.sobre-text h2 { text-align: left; }
.sobre-text p { color: #3d4a45; margin-bottom: 18px; font-size: 1.02rem; }
.sobre-list { list-style: none; margin-top: 28px; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.sobre-list li { display: flex; align-items: center; gap: 10px; font-weight: 500; color: var(--green-deep); }
.sobre-list i { color: var(--sunset); background: rgba(232,133,60,0.12); width: 28px; height: 28px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 12px; }

@media (max-width: 900px) {
  .sobre-grid { grid-template-columns: 1fr; gap: 50px; }
  .sobre-list { grid-template-columns: 1fr; }
}

/* ========== PASSEIOS ========== */
.passeios { background: var(--green-deep); color: var(--sand); }
.passeios h2 { color: var(--sand); }
.passeios .section-head p { color: rgba(245, 236, 217, 0.7); }

.passeios-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 28px;
}
.card {
  background: rgba(245, 236, 217, 0.04); border: 1px solid rgba(245, 236, 217, 0.1);
  border-radius: var(--radius); overflow: hidden;
  transition: all .4s var(--ease);
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-8px); border-color: var(--sunset); background: rgba(245, 236, 217, 0.07); }
.card.selected { border-color: var(--sunset); background: rgba(232,133,60,0.1); box-shadow: 0 0 0 2px var(--sunset); }
.card-featured { transform: scale(1.02); border-color: rgba(232,133,60,0.35); }

.card-img {
  height: 220px; position: relative; display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}

.card-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.card-img::after {
  content: ''; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='0.8' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
  mix-blend-mode: overlay; opacity: 0.5;
}
.card-icon { display: none; }

.card-badge {
  position: absolute; top: 16px; left: 16px; z-index: 2;
  background: rgba(14, 42, 34, 0.85); color: var(--sand);
  padding: 5px 12px; border-radius: 999px; font-size: 11px; letter-spacing: 1px; text-transform: uppercase; font-weight: 600;
}
.card-body { padding: 26px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.card-body h3 { font-family: 'Fraunces', serif; font-size: 1.55rem; color: var(--sand); font-weight: 600; }
.card-route { color: rgba(245,236,217,0.7); font-size: 14px; line-height: 1.5; }
.card-price { color: var(--sand); font-size: 14px; padding: 10px 0; border-top: 1px dashed rgba(245,236,217,0.15); margin-top: auto; }
.card-price strong { color: var(--sunset); }
.card-add {
  margin-top: 8px; padding: 12px 16px; border-radius: 10px;
  background: rgba(232,133,60,0.1); color: var(--sunset);
  font-weight: 600; font-size: 13px; border: 1px solid rgba(232,133,60,0.3);
  display: flex; align-items: center; gap: 8px; justify-content: center;
  transition: all .3s var(--ease);
}
.card-add:hover { background: var(--sunset); color: white; }
.card.selected .card-add { background: var(--sunset); color: white; }
.card.selected .card-add::before { content: '✓ '; }

.selection-bar {
  position: fixed; bottom: 30px; left: 50%; transform: translate(-50%, 100px);
  background: var(--green-deep); color: var(--sand);
  padding: 14px 22px; border-radius: 999px; box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 18px;
  z-index: 90; opacity: 0; transition: all .4s var(--ease);
  border: 1px solid rgba(232,133,60,0.4);
}
.selection-bar.show { opacity: 1; transform: translate(-50%, 0); }
.selection-bar strong { color: var(--sunset); }

/* ========== CHECKLIST ========== */
.checklist { background: var(--sand-soft); }
.checklist-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px; margin-bottom: 60px;
}
.check-item {
  background: white; border-radius: var(--radius-sm);
  padding: 22px 18px; display: flex; align-items: center; gap: 14px;
  box-shadow: 0 4px 16px -8px rgba(14,42,34,0.15);
  transition: transform .3s var(--ease);
}
.check-item:hover { transform: translateY(-4px); }
.check-item i {
  width: 44px; height: 44px; background: rgba(232,133,60,0.12); color: var(--sunset);
  display: flex; align-items: center; justify-content: center; border-radius: 12px; font-size: 18px;
  flex-shrink: 0;
}
.check-item span { font-weight: 500; color: var(--green-deep); font-size: 14px; }

.info-box {
  background: var(--green); color: var(--sand);
  border-radius: var(--radius); padding: 36px 40px;
  box-shadow: var(--shadow-lg);
}
.info-box h3 { font-family: 'Fraunces', serif; font-size: 1.5rem; margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.info-box h3 i { color: var(--sunset); }
.info-box ul { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.info-box li {
  position: relative; padding-left: 22px; font-size: 14.5px; line-height: 1.6;
  opacity: .9;
}
.info-box li::before {
  content: ''; position: absolute; left: 0; top: 10px;
  width: 8px; height: 8px; border-radius: 50%; background: var(--sunset);
}
@media (max-width: 700px) { .info-box ul { grid-template-columns: 1fr; } }

/* ========== GALERIA ========== */
.galeria { background: white; }
.gallery-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
  grid-auto-rows: 220px;
}
.gal-item { 
  border-radius: var(--radius-sm); overflow: hidden; cursor: pointer;
  transition: transform .4s var(--ease); position: relative;
}
.gal-item img {
  width: 100%; height: 100%; object-fit: cover;
}
.gal-item:nth-child(3n+1) { grid-row: span 2; }
.gal-item:hover { transform: scale(0.98); }
.gal-ph {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.4); font-size: 32px;
  position: relative;
}
.gal-ph::after {
  content: ''; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='0.9' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  mix-blend-mode: overlay; opacity: 0.4;
}
.gal-item::before {
  content: attr(data-cap); position: absolute; bottom: 0; left: 0; right: 0;
  padding: 30px 18px 14px; color: white; font-size: 13px; font-weight: 500;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  opacity: 0; transition: opacity .4s; z-index: 2;
}
.gal-item:hover::before { opacity: 1; }
.gallery-note { text-align: center; margin-top: 30px; color: var(--muted); font-size: 14px; }
.gallery-note code { background: var(--sand); padding: 2px 8px; border-radius: 4px; font-size: 12px; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; background: rgba(14,42,34,0.96);
  z-index: 9997; display: none; align-items: center; justify-content: center;
  flex-direction: column;
}
.lightbox.active { display: flex; }
.lb-content {
  max-width: 90vw; max-height: 85vh; border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-lg);
}
.lb-content img { 
  width: 100%; height: 100%; object-fit: contain;
}
.lb-close, .lb-prev, .lb-next {
  position: absolute; background: rgba(245,236,217,0.1); color: var(--sand);
  width: 50px; height: 50px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 18px;
  transition: background .3s;
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: var(--sunset); }
.lb-close { top: 30px; right: 30px; }
.lb-prev { left: 30px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 30px; top: 50%; transform: translateY(-50%); }
.lb-caption { color: var(--sand); margin-top: 20px; font-size: 14px; }

/* ========== AVALIAÇÕES ========== */
.avaliacoes { background: var(--sand); position: relative; }
.depo-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 26px; margin-bottom: 50px;
}
.depo {
  background: white; padding: 30px; border-radius: var(--radius);
  box-shadow: 0 8px 24px -12px rgba(14,42,34,0.15);
  position: relative;
}
.depo::before {
  content: '"'; position: absolute; top: 10px; right: 24px;
  font-family: 'Fraunces', serif; font-size: 100px; color: var(--sunset); opacity: .15; line-height: 1;
}
.depo-stars { display: flex; gap: 4px; color: var(--sunset); margin-bottom: 16px; }
.depo p { font-family: 'Fraunces', serif; font-size: 1.05rem; line-height: 1.5; color: var(--green-deep); margin-bottom: 20px; }
.depo footer { display: flex; flex-direction: column; padding-top: 16px; border-top: 1px solid rgba(14,42,34,0.08); }
.depo footer strong { color: var(--green-deep); font-weight: 600; }
.depo footer span { color: var(--muted); font-size: 13px; }

.google-cta {
  background: white; border-radius: var(--radius); padding: 26px 32px;
  display: flex; align-items: center; gap: 20px; box-shadow: var(--shadow-md);
}
.google-cta > i { font-size: 32px; color: #4285f4; }
.google-cta > div { flex: 1; display: flex; flex-direction: column; }
.google-cta strong { font-size: 1.1rem; color: var(--green-deep); }
.google-cta span { color: var(--muted); font-size: 14px; }
@media (max-width: 700px) {
  .google-cta { flex-direction: column; text-align: center; }
}

/* ========== RESERVA ========== */
.reserva { background: var(--green-deep); color: var(--sand); }
.reserva-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 70px; align-items: start; }
.reserva-side .section-tag { display: inline-block; }
.reserva-side h2 { color: var(--sand); text-align: left; margin-bottom: 18px; }
.reserva-side > p { opacity: 0.85; margin-bottom: 30px; }
.reserva-perks { list-style: none; margin-bottom: 32px; }
.reserva-perks li { display: flex; align-items: center; gap: 12px; padding: 10px 0; }
.reserva-perks i { color: var(--sunset); width: 30px; }
.reserva-contact { display: flex; flex-direction: column; gap: 10px; padding-top: 24px; border-top: 1px solid rgba(245,236,217,0.15); }
.reserva-contact a { display: inline-flex; align-items: center; gap: 10px; color: var(--sand); }
.reserva-contact i { color: var(--sunset); }

.reserva-form {
  background: rgba(245,236,217,0.04); border: 1px solid rgba(245,236,217,0.1);
  border-radius: var(--radius); padding: 36px;
}
.field { margin-bottom: 20px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field label {
  display: block; font-size: 13px; font-weight: 600; color: var(--sand);
  margin-bottom: 8px; letter-spacing: .3px;
}
.field label small { font-weight: 400; opacity: 0.6; letter-spacing: 0; }
.field input, .field textarea {
  width: 100%; background: rgba(245,236,217,0.06); border: 1px solid rgba(245,236,217,0.15);
  padding: 14px 16px; border-radius: 10px; color: var(--sand);
  font-family: inherit; font-size: 15px;
  transition: all .3s var(--ease);
}
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--sunset); background: rgba(245,236,217,0.1);
}
.field input::placeholder, .field textarea::placeholder { color: rgba(245,236,217,0.3); }
.field input[type="date"] { color-scheme: dark; }

.multi-select { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.ms-opt {
  position: relative; cursor: pointer; user-select: none;
}
.ms-opt input { position: absolute; opacity: 0; }
.ms-opt span {
  display: block; padding: 11px 14px; border-radius: 10px;
  background: rgba(245,236,217,0.05); border: 1px solid rgba(245,236,217,0.15);
  font-size: 14px; transition: all .3s var(--ease);
  text-align: center;
}
.ms-opt:hover span { border-color: var(--sunset); background: rgba(232,133,60,0.08); }
.ms-opt input:checked + span {
  background: var(--sunset); border-color: var(--sunset); color: white; font-weight: 600;
}
.ms-opt input:checked + span::before { content: '✓ '; }

.form-note { text-align: center; font-size: 12.5px; opacity: 0.6; margin-top: 14px; }

@media (max-width: 900px) {
  .reserva-grid { grid-template-columns: 1fr; gap: 40px; }
  .field-row, .multi-select { grid-template-columns: 1fr; }
  .reserva-form { padding: 26px; }
}

/* ========== CONTATO ========== */
.contato { background: var(--sand-soft); padding: 100px 0 60px; }
.contato-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.contato-card {
  background: white; padding: 28px; border-radius: var(--radius);
  text-align: center; transition: transform .3s var(--ease);
  box-shadow: 0 4px 16px -8px rgba(14,42,34,0.1);
}
.contato-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.contato-card > i {
  width: 56px; height: 56px; background: rgba(232,133,60,0.12); color: var(--sunset);
  display: inline-flex; align-items: center; justify-content: center; border-radius: 50%;
  font-size: 22px; margin-bottom: 16px;
}
.contato-card h4 { font-family: 'Fraunces', serif; font-size: 1.1rem; color: var(--green-deep); margin-bottom: 6px; }
.contato-card a { color: var(--muted); font-size: 14px; line-height: 1.5; }

.atendimento {
  margin-top: 40px; padding: 30px;
  background: var(--green); color: var(--sand);
  border-radius: var(--radius);
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 30px;
}
.atendimento > div { display: flex; flex-direction: column; gap: 6px; }
.atendimento strong { display: flex; align-items: center; gap: 8px; font-family: 'Archivo', sans-serif; }
.atendimento strong i { color: var(--sunset); }
.atendimento span { opacity: 0.8; font-size: 14px; }
.atendimento-pagamento { margin-top: 8px; font-size: 14px; opacity: 0.95; line-height: 1.55; }
@media (max-width: 700px) { .atendimento { grid-template-columns: 1fr; } }


/* ========== FOOTER ========== */
.footer { background: var(--green-deep); color: var(--sand); padding: 70px 0 20px; }
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 50px;
  padding-bottom: 40px; border-bottom: 1px solid rgba(245,236,217,0.1);
}
.footer-brand img { height: 100px; margin-bottom: 18px; }
.footer-brand p { font-family: 'Fraunces', serif; font-style: italic; font-size: 1.05rem; opacity: 0.8; max-width: 360px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links h5 { font-family: 'Archivo', sans-serif; font-size: 13px; text-transform: uppercase; letter-spacing: 2px; color: var(--sunset); margin-bottom: 8px; }
.footer-links a { color: rgba(245,236,217,0.75); font-size: 14px; transition: color .3s; }
.footer-links a:hover { color: var(--sunset); }
.footer-bottom { text-align: center; padding-top: 20px; font-size: 13px; opacity: 0.5; }
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr; gap: 30px; } }

/* ========== WHATSAPP FLOAT ========== */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 95;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25d366; color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 30px; box-shadow: 0 12px 28px -6px rgba(37,211,102,0.5);
  transition: transform .3s;
}
.wa-float:hover { transform: scale(1.1) rotate(5deg); }

/* ========== TOAST ========== */
.toast {
  position: fixed; bottom: 100px; right: 24px;
  background: var(--green-deep); color: var(--sand);
  padding: 14px 22px; border-radius: 12px;
  font-size: 14px; font-weight: 500;
  box-shadow: var(--shadow-lg);
  transform: translateX(120%); transition: transform .4s var(--ease);
  z-index: 96; max-width: 320px;
  border-left: 3px solid var(--sunset);
}
.toast.show { transform: translateX(0); }

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
  section { padding: 80px 0; }
  .hero { padding: 120px 24px 80px; }
  .hero-stats { gap: 28px; }
  .stat strong { font-size: 2.2rem; }
  .section-head { margin-bottom: 50px; }
}
@media (max-width: 600px) {
  .hero-title { font-size: 2.4rem; }
  .btn { padding: 14px 22px; font-size: 14px; }
  .info-box { padding: 26px 22px; }
  .selection-bar { 
    bottom: 70px; 
    padding: 12px 16px; 
    font-size: 12.5px; 
    gap: 12px;
    white-space: nowrap;
    flex-wrap: wrap;
    width: auto;
    max-width: 90%;
  }
  .selection-bar span { flex-shrink: 0; }
  .selection-bar .btn-sm { padding: 10px 16px; font-size: 12.5px; white-space: nowrap; }
}