/* ============================================================
   Slow Stays — Vila do Bispo · Casa Colorida & Tempo & Amor
   Design system extracted from Figma
   Fonts: Inter (UI/headings) + Bad Script (emotional accent)
   ============================================================ */

:root {
  /* --- Brand palette (from Figma) --- */
  --sage:        #82B8B5;   /* rgb(130,184,181) — primary */
  --sage-deep:   #5E928F;   /* darker sage for hover/text on light */
  --sage-soft:   #C3D8CF;   /* rgb(195,216,207) — light sage panels */
  --sage-mist:   #E7F0EB;   /* very light wash */
  --terracotta:  #D2976E;   /* rgb(210,151,110) */
  --peach:       #FFB583;   /* rgb(255,181,131) */
  --peach-deep:  #F08A24;   /* rgb(240,138,36) — visto das checkboxes (medido no Figma) */
  --clay:        #B5764F;   /* deep terracotta for text */
  --danger:      #C00F0C;   /* rgb(192,15,12) */

  --ink:         #1E1E1E;   /* rgb(30,30,30) */
  --ink-soft:    #303030;
  --slate:       #757575;   /* rgb(117,117,117) */
  --line:        #D2D2D2;   /* rgb(210,210,210) borders */
  --line-soft:   #E6E6E6;
  --paper:       #FDFDFD;   /* rgb(253,253,253) */
  --cloud:       #F5F5F5;   /* rgb(245,245,245) */
  --white:       #FFFFFF;

  /* --- Type --- */
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-script: "Bad Script", "Segoe Script", cursive;

  /* --- Layout --- */
  --wrap: 1240px;
  --gutter: clamp(20px, 5vw, 80px);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 28px;

  --shadow-sm: 0 1px 2px rgba(30,30,30,.05), 0 8px 24px rgba(30,30,30,.05);
  --shadow-md: 0 10px 40px rgba(30,30,30,.10);
  --shadow-lg: 0 24px 60px rgba(40,40,40,.16);

  /* --- Watercolor wash (brand sage → cream → peach → teal) --- */
  --watercolor:
    radial-gradient(135% 200% at 5% 38%, rgba(150,176,140,.62) 0%, rgba(150,176,140,0) 46%),
    radial-gradient(120% 200% at 97% 132%, rgba(120,182,190,.52) 0%, rgba(120,182,190,0) 50%),
    radial-gradient(130% 210% at 90% 8%, rgba(244,162,98,.66) 0%, rgba(244,162,98,0) 54%),
    linear-gradient(100deg, #DBE5D9 0%, #F2EEE2 44%, #FBE7D3 70%, #F9D7B6 100%);
  --on-watercolor: #2E4A47;

  /* altura do header fixo — casa.css e privacidade.html redefinem-na */
  --bar-h: clamp(76px, 6.8vw, 97px);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
/* Skip link (acessibilidade — visível só em foco de teclado) */
.skip-link {
  position: absolute; left: -9999px; top: 8px; z-index: 9999;
  background: var(--sage-deep); color: #fff;
  padding: 8px 18px; border-radius: 6px;
  font-size: 14px; font-weight: 600; letter-spacing: .01em;
}
.skip-link:focus { left: 8px; }
ul { list-style: none; padding: 0; }

/* ---------- Typography ---------- */
.eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--sage);
}
.script {
  font-family: var(--font-script);
  font-weight: 400;
  color: var(--terracotta);
  line-height: 1.1;
}
.wordmark {
  font-weight: 700;
  letter-spacing: .05em;
  color: var(--sage);
  text-transform: lowercase;
}
h1, h2, h3 { line-height: 1.12; letter-spacing: -0.02em; font-weight: 700; text-wrap: balance; }
.display {
  font-size: clamp(40px, 6.5vw, 84px);
  line-height: 1.05;
  letter-spacing: -0.03em;
}
.h-section {
  font-size: clamp(30px, 4.2vw, 52px);
  letter-spacing: -0.025em;
}
.lead {
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.55;
  color: var(--ink-soft);
  text-wrap: pretty;
}
.muted { color: var(--slate); }

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(64px, 9vw, 128px); }
.stack { display: flex; flex-direction: column; }
.center { text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 600; font-size: 15px; letter-spacing: .01em;
  padding: 15px 26px; border-radius: 100px;
  transition: transform .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--sage); color: var(--white); }
.btn-primary:hover { background: var(--sage-deep); transform: translateY(-2px); box-shadow: 0 12px 24px rgba(94,146,143,.3); }
.btn-dark { background: var(--ink); color: var(--white); }
.btn-dark:hover { background: #000; transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--ink); box-shadow: inset 0 0 0 1.5px var(--line); }
.btn-ghost:hover { box-shadow: inset 0 0 0 1.5px var(--ink); }
.btn-light { background: var(--white); color: var(--ink); box-shadow: var(--shadow-sm); }
.btn-light:hover { transform: translateY(-2px); }
.btn .arrow { transition: transform .2s ease; }
.btn:hover .arrow { transform: translateX(3px); }
.btn-lg { padding: 18px 34px; font-size: 16px; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(253,253,253,.82);
  backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, background .3s ease;
}
.site-header.scrolled { border-color: var(--line-soft); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand { display: flex; align-items: baseline; gap: 9px; }
.brand .mark { font-weight: 700; letter-spacing: .04em; color: var(--sage); font-size: 20px; }
.brand .sub { font-family: var(--font-script); color: var(--terracotta); font-size: 17px; }
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a { font-size: 15px; color: var(--ink-soft); font-weight: 500; transition: color .2s; }
.nav-links a:hover { color: var(--sage-deep); }
.nav-cta { display: flex; align-items: center; gap: 18px; }
.nav-toggle { display: none; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #E8E8E8; padding-block: clamp(56px, 7vw, 96px) 40px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 48px; }
.footer-script { font-family: var(--font-script); color: var(--peach); font-size: clamp(28px,3vw,40px); line-height: 1.25; }
.footer-col h4 { font-size: 13px; letter-spacing: .2em; text-transform: uppercase; color: var(--sage); margin-bottom: 18px; font-weight: 600; }
.footer-col a, .footer-col p { display: block; color: #BFC4C2; font-size: 15px; margin-bottom: 11px; transition: color .2s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  margin-top: 56px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.12);
  display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap;
  font-size: 13.5px; color: #8E938F;
}
.marquee-line {
  display: flex; gap: 40px; flex-wrap: wrap; justify-content: center;
  font-family: var(--font-script); color: var(--sage-soft); font-size: 20px; opacity: .9;
}

/* ---------- Rodapé completo (banda escura sobre o mural — Figma) ---------- */
.foot-site {
  position: relative; isolation: isolate;
  background: #362C2E url("assets/fig/mural.jpg") center / cover no-repeat;
  color: #fff;
}
.foot-site::before { content: ""; position: absolute; inset: 0; z-index: -1; background: rgba(38,32,30,.78); }
.fs-grid {
  max-width: 1196px; margin-inline: auto;
  /* mesma goteira do header (.bar-inner): o rodapé alinha com o logótipo */
  padding: clamp(40px,6vw,64px) clamp(20px,5vw,60px) clamp(30px,4vw,44px);
  display: grid; grid-template-columns: 1.5fr 1fr 1fr;
  gap: clamp(30px,5vw,70px); align-items: start;
}
.fs-mark { width: 52px; height: 38px; color: #fff; }
.fs-logo { width: 62px; height: auto; display: block; }
.fs-name { display: flex; flex-direction: column; line-height: 1.08; margin-top: 10px; }
.fs-name .l1 { font-size: 17px; font-weight: 700; letter-spacing: .015em; text-transform: lowercase; }
.fs-name .l2 { font-size: 14px; font-weight: 700; letter-spacing: .015em; text-transform: lowercase; color: var(--peach); }
.fs-tag { margin-top: 14px; max-width: 300px; font-size: 14.5px; font-weight: 300; line-height: 1.55; opacity: .85; }
.fs-col { display: flex; flex-direction: column; gap: 2px; }
.fs-h { font-size: 12px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; opacity: .6; margin-bottom: 12px; }
.fs-col a, .fs-col > span:not(.fs-h) { font-size: 14.5px; padding-block: 4px; color: #fff; opacity: .9; }
.fs-col a { transition: opacity .2s; width: fit-content; }
.fs-col a:hover { opacity: 1; text-decoration: underline; text-underline-offset: 4px; }
.fs-btm { border-top: 1px solid rgba(255,255,255,.18); }
.fs-btm-inner {
  max-width: 1196px; margin-inline: auto;
  padding: 16px clamp(20px,5vw,60px);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; text-align: center;
  gap: 8px 24px; font-size: 13px;
}
.fs-btm-inner > span { opacity: .9; }
@media (max-width: 760px) {
  .fs-grid { grid-template-columns: 1fr; gap: 30px; }
  .fs-btm-inner { flex-direction: column; text-align: center; gap: 6px; }
}

/* ---------- Minimal footer ---------- */
.foot-min {
  background: var(--watercolor); color: var(--on-watercolor);
  padding: 22px var(--gutter);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 10px 28px; font-size: 14px; letter-spacing: .01em;
}
.foot-min > span { flex: 1 1 0; min-width: 0; }       /* laterais com largura igual → Privacidade ao centro */
.foot-min > span:first-child { text-align: left; }
.foot-min > span:last-child { opacity: .9; text-align: right; }
.foot-priv {
  flex: 0 0 auto; text-align: center; white-space: nowrap;
  color: var(--on-watercolor); opacity: .9;
  text-decoration: underline; text-underline-offset: 3px; transition: opacity .2s;
}
.foot-priv:hover { opacity: 1; }
.reddune-link { transition: color .2s; }
.reddune-link:hover { color: #A8201A; }

/* ---------- Pills / chips ---------- */
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: 100px;
  background: var(--sage-mist); color: var(--sage-deep);
  font-size: 14px; font-weight: 600;
}
.tag-row { display: flex; flex-wrap: wrap; gap: 10px; }

/* ---------- Cards ---------- */
.card {
  background: var(--white); border: 1px solid var(--line-soft);
  border-radius: var(--radius); overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

/* ---------- Forms ---------- */
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-size: 14px; font-weight: 600; color: var(--ink-soft); }
.input {
  width: 100%; padding: 14px 16px; font-size: 16px; font-family: inherit;
  color: var(--ink); background: var(--white);
  border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  transition: border-color .2s, box-shadow .2s;
}
.input::placeholder { color: #9A9A9A; }
.input:focus { outline: none; border-color: var(--sage); box-shadow: 0 0 0 4px rgba(130,184,181,.18); }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s cubic-bezier(.16,.84,.44,1), transform .8s cubic-bezier(.16,.84,.44,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-script { grid-column: 1 / -1; }
}
@media (max-width: 740px) {
  body { font-size: 16px; }
  .nav-links { display: none; }
  .footer-top { grid-template-columns: 1fr; }
}

/* ================= SCROLLBAR PERSONALIZADA ================= */
/* WebKit (Chrome, Safari, Edge) */
::-webkit-scrollbar { width: 11px; height: 11px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb {
  background: var(--sage-soft);
  border-radius: 999px;
  border: 3px solid var(--paper);
  background-clip: padding-box;
}
::-webkit-scrollbar-thumb:hover { background: var(--sage); background-clip: padding-box; }
::-webkit-scrollbar-thumb:active { background: var(--sage-deep); background-clip: padding-box; }
/* Firefox (só quando não há suporte WebKit, para não anular o estilo acima) */
@supports not selector(::-webkit-scrollbar) {
  html { scrollbar-width: thin; scrollbar-color: var(--sage-soft) transparent; }
}

/* ================= HAMBURGER MENU =================
   O header é escuro com texto branco (redesign Figma): o botão e o drawer
   seguem essa paleta. Antes usavam a antiga (`--watercolor` pastel + texto
   teal), que já não pertence a este site. */
.nav-toggle {
  display: none;
  align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 8px;
  color: #fff; flex-shrink: 0;
  transition: background .15s;
}
.nav-toggle:hover { background: rgba(255,255,255,.12); }
.nav-toggle svg { width: 22px; height: 22px; display: block; }
/* hambúrguer vira X quando o menu está aberto (as 3 <line> do SVG) */
.nav-toggle svg line { transition: transform .25s ease, opacity .18s ease; transform-origin: 12px 12px; }
.nav-toggle[aria-expanded="true"] svg line:nth-child(1) { transform: rotate(45deg) translateY(6px); }
.nav-toggle[aria-expanded="true"] svg line:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] svg line:nth-child(3) { transform: rotate(-45deg) translateY(-6px); }
@media (prefers-reduced-motion: reduce) { .nav-toggle svg line { transition: none; } }

/* Drawer — oculto por defeito, visível só em mobile com .open.
   Ocupa o ecrã todo abaixo do header: em painel curto via-se o conteúdo da
   página por baixo e parecia meio partido. */
.mobile-drawer {
  display: none;
  position: fixed; top: var(--bar-h); left: 0; right: 0; bottom: 0; z-index: 59;
  overflow-y: auto; overscroll-behavior: contain;
  background: rgba(38,34,30,.97);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  padding: 6px 0 max(24px, env(safe-area-inset-bottom));
}
/* com o menu aberto o header ganha o mesmo fundo, senão via-se a fotografia
   entre o topo e o painel escuro e pareciam duas coisas soltas */
body:has(.mobile-drawer.open) .bar { background: rgba(38,34,30,.97); }
body:has(.mobile-drawer.open) .bar::before { opacity: 0; }
.mobile-drawer nav { display: flex; flex-direction: column; }
.mobile-drawer nav a {
  display: block; padding: 17px clamp(20px,5vw,40px);
  font-size: 14px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.10);
  transition: background .15s;
}
.mobile-drawer nav a:hover, .mobile-drawer nav a:focus-visible { background: rgba(255,255,255,.08); }
.mobile-drawer nav a:last-child { border-bottom: none; }
/* "Reservar" é a acção principal — em pêssego, como os botões do site */
.mobile-drawer nav a[data-i18n="foot.book"] { color: var(--peach); }

/* ================= SWITCH DE IDIOMA (PT/EN) ================= */
.bar-right { display: flex; align-items: center; gap: clamp(10px,2vw,16px); }
.lang-switch {
  display: inline-flex; align-items: center; flex-shrink: 0;
  border: 1px solid rgba(94,146,143,.38); border-radius: 999px;
  overflow: hidden; background: rgba(255,255,255,.45);
}
.lang-opt {
  padding: 5px 11px; font-size: 12px; font-weight: 700; letter-spacing: .08em;
  color: var(--on-watercolor); opacity: .55; cursor: pointer;
  transition: background .15s, opacity .15s, color .15s;
}
.lang-opt:hover { opacity: 1; }
.lang-opt[aria-pressed="true"] { opacity: 1; background: var(--sage); color: #fff; }

/* Switch de idioma dentro do menu mobile — encostado ao fundo do drawer */
.drawer-lang {
  display: flex; align-items: center; gap: 14px;
  margin-top: auto; padding: 20px clamp(20px,5vw,40px) 4px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.drawer-lang-lbl {
  font-size: 12px; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: #fff; opacity: .6;
}
.drawer-lang .lang-opt { padding: 8px 18px; font-size: 13px; }

/* Header colapsa para hamburger mais cedo — evita nav partido em larguras intermédias */
@media (max-width: 900px) {
  .bar nav    { display: none !important; }
  .nav-toggle { display: flex; }
  .bar-right .lang-switch { display: none; }   /* switch passa para dentro do menu */
  /* flex em coluna para o bloco do idioma poder encostar ao fundo */
  .mobile-drawer.open { display: flex; flex-direction: column; }
}

@media (max-width: 640px) {
  /* Mosaico → 1 coluna */
  .mosaic { grid-template-columns: 1fr; }

  /* Colecção centra em vez de alinhar à direita */
  .collection { text-align: center; margin-inline: auto; max-width: none; }

  /* Booking strip → 1 foto em ecrãs estreitos */
  .bk-strip { grid-template-columns: 1fr; }
  .bk-strip > div:nth-child(2),
  .bk-strip > div:nth-child(3) { display: none; }

  /* Rodapé empilha: contactos em cima, Privacidade ao meio, © por baixo */
  .foot-min { flex-direction: column-reverse; align-items: center; justify-content: center; text-align: center; gap: 6px; }
  .foot-min > span { flex: none; text-align: center; }
}

/* ================= DROPDOWNS PERSONALIZADOS (popover, estilo calendário) ================= */
.cs-control { position: relative; cursor: pointer; }
.cs-control svg { transition: transform .2s ease; }
.cs-control[aria-expanded="true"] { box-shadow: inset 0 0 0 1px rgb(240,138,36); }
.cs-control[aria-expanded="true"] > svg { transform: rotate(180deg); }
.cs-native {
  position: absolute; left: 0; top: 0; width: 1px; height: 1px;
  opacity: 0; pointer-events: none; margin: 0; padding: 0; border: 0;
}
.cs-value {
  flex: 1; min-width: 0; text-align: left;
  font-size: 15px; color: var(--ink);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.cs-pop {
  /* mesmo z do calendário: os popovers do widget empilham todos igual */
  position: absolute; top: calc(100% + 10px); left: 0; right: 0; z-index: 200;
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  padding: 6px; box-shadow: 0 18px 50px rgba(30,30,30,.22);
  max-height: 264px; overflow-y: auto;
}
.cs-pop[hidden] { display: none; }
.cs-opt {
  padding: 10px 12px; border-radius: 8px; font-size: 14.5px;
  color: var(--ink); cursor: pointer; transition: background .12s, color .12s;
  display: flex; align-items: center; gap: 10px;
}
/* bandeiras dos indicativos: uma sprite só (assets/flags/sprite.webp), cada
   bandeira com 40px de largura = 2x para esta caixa de 20px. A linha certa vem
   do `data-flag` da <option>, via background-position no site.js. */
.cs-flag {
  flex: none; width: 20px; height: 15px; border-radius: 2px;
  background-image: url("assets/flags/sprite.webp");
  background-size: 20px auto; background-repeat: no-repeat;
  box-shadow: inset 0 0 0 1px rgba(30,30,30,.15);
}
.cs-opt:hover { background: #FCEADC; }
.cs-opt.sel { background: rgb(240,138,36); color: #fff; font-weight: 600; }

/* ============================================================
   Animações — calmas, no tom da marca; respeitam reduced-motion.
   .reveal é ativado por site.js (IntersectionObserver → .in);
   gate em html[data-lang] para nunca esconder conteúdo sem JS.
   ============================================================ */
@media (prefers-reduced-motion: no-preference) {
  /* reveal ao scroll */
  html[data-lang] .reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease-out, transform .7s ease-out; }
  html[data-lang] .reveal.in { opacity: 1; transform: none; }
  .ggrid .gcell:nth-child(even) { transition-delay: .12s; }
  .mosaic .tile:nth-child(3n+2) { transition-delay: .1s; }
  .mosaic .tile:nth-child(3n) { transition-delay: .2s; }

  /* hero — zoom lento que assenta (Ken Burns, 1×) */
  .hero-bg { animation: ccHeroZoom 16s ease-out both; }
  .casa-hero { overflow: hidden; }
  .casa-hero::before { content: ""; position: absolute; inset: 0; background: inherit; animation: ccHeroZoom 16s ease-out both; }

  /* widget de reserva — entrada suave */
  .booking-bar { animation: ccFadeUp .8s ease-out .15s both; }

  /* botão coral — varrimento de brilho ocasional */
  .btn-book { position: relative; overflow: hidden; }
  .btn-book::after {
    content: ""; position: absolute; top: 0; bottom: 0; left: -70px; width: 46px;
    background: linear-gradient(100deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.4) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-18deg);
    animation: ccSheen 6.5s ease-in-out 2.5s infinite;
  }
}
@keyframes ccHeroZoom { from { transform: scale(1.06); } to { transform: scale(1); } }
@keyframes ccFadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
@keyframes ccSheen { 0% { left: -70px; } 9% { left: calc(100% + 30px); } 100% { left: calc(100% + 30px); } }

/* ============================================================
   Micro-animações — cards, dropdowns, calendário, menu, botões.
   Calmas, no tom da marca; respeitam reduced-motion.
   ============================================================ */
@media (prefers-reduced-motion: no-preference) {
  /* FAQ — a resposta desliza ao abrir. Sem sombra nem fundo no hover: a lista
     do Figma não tem cartões, é texto sobre o fundo da página. */
  .acc[open] .ans { animation: ccAccOpen .35s ease-out both; }
  .acc summary > span { transition: color .2s ease; }
  .acc summary:hover > span { color: var(--sage-deep); }

  /* dropdowns personalizados — pop-in */
  .cs-menu { animation: ccPopIn .22s cubic-bezier(.2,.85,.3,1.1) both; transform-origin: top center; }

  /* calendário — fade suave + dias reativos */
  .cal { animation: ccFadeIn .22s ease-out both; }
  .cal-grid .day { transition: background .15s ease, transform .15s ease; }
  .cal-grid .day:not(.muted):hover { transform: scale(1.12); }

  /* checkboxes — visto com "pop" */
  .check input:checked + .box svg { animation: ccPop .28s cubic-bezier(.2,.9,.3,1.4) both; }

  /* menu mobile — desliza para baixo */
  .mobile-drawer.open { animation: ccDrawerIn .28s ease-out both; }

  /* galeria das casas — levitar suave */
  .gcell { transition: transform .35s ease, box-shadow .35s ease; }
  .gcell:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(30,30,30,.16); }

  /* botões — feedback ao pressionar */
  .btn:active, .btn-danger:active, .btn-book:active { transform: translateY(0) scale(.97); }
}
@keyframes ccAccOpen { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }
@keyframes ccPopIn { from { opacity: 0; transform: translateY(-6px) scale(.98); } to { opacity: 1; transform: none; } }
@keyframes ccFadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes ccPop { from { transform: scale(.3); } to { transform: scale(1); } }
@keyframes ccDrawerIn { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: none; } }
