/* =====================================================
   CASA PIETRA · Luzzi — autenticidade lapidada
   Mundo: editorial escuro, terracota, materialidade
   ===================================================== */

:root {
  --terra:    #854833;
  --terra-d:  #6E3A28;
  --taupe:    #55493E;
  --ink:      #241B15;
  --ink-2:    #2E241D;
  --sand:     #DED9C6;
  --ivory:    #F2EFE6;
  --sand-dim: #C9BFA9;           /* texto secundário sobre escuro (tintado, não cinza) */
  --line:     rgba(222, 217, 198, .22);
  --olive:    #6B6B4A;

  --serif: "Cormorant Garamond", Georgia, serif;
  --sans:  "Jost", "Helvetica Neue", sans-serif;
  --script: "Sacramento", cursive;

  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --wrap: min(1180px, 92vw);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-weight: 300;
  background: var(--ink);
  color: var(--ivory);
  line-height: 1.65;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

::selection { background: var(--terra); color: var(--ivory); }
::placeholder { color: rgba(222,217,198,.55); opacity: 1; }

html { scrollbar-color: var(--terra) var(--ink); }
body::-webkit-scrollbar { width: 10px; }
body::-webkit-scrollbar-track { background: var(--ink); }
body::-webkit-scrollbar-thumb { background: var(--terra); }

:focus-visible { outline: 2px solid var(--sand); outline-offset: 3px; }

/* ---------- primitives ---------- */
.wrap { width: var(--wrap); margin-inline: auto; }
.wrap--narrow { max-width: 780px; }

.display {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.1rem, 4.6vw, 3.9rem);
  line-height: 1.14;
  letter-spacing: .015em;
  text-wrap: balance;
  color: var(--ivory);
}
.display em {
  font-style: italic;
  font-weight: 400;
  color: var(--sand);
}
.display--sm { font-size: clamp(1.85rem, 3.4vw, 2.9rem); }
.display--center { text-align: center; }

.script {
  font-family: var(--script);
  font-size: 1.28em;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--sand);
}
.script--lg { font-size: 1.6em; }

.kicker-line {
  font-size: .78rem;
  font-weight: 400;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--sand-dim);
  display: flex;
  align-items: center;
  gap: 1.1rem;
  margin-bottom: 1.6rem;
}
.kicker-line::before {
  content: "";
  width: 44px; height: 1px;
  background: var(--terra);
  flex: none;
}
.kicker-line--center { justify-content: center; }
.kicker-line--center::after {
  content: "";
  width: 44px; height: 1px;
  background: var(--terra);
  flex: none;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .26em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  padding: 1.05rem 2.4rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color .35s var(--ease-out), color .35s var(--ease-out), border-color .35s var(--ease-out);
}
.btn--solid { background: var(--terra); color: var(--ivory); }
.btn--solid:hover { background: var(--sand); color: var(--ink); }
.btn--line { background: transparent; color: var(--ivory); border-color: var(--line); }
.btn--line:hover { border-color: var(--sand); background: rgba(222,217,198,.07); }
.btn--full { width: 100%; }

/* ---------- reveal motion (um momento autoral) ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  clip-path: inset(0 0 18% 0);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out), clip-path .9s var(--ease-out);
  transition-delay: var(--reveal-delay, 0s);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
  clip-path: inset(0 0 0 0);
}

/* parallax sutil em imagens de seção (transform only) */
.parallax-img { overflow: hidden; }
.parallax-img img {
  transform: translateY(var(--py, 0)) scale(1.12);
  transition: transform .1s linear;
  will-change: transform;
}
@media (prefers-reduced-motion: reduce) {
  .parallax-img img { transform: none !important; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; clip-path: none; transition: none; }
}

/* =====================================================
   HEADER
   ===================================================== */
.topbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .9rem clamp(1.2rem, 4vw, 3rem);
  transition: background-color .4s var(--ease-out), backdrop-filter .4s var(--ease-out);
}
.topbar.is-scrolled {
  background: rgba(36, 27, 21, .82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(222,217,198,.1);
}
.topbar__brand { display: inline-flex; align-items: center; gap: 1rem; }
.topbar__logo { height: 20px; width: auto; }
.topbar__sep { width: 1px; height: 22px; background: rgba(242,239,230,.35); }
.topbar__logo-luzzi { height: 26px; width: auto; }
.topbar__cta {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .24em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ivory);
  border: 1px solid var(--line);
  padding: .6rem 1.3rem;
  transition: border-color .3s, background-color .3s;
}
.topbar__cta:hover { border-color: var(--sand); background: rgba(222,217,198,.08); }

/* =====================================================
   HERO
   ===================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.hero__media, .hero__media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(36,27,21,.78) 0%, rgba(36,27,21,.52) 34%, rgba(36,27,21,.85) 82%, var(--ink) 100%),
    radial-gradient(120% 70% at 50% 46%, rgba(36,27,21,.3) 30%, rgba(36,27,21,.6) 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: min(880px, 92vw);
  padding: 7rem 0 5.5rem;
}
.hero__kicker {
  text-shadow: 0 1px 10px rgba(0,0,0,.6);
  font-size: .74rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--ivory);
  margin-bottom: 2.4rem;
}
.hero__logo {
  width: clamp(230px, 32vw, 360px);
  margin: 0 auto 2.6rem;
}
.hero__title {
  text-shadow: 0 2px 22px rgba(0,0,0,.45);
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.7rem, 3.3vw, 2.7rem);
  line-height: 1.24;
  letter-spacing: .02em;
  text-wrap: balance;
  margin-bottom: 1.4rem;
}
.hero__title em { font-style: italic; font-weight: 400; color: var(--sand); }
.hero__facts {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.1rem 2.6rem;
  margin: 0 auto 2.9rem;
  max-width: 720px;
}
.hero__facts li {
  display: flex;
  align-items: center;
  gap: .65rem;
}
.hero__facts svg {
  width: 26px; height: 26px;
  flex: none;
  fill: none;
  stroke: var(--sand);
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 1px 6px rgba(0,0,0,.5));
}
.hero__facts span {
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--ivory);
  text-shadow: 0 1px 10px rgba(0,0,0,.6);
  white-space: nowrap;
}
.hero__scroll {
  position: absolute;
  left: 50%; bottom: 2.2rem;
  transform: translateX(-50%);
  z-index: 2;
  width: 1px; height: 58px;
  background: rgba(222,217,198,.25);
  overflow: hidden;
}
.hero__scroll span {
  position: absolute; inset: 0;
  background: var(--sand);
  transform-origin: top;
  animation: scrollhint 2.4s var(--ease-out) infinite;
}
@keyframes scrollhint {
  0%   { transform: translateY(-100%); }
  55%  { transform: translateY(0); }
  100% { transform: translateY(100%); }
}
@media (prefers-reduced-motion: reduce) { .hero__scroll { display: none; } }

/* =====================================================
   CONCEITO + FATOS
   ===================================================== */
.concept { padding: clamp(5rem, 10vw, 8.5rem) 0 0; background: var(--ink); }
.concept .display { text-align: center; margin-bottom: 3rem; }
.concept__body {
  max-width: 62ch;
  margin-inline: auto;
  display: grid;
  gap: 1.25rem;
  color: var(--sand);
  text-align: center;
}

.facts {
  margin-top: clamp(3.5rem, 7vw, 5.5rem);
  padding: clamp(2.4rem, 5vw, 3.6rem) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.facts__item {
  padding: .4rem clamp(1rem, 2.6vw, 2.4rem);
  text-align: center;
}
.facts__item + .facts__item { border-left: 1px solid var(--line); }
.facts__item dt {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.7rem, 2.8vw, 2.5rem);
  line-height: 1.1;
  color: var(--ivory);
  margin-bottom: .55rem;
}
.facts__item dd {
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--sand-dim);
  max-width: 24ch;
  margin-inline: auto;
}

/* =====================================================
   ARQUITETURA
   ===================================================== */
.arch {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  align-items: center;
  gap: clamp(2.5rem, 6vw, 6rem);
  padding: clamp(5rem, 10vw, 8.5rem) clamp(1.2rem, 4vw, 4rem);
  background: var(--ink);
}
.arch__media img { width: 100%; height: min(72vh, 680px); object-fit: cover; }
.arch__text { max-width: 34rem; }
.arch__text .display { margin-bottom: 1.6rem; }
.arch__text p { color: var(--sand); margin-bottom: 1.1rem; }
.arch__text .btn { margin-top: 1.4rem; }

/* =====================================================
   LAZER
   ===================================================== */
.leisure {
  background: var(--terra);
  color: var(--ivory);
  padding-top: clamp(5rem, 10vw, 8.5rem);
}
.leisure .kicker-line { color: rgba(242,239,230,.75); }
.leisure .kicker-line::before,
.leisure .kicker-line--center::after { background: var(--sand); }
.leisure .display .script { color: var(--ivory); }
.leisure__lead {
  max-width: 60ch;
  margin: 1.6rem auto 0;
  text-align: center;
  color: rgba(242,239,230,.88);
}
.leisure__grid {
  list-style: none;
  margin-top: clamp(3rem, 6vw, 4.5rem);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(242,239,230,.22);
  border-left: 1px solid rgba(242,239,230,.22);
}
.leisure__grid li {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  text-align: center;
  padding: 2.1rem 1.2rem;
  border-right: 1px solid rgba(242,239,230,.22);
  border-bottom: 1px solid rgba(242,239,230,.22);
  transition: background-color .35s var(--ease-out);
}
.leisure__grid li:hover { background: rgba(36,27,21,.14); }
.leisure__grid svg {
  width: 34px; height: 34px;
  fill: none;
  stroke: var(--ivory);
  stroke-width: 1.3;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .4s var(--ease-out);
}
.leisure__grid svg path,
.leisure__grid svg rect,
.leisure__grid svg circle,
.leisure__grid svg ellipse {
  stroke-dasharray: 120;
  stroke-dashoffset: 120;
}
.leisure__grid.is-drawn svg path,
.leisure__grid.is-drawn svg rect,
.leisure__grid.is-drawn svg circle,
.leisure__grid.is-drawn svg ellipse {
  animation: icon-draw 1.4s var(--ease-out) forwards;
  animation-delay: calc(var(--i, 0) * 90ms);
}
@keyframes icon-draw {
  to { stroke-dashoffset: 0; }
}
.leisure__grid li:hover svg { transform: translateY(-4px) scale(1.08); }
@media (prefers-reduced-motion: reduce) {
  .leisure__grid svg path, .leisure__grid svg rect,
  .leisure__grid svg circle, .leisure__grid svg ellipse {
    stroke-dasharray: none; stroke-dashoffset: 0; animation: none !important;
  }
}
.leisure__grid span {
  font-size: .8rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.leisure__band { height: clamp(240px, 44vw, 460px); overflow: hidden; margin-top: clamp(3rem, 6vw, 4.5rem); }
.leisure__band img { width: 100%; height: 100%; object-fit: cover; }

/* =====================================================
   FAIXA PRÉ-LANÇAMENTO
   ===================================================== */
.prelaunch {
  background: var(--ink-2);
  border-block: 1px solid var(--line);
  padding: clamp(4rem, 8vw, 6.5rem) 0;
  text-align: center;
}
.prelaunch__sub {
  max-width: 54ch;
  margin: 1.4rem auto 2.4rem;
  color: var(--sand);
}
.prelaunch__cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

/* =====================================================
   LOCALIZAÇÃO
   ===================================================== */
.location {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: center;
  gap: clamp(2.5rem, 6vw, 6rem);
  padding: clamp(5rem, 10vw, 8.5rem) clamp(1.2rem, 4vw, 4rem);
  background: var(--ink);
}
.location__text { max-width: 34rem; justify-self: end; }
.location__text .display { margin-bottom: 1.6rem; }
.location__text p { color: var(--sand); margin-bottom: 1.1rem; }
.location__quote {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-style: italic;
  line-height: 1.4;
  color: var(--ivory) !important;
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
  margin-top: 1.8rem;
}
.location__media img { width: 100%; height: min(46vh, 430px); object-fit: cover; }
.location__map { position: relative; }
.location__map iframe {
  display: block;
  width: 100%;
  height: 250px;
  border: 0;
  border-top: 1px solid var(--line);
  filter: sepia(.32) saturate(.72) contrast(1.02);
}
.location__map-cta {
  position: absolute;
  right: .9rem; bottom: .9rem;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ivory);
  background: rgba(36,27,21,.85);
  padding: .55rem 1rem;
  transition: background-color .3s;
}
.location__map-cta:hover { background: var(--terra); }

/* =====================================================
   GALERIA
   ===================================================== */
.gallery { padding: clamp(5rem, 10vw, 8.5rem) 0 0; background: var(--ink); }
.gallery__viewport {
  margin-top: clamp(2.6rem, 5vw, 4rem);
  display: flex;
  gap: 2px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.gallery__viewport::-webkit-scrollbar { display: none; }
.gallery__viewport figure {
  flex: 0 0 min(78vw, 640px);
  scroll-snap-align: center;
  position: relative;
}
.gallery__viewport img {
  width: 100%;
  height: clamp(300px, 52vw, 480px);
  object-fit: cover;
}
.gallery__viewport figcaption {
  position: absolute;
  left: 1.4rem; bottom: 1.2rem;
  font-size: .74rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--ivory);
  text-shadow: 0 1px 8px rgba(36,27,21,.8);
}
.gallery__nav {
  display: flex;
  justify-content: center;
  gap: 2px;
  margin-top: 2px;
}
.gallery__btn {
  font-family: var(--sans);
  font-size: 1.05rem;
  width: 62px; height: 48px;
  background: var(--ink-2);
  color: var(--sand);
  border: 1px solid var(--line);
  cursor: pointer;
  transition: background-color .3s, color .3s;
}
.gallery__btn:hover { background: var(--terra); color: var(--ivory); }

.gallery__cta {
  text-align: center;
  margin-top: 2.2rem;
  color: var(--sand);
  font-size: .98rem;
}
.gallery__cta a {
  color: var(--ivory);
  text-decoration-color: var(--terra);
  text-underline-offset: 5px;
  transition: color .3s;
}
.gallery__cta a:hover { color: var(--sand); }

/* =====================================================
   PARA VOCÊ?
   ===================================================== */
.fit { padding: clamp(5rem, 10vw, 8.5rem) 0; background: var(--ink); }
.fit__list {
  list-style: none;
  margin-top: clamp(2.4rem, 5vw, 3.6rem);
  border-top: 1px solid var(--line);
}
.fit__list li {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.2vw, 1.7rem);
  font-weight: 500;
  padding: 1.35rem .4rem;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.fit__list li::before {
  content: "";
  width: 40px; height: 1px;
  background: var(--terra);
  flex: none;
  transform: scaleX(.55);
  transform-origin: left;
  transition: transform .35s var(--ease-out);
}
.fit__list li:hover::before { transform: scaleX(1); }
.fit__cta { text-align: center; margin-top: 2.8rem; }

/* =====================================================
   CONTATO / FORM
   ===================================================== */
.contact {
  background:
    linear-gradient(rgba(110,58,40,.94), rgba(78,41,29,.97)),
    url("img/gourmet.webp") center/cover no-repeat;
  padding: clamp(5rem, 10vw, 8rem) clamp(1.2rem, 4vw, 4rem);
}
.contact__inner {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(3rem, 7vw, 6.5rem);
  align-items: start;
}
.contact__intro { position: sticky; top: 7rem; }
.contact__intro .kicker-line { color: rgba(242,239,230,.72); }
.contact__intro .kicker-line::before { background: var(--sand); }
.contact__intro .display { margin-bottom: 1.4rem; }
.contact__intro p { color: rgba(242,239,230,.88); max-width: 46ch; }
.contact__luzzi { width: 170px; margin-top: 2.6rem; opacity: .95; }

.form { display: grid; gap: 1.5rem; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.form__field { display: grid; gap: .55rem; }
.form__field label, .form__field legend {
  font-size: .74rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(242,239,230,.85);
}
.form__field legend { margin-bottom: .55rem; }
.form input[type="text"],
.form input[type="tel"],
.form input[type="email"],
.form select {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 300;
  width: 100%;
  color: var(--ivory);
  background: rgba(36,27,21,.35);
  border: 1px solid rgba(242,239,230,.3);
  padding: .95rem 1.1rem;
  border-radius: 0;
  transition: border-color .3s, background-color .3s;
  caret-color: var(--sand);
}
.form select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--sand) 50%), linear-gradient(135deg, var(--sand) 50%, transparent 50%); background-position: calc(100% - 21px) 50%, calc(100% - 15px) 50%; background-size: 6px 6px; background-repeat: no-repeat; }
.form select option { background: var(--ink); color: var(--ivory); }
.form input:hover, .form select:hover { border-color: rgba(242,239,230,.55); }
.form input:focus, .form select:focus {
  outline: none;
  border-color: var(--sand);
  background: rgba(36,27,21,.5);
}
.form input.is-error, .form select.is-error { border-color: #E8A48B; }

.form__choices { border: 0; }
.chips { display: flex; flex-wrap: wrap; gap: .7rem; }
.chips label { cursor: pointer; }
.chips input { position: absolute; opacity: 0; pointer-events: none; }
.chips span {
  display: inline-block;
  font-size: .82rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .68rem 1.25rem;
  border: 1px solid rgba(242,239,230,.35);
  color: rgba(242,239,230,.9);
  transition: background-color .3s, color .3s, border-color .3s;
}
.chips label:hover span { border-color: var(--sand); }
.chips input:checked + span {
  background: var(--sand);
  border-color: var(--sand);
  color: var(--terra-d);
  font-weight: 500;
}
.chips input:focus-visible + span { outline: 2px solid var(--sand); outline-offset: 3px; }

.form .btn--solid { background: var(--ink); }
.form .btn--solid:hover { background: var(--sand); color: var(--ink); }
.form .btn--solid[disabled] { opacity: .55; cursor: wait; }

.form__trust {
  font-size: .8rem;
  text-align: center;
  color: rgba(242,239,230,.68);
  margin-top: -.4rem;
}
.form__status { font-size: .92rem; color: var(--ivory); min-height: 1.4em; }
.form__status.is-error { color: #F3C4AE; }
.form__legal {
  font-size: .78rem;
  line-height: 1.6;
  color: rgba(242,239,230,.62);
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
  background: var(--ink);
  text-align: center;
  padding: clamp(4.5rem, 9vw, 7rem) 1.4rem 3rem;
  border-top: 1px solid var(--line);
}
.footer__logo { width: 190px; margin: 0 auto 1.2rem; }
.footer__tag { color: var(--sand); font-size: 1.9rem; margin-bottom: 2rem; }
.footer__meta {
  font-size: .82rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--sand-dim);
  margin-bottom: 2.2rem;
}
.footer__brands {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .8rem 1.4rem;
  font-size: .9rem;
  color: var(--sand);
  margin-bottom: 2.4rem;
}
.footer__brands strong { font-weight: 500; color: var(--ivory); }
.footer__brands span { color: var(--line); }
.footer__contacts {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-family: var(--serif);
  font-size: 1.25rem;
  margin-bottom: 2rem;
}
.footer__contacts a {
  color: var(--ivory);
  text-decoration: none;
  border-bottom: 1px solid var(--terra);
  padding-bottom: 2px;
  transition: color .3s, border-color .3s;
}
.footer__contacts a:hover { color: var(--sand); border-color: var(--sand); }
.footer__contacts span { color: var(--sand-dim); }
.footer__fine {
  font-size: .74rem;
  color: rgba(222,217,198,.45);
  max-width: 68ch;
  margin: 2.6rem auto 0;
}

/* =====================================================
   WHATSAPP FAB
   ===================================================== */
.whats-fab {
  position: fixed;
  right: clamp(1rem, 3vw, 1.8rem);
  bottom: clamp(1rem, 3vw, 1.8rem);
  z-index: 70;
  width: 58px; height: 58px;
  display: grid;
  place-items: center;
  background: #1FAF57;
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 8px 26px rgba(0,0,0,.38);
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out);
}
.whats-fab:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,.45); }
.whats-fab svg { width: 30px; height: 30px; }

/* =====================================================
   RESPONSIVO
   ===================================================== */
@media (max-width: 980px) {
  .facts { grid-template-columns: 1fr 1fr; }
  .facts__item:nth-child(n+3) { border-top: 1px solid var(--line); }
  .facts__item:nth-child(3) { border-left: 0; }
  .leisure__grid { grid-template-columns: repeat(3, 1fr); }
  .arch, .location { grid-template-columns: 1fr; }
  .location__text { justify-self: start; }
  .location__media { order: -1; }
  .arch__media img, .location__media img { height: min(52vh, 440px); }
  .contact__inner { grid-template-columns: 1fr; }
  .contact__intro { position: static; }
}

@media (max-width: 640px) {
  body { font-size: 1rem; }
  .topbar { padding: .8rem 1rem; gap: .8rem; }
  .topbar__brand { gap: .55rem; flex: none; }
  .topbar__logo { display: none; }
  .topbar__sep { display: none; }
  .topbar__logo-luzzi { height: 21px; }
  .topbar__cta {
    white-space: nowrap;
    font-size: .64rem;
    letter-spacing: .18em;
    padding: .55rem .9rem;
  }
  .hero__content .btn { display: block; width: 100%; }
  .leisure__grid { grid-template-columns: 1fr 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .facts__item dd { font-size: .72rem; }
  .hero__content { padding-top: 6rem; }
  .footer__brands span { display: none; }
}
