/* =========================================================
   AIRSTAY - Landing Page
   1. Tokens  3. Botoes  5. Hero     7. Comodidades  9. Avaliacoes  11. Animacao
   2. Base    4. Header  6. Galeria  8. CTA         10. Localizacao/Footer  12. Responsivo
   ========================================================= */

/* ---------- 1. Tokens ---------- */
:root {
  --ink:        #14110e;
  --ink-2:      #1b1713;
  --ink-3:      #0e0c0a;
  --gold:       #e2b183;
  --gold-2:     #cf9a63;
  --gold-soft:  #f0d3b4;
  --cream:      #faf7f2;
  --cream-2:    #f5f0e8;
  --card:       #fffdfa;
  --text:       #1c1916;
  --muted:      #6d6558;
  --line:       rgba(28, 25, 22, .12);
  --line-light: rgba(250, 247, 242, .15);

  --font-title:  "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body:   "Jost", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-script: "Dancing Script", "Segoe Script", cursive;

  --container: 1180px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- 2. Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
ul { list-style: none; margin: 0; padding: 0; }
a { color: inherit; text-decoration: none; }
p { margin: 0; }
h1, h2, h3 { font-family: var(--font-title); font-weight: 500; margin: 0; line-height: 1.16; }
button { font: inherit; color: inherit; }

.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 28px; }

.skip-link { position: absolute; left: -9999px; top: 0; z-index: 100; background: var(--gold); color: var(--ink); padding: 10px 18px; }
.skip-link:focus { left: 12px; top: 12px; }

.ico { width: 18px; height: 18px; flex: none; }
.ico--end { width: 16px; height: 16px; }
.ico--flip { transform: rotate(180deg); }
.gold { color: var(--gold); }

.eyebrow {
  font-size: 11px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
  font-weight: 500;
}
.eyebrow--gold { color: var(--gold); }

.section-title { font-size: clamp(28px, 3.5vw, 40px); color: var(--text); letter-spacing: -.005em; }
.section-title--light { color: var(--cream); }

/* ---------- 3. Botoes ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 26px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 400;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  background: none;
  transition: background .3s var(--ease), color .3s var(--ease),
              border-color .3s var(--ease), transform .3s var(--ease), box-shadow .3s var(--ease);
}
.btn--lg { padding: 15px 30px; font-size: 15px; }
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

.btn--gold { background: linear-gradient(135deg, var(--gold-soft), var(--gold)); color: #2b1f13; }
.btn--gold:hover { background: linear-gradient(135deg, #f7e0c6, var(--gold-soft)); box-shadow: 0 12px 26px rgba(226, 177, 131, .3); }

.btn--ghost { border-color: rgba(250, 247, 242, .45); color: var(--cream); background: rgba(255, 255, 255, .05); }
.btn--ghost:hover { background: rgba(255, 255, 255, .14); border-color: #fff; }

.btn--outline { border-color: rgba(28, 25, 22, .28); color: var(--text); }
.btn--outline:hover { background: var(--text); color: var(--cream); border-color: var(--text); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: var(--muted);
  background: none;
  border: 0;
  padding: 4px 0;
  cursor: pointer;
  transition: gap .3s var(--ease), color .3s var(--ease);
}
.link-arrow:hover { gap: 14px; color: var(--text); }

/* ---------- 4. Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  padding: 18px 0;
  transition: background .4s var(--ease), padding .4s var(--ease), box-shadow .4s var(--ease);
}
.site-header.is-scrolled {
  padding: 10px 0;
  background: rgba(20, 17, 14, .93);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--line-light);
}

.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.logo { display: flex; align-items: center; gap: 12px; }
.logo__mark { width: 34px; height: 34px; color: var(--gold); flex: none; transition: transform .6s var(--ease); }
.logo:hover .logo__mark { transform: translateY(-3px) scale(1.06); }
.logo__text { display: flex; flex-direction: column; line-height: 1.12; }
.logo__text strong { font-family: var(--font-title); font-weight: 600; font-size: 22px; color: var(--cream); letter-spacing: .01em; }
.logo__text small { font-size: 8.5px; letter-spacing: .32em; color: rgba(250, 247, 242, .6); margin-top: 3px; }

.nav { display: flex; align-items: center; gap: 30px; }
.nav__link { position: relative; font-size: 14px; color: rgba(250, 247, 242, .85); padding: 4px 0; transition: color .3s var(--ease); }
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease);
}
.nav__link:hover { color: #fff; }
.nav__link:hover::after, .nav__link.is-active::after { transform: scaleX(1); }
.nav__link.is-active { color: #fff; }
.nav__cta { display: none; }

.burger { display: none; width: 44px; height: 40px; background: none; border: 0; padding: 9px 8px; cursor: pointer; }
.burger span { display: block; height: 1.5px; background: var(--cream); margin: 5px 0; transition: transform .35s var(--ease), opacity .25s var(--ease); }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ---------- 5. Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 140px 0 60px;
  overflow: hidden;
  background: var(--ink);
}
.hero__media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(14, 12, 10, .95) 0%, rgba(14, 12, 10, .86) 26%, rgba(14, 12, 10, .42) 56%, rgba(14, 12, 10, .22) 100%),
    url("https://images.unsplash.com/photo-1688646953306-5ec93eab8c06?auto=format&fit=crop&w=1900&q=80") center 42% / cover no-repeat;
  will-change: transform;
}
.hero__inner { position: relative; z-index: 2; }
.hero__content { max-width: 590px; }

.hero__place {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(250, 247, 242, .85);
  margin-bottom: 16px;
}
.hero__place .ico { color: var(--gold); }

.hero__title {
  font-size: clamp(38px, 5vw, 58px);
  color: var(--cream);
  letter-spacing: -.015em;
  margin-bottom: 20px;
}
.hero__text { color: rgba(250, 247, 242, .78); font-size: 15.5px; max-width: 440px; margin-bottom: 30px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }

.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 46px;
  padding-top: 24px;
  border-top: 1px solid var(--line-light);
  max-width: 780px;
}
.feature {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 2px 16px;
  font-size: 12px;
  line-height: 1.42;
  color: rgba(250, 247, 242, .82);
  border-left: 1px solid var(--line-light);
}
.feature:first-child { padding-left: 0; border-left: 0; }
.feature__ico { width: 20px; height: 20px; color: var(--gold); flex: none; transition: transform .4s var(--ease); }
.feature:hover .feature__ico { transform: scale(1.16); }

.rating {
  position: absolute;
  right: 28px;
  bottom: 34px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 20px;
  border-radius: 999px;
  background: rgba(20, 17, 14, .82);
  border: 1px solid var(--line-light);
  backdrop-filter: blur(8px);
  color: var(--cream);
  font-size: 13px;
}
.rating__star { width: 17px; height: 17px; color: var(--gold); }
.rating strong { font-size: 16px; font-weight: 500; }
.rating span { color: rgba(250, 247, 242, .65); font-size: 12px; }

/* ---------- 6. Galeria ---------- */
.gallery { background: var(--cream); padding: 84px 0 88px; }
.gallery__inner {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 52px;
  align-items: center;
}
.gallery__text { color: var(--muted); font-size: 15px; margin: 20px 0 28px; }

.gallery__grid {
  display: grid;
  grid-template-columns: 1.75fr 1fr 1fr;
  grid-template-rows: repeat(3, 1fr);
  gap: 12px;
  height: clamp(380px, 40vw, 500px);
}
.gallery__main {
  position: relative;
  grid-column: 1;
  grid-row: 1 / 4;
  border-radius: 8px;
  overflow: hidden;
  background: #e6e0d5;
}
.gallery__main .slide {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.04);
  transition: opacity .6s var(--ease), transform .8s var(--ease), visibility .6s;
}
.gallery__main .slide.is-active { opacity: 1; visibility: visible; transform: none; }

.gallery__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 40px; height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, .92);
  color: var(--text);
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .18);
  transition: background .3s var(--ease), transform .3s var(--ease);
}
.gallery__nav:hover { background: #fff; transform: translateY(-50%) scale(1.07); }
.gallery__nav--prev { left: 14px; }
.gallery__nav--next { right: 14px; }

.gallery__counter {
  position: absolute;
  left: 14px; bottom: 14px;
  z-index: 3;
  padding: 5px 13px;
  border-radius: 999px;
  background: rgba(20, 17, 14, .72);
  color: var(--cream);
  font-size: 12px;
  backdrop-filter: blur(6px);
}

.gallery__thumb {
  position: relative;
  padding: 0;
  border: 0;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  background: #e6e0d5;
}
.gallery__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease), filter .4s var(--ease); }
.gallery__thumb:hover img { transform: scale(1.06); filter: brightness(1.08); }
.gallery__thumb--wide { grid-column: 2 / 4; }
.gallery__thumb:focus-visible { outline: 2px solid var(--gold-2); outline-offset: 2px; }

.gallery__all {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 22px;
}
.gallery__all img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 8px; background: #e6e0d5; }

/* ---------- 7. Comodidades ---------- */
.amenities { background: var(--cream-2); padding: 82px 0 88px; }
.amenities__inner {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 56px;
  align-items: center;
}
.amenities__text { color: var(--muted); font-size: 15px; margin: 20px 0 28px; max-width: 340px; }

.amenities__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.amenity {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  padding: 22px 14px;
  font-size: 13.5px;
  color: var(--text);
  border-left: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background .35s var(--ease);
}
.amenity:hover { background: rgba(255, 255, 255, .55); }
.amenity:nth-child(4n + 1) { border-left: 0; }
.amenity:nth-last-child(-n + 4) { border-bottom: 0; }
.amenity__ico { width: 30px; height: 30px; color: var(--text); transition: transform .4s var(--ease), color .3s var(--ease); }
.amenity:hover .amenity__ico { transform: translateY(-3px); color: var(--gold-2); }
.amenity small { display: block; font-size: 11.5px; color: var(--muted); }

.amenities__grid--extra { grid-column: 1 / -1; margin-top: 6px; border-top: 1px solid var(--line); }
.amenities__grid--extra .amenity { border-bottom: 0; }

/* ---------- 8. CTA ---------- */
.cta { position: relative; overflow: hidden; background: var(--ink); }
.cta__media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(95deg, rgba(14, 12, 10, .93) 0%, rgba(14, 12, 10, .82) 32%, rgba(14, 12, 10, .38) 62%, rgba(14, 12, 10, .25) 100%),
    url("https://images.unsplash.com/photo-1781041004326-708f2f3cf62b?auto=format&fit=crop&w=1900&q=80") center 55% / cover no-repeat;
  will-change: transform;
}
.cta__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding-top: 76px;
  padding-bottom: 80px;
}
.cta__content { max-width: 560px; }
.cta__text { color: rgba(250, 247, 242, .8); font-size: 15px; margin: 18px 0 30px; }
.cta__script {
  font-family: var(--font-script);
  font-size: clamp(24px, 2.8vw, 34px);
  line-height: 1.3;
  color: var(--gold-soft);
  transform: rotate(-7deg);
  text-align: center;
  flex: none;
}
.cta__script::after { content: " \2661"; }

/* ---------- 9. Avaliacoes ---------- */
.reviews { background: var(--cream); padding: 80px 0 88px; }
.reviews__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 38px;
}
.reviews__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.reviews__grid--extra { margin-top: 20px; }

.review {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 24px 24px 20px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.review:hover { transform: translateY(-4px); box-shadow: 0 16px 32px rgba(28, 25, 22, .1); }
.review__head { display: flex; align-items: center; gap: 13px; margin-bottom: 16px; }
.review__head img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; background: #e6e0d5; flex: none; }
.review__head strong { display: block; font-size: 14.5px; font-weight: 500; }

.stars { display: inline-flex; gap: 2px; }
.stars svg { width: 13px; height: 13px; color: var(--gold-2); }
.stars svg.is-off { color: rgba(28, 25, 22, .2); }

.review__text { font-size: 13.5px; line-height: 1.7; color: var(--muted); margin-bottom: 16px; }
.review__date { font-size: 12px; color: rgba(109, 101, 88, .8); }

/* ---------- 10. Localizacao ---------- */
.location { background: var(--ink); color: rgba(250, 247, 242, .8); padding: 66px 0 70px; }
.location__grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr 1fr;
  gap: 48px;
  align-items: center;
}
.location__text { font-size: 14.5px; margin: 16px 0 26px; max-width: 330px; }

.distances { display: grid; grid-template-columns: 1fr 1fr; gap: 26px 24px; }
.distance { display: flex; align-items: flex-start; gap: 13px; }
.distance__ico { width: 22px; height: 22px; color: var(--gold); flex: none; margin-top: 3px; }
.distance strong { display: block; font-size: 15px; font-weight: 500; color: var(--cream); }
.distance span { font-size: 12.5px; color: rgba(250, 247, 242, .62); }

.location__map {
  position: relative;
  display: block;
  border-radius: 12px;
  overflow: hidden;
  min-height: 172px;
  border: 1px solid var(--line-light);
  transition: transform .4s var(--ease), border-color .3s var(--ease);
}
.location__map:hover { transform: translateY(-3px); border-color: var(--gold); }
.location__map-art { position: absolute; inset: 0; width: 100%; height: 100%; }
.location__map-art .land { fill: #e9e4da; }
.location__map-art .sea  { fill: #bcd8e8; }
.location__map-art .road { stroke: #fdfcfa; stroke-width: 6; fill: none; }
.location__map-art .road--thin { stroke-width: 3; }

.location__pin {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -60%);
  width: 30px; height: 30px;
  color: var(--ink);
  filter: drop-shadow(0 3px 5px rgba(0, 0, 0, .35));
}
.location__tip {
  position: absolute;
  top: 26%; left: 50%;
  transform: translateX(-40%);
  background: var(--ink);
  color: var(--cream);
  font-size: 11.5px;
  padding: 5px 12px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .3);
}

/* ---------- 10b. Footer ---------- */
.footer { background: var(--ink-3); padding: 22px 0; border-top: 1px solid var(--line-light); }
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  flex-wrap: wrap;
}
.logo--light .logo__text strong { color: var(--cream); }
.footer__nav { display: flex; gap: 26px; font-size: 13.5px; color: rgba(250, 247, 242, .72); }
.footer__nav a { transition: color .3s var(--ease); }
.footer__nav a:hover { color: var(--gold); }
.footer__social { display: flex; gap: 14px; }
.footer__social a {
  width: 34px; height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line-light);
  color: rgba(250, 247, 242, .75);
  transition: color .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
}
.footer__social a:hover { color: var(--gold); border-color: var(--gold); transform: translateY(-2px); }
.footer__copy { font-size: 11.5px; color: rgba(250, 247, 242, .5); }

/* Botao flutuante */
.whats-float {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 60;
  width: 52px; height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  color: #08301a;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: opacity .35s var(--ease), transform .35s var(--ease), visibility .35s;
}
.whats-float.is-visible { opacity: 1; visibility: visible; transform: none; }
.whats-float:hover { transform: scale(1.06); }
.whats-float svg { width: 28px; height: 28px; }

/* ---------- 11. Animacao ---------- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  z-index: 70;
  width: 100%; height: 3px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  pointer-events: none;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .85s var(--ease), transform .85s var(--ease);
  will-change: opacity, transform;
}
[data-reveal="left"]  { transform: translateX(-44px); }
[data-reveal="right"] { transform: translateX(44px); }
[data-reveal="zoom"]  { transform: scale(.94); }
[data-reveal].is-visible { opacity: 1; transform: none; }

img[data-loading] { opacity: 0; transition: opacity .7s var(--ease); }
img.is-loaded { opacity: 1; }

.btn .ico--end, .link-arrow .ico--end { transition: transform .3s var(--ease); }
.btn:hover .ico--end, .link-arrow:hover .ico--end { transform: translateX(4px); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .scroll-progress { display: none; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .hero__media, .cta__media { transform: none !important; }
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* ---------- 12. Responsivo ---------- */
@media (max-width: 1080px) {
  .gallery__inner { grid-template-columns: 1fr; gap: 32px; }
  .amenities__inner { grid-template-columns: 1fr; gap: 34px; }
  .amenities__text { max-width: none; }
  .location__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .location__map { grid-column: 1 / -1; min-height: 200px; }
  .features { grid-template-columns: repeat(2, 1fr); gap: 16px 0; max-width: 520px; }
  .feature:nth-child(3) { padding-left: 0; border-left: 0; }
  .gallery__all { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .header__cta { display: none; }
  .burger { display: block; }

  .nav {
    position: fixed;
    inset: 0 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 92px 28px 30px;
    background: rgba(14, 12, 10, .98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line-light);
    transform: translateY(-102%);
    transition: transform .45s var(--ease);
  }
  .nav.is-open { transform: none; }
  .nav__link { padding: 15px 0; font-size: 17px; border-bottom: 1px solid var(--line-light); }
  .nav__link::after { display: none; }
  .nav__cta { display: inline-flex; justify-content: center; margin-top: 22px; }

  .reviews__grid { grid-template-columns: 1fr 1fr; }
  .cta__inner { flex-direction: column; align-items: flex-start; }
  .cta__script { align-self: flex-end; }
  .rating { right: 20px; bottom: 20px; }
}

@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .hero { padding: 118px 0 90px; min-height: auto; }
  .hero__media {
    background:
      linear-gradient(180deg, rgba(14, 12, 10, .8) 0%, rgba(14, 12, 10, .9) 55%, rgba(14, 12, 10, .96) 100%),
      url("https://images.unsplash.com/photo-1688646953306-5ec93eab8c06?auto=format&fit=crop&w=1200&q=80") center / cover no-repeat;
  }
  .hero__actions .btn { flex: 1 1 100%; justify-content: center; }
  .features { grid-template-columns: 1fr; gap: 14px; }
  .feature { padding: 0; border-left: 0; }
  .rating { position: static; margin-top: 26px; display: inline-flex; }

  .gallery { padding: 62px 0 66px; }
  .gallery__grid { grid-template-columns: 1fr 1fr; grid-template-rows: 200px 110px; height: auto; }
  .gallery__main { grid-column: 1 / -1; grid-row: 1; }
  .gallery__thumb--wide { grid-column: auto; }
  .gallery__thumb:nth-child(4), .gallery__thumb:nth-child(5) { display: none; }
  .gallery__all { grid-template-columns: 1fr 1fr; }

  .amenities { padding: 62px 0 66px; }
  .amenities__grid { grid-template-columns: 1fr 1fr; }
  .amenity:nth-child(4n + 1) { border-left: 1px solid var(--line); }
  .amenity:nth-child(odd) { border-left: 0; }
  .amenity:nth-last-child(-n + 4) { border-bottom: 1px solid var(--line); }
  .amenity:nth-last-child(-n + 2) { border-bottom: 0; }

  .cta__inner { padding-top: 60px; padding-bottom: 64px; }
  .cta .btn { width: 100%; justify-content: center; }
  .cta__script { align-self: center; margin-top: 30px; }

  .reviews { padding: 60px 0 66px; }
  .reviews__head { flex-direction: column; align-items: flex-start; gap: 14px; }
  .reviews__grid { grid-template-columns: 1fr; }

  .location { padding: 56px 0 60px; }
  .location__grid { grid-template-columns: 1fr; gap: 30px; }
  .distances { gap: 20px 18px; }

  .footer__inner { flex-direction: column; align-items: flex-start; gap: 18px; }
  .whats-float { right: 16px; bottom: 16px; }
}
