/* ==========================================================================
   Villa Ravello Pousada — Design System
   Paleta: terracota, verde-oliva, areia, off-white
   Tipografia: Playfair Display (títulos) + Poppins (texto)
   ========================================================================== */

:root {
  /* Cores */
  --color-cream: #FAF6F0;
  --color-sand: #EFE3CF;
  --color-sand-dark: #E1CFA9;
  --color-terracotta: #C1663B;
  --color-terracotta-dark: #A2502A;
  --color-terracotta-light: #E8A47E;
  --color-olive: #6C7247;
  --color-olive-dark: #4C512F;
  --color-charcoal: #2C2620;
  --color-charcoal-soft: #4A4238;
  --color-white: #FFFFFF;
  --color-whatsapp: #25D366;

  /* Tipografia */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Espaçamentos */
  --section-padding: clamp(4rem, 8vw, 7rem);
  --container-width: 1240px;

  /* Sombras & bordas */
  --shadow-soft: 0 10px 30px rgba(44, 38, 32, 0.10);
  --shadow-strong: 0 20px 50px rgba(44, 38, 32, 0.20);
  --radius-md: 10px;
  --radius-lg: 18px;

  /* Transições */
  --ease: cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
[id] { scroll-margin-top: 90px; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-charcoal);
  background: var(--color-cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-charcoal);
  line-height: 1.2;
  margin: 0 0 0.6em;
}
p { margin: 0 0 1em; }
button { font-family: inherit; cursor: pointer; }
input, textarea, select { font-family: inherit; font-size: 1rem; }
:focus-visible { outline: 3px solid var(--color-terracotta); outline-offset: 2px; }

.visually-hidden {
  position: absolute; left: -9999px; top: auto;
  width: 1px; height: 1px; overflow: hidden;
}
.visually-hidden:focus {
  position: fixed; left: 1rem; top: 1rem; width: auto; height: auto;
  background: var(--color-white); color: var(--color-charcoal);
  padding: 0.8rem 1.2rem; z-index: 3000; border-radius: var(--radius-md);
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section { padding: var(--section-padding) 0; }
.section--sand { background: var(--color-sand); }
.section--olive {
  background: linear-gradient(135deg, var(--color-olive-dark), var(--color-olive));
  color: var(--color-cream);
}
.section--olive h2, .section--olive h3 { color: var(--color-cream); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-terracotta);
  margin-bottom: 0.9rem;
}
.section--olive .eyebrow { color: var(--color-terracotta-light); }

.section-head { max-width: 720px; margin: 0 0 3rem; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.9rem, 3.2vw, 2.6rem); }
.section-head p { color: var(--color-charcoal-soft); font-size: 1.05rem; }
.section--olive .section-head p { color: rgba(250, 246, 240, 0.85); }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 2rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  border: 2px solid transparent;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--color-terracotta);
  color: var(--color-white);
  box-shadow: 0 10px 24px rgba(193, 102, 59, 0.35);
}
.btn-primary:hover { background: var(--color-terracotta-dark); box-shadow: 0 14px 30px rgba(193, 102, 59, 0.45); }
.btn-outline {
  background: transparent;
  border-color: currentColor;
  color: var(--color-charcoal);
}
.btn-outline:hover { background: var(--color-charcoal); color: var(--color-white); }
.section--olive .btn-outline, .hero .btn-outline { color: var(--color-white); }
.section--olive .btn-outline:hover, .hero .btn-outline:hover { background: var(--color-white); color: var(--color-olive-dark); }
.btn-light { background: var(--color-white); color: var(--color-terracotta-dark); }
.btn-light:hover { background: var(--color-sand); }
.btn-whatsapp { background: var(--color-whatsapp); color: var(--color-white); box-shadow: 0 10px 24px rgba(37,211,102,0.35); }
.btn-whatsapp:hover { background: #1fb955; }
.btn-sm { padding: 0.7rem 1.4rem; font-size: 0.85rem; }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.1rem 0;
  transition: background 0.35s var(--ease), padding 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; }
.site-header.is-scrolled,
.site-header.is-solid {
  background: rgba(250, 246, 240, 0.96);
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 20px rgba(44,38,32,0.08);
  padding: 0.6rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.logo-img {
  height: 46px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: filter 0.3s var(--ease);
}
.site-header.is-scrolled .logo-img, .site-header.is-solid .logo-img { filter: none; }
.logo-img--footer { height: 44px; filter: none; }

.main-nav ul { display: flex; align-items: center; gap: 2.1rem; }
.main-nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--color-white);
  position: relative;
  padding: 0.3rem 0;
  transition: color 0.3s var(--ease);
}
.site-header.is-scrolled .main-nav a, .site-header.is-solid .main-nav a { color: var(--color-charcoal-soft); }
.main-nav a::after {
  content: ''; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px;
  background: var(--color-terracotta); transition: width 0.3s var(--ease);
}
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }
.main-nav a.active { color: var(--color-terracotta) !important; }

.header-cta { display: flex; align-items: center; gap: 1rem; }
.nav-toggle {
  display: none;
  background: none; border: none;
  width: 34px; height: 26px;
  position: relative;
  z-index: 1100;
}
.nav-toggle span, .nav-toggle::before, .nav-toggle::after {
  content: ''; position: absolute; left: 0; right: 0; height: 2px;
  background: var(--color-white); transition: all 0.3s var(--ease);
}
.site-header.is-scrolled .nav-toggle span,
.site-header.is-scrolled .nav-toggle::before,
.site-header.is-scrolled .nav-toggle::after,
.site-header.is-solid .nav-toggle span,
.site-header.is-solid .nav-toggle::before,
.site-header.is-solid .nav-toggle::after { background: var(--color-charcoal); }
.nav-toggle::before { top: 0; }
.nav-toggle span { top: 12px; }
.nav-toggle::after { bottom: 0; }
.nav-toggle.is-active::before { transform: translateY(12px) rotate(45deg); }
.nav-toggle.is-active::after { transform: translateY(-12px) rotate(-45deg); }
.nav-toggle.is-active span { opacity: 0; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--color-white);
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.6s ease-in-out;
}
.hero-slide.is-active { opacity: 1; }
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(44,38,32,0.55) 0%, rgba(44,38,32,0.35) 45%, rgba(44,38,32,0.75) 100%);
  z-index: 1;
}
.hero-content { position: relative; z-index: 2; padding-top: 5rem; }
.hero-content .eyebrow { color: var(--color-sand); }
.hero h1 {
  font-size: clamp(1.9rem, 3.6vw, 2.9rem);
  color: var(--color-white);
  max-width: 620px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.25);
}
.hero p.lead {
  font-size: 1.15rem;
  max-width: 560px;
  color: rgba(255,255,255,0.92);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }
.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  z-index: 2; color: var(--color-white); font-size: 0.75rem;
  letter-spacing: 0.15em; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  animation: bob 2.2s infinite ease-in-out;
}
.hero-scroll::after { content: ''; width: 1px; height: 34px; background: rgba(255,255,255,0.7); }
@keyframes bob { 0%,100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 8px); } }

.hero-dots { position: absolute; bottom: 2rem; right: 2rem; z-index: 2; display: flex; gap: 0.5rem; }
.hero-dots button {
  width: 10px; height: 10px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,0.8);
  background: transparent; padding: 0;
}
.hero-dots button.is-active { background: var(--color-white); }

/* Inner page hero (sub-pages) */
.page-hero {
  position: relative;
  min-height: 46vh;
  display: flex; align-items: flex-end;
  color: var(--color-white);
  background-size: cover; background-position: center;
  padding-bottom: 3.5rem; padding-top: 8rem;
}
.page-hero::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(44,38,32,0.45), rgba(44,38,32,0.78));
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: var(--color-white); font-size: clamp(2.1rem, 4.5vw, 3.2rem); }
.breadcrumbs { font-size: 0.85rem; opacity: 0.9; margin-bottom: 1rem; }
.breadcrumbs a:hover { text-decoration: underline; }

/* ---------- Welcome / intro ---------- */
.welcome { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.welcome-media { position: relative; }
.welcome-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); }
.welcome-media .float-card {
  position: absolute; bottom: -1.5rem; left: -1.5rem;
  background: var(--color-white); padding: 1.2rem 1.6rem; border-radius: var(--radius-md);
  box-shadow: var(--shadow-strong);
  display: flex; align-items: center; gap: 0.8rem;
}
.welcome-media .float-card strong { font-family: var(--font-heading); font-size: 1.6rem; color: var(--color-terracotta); display:block; }
.welcome-media .float-card span { font-size: 0.8rem; color: var(--color-charcoal-soft); }
.welcome-text h2 { font-size: clamp(1.9rem, 3.2vw, 2.6rem); }
.welcome-text p { color: var(--color-charcoal-soft); font-size: 1.05rem; }
.signature { font-family: var(--font-heading); font-style: italic; color: var(--color-olive); font-size: 1.15rem; margin-top: 1.5rem; }

/* ---------- Diferenciais / Cards de features ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.75rem;
}
.feature-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2.2rem 1.8rem;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.feature-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-strong); }
.feature-card .icon {
  width: 64px; height: 64px; margin: 0 auto 1.2rem;
  border-radius: 50%;
  background: var(--color-sand);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-terracotta);
}
.feature-card .icon svg { width: 28px; height: 28px; }
.feature-card h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.feature-card p { color: var(--color-charcoal-soft); font-size: 0.92rem; margin: 0; }

/* ---------- Galeria / Carrossel ---------- */
.gallery-carousel { position: relative; }
.carousel-track {
  display: flex;
  gap: 1.3rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 1rem;
  scrollbar-width: thin;
  scrollbar-color: var(--color-terracotta) transparent;
}
.carousel-track::-webkit-scrollbar { height: 8px; }
.carousel-track::-webkit-scrollbar-thumb { background: var(--color-terracotta); border-radius: 8px; }
.carousel-track .slide {
  flex: 0 0 auto;
  width: min(340px, 78vw);
  scroll-snap-align: start;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/5;
  cursor: zoom-in;
  box-shadow: var(--shadow-soft);
}
.carousel-track .slide img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.carousel-track .slide:hover img { transform: scale(1.08); }
.carousel-track .slide .cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 1.2rem 1rem 0.9rem;
  background: linear-gradient(0deg, rgba(0,0,0,0.65), transparent);
  color: var(--color-white); font-size: 0.85rem; font-weight: 500;
}
.carousel-nav { display: flex; justify-content: flex-end; gap: 0.7rem; margin-top: -0.5rem; margin-bottom: 2rem; }
.carousel-nav button {
  width: 46px; height: 46px; border-radius: 50%; border: 1.5px solid var(--color-charcoal);
  background: transparent; display: flex; align-items: center; justify-content: center;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}
.carousel-nav button:hover { background: var(--color-charcoal); color: var(--color-white); }

/* Grid de galeria com lightbox */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
}
.gallery-grid figure {
  margin: 0; border-radius: var(--radius-md); overflow: hidden;
  cursor: zoom-in; aspect-ratio: 1/1; position: relative;
  box-shadow: var(--shadow-soft);
}
.gallery-grid figure img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.gallery-grid figure:hover img { transform: scale(1.1); }

/* ---------- Acomodações (cards) ---------- */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}
.room-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.room-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-strong); }
.room-card .thumb { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.room-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.room-card:hover .thumb img { transform: scale(1.08); }
.room-card .tag {
  position: absolute; top: 1rem; left: 1rem;
  background: var(--color-terracotta); color: var(--color-white);
  font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em;
  padding: 0.4rem 0.8rem; border-radius: 999px; font-weight: 600;
}
.room-card .body { padding: 1.8rem; }
.room-card h3 { font-size: 1.35rem; margin-bottom: 0.3rem; }
.room-card .meta { display: flex; gap: 1.2rem; color: var(--color-charcoal-soft); font-size: 0.85rem; margin-bottom: 1rem; }
.room-card .meta span { display: flex; align-items: center; gap: 0.4rem; }
.room-card .amenities { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.4rem; }
.room-card .amenities li {
  font-size: 0.78rem; background: var(--color-sand); color: var(--color-charcoal-soft);
  padding: 0.35rem 0.7rem; border-radius: 999px;
}
.room-card .actions { display: flex; gap: 0.8rem; flex-wrap: wrap; }

.room-card--wide { display: flex; flex-wrap: wrap; max-width: 900px; margin: 0 auto; }
.room-card--wide .thumb { flex: 1 1 320px; aspect-ratio: auto; height: 100%; min-height: 260px; }
.room-card--wide .body { flex: 1 1 320px; }
@media (max-width: 700px) {
  .room-card--wide .thumb { aspect-ratio: 16/10; min-height: 0; }
}

/* ---------- Depoimentos ---------- */
.testimonials-track {
  display: flex; gap: 1.6rem; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 1rem;
}
.testimonial-card {
  flex: 0 0 auto; width: min(400px, 85vw); scroll-snap-align: start;
  background: var(--color-white); border-radius: var(--radius-lg);
  padding: 2.2rem; box-shadow: var(--shadow-soft);
}
.stars { color: var(--color-terracotta); font-size: 1.1rem; letter-spacing: 0.15em; margin-bottom: 1rem; }
.testimonial-card p.quote { font-style: italic; color: var(--color-charcoal-soft); font-size: 0.98rem; }
.testimonial-author { display: flex; align-items: center; gap: 0.8rem; margin-top: 1.4rem; }
.testimonial-author .avatar {
  width: 46px; height: 46px; border-radius: 50%; background: var(--color-sand);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-weight: 700; color: var(--color-terracotta);
}
.testimonial-author strong { display: block; font-size: 0.92rem; }
.testimonial-author span { font-size: 0.78rem; color: var(--color-charcoal-soft); }

.trust-badges { display: flex; flex-wrap: wrap; gap: 2.5rem; justify-content: center; margin-top: 3rem; }
.trust-badge { text-align: center; }
.trust-badge strong { display: block; font-family: var(--font-heading); font-size: 2rem; color: var(--color-terracotta); }
.trust-badge span { font-size: 0.85rem; color: var(--color-charcoal-soft); }

/* ---------- Destino ---------- */
.destination-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.8rem;
}
.destination-card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 3/4; box-shadow: var(--shadow-soft);
}
.destination-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.destination-card:hover img { transform: scale(1.1); }
.destination-card .info {
  position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.6rem; color: var(--color-white);
  background: linear-gradient(0deg, rgba(44,38,32,0.85), transparent 60%);
}
.destination-card .info .dist { font-size: 0.78rem; color: var(--color-sand); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.3rem; }
.destination-card .info h3 { color: var(--color-white); font-size: 1.1rem; margin-bottom: 0.3rem; }
.destination-card .info p { font-size: 0.85rem; margin: 0; color: rgba(255,255,255,0.85); }

/* ---------- CTA banner ---------- */
.cta-banner {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 4rem 2.5rem;
  text-align: center;
  background-size: cover; background-position: center;
  color: var(--color-white);
}
.cta-banner::after { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(30,26,20,0.72) 0%, rgba(30,26,20,0.5) 50%, rgba(30,26,20,0.32) 100%); z-index: 0; }
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 { color: var(--color-white); font-size: clamp(1.8rem, 3.4vw, 2.5rem); }
.cta-banner p { max-width: 560px; margin: 0 auto 2rem; color: rgba(255,255,255,0.92); }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.site-footer { background: var(--color-charcoal); color: rgba(250,246,240,0.85); padding: 4.5rem 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 3rem;
  padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-brand .logo { color: var(--color-white); margin-bottom: 1rem; }
.footer-brand p { font-size: 0.9rem; color: rgba(250,246,240,0.65); max-width: 280px; }
.footer-social { display: flex; gap: 0.8rem; margin-top: 1.2rem; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.25);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}
.footer-social a:hover { background: var(--color-terracotta); border-color: var(--color-terracotta); }
.footer-col h4 { color: var(--color-white); font-size: 1rem; margin-bottom: 1.3rem; font-family: var(--font-body); font-weight: 600; }
.footer-col ul li { margin-bottom: 0.8rem; font-size: 0.9rem; }
.footer-col a:hover { color: var(--color-terracotta-light); }
.footer-col address { font-style: normal; font-size: 0.9rem; }
.footer-map { border-radius: var(--radius-md); overflow: hidden; margin-top: 1rem; filter: grayscale(0.3) contrast(1.05); }
.footer-map iframe { width: 100%; height: 140px; border: 0; display: block; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
  padding: 1.8rem 0; font-size: 0.8rem; color: rgba(250,246,240,0.55);
}
.footer-bottom a:hover { color: var(--color-terracotta-light); }

/* ---------- WhatsApp flutuante ---------- */
.whatsapp-float {
  position: fixed; bottom: 1.6rem; right: 1.6rem; z-index: 999;
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--color-whatsapp); color: var(--color-white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 26px rgba(37,211,102,0.5);
  animation: pulse-wa 2.6s infinite;
}
.whatsapp-float svg { width: 30px; height: 30px; }
.whatsapp-float:hover { transform: scale(1.08); }
@keyframes pulse-wa {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.55), 0 10px 26px rgba(37,211,102,0.5); }
  70% { box-shadow: 0 0 0 14px rgba(37,211,102,0), 0 10px 26px rgba(37,211,102,0.5); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0), 0 10px 26px rgba(37,211,102,0.5); }
}

/* ---------- Formulários ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.3rem; }
.form-grid .full { grid-column: 1 / -1; }
.field label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 0.5rem; color: var(--color-charcoal-soft); }
.field input, .field select, .field textarea {
  width: 100%; padding: 0.85rem 1rem; border-radius: var(--radius-md);
  border: 1.5px solid var(--color-sand-dark); background: var(--color-white);
  transition: border-color 0.25s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--color-terracotta); }
.field textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 0.82rem; color: var(--color-charcoal-soft); margin-top: 1rem; }
.form-success {
  display: none; background: var(--color-olive); color: var(--color-white);
  padding: 1.1rem 1.4rem; border-radius: var(--radius-md); margin-top: 1.3rem; font-size: 0.9rem;
}
.form-success.is-visible { display: block; }

.contact-panel { background: var(--color-white); border-radius: var(--radius-lg); padding: 2.5rem; box-shadow: var(--shadow-soft); }
.contact-info-list li { display: flex; gap: 1rem; margin-bottom: 1.5rem; align-items: flex-start; }
.contact-info-list .icon {
  width: 44px; height: 44px; border-radius: 50%; background: var(--color-sand); color: var(--color-terracotta);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-info-list strong { display: block; margin-bottom: 0.2rem; }
.contact-info-list span, .contact-info-list a { color: var(--color-charcoal-soft); font-size: 0.92rem; }
.contact-info-list a:hover { color: var(--color-terracotta); }

/* ---------- Timeline (Sobre) ---------- */
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 1.8rem; }
.value-card { text-align: center; padding: 1.5rem; }
.value-card .icon { width: 58px; height: 58px; margin: 0 auto 1rem; border-radius: 50%; background: var(--color-white); color: var(--color-terracotta); display:flex; align-items:center; justify-content:center; box-shadow: var(--shadow-soft); }
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.about-split img { border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); }

/* ---------- Estrutura/Lazer amenities list ---------- */
.amenity-detail-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 2rem; }
.amenity-detail { display: flex; gap: 1.2rem; }
.amenity-detail .icon { width: 52px; height: 52px; border-radius: 50%; background: var(--color-sand); color: var(--color-terracotta); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.amenity-detail h3 { font-size: 1.1rem; margin-bottom: 0.4rem; }
.amenity-detail p { color: var(--color-charcoal-soft); font-size: 0.92rem; margin: 0; }

/* ---------- Contato ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 3rem; align-items: flex-start; }
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* ---------- Localização ---------- */
.map-embed { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-soft); }
.map-embed iframe { width: 100%; height: 420px; border: 0; display: block; }
.route-list li { display: flex; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--color-sand-dark); }
.route-list li:last-child { border-bottom: none; }
.route-list .icon { width: 40px; height: 40px; border-radius: 50%; background: var(--color-sand); color: var(--color-terracotta); display:flex; align-items:center; justify-content:center; flex-shrink:0; font-weight:700; font-family: var(--font-heading); }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 2000; background: rgba(20,17,14,0.95);
  display: none; align-items: center; justify-content: center; padding: 2rem;
}
.lightbox.is-open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 85vh; border-radius: 6px; box-shadow: 0 20px 60px rgba(0,0,0,0.5); }
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute; background: rgba(255,255,255,0.12); color: var(--color-white);
  border: none; border-radius: 50%; width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center; transition: background 0.25s var(--ease);
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.25); }
.lightbox-close { top: 1.5rem; right: 1.5rem; }
.lightbox-prev { left: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 1.5rem; top: 50%; transform: translateY(-50%); }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-slide { transition: none; }
}

/* ---------- Breadcrumb page top space ---------- */
main { display: block; }

/* ---------- Responsivo ---------- */
@media (max-width: 980px) {
  .welcome, .about-split { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-split.reverse .about-media { order: -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .main-nav { position: fixed; top: 0; right: 0; height: 100vh; width: min(320px, 82vw);
    background: var(--color-cream); z-index: 1050; padding: 7rem 2rem 2rem;
    transform: translateX(100%); transition: transform 0.4s var(--ease); box-shadow: -10px 0 40px rgba(0,0,0,0.15); }
  .main-nav.is-open { transform: translateX(0); }
  .main-nav ul { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .main-nav a { color: var(--color-charcoal) !important; font-size: 1.05rem; }
  .nav-toggle { display: block; }
  .header-cta .btn span.long { display: none; }
  .form-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2.2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .welcome-media .float-card { position: static; margin-top: -2rem; margin-left: 1rem; width: fit-content; }
  .hero-dots { right: 1rem; bottom: 1rem; }
  .section { --section-padding: 3.2rem; }
}
