/* ============================================
   3Lu's — Studios Gamek
   Base fiel ao print de referência (hero)
   Paleta: antracite + dourado (identidade/design-guide.md)
   ============================================ */

:root {
  --gold: #b1946a;
  --gold-dark: #9e8158;
  --dark: #171717;
  --ink: #222222;
  --muted: #9a9a9a;
  --white: #ffffff;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Jost', 'Segoe UI', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

section[id], div[id] { scroll-margin-top: 16px; }

body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--white);
}

a { text-decoration: none; color: inherit; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Barra utilitária ---------- */

.topbar {
  background: var(--dark);
  font-size: 12px;
  letter-spacing: .02em;
  color: var(--muted);
}

.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 38px;
}

.topbar a { color: #c9c9c9; transition: color .2s; }
.topbar a:hover { color: var(--gold); }

.topbar__right { display: flex; gap: 22px; align-items: center; }

.topbar__lang .caret { font-size: 9px; color: var(--muted); margin-left: 3px; }

/* ---------- Navbar principal ---------- */

.navbar {
  background: #1b1b19;
  box-shadow: 0 1px 0 rgba(255,255,255,.06);
  position: relative;
  z-index: 10;
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 28px;
}

.brand { display: flex; align-items: center; }

.brand img {
  height: 54px;
  width: auto;
  display: block;
}

.menu {
  display: flex;
  gap: 26px;
  font-size: 14px;
  font-weight: 400;
  margin-left: auto;
}

.menu a { color: #e8e6e0; transition: color .2s; position: relative; }
.menu a:hover, .menu a.is-active { color: var(--gold); }

/* Sublinhado dourado que cresce no hover */
.menu a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s cubic-bezier(.16,1,.3,1);
}

.menu a:hover::after, .menu a.is-active::after { transform: scaleX(1); }

.navbar__actions { display: flex; align-items: center; gap: 20px; }

.search-btn {
  background: none;
  border: none;
  color: #e8e6e0;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: color .2s;
}
.search-btn:hover { color: var(--gold); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #e8e6e0;
  cursor: pointer;
  align-items: center;
}

.nav-toggle .nav-toggle__close { display: none; }

.navbar.menu-open .nav-toggle__open { display: none; }
.navbar.menu-open .nav-toggle__close { display: block; }

/* ---------- Botões ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .18em;
  /* compensa o espaço fantasma que o letter-spacing deixa após a última letra */
  text-indent: .18em;
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
  line-height: 1;
  padding: 15px 30px;
  transition: background .2s;
}

.btn--gold { background: var(--gold); color: var(--white); }
.btn--gold:hover { background: var(--gold-dark); transform: translateY(-1px); box-shadow: 0 8px 18px rgba(177,148,106,.35); }

.btn { transition: background .2s, transform .25s, box-shadow .25s; }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: radial-gradient(120% 90% at 75% 30%, #7d6547 0%, #4e3f30 45%, #23201c 100%);
}

/* Foto em camada própria pro zoom lento (Ken Burns) */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../img/hero.jpg') center 68% / cover no-repeat;
  animation: hero-zoom 14s cubic-bezier(.16,1,.3,1) forwards;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(23,23,23,.35) 0%, rgba(23,23,23,.1) 45%, rgba(23,23,23,.55) 100%);
}

@keyframes hero-zoom {
  from { transform: scale(1.1); }
  to { transform: scale(1); }
}

.hero__inner { width: 100%; position: relative; z-index: 2; }

.hero__content { max-width: 560px; color: var(--white); }

.hero__content h1 {
  font-family: var(--font-serif);
  font-size: clamp(38px, 5vw, 58px);
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 22px;
}

.hero__content p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255,255,255,.82);
  max-width: 470px;
  margin-bottom: 34px;
}

/* Entrada em cascata do conteúdo do hero */
@media (prefers-reduced-motion: no-preference) {
  .hero__content h1,
  .hero__content p,
  .hero__content .btn {
    opacity: 0;
    animation: sobe-suave .9s cubic-bezier(.16,1,.3,1) forwards;
  }
  .hero__content p { animation-delay: .18s; }
  .hero__content .btn { animation-delay: .36s; }
}

@keyframes sobe-suave {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: none; }
}

/* ---------- Barra de reserva ---------- */

.booking {
  position: relative;
  z-index: 5;
  margin-top: -44px;
}

.booking__card {
  display: flex;
  align-items: stretch;
  background: var(--white);
  border-radius: 6px;
  box-shadow: 0 14px 40px rgba(0,0,0,.14);
  overflow: hidden;
}

.booking__field {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  border-right: 1px solid #ececec;
}

.booking__field input,
.booking__field select {
  width: 100%;
  height: 100%;
  min-height: 66px;
  border: none;
  outline: none;
  background: transparent;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 400;
  color: var(--ink);
  padding: 0 40px 0 22px;
  cursor: pointer;
}

.booking__field input::placeholder { color: #8d8d8d; }

.booking__field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' fill='none' stroke='%238d8d8d' stroke-width='1.4' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
}

.booking__guests {
  flex: 1.3;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 16px;
}

.guests__label { display: flex; flex-direction: column; gap: 2px; }

.guests__label span {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
}

.guests__label small {
  font-size: 10.5px;
  font-weight: 300;
  color: #8d8d8d;
}

.stepper { display: flex; align-items: center; gap: 12px; }

.stepper__btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid #b3b3b3;
  background: none;
  font-size: 15px;
  line-height: 1;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .2s, color .2s, opacity .2s;
  flex-shrink: 0;
}

.stepper__btn:hover:not(:disabled) { border-color: var(--gold); color: var(--gold); }

.stepper__btn:disabled { opacity: .35; cursor: default; }

.stepper__value {
  font-size: 13px;
  color: var(--ink);
  min-width: 14px;
  text-align: center;
}

.booking__icon {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #8d8d8d;
  pointer-events: none;
}

.booking__btn {
  border: none;
  cursor: pointer;
  white-space: nowrap;
  padding: 0 34px;
  font-size: 11.5px;
}

/* ---------- Secção 2 — Sobre ---------- */

.about { padding: 100px 0 0; background: var(--white); }

.about__inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about__images {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 18px;
  align-items: start;
}

.about__img {
  min-height: 380px;
  background: url('../img/quarto-1.jpg') center / cover no-repeat;
}

.about__img--2 {
  min-height: 340px;
  margin-top: 40px;
  background: url('../img/quarto-2.jpg') center / cover no-repeat;
}

.eyebrow {
  display: block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.about__text h2 {
  font-family: var(--font-serif);
  font-size: clamp(30px, 3.4vw, 42px);
  font-weight: 500;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 20px;
}

.about__text p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: #6d6d6d;
  margin-bottom: 32px;
}

/* ---------- Fileira de destaques ---------- */

.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 90px;
  padding-bottom: 90px;
  text-align: center;
}

.feature__icon {
  display: inline-flex;
  color: var(--ink);
  margin-bottom: 20px;
}

.feature h3 {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.45;
  color: var(--ink);
  margin-bottom: 12px;
}

.feature p {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7;
  color: #9a9a9a;
  max-width: 230px;
  margin: 0 auto;
}

/* Clones do carrossel — só existem visualmente no mobile */
.feature--clone { display: none; }

/* ---------- Secção 3 — Ofertas e Pacotes ---------- */

.offers { padding-bottom: 100px; }

.offers .container { border-top: 1px solid #e8e8e8; padding-top: 44px; }

.offers__title {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 28px;
}

.offers__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.offer {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 320px;
  border-radius: 12px;
  overflow: hidden;
  isolation: isolate;
  transition: transform .4s cubic-bezier(.16,1,.3,1), box-shadow .4s cubic-bezier(.16,1,.3,1);
}

.offer:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 44px rgba(0,0,0,.2);
}

.offer--1 { background: url('../img/oferta-1.jpg') center 65% / cover no-repeat; }
.offer--2 { background: url('../img/oferta-2.jpg') center / cover no-repeat; }
.offer--3 { background: url('../img/oferta-3.jpg') center 70% / cover no-repeat; }

/* Degradê escuro no rodapé do cartão */
.offer::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,.45) 65%, rgba(0,0,0,.82) 100%);
  z-index: 1;
}

.offer__badge {
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #f5c9a4;
  color: #2b2013;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 4px;
}

.offer__content {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 22px 26px 24px;
  padding-right: 60px;
  color: var(--white);
}

.offer__dates {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.95);
  text-shadow: 0 1px 6px rgba(0,0,0,.55);
}

.offer__name {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.45;
  max-width: 420px;
  text-shadow: 0 1px 10px rgba(0,0,0,.55);
}

.offer__arrow {
  position: absolute;
  right: 24px;
  bottom: 22px;
  font-size: 30px;
  line-height: 1;
  color: var(--gold);
  transition: transform .2s;
}

.offer:hover .offer__arrow { transform: translateX(4px); }

/* ---------- Secção 4 — Instalações e comodidades ---------- */

.amenities { padding-bottom: 110px; }

.amenities__head { text-align: center; margin-bottom: 56px; }

.amenities__head h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.2vw, 38px);
  font-weight: 500;
  color: var(--ink);
}

.amenities__head .eyebrow { margin-bottom: 12px; }

.amenities__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px 56px;
}

.amenity {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.amenity__icon {
  color: var(--gold);
  flex-shrink: 0;
  display: inline-flex;
  margin-top: 2px;
}

.amenity__text h3 {
  font-family: var(--font-sans);
  font-size: 15.5px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 7px;
}

.amenity__text p {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7;
  color: #9a9a9a;
  max-width: 260px;
}

/* ---------- Secção 5 — Localização ---------- */

.location { padding-bottom: 100px; }

.location__inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}

.location__address {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 10px;
}

.location__phone {
  font-size: 14px;
  color: var(--ink);
  margin-bottom: 34px;
}

.location__phone a {
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.location__phone a:hover { color: var(--gold); }

.location__row { border-bottom: 1px solid #2b2b2b33; }

.location__toggle {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--ink);
  padding: 20px 2px;
  text-align: left;
}

.location__toggle span { flex: 1; }

.location__chevron { transition: transform .25s; flex-shrink: 0; }

.location__row.is-open .location__chevron { transform: rotate(180deg); }

.location__panel {
  display: none;
  padding: 0 2px 20px 36px;
}

.location__row.is-open .location__panel { display: block; }

.location__panel p {
  font-size: 13.5px;
  font-weight: 300;
  line-height: 1.75;
  color: #6d6d6d;
}

.location__map iframe {
  width: 100%;
  height: 360px;
  border: 0;
  display: block;
}

/* ---------- Secção 6 — Perguntas Frequentes ---------- */

.faq { padding-bottom: 110px; }

.faq__head { text-align: center; margin-bottom: 52px; }

.faq__head h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.2vw, 38px);
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 14px;
}

.faq__head p {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7;
  color: #9a9a9a;
}

.faq__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 48px;
  align-items: start;
}

.faq__item { border-bottom: 1px solid #e8e8e8; }

.faq__item.is-open {
  background: #f3f4f1;
  border-radius: 10px;
  border-bottom-color: transparent;
  margin-bottom: 6px;
}

.faq__q {
  display: flex;
  align-items: baseline;
  gap: 10px;
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 14.5px;
  font-weight: 400;
  color: var(--ink);
  text-align: left;
  padding: 20px 18px;
}

.faq__num { color: var(--ink); flex-shrink: 0; }

.faq__label { flex: 1; }

.faq__sign {
  flex-shrink: 0;
  align-self: center;
  font-size: 17px;
  color: #8d8d8d;
  line-height: 1;
}

.faq__sign::before { content: '+'; }

.faq__item.is-open .faq__sign::before { content: '\00d7'; }

.faq__a {
  display: none;
  padding: 0 18px 20px 40px;
}

.faq__item.is-open .faq__a { display: block; }

.faq__a p {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.75;
  color: #6d6d6d;
}

/* ---------- Rodapé ---------- */

.footer {
  background: #1b1b19;
  color: #b9b7b1;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-top: 70px;
  padding-bottom: 60px;
}

.footer__logo { height: 52px; width: auto; margin-bottom: 20px; }

.footer__brand p {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 22px;
  max-width: 300px;
}

.footer__follow-label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 10px;
}

.footer__badges { display: flex; gap: 10px; }

.footer__badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid #ffffff33;
  border-radius: 6px;
  padding: 8px 14px;
  font-size: 12px;
  color: #e8e6e0;
  transition: border-color .2s, color .2s;
}

.footer__badge:hover { border-color: var(--gold); color: var(--gold); }

.footer__col h4 {
  font-family: var(--font-sans);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 18px;
}

.footer__col > a {
  display: block;
  font-size: 13px;
  font-weight: 300;
  color: #b9b7b1;
  margin-bottom: 12px;
  transition: color .2s;
}

.footer__col > a:hover { color: var(--gold); }

.footer__gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.footer__thumb {
  aspect-ratio: 1;
  border-radius: 6px;
  display: block;
  background: url('../img/hero.jpg') center / cover no-repeat;
}

.footer__thumb:nth-child(2) { background: url('../img/piscina.jpg') center / cover no-repeat; }
.footer__thumb:nth-child(3) { background: url('../img/quarto-1.jpg') center / cover no-repeat; }
.footer__thumb:nth-child(4) { background: url('../img/oferta-2.jpg') center / cover no-repeat; }
.footer__thumb:nth-child(5) { background: url('../img/quarto-2.jpg') center / cover no-repeat; }
.footer__thumb:nth-child(6) { background: url('../img/oferta-1.jpg') center / cover no-repeat; }

.footer__bottom { border-top: 1px solid #ffffff1a; }

.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding-top: 22px;
  padding-bottom: 22px;
  font-size: 12px;
  font-weight: 300;
}

.footer__legal { display: flex; gap: 24px; }

.footer__legal a { color: #b9b7b1; transition: color .2s; }

.footer__legal a:hover { color: var(--gold); }

/* ---------- Scroll reveal (motion) ---------- */

@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(26px);
    transition:
      opacity .8s cubic-bezier(.16,1,.3,1),
      transform .8s cubic-bezier(.16,1,.3,1);
    transition-delay: var(--reveal-delay, 0s);
  }

  .reveal.is-visible {
    opacity: 1;
    transform: none;
  }

  /* Miniaturas da galeria e imagens dos quartos com zoom subtil no hover */
  .footer__thumb { transition: transform .4s cubic-bezier(.16,1,.3,1); }
  .footer__thumb:hover { transform: scale(1.06); }
}

/* ---------- Responsivo ---------- */

@media (max-width: 900px) {
  .menu { display: none; }
  .topbar__right a:not(.topbar__lang) { display: none; }

  .nav-toggle { display: flex; }

  /* Ações da navbar arrumadas no mobile */
  .navbar__inner { gap: 16px; }
  .navbar__actions { gap: 14px; }
  .navbar__actions .btn { padding: 11px 16px; font-size: 11px; }

  /* Menu deslizante aberto pelo hambúrguer */
  .navbar.menu-open .menu {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #1b1b19;
    box-shadow: 0 14px 30px rgba(0,0,0,.35);
    padding: 8px 24px 16px;
    z-index: 40;
  }

  .navbar.menu-open .menu a {
    padding: 14px 0;
    border-bottom: 1px solid #ffffff14;
    font-size: 15px;
  }

  .navbar.menu-open .menu a:last-child { border-bottom: none; }
  .navbar.menu-open .menu a::after { display: none; }
}

@media (max-width: 900px) {
  .booking { margin-top: -33px; }
  .booking__card { flex-direction: column; }
  .booking__field { border-right: none; border-bottom: 1px solid #ececec; }
  .booking__field:last-of-type { border-bottom: none; }

  /* Botão começa colado na barra de reserva… */
  .booking__btn { min-height: 58px; }

  /* …e desgruda pra flutuar no fundo quando a barra sai do ecrã */
  .booking__btn.is-floating {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 50;
    box-shadow: 0 -6px 20px rgba(0,0,0,.15);
    animation: cta-sobe .25s ease;
  }

  body.has-floating-cta { padding-bottom: 58px; }

  @keyframes cta-sobe {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
  }
  .about__inner { grid-template-columns: 1fr; gap: 40px; }

  /* Destaques em carrossel automático no mobile */
  .features {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 0;
    margin-top: 60px;
    padding-bottom: 60px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .features::-webkit-scrollbar { display: none; }
  .feature {
    flex: 0 0 100%;
    scroll-snap-align: center;
    padding: 0 24px;
  }
  .feature--clone { display: block; }

  /* Ofertas em carrossel no mobile */
  .offers__grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    /* deixa o cartão seguinte espreitar na borda */
    margin-right: -24px;
    padding-right: 24px;
  }
  .offers__grid::-webkit-scrollbar { display: none; }
  .offer {
    flex: 0 0 86%;
    scroll-snap-align: start;
    min-height: 280px;
  }

  /* Comodidades em duas colunas no mobile */
  .amenities__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px 24px;
  }

  .location__inner { grid-template-columns: 1fr; gap: 40px; }
  .location__map iframe { height: 300px; }

  .faq__grid { grid-template-columns: 1fr; }

  .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; padding-top: 50px; }
  .footer__brand { grid-column: 1 / -1; }
  .footer__col:last-child { grid-column: 1 / -1; }
  .footer__bottom-inner { flex-direction: column; text-align: center; gap: 10px; }
}

@media (max-width: 600px) {
  .hero { min-height: 70vh; }
  .about { padding-top: 60px; }
  .about__img { min-height: 260px; }
  .about__img--2 { min-height: 230px; margin-top: 24px; }
  /* Em ecrãs estreitos, ícone por cima do texto pra caber bem em 2 colunas */
  .amenity { flex-direction: column; gap: 12px; }
}
