/* =========================================================
   Sítio Serra Serena — Site
   Manual de Marca v1.0 · rústico-elegante · Casa Lasai / Fasano
   ========================================================= */

:root {
  --terracota: #B85C38;
  --terracota-d: #9c4b2c;
  --salvia:    #7A8471;
  --salvia-d:  #5f6857;
  --carvao:    #2B2724;
  --carvao-l:  #3a3531;
  --madeira:   #C4A57B;
  --bege:      #F5EFE6;
  --creme:     #FAF6EF;
  --branco:    #FFFFFF;
  --linha:     #E5DACA;
  --texto:     #4a443e;

  --serif: 'Playfair Display', Georgia, serif;
  --sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --hand:  'Caveat', cursive;

  --gutter: clamp(1.25rem, 5vw, 3rem);
  --sec-pad: clamp(4rem, 10vw, 8rem);
  --maxw: 1340px;
  --radius: 3px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--sans);
  font-size: 16px; line-height: 1.65;
  color: var(--texto);
  background: var(--creme);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--terracota); text-decoration: none; transition: color .25s var(--ease); }
a:hover { color: var(--carvao); }

h1, h2, h3, h4 {
  font-family: var(--serif); font-weight: 600;
  letter-spacing: -0.015em; color: var(--carvao); line-height: 1.15;
}
h1 { font-size: clamp(2.4rem, 6vw, 4.6rem); font-weight: 700; }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); margin-bottom: 1.2rem; }
h3 { font-size: clamp(1.25rem, 2.4vw, 1.6rem); margin-bottom: .6rem; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ---- Eyebrow ---- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--sans); font-size: .78rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .2em;
  color: var(--terracota); margin-bottom: 1.4rem;
}
.eyebrow::before {
  content: ''; width: 28px; height: 1.5px;
  background: var(--terracota); display: inline-block;
}
.eyebrow.center { justify-content: center; }

.lead {
  font-size: clamp(1.1rem, 1.5vw, 1.28rem);
  line-height: 1.6; color: var(--texto); max-width: 56ch;
}

/* =========================================================
   NAVBAR
   ========================================================= */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 200;
  transition: background .35s var(--ease), box-shadow .35s var(--ease), padding .35s var(--ease);
  padding: 0.5rem 0;
}
.nav.scrolled {
  background: rgba(250, 246, 239, 0.96);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--linha);
}
.nav-inner {
  max-width: var(--maxw); margin: 0 auto;
  padding: 1rem var(--gutter);
  display: flex; align-items: center; justify-content: space-between;
}
.brand { display: flex; align-items: center; gap: 0.7rem; }
.brand-leaf { width: 40px; height: 40px; flex-shrink: 0; }
.brand-text { line-height: 1; }
.brand-text .nome {
  font-family: var(--serif); font-size: 1.3rem; font-weight: 700;
  color: var(--carvao); letter-spacing: -0.01em;
}
.brand-text .sub {
  display: block; font-family: var(--sans);
  font-size: 0.56rem; text-transform: uppercase; letter-spacing: 0.22em;
  color: var(--salvia); font-weight: 600; margin-top: 0.25rem;
}
/* nav clara sobre hero escuro */
.nav:not(.scrolled) .brand-text .nome { color: var(--branco); }
.nav:not(.scrolled) .brand-text .sub { color: rgba(255,255,255,0.75); }
.nav:not(.scrolled) .nav-links a:not(.btn-nav) { color: var(--branco); }
.nav:not(.scrolled) .brand-leaf path { stroke: var(--branco); }
.nav:not(.scrolled) .menu-toggle { color: var(--branco); }

.nav-links { display: flex; gap: clamp(1.2rem, 2.6vw, 2.4rem); align-items: center; }
.nav-links a:not(.btn-nav) {
  color: var(--carvao); font-size: 0.93rem; font-weight: 500;
  position: relative; padding: 0.2rem 0;
}
.nav-links a:not(.btn-nav)::after {
  content: ''; position: absolute; left: 0; bottom: -2px;
  width: 0; height: 1.5px; background: var(--terracota);
  transition: width .3s var(--ease);
}
.nav-links a:not(.btn-nav):hover::after { width: 100%; }
.nav-links a:not(.btn-nav):hover { color: var(--terracota); }
.nav:not(.scrolled) .nav-links a:not(.btn-nav):hover { color: var(--madeira); }

.btn-nav {
  background: var(--terracota); color: var(--branco) !important;
  padding: 0.6rem 1.4rem; border-radius: 999px;
  font-size: 0.88rem; font-weight: 600; letter-spacing: 0.02em;
  transition: background .25s var(--ease), transform .25s var(--ease);
}
.btn-nav:hover { background: var(--carvao); transform: translateY(-1px); }

.menu-toggle {
  display: none; background: none; border: none;
  font-size: 1.6rem; cursor: pointer; color: var(--carvao); line-height: 1;
}
@media (max-width: 880px) {
  .menu-toggle { display: block; }
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: flex-start;
    background: var(--creme); padding: 1.5rem var(--gutter) 2rem;
    box-shadow: 0 12px 24px rgba(43,39,36,0.1);
    gap: 1.1rem; display: none;
  }
  .nav-links.open { display: flex; }
  .nav:not(.scrolled) .nav-links a:not(.btn-nav) { color: var(--carvao); }
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center;
  padding: 7rem var(--gutter) 5rem;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: -2;
  background-size: cover; background-position: center;
  animation: heroZoom 22s var(--ease) infinite alternate;
}
@keyframes heroZoom { from { transform: scale(1); } to { transform: scale(1.08); } }
.hero::after {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(105deg, rgba(43,39,36,0.78) 0%, rgba(43,39,36,0.3) 55%, rgba(43,39,36,0.1) 100%),
    linear-gradient(to top, rgba(43,39,36,0.5) 0%, rgba(43,39,36,0) 40%);
}
.hero-content { position: relative; max-width: 760px; }
.hero .eyebrow { color: var(--madeira); }
.hero .eyebrow::before { background: var(--madeira); }
.hero h1 {
  color: var(--branco); margin-bottom: 1.4rem;
  text-shadow: 0 2px 30px rgba(0,0,0,0.35);
}
.hero h1 em { font-style: italic; color: var(--madeira); }
.hero-sub {
  color: rgba(255,255,255,0.92); font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  max-width: 540px; text-shadow: 0 1px 14px rgba(0,0,0,0.4);
  margin-bottom: 2.2rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.scroll-cue {
  position: absolute; bottom: 1.8rem; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.7); font-size: 0.72rem;
  text-transform: uppercase; letter-spacing: 0.2em;
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
}
.scroll-cue::after {
  content: ''; width: 1px; height: 38px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.7), transparent);
  animation: cueDrop 1.8s var(--ease) infinite;
}
@keyframes cueDrop { 0%,100% { opacity: .3; transform: scaleY(.6); } 50% { opacity: 1; transform: scaleY(1); } }

/* Hero pequeno (páginas internas) */
.hero-sm {
  position: relative; padding: 11rem var(--gutter) 4.5rem;
  text-align: center; overflow: hidden;
  background: var(--carvao);
}
.hero-sm-bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center; opacity: 0.42;
}
.hero-sm::after {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to bottom, rgba(43,39,36,0.5), rgba(43,39,36,0.85));
}
.hero-sm > * { position: relative; z-index: 2; }
.hero-sm h1 { color: var(--branco); margin-bottom: 1rem; }
.hero-sm .lead { margin: 0 auto; color: rgba(255,255,255,0.88); }
.hero-sm .eyebrow { color: var(--madeira); }
.hero-sm .eyebrow::before { background: var(--madeira); }

/* =========================================================
   BOTÕES
   ========================================================= */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.95rem 2.1rem;
  font-family: var(--sans); font-size: 0.98rem; font-weight: 600;
  letter-spacing: 0.01em;
  border: 1.5px solid transparent; border-radius: 999px;
  cursor: pointer; transition: all .28s var(--ease);
}
.btn-primary { background: var(--terracota); color: var(--branco); }
.btn-primary:hover { background: var(--terracota-d); color: var(--branco); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(184,92,56,0.3); }
.btn-ghost { background: rgba(255,255,255,0.08); color: var(--branco); border-color: rgba(255,255,255,0.5); backdrop-filter: blur(4px); }
.btn-ghost:hover { background: var(--branco); color: var(--carvao); border-color: var(--branco); }
.btn-outline { background: transparent; color: var(--carvao); border-color: var(--carvao); }
.btn-outline:hover { background: var(--carvao); color: var(--branco); }
.btn-whatsapp { background: #25D366; color: var(--branco); }
.btn-whatsapp:hover { background: #1da851; color: var(--branco); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(37,211,102,0.3); }

/* =========================================================
   SEÇÕES
   ========================================================= */
.section { padding: var(--sec-pad) var(--gutter); }
.section-inner { max-width: var(--maxw); margin: 0 auto; }
.section-inner.narrow { max-width: 820px; }

.bg-bege   { background: var(--bege); }
.bg-creme  { background: var(--creme); }
.bg-branco { background: var(--branco); }
.bg-carvao { background: var(--carvao); }
.bg-carvao h1, .bg-carvao h2, .bg-carvao h3 { color: var(--bege); }
.bg-carvao p, .bg-carvao .lead { color: rgba(245,239,230,0.8); }
.bg-carvao .eyebrow { color: var(--madeira); }
.bg-carvao .eyebrow::before { background: var(--madeira); }

.section-head { margin-bottom: 3.5rem; max-width: 640px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head .lead { margin-top: 0.4rem; }
.section-head.center .lead { margin-left: auto; margin-right: auto; }

/* ---- Divisor com folha ---- */
.leaf-divider {
  display: flex; align-items: center; justify-content: center; gap: 1.2rem;
  padding: 0;
}
.leaf-divider::before, .leaf-divider::after {
  content: ''; height: 1px; width: clamp(40px, 12vw, 140px);
  background: var(--linha);
}
.leaf-divider svg { width: 46px; height: 46px; opacity: 0.9; }

/* =========================================================
   STATS BAR
   ========================================================= */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--linha);
  border-block: 1px solid var(--linha);
}
.stat {
  background: var(--creme); padding: 2.4rem 1.4rem; text-align: center;
}
.stat .num {
  font-family: var(--serif); font-size: clamp(2rem, 3.4vw, 2.8rem);
  font-weight: 700; color: var(--terracota); line-height: 1;
}
.stat .lbl {
  font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.13em;
  color: var(--salvia); margin-top: 0.6rem; font-weight: 600;
}
@media (max-width: 680px) { .stats { grid-template-columns: 1fr 1fr; } }

/* =========================================================
   GRID 2 (foto + texto)
   ========================================================= */
.split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem); align-items: center;
}
.split.reverse .split-media { order: 2; }
.split-media {
  position: relative; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 4/3.2;
}
.split-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.split:hover .split-media img { transform: scale(1.04); }
.split-media .tag {
  position: absolute; left: 1rem; bottom: 1rem;
  background: rgba(43,39,36,0.82); color: var(--bege);
  font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.15em;
  padding: 0.45rem 0.9rem; border-radius: 999px; backdrop-filter: blur(4px);
}
@media (max-width: 820px) {
  .split { grid-template-columns: 1fr; gap: 2rem; }
  .split.reverse .split-media { order: 0; }
}

/* =========================================================
   CARDS DE SUÍTE (premium)
   ========================================================= */
.suites-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.6rem;
}
.suite-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  background: var(--carvao); aspect-ratio: 3/4;
  display: flex; flex-direction: column; justify-content: flex-end;
  isolation: isolate;
}
.suite-card img {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s var(--ease);
}
.suite-card::after {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to top, rgba(43,39,36,0.92) 8%, rgba(43,39,36,0.35) 48%, rgba(43,39,36,0.05) 75%);
}
.suite-card:hover img { transform: scale(1.07); }
.suite-card .num {
  position: absolute; top: 1.1rem; right: 1.2rem;
  font-family: var(--serif); font-size: 2.4rem; font-weight: 700;
  color: rgba(255,255,255,0.28); line-height: 1;
}
.suite-card-body { padding: 1.5rem 1.5rem 1.7rem; color: var(--bege); }
.suite-card-body .cap {
  font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--madeira); font-weight: 600; margin-bottom: 0.4rem;
}
.suite-card-body h3 { color: var(--branco); margin-bottom: 0.5rem; }
.suite-card-body .price {
  font-family: var(--serif); font-size: 1.15rem; color: var(--branco);
  font-weight: 600; padding-top: 0.7rem; margin-top: 0.7rem;
  border-top: 1px solid rgba(255,255,255,0.18);
}
.suite-card-body .price small { font-family: var(--sans); font-size: 0.78rem; color: rgba(245,239,230,0.6); font-weight: 400; }

/* =========================================================
   EXPERIÊNCIAS — cards imagem-fundo
   ========================================================= */
.exp-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.2rem;
}
.exp-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 4/3.4; display: flex; align-items: flex-end;
  isolation: isolate;
}
.exp-card img {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s var(--ease);
}
.exp-card::after {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to top, rgba(43,39,36,0.9), rgba(43,39,36,0.1) 65%);
}
.exp-card:hover img { transform: scale(1.06); }
.exp-card-body { padding: 1.4rem; color: var(--bege); }
.exp-card-body h3 { color: var(--branco); margin-bottom: 0.35rem; }
.exp-card-body p { font-size: 0.92rem; color: rgba(245,239,230,0.82); }

/* =========================================================
   GALERIA MOSAICO
   ========================================================= */
.mosaic {
  display: grid; grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px; gap: 0.6rem;
}
.mosaic figure { overflow: hidden; border-radius: var(--radius); }
.mosaic img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.mosaic figure:hover img { transform: scale(1.07); }
.mosaic .tall { grid-row: span 2; }
.mosaic .wide { grid-column: span 2; }
@media (max-width: 820px) {
  .mosaic { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .mosaic .wide { grid-column: span 2; }
  .mosaic .tall { grid-row: span 2; }
}

/* =========================================================
   QUOTE
   ========================================================= */
.quote-block { text-align: center; max-width: 820px; margin: 0 auto; }
.quote-block .mark {
  font-family: var(--serif); font-size: 4rem; color: var(--terracota);
  line-height: 0.5; display: block; margin-bottom: 1.5rem;
}
.quote-block blockquote {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(1.4rem, 2.8vw, 2.1rem); line-height: 1.45;
  color: var(--bege);
}
.quote-block .cite {
  margin-top: 1.6rem; font-family: var(--hand); font-size: 1.7rem;
  color: var(--madeira);
}

/* =========================================================
   FEATURE LIST
   ========================================================= */
.feature-list { list-style: none; display: grid; gap: 0.9rem; }
.feature-list li {
  padding-left: 1.8rem; position: relative; font-size: 1rem; color: var(--texto);
}
.feature-list li::before {
  content: ''; position: absolute; left: 0; top: 0.55em;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--terracota);
}

/* ---- Pilares (cards sem foto) ---- */
.pillars { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 2rem; }
.pillar { }
.pillar .pnum {
  font-family: var(--serif); font-size: 1rem; font-weight: 700;
  color: var(--terracota); border: 1.5px solid var(--terracota);
  width: 2.4rem; height: 2.4rem; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.1rem;
}
.pillar h3 { margin-bottom: 0.5rem; }
.pillar p { font-size: 0.96rem; }

/* =========================================================
   STEPS (reservar)
   ========================================================= */
.steps { display: grid; gap: 1.4rem; counter-reset: s; list-style: none; }
.step {
  display: flex; gap: 1.2rem; align-items: flex-start;
  background: var(--branco); padding: 1.4rem 1.5rem; border-radius: var(--radius);
  border: 1px solid var(--linha);
}
.step-num {
  flex-shrink: 0; counter-increment: s;
  width: 2.4rem; height: 2.4rem; border-radius: 50%;
  background: var(--terracota); color: var(--branco);
  font-family: var(--serif); font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.step-num::before { content: counter(s); }
.step strong { color: var(--carvao); font-size: 1.05rem; }

/* =========================================================
   FORM
   ========================================================= */
.form-card {
  background: var(--branco); padding: clamp(1.5rem, 4vw, 2.6rem);
  border-radius: var(--radius); border: 1px solid var(--linha);
  box-shadow: 0 16px 40px rgba(43,39,36,0.06);
}
.form-row { display: grid; gap: 1.1rem; margin-bottom: 1.1rem; }
.form-row.two { grid-template-columns: 1fr 1fr; }
@media (max-width: 600px) { .form-row.two { grid-template-columns: 1fr; } }
.form-row label {
  display: block; font-size: 0.82rem; color: var(--carvao);
  font-weight: 600; margin-bottom: 0.35rem; letter-spacing: 0.02em;
}
.form-row input, .form-row select, .form-row textarea {
  width: 100%; padding: 0.8rem 0.95rem;
  border: 1px solid var(--linha); border-radius: var(--radius);
  font-family: var(--sans); font-size: 0.95rem;
  background: var(--creme); color: var(--carvao);
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline: none; border-color: var(--terracota); background: var(--branco);
}
.form-row textarea { min-height: 110px; resize: vertical; }

/* =========================================================
   CONTATO CARDS
   ========================================================= */
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.4rem; }
.contact-card {
  background: var(--branco); border: 1px solid var(--linha);
  border-radius: var(--radius); padding: 1.8rem;
  display: flex; flex-direction: column;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.contact-card:hover { transform: translateY(-3px); box-shadow: 0 14px 32px rgba(43,39,36,0.08); }
.contact-card .ico { font-size: 1.6rem; margin-bottom: 0.8rem; }
.contact-card h3 { margin-bottom: 0.4rem; }
.contact-card p { font-size: 0.94rem; flex: 1; }
.contact-card .btn { margin-top: 1.2rem; align-self: flex-start; }

/* =========================================================
   CTA BANNER
   ========================================================= */
.cta-banner {
  position: relative; text-align: center; overflow: hidden;
  padding: var(--sec-pad) var(--gutter);
}
.cta-banner-bg { position: absolute; inset: 0; z-index: 0; background-size: cover; background-position: center; }
.cta-banner::after { content: ''; position: absolute; inset: 0; z-index: 1; background: rgba(43,39,36,0.82); }
.cta-banner > * { position: relative; z-index: 2; }
.cta-banner h2 { color: var(--branco); }
.cta-banner p { color: rgba(245,239,230,0.85); }

/* =========================================================
   FOOTER
   ========================================================= */
.footer { background: var(--carvao); color: var(--bege); padding: 4rem var(--gutter) 2rem; }
.footer-inner {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; gap: 2.5rem; grid-template-columns: 2fr 1fr 1fr;
}
@media (max-width: 760px) { .footer-inner { grid-template-columns: 1fr; gap: 2rem; } }
.footer h4 {
  color: var(--madeira); font-family: var(--sans); font-size: 0.78rem;
  text-transform: uppercase; letter-spacing: 0.18em; margin-bottom: 1rem;
}
.footer a { color: rgba(245,239,230,0.85); font-size: 0.95rem; }
.footer a:hover { color: var(--terracota); }
.footer-col p { margin-bottom: 0.5rem; }
.footer-brand .fb-top { display: flex; align-items: center; gap: 0.7rem; margin-bottom: 0.9rem; }
.footer-brand .nome { font-family: var(--serif); font-size: 1.6rem; color: var(--branco); }
.footer-brand .desc { color: rgba(245,239,230,0.65); max-width: 320px; font-size: 0.95rem; }
.footer-leaf { width: 38px; height: 38px; }
.footer-leaf path { stroke: var(--madeira); }
.footer-bottom {
  max-width: var(--maxw); margin: 3rem auto 0; padding-top: 1.6rem;
  border-top: 1px solid rgba(245,239,230,0.13);
  display: flex; justify-content: space-between; gap: 1rem;
  font-size: 0.82rem; color: rgba(245,239,230,0.45);
}
@media (max-width: 600px) { .footer-bottom { flex-direction: column; } }

/* =========================================================
   ANIMAÇÃO REVEAL
   ========================================================= */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-bg { animation: none; }
}

/* =========================================================
   UTIL
   ========================================================= */
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

/* =========================================================
   ADIÇÕES — acessibilidade, CTA mobile, FAQ, perfis, privacidade
   ========================================================= */

/* Foco visível por teclado */
:focus-visible {
  outline: 2.5px solid var(--terracota);
  outline-offset: 3px;
  border-radius: 2px;
}
.btn:focus-visible, .btn-nav:focus-visible { outline-offset: 4px; }

/* CTA WhatsApp fixo no mobile */
.wa-float {
  display: none;
  position: fixed; left: 1rem; right: 1rem; bottom: 1rem;
  z-index: 150;
  background: #25D366; color: #fff;
  padding: 0.95rem 1rem; border-radius: 999px;
  text-align: center; font-weight: 600; font-size: 1rem;
  box-shadow: 0 8px 28px rgba(43,39,36,0.32);
  align-items: center; justify-content: center; gap: 0.5rem;
}
.wa-float:hover { background: #1da851; color: #fff; }
@media (max-width: 880px) {
  .wa-float { display: flex; }
  body { padding-bottom: 4.5rem; }
}

/* FAQ — accordion nativo */
.faq { display: grid; gap: 0.7rem; max-width: 800px; margin: 0 auto; }
.faq details {
  background: var(--branco); border: 1px solid var(--linha);
  border-radius: var(--radius); overflow: hidden;
}
.faq summary {
  cursor: pointer; padding: 1.1rem 1.3rem;
  font-family: var(--serif); font-size: 1.08rem; font-weight: 600;
  color: var(--carvao); list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+'; font-family: var(--sans); font-size: 1.5rem;
  color: var(--terracota); transition: transform .25s var(--ease); line-height: 1;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details[open] summary { border-bottom: 1px solid var(--linha); }
.faq .faq-body { padding: 1rem 1.3rem 1.3rem; font-size: 0.97rem; color: var(--texto); }

/* Perfis de hóspede */
.perfis { display: grid; grid-template-columns: repeat(auto-fit, minmax(155px, 1fr)); gap: 0.8rem; }
.perfil {
  background: var(--branco); border: 1px solid var(--linha);
  border-radius: var(--radius); padding: 1.3rem 1.1rem; text-align: center;
  transition: transform .22s var(--ease), border-color .22s var(--ease);
}
.perfil:hover { transform: translateY(-3px); border-color: var(--terracota); }
.perfil .ico { font-size: 1.7rem; display: block; margin-bottom: 0.5rem; }
.perfil .nome { font-family: var(--serif); font-weight: 600; color: var(--carvao); font-size: 1.02rem; }

/* Aviso de privacidade no form */
.privacy-note {
  font-size: 0.82rem; color: var(--salvia);
  margin-top: 1rem; line-height: 1.5;
}
.privacy-note a { text-decoration: underline; }

/* Página de privacidade — texto corrido */
.prose { max-width: 720px; margin: 0 auto; }
.prose h2 { font-size: 1.4rem; margin-top: 2rem; }
.prose h2:first-child { margin-top: 0; }
.prose p, .prose li { font-size: 0.97rem; }
.prose ul { padding-left: 1.2rem; margin-bottom: 1rem; }
