/* ============================================
   QUINTA DE S. VICENTE — ALOJAMENTO LOCAL
   ============================================ */

:root {
  --terracotta: #c1793f;
  --terracotta-light: #e2a868;
  --forest: #1c2419;
  --forest-soft: #242f20;
  --cream: #f7f3ea;
  --cream-dim: #ece3cf;
  --stone: #8a8272;
  --line: rgba(193, 121, 63, 0.18);

  --serif: 'Fraunces', serif;
  --sans: 'Manrope', sans-serif;

  --container: 1180px;
  --gap: 24px;
  --radius: 6px;
  --ease: cubic-bezier(0.65, 0, 0.35, 1);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--forest);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

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

ul { list-style: none; }

button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

/* ---------- Typography helpers ---------- */

.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--terracotta);
  display: block;
  margin-bottom: 18px;
}

.eyebrow--light { color: var(--terracotta-light); }

.section-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.15;
  color: var(--forest);
  letter-spacing: 0.005em;
}

.section-title--light { color: var(--cream); }

.section-desc {
  max-width: 560px;
  margin-top: 16px;
  color: var(--stone);
  font-size: 16px;
}

.section-head {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}

.section-head .section-desc { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 34px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all 0.35s var(--ease);
  white-space: nowrap;
}

.btn--primary {
  background: var(--terracotta);
  color: var(--cream);
}
.btn--primary:hover {
  background: var(--terracotta-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -8px rgba(193, 121, 63, 0.5);
}

.btn--ghost {
  border: 1px solid rgba(247, 243, 234, 0.4);
  color: var(--cream);
}
.btn--ghost:hover {
  border-color: var(--terracotta-light);
  color: var(--terracotta-light);
}

.btn--outline {
  border: 1px solid var(--forest);
  color: var(--forest);
}
.btn--outline:hover { border-color: var(--terracotta); color: var(--terracotta); }

.btn--small { padding: 11px 22px; font-size: 12px; }
.btn--full { width: 100%; }

/* ============================================
   PRELOADER
   ============================================ */

.preloader {
  position: fixed;
  inset: 0;
  background: var(--forest);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.preloader.is-hidden { opacity: 0; visibility: hidden; }
.preloader__mark {
  font-family: var(--serif);
  font-size: 38px;
  letter-spacing: 0.1em;
  color: var(--terracotta-light);
  animation: pulseMark 1.4s ease-in-out infinite;
}
@keyframes pulseMark {
  0%, 100% { opacity: 0.4; transform: scale(0.94); }
  50% { opacity: 1; transform: scale(1); }
}

.progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--terracotta), var(--terracotta-light));
  z-index: 1001;
  transition: width 0.1s ease-out;
}

/* ============================================
   HEADER
   ============================================ */

.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  padding: 24px 0;
  transition: all 0.4s var(--ease);
}
.header.is-scrolled {
  background: rgba(28, 36, 25, 0.92);
  backdrop-filter: blur(10px);
  padding: 15px 0;
  box-shadow: 0 8px 30px -12px rgba(0,0,0,0.4);
}

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

.logo {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--cream);
}
.logo span { font-style: italic; font-weight: 400; opacity: 0.7; font-size: 0.85em; }

.nav {
  display: flex;
  gap: 34px;
  flex: 1;
  justify-content: center;
}
.nav a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--cream-dim);
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s ease;
}
.nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0%;
  height: 1px;
  background: var(--terracotta-light);
  transition: width 0.3s var(--ease);
}
.nav a:hover { color: var(--terracotta-light); }
.nav a:hover::after { width: 100%; }

.header__cta { color: var(--cream); border-color: rgba(247,243,234,0.35); }
.header__cta:hover { border-color: var(--terracotta-light); color: var(--terracotta-light); }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 26px;
}
.burger span {
  height: 1px;
  background: var(--cream);
  width: 100%;
  transition: all 0.3s var(--ease);
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-nav {
  position: fixed;
  top: 0; right: 0;
  height: 100vh;
  width: 300px;
  max-width: 82vw;
  background: var(--forest-soft);
  z-index: 950;
  transform: translateX(100%);
  transition: transform 0.45s var(--ease);
  display: flex;
  align-items: center;
  box-shadow: -20px 0 60px rgba(0,0,0,0.4);
}
.mobile-nav.is-open { transform: translateX(0); }
.mobile-nav nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  padding: 40px;
  width: 100%;
}
.mobile-nav a {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--cream);
}
.mobile-nav a:hover { color: var(--terracotta-light); }

/* ============================================
   HERO
   ============================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: url('../assets/img/hero.jpg') center/cover no-repeat;
  transform: scale(1.08);
  animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20,24,16,0.5) 0%, rgba(20,24,16,0.58) 45%, rgba(16,20,13,0.92) 100%),
    linear-gradient(90deg, rgba(16,20,13,0.65) 0%, rgba(16,20,13,0.2) 55%);
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
  padding: 0 24px;
  color: var(--cream);
}

.hero .eyebrow { color: var(--terracotta-light); text-align: center; }

.hero__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(40px, 6.6vw, 78px);
  line-height: 1.08;
  margin-bottom: 24px;
  letter-spacing: 0.005em;
}

.hero__subtitle {
  font-size: 17px;
  font-weight: 400;
  color: var(--cream-dim);
  max-width: 560px;
  margin: 0 auto 40px;
}

.hero__actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--cream-dim);
  z-index: 2;
}
.hero__scroll span {
  width: 1px;
  height: 40px;
  background: linear-gradient(var(--terracotta-light), transparent);
  position: relative;
  overflow: hidden;
}
.hero__scroll span::after {
  content: '';
  position: absolute;
  top: -40px; left: 0;
  width: 100%; height: 40px;
  background: var(--terracotta-light);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  to { top: 40px; }
}
.hero__scroll small {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* ============================================
   MARQUEE
   ============================================ */

.marquee {
  background: var(--forest);
  padding: 20px 0;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.marquee__track {
  display: flex;
  width: max-content;
  gap: 24px;
  animation: marqueeScroll 30s linear infinite;
}
.marquee__track span {
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  color: var(--cream-dim);
  white-space: nowrap;
}
.marquee__track span:nth-child(2n) { color: var(--terracotta-light); font-style: normal; font-family: var(--sans); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================
   ABOUT
   ============================================ */

.about {
  padding: 130px 0;
  background: var(--cream);
}

.about__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.about__media {
  position: relative;
  height: 560px;
}
.about__img {
  position: absolute;
  border-radius: var(--radius);
  background-size: cover;
  background-position: center;
  box-shadow: 0 30px 60px -20px rgba(28,36,25,0.35);
}
.about__img--1 {
  width: 78%;
  height: 78%;
  top: 0; left: 0;
  z-index: 1;
}
.about__img--2 {
  width: 55%;
  height: 46%;
  bottom: 0; right: 0;
  border: 6px solid var(--cream);
  z-index: 2;
}
.about__badge {
  position: absolute;
  top: 24px;
  right: -20px;
  background: var(--terracotta);
  color: var(--cream);
  width: 110px;
  height: 110px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 3;
  box-shadow: 0 20px 40px -10px rgba(193,121,63,0.5);
}
.about__badge strong {
  font-family: var(--serif);
  font-size: 26px;
  line-height: 1;
}
.about__badge span {
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 6px;
}

.about__text {
  color: var(--stone);
  font-size: 16px;
  margin-bottom: 22px;
  max-width: 520px;
}
.about__content .btn { margin-top: 18px; }

/* ============================================
   ESPAÇOS
   ============================================ */

.espacos {
  padding: 130px 0;
  background: var(--forest);
}
.espacos .eyebrow { text-align: center; }
.espacos .section-title { color: var(--cream); text-align: center; }
.espacos .section-desc { color: var(--cream-dim); text-align: center; opacity: 0.75; }

.espacos__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}

.space-card {
  background: var(--forest-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.4s var(--ease), border-color 0.4s ease;
}
.space-card:hover {
  transform: translateY(-8px);
  border-color: var(--terracotta);
}

.space-card__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.space-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.space-card:hover .space-card__media img { transform: scale(1.08); }

.space-card__body { padding: 26px 24px 30px; }
.space-card__body h3 {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 10px;
}
.space-card__body p {
  font-size: 14px;
  color: var(--cream-dim);
  opacity: 0.8;
  line-height: 1.65;
}

/* ============================================
   GALLERY
   ============================================ */

.gallery {
  padding: 130px 0 0;
  background: var(--cream);
}
.gallery .section-head { margin-bottom: 56px; }

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  grid-auto-flow: dense;
  gap: 6px;
}
.gallery__item {
  overflow: hidden;
  position: relative;
  cursor: zoom-in;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.gallery__item:hover img { transform: scale(1.06); }
.gallery__item--tall { grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(16,20,13,0.94);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: 100%;
  max-height: 100%;
  border-radius: var(--radius);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.lightbox__close {
  position: absolute;
  top: 24px;
  right: 32px;
  font-size: 36px;
  color: var(--cream);
  line-height: 1;
  opacity: 0.8;
}
.lightbox__close:hover { opacity: 1; color: var(--terracotta-light); }

/* ============================================
   VIDEO TOUR
   ============================================ */

.video-tour {
  padding: 130px 0;
  background: var(--cream);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}

.video-card {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--forest);
  box-shadow: 0 20px 50px -25px rgba(28,36,25,0.4);
}
.video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-card__label {
  position: absolute;
  left: 18px;
  bottom: 16px;
  color: var(--cream);
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
}

/* ============================================
   TESTIMONIALS
   ============================================ */

.testimonials {
  padding: 130px 0;
  background: var(--cream);
}

.testi__score {
  text-align: center;
  font-size: 15px;
  color: var(--stone);
  margin-top: -12px;
  margin-bottom: 8px;
}
.testi__score strong { color: var(--terracotta); font-size: 18px; }
.testi__score a { color: var(--forest); text-decoration: underline; text-underline-offset: 2px; }
.testi__score a:hover { color: var(--terracotta); }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
  margin-top: 56px;
}

.testi-card {
  background: #fff;
  border: 1px solid rgba(28,36,25,0.08);
  border-radius: var(--radius);
  padding: 30px 28px;
  box-shadow: 0 20px 50px -30px rgba(28,36,25,0.2);
}
.testi-card__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.testi-card__avatar {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--cream);
  font-family: var(--serif);
  font-weight: 600;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.testi-card__who { display: flex; flex-direction: column; }
.testi-card__name { font-weight: 600; color: var(--forest); font-size: 15px; }
.testi-card__origin { font-size: 13px; color: var(--stone); }
.testi-card__quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  line-height: 1.6;
  color: var(--forest);
}
.testi-card__lang {
  display: inline-block;
  margin-top: 14px;
  font-size: 12px;
  color: var(--stone);
}

.testi__source {
  text-align: center;
  font-size: 13px;
  color: var(--stone);
  margin-top: 32px;
}
.testi__source a { color: var(--forest); text-decoration: underline; text-underline-offset: 2px; }
.testi__source a:hover { color: var(--terracotta); }

.testi__cta {
  max-width: 640px;
  margin: 40px auto 0;
  text-align: center;
}
.testi__empty-sub {
  font-size: 14px;
  color: var(--stone);
  margin-bottom: 26px;
}

/* ============================================
   RESERVAS
   ============================================ */

.reservas {
  position: relative;
  padding: 130px 0;
  background: url('../assets/img/pool-dusk.jpg') center/cover fixed;
}
.reservas__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(16,20,13,0.95) 0%, rgba(16,20,13,0.88) 100%);
}
.reservas__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
}

.reservas__text {
  color: var(--cream-dim);
  font-size: 16px;
  margin: 24px 0 42px;
  max-width: 440px;
}

.reservas__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.reservas__list li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(247,243,234,0.12);
}
.reservas__list strong {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terracotta-light);
}
.reservas__list span { color: var(--cream); font-size: 16px; }
.reservas__list a:hover { color: var(--terracotta-light); }

.reservas__form {
  background: rgba(247,243,234,0.04);
  border: 1px solid rgba(247,243,234,0.12);
  border-radius: var(--radius);
  padding: 42px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  backdrop-filter: blur(6px);
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.reservas__form .form__row:nth-of-type(2) { grid-template-columns: 1fr 1fr 1fr; }

.form__group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form__group label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terracotta-light);
}
.form__group input,
.form__group select,
.form__group textarea {
  background: rgba(247,243,234,0.06);
  border: 1px solid rgba(247,243,234,0.18);
  border-radius: var(--radius);
  padding: 13px 16px;
  color: var(--cream);
  font-family: var(--sans);
  font-size: 14px;
  color-scheme: dark;
  transition: border-color 0.3s ease;
}
.form__group textarea { resize: vertical; min-height: 78px; }
.form__group input::placeholder,
.form__group textarea::placeholder { color: rgba(247,243,234,0.35); }
.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
  outline: none;
  border-color: var(--terracotta-light);
}
.form__group select option { background: var(--forest); color: var(--cream); }

.reservas__email-link {
  text-align: center;
  font-size: 13px;
  color: var(--cream-dim);
  text-decoration: underline;
  text-underline-offset: 3px;
  opacity: 0.75;
}
.reservas__email-link:hover { color: var(--terracotta-light); opacity: 1; }

.form__success {
  display: none;
  text-align: center;
  color: var(--terracotta-light);
  font-size: 13px;
  letter-spacing: 0.02em;
}
.form__success.is-visible { display: block; }

/* ============================================
   FOOTER
   ============================================ */

.footer { background: var(--forest); padding-top: 90px; }

.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 70px;
  border-bottom: 1px solid var(--line);
}

.logo--light { color: var(--cream); }

.footer__brand p {
  color: var(--cream-dim);
  opacity: 0.7;
  font-size: 14px;
  margin: 20px 0 0;
  max-width: 320px;
  line-height: 1.7;
}

.footer__col { display: flex; flex-direction: column; gap: 14px; }
.footer__col h4 {
  font-family: var(--serif);
  font-size: 16px;
  color: var(--cream);
  margin-bottom: 4px;
  font-weight: 600;
}
.footer__col a,
.footer__col span {
  font-size: 14px;
  color: var(--cream-dim);
  opacity: 0.75;
  transition: color 0.3s ease, opacity 0.3s ease;
}
.footer__col a:hover { color: var(--terracotta-light); opacity: 1; }

.footer__bottom { padding: 26px 0; }
.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12px;
  color: var(--cream-dim);
  opacity: 0.55;
  letter-spacing: 0.02em;
}

/* ============================================
   TO TOP & WHATSAPP FLOAT
   ============================================ */

.to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: var(--terracotta);
  color: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  z-index: 500;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.35s var(--ease);
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--terracotta-light); transform: translateY(-4px); }

.wa-float {
  position: fixed;
  bottom: 32px;
  left: 32px;
  width: 54px;
  height: 54px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 500;
  box-shadow: 0 12px 30px -8px rgba(37,211,102,0.6);
  transition: transform 0.35s var(--ease);
}
.wa-float:hover { transform: translateY(-4px) scale(1.05); }

/* ============================================
   REVEAL ANIMATION
   ============================================ */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.is-active { opacity: 1; transform: translateY(0); }

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  .nav { display: none; }
  .header__cta { display: none; }
  .burger { display: flex; }

  .about__grid,
  .reservas__grid { grid-template-columns: 1fr; gap: 56px; }
  .about__media { height: 420px; max-width: 460px; margin: 0 auto; }

  .espacos__grid { grid-template-columns: repeat(2, 1fr); }
  .video-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: repeat(2, 1fr); }

  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery__item--wide { grid-column: span 2; }

  .footer__grid { grid-template-columns: 1fr 1fr; gap: 44px; }
}

@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .about, .espacos, .gallery, .video-tour, .testimonials, .reservas { padding: 84px 0; }

  .hero__actions { flex-direction: column; width: 100%; }
  .hero__actions .btn { width: 100%; }

  .espacos__grid { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: 1fr; }
  .video-card { aspect-ratio: 16 / 10; }
  .testi-grid { grid-template-columns: 1fr; }

  .form__row,
  .reservas__form .form__row:nth-of-type(2) { grid-template-columns: 1fr; }
  .reservas__form { padding: 26px; }

  .testi__empty { padding: 40px 26px; }

  .footer__grid { grid-template-columns: 1fr; gap: 36px; padding-bottom: 46px; }
  .footer__bottom-inner { flex-direction: column; text-align: center; }

  .to-top { right: 16px; bottom: 16px; width: 42px; height: 42px; }
  .wa-float { left: 16px; bottom: 16px; width: 48px; height: 48px; }
}
