/* ===== TOKENS ===== */
:root {
  --green: #455449;
  --green-dark: #333f36;
  --green-soft: #6f8073;
  --green-100: #eef2ef;
  --green-50: #f6f8f6;
  --white: #ffffff;
  --ink: #2b322d;
  --muted: #667066;
  --line: #e3e8e3;
  --line-strong: #d3dad4;

  --radius-xl: 24px;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 18px 45px -22px rgba(43, 50, 45, .35);
  --shadow-soft: 0 10px 30px -18px rgba(43, 50, 45, .28);
  --shadow-lg: 0 40px 80px -40px rgba(43, 50, 45, .5);

  --maxw: 1180px;
  --font-head: "Poppins", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;

  --ease: cubic-bezier(.4, 0, .2, 1);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ===== SCROLL REVEAL ===== */
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  will-change: opacity, transform;
}
[data-reveal].is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}

/* ===== EYEBROW / SECTION HEADS ===== */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-weight: 600;
  font-size: .78rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--green); margin-bottom: 16px;
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px; background: var(--green-soft); border-radius: 2px;
}
.eyebrow--light { color: var(--green); }

.section { padding: 96px 0; }
.section__head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section__head .eyebrow { justify-content: center; }
.section__title {
  font-family: var(--font-head); font-weight: 700;
  font-size: clamp(1.9rem, 3.8vw, 2.7rem); color: var(--green-dark);
  letter-spacing: -.02em; line-height: 1.12; margin-bottom: 18px;
}
.section__lead { color: var(--muted); font-size: 1.08rem; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  background: var(--green); color: var(--white);
  font-family: var(--font-head); font-weight: 500; font-size: 1rem;
  padding: 14px 28px; border-radius: 999px; border: 2px solid var(--green);
  cursor: pointer; transition: .25s var(--ease); line-height: 1;
}
.btn:hover { background: var(--green-dark); border-color: var(--green-dark); transform: translateY(-2px); box-shadow: var(--shadow-soft); }
.btn--ghost { background: transparent; color: var(--green); }
.btn--ghost:hover { background: var(--green); color: var(--white); }
.btn--light { background: var(--white); color: var(--green); border-color: var(--white); }
.btn--light:hover { background: var(--green-100); border-color: var(--green-100); color: var(--green-dark); }
.btn--sm { padding: 10px 18px; font-size: .92rem; }

/* ===== HEADER ===== */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.88); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s ease;
}
.header.is-scrolled { box-shadow: var(--shadow-soft); }
.header__inner { display: flex; align-items: center; gap: 20px; height: 74px; }
.header__logo { height: 34px; width: auto; }
.nav { margin-left: auto; }
.nav__list { display: flex; gap: 28px; list-style: none; }
.nav__link {
  font-family: var(--font-head); font-weight: 500; font-size: .94rem;
  color: var(--ink); position: relative; padding: 4px 0;
}
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px;
  background: var(--green); transition: width .25s ease;
}
.nav__link:hover { color: var(--green); }
.nav__link:hover::after { width: 100%; }
.header__cta { margin-left: 4px; }
.nav__toggle { display: none; }

/* ===== HERO ===== */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(1100px 500px at 85% -10%, var(--green-100), transparent 60%),
    var(--green-50);
}
.hero__inner {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center;
  padding: 84px 24px 92px;
}
.hero__title {
  font-family: var(--font-head); font-weight: 700;
  font-size: clamp(2.3rem, 5vw, 3.7rem); line-height: 1.08;
  color: var(--green-dark); letter-spacing: -.025em; margin-bottom: 22px;
}
.hero__text { font-size: 1.14rem; color: var(--muted); margin-bottom: 32px; max-width: 560px; }
.hero__text strong { color: var(--green); font-weight: 600; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.hero__badges { display: flex; flex-wrap: wrap; gap: 12px 26px; list-style: none; }
.hero__badges li { display: inline-flex; align-items: center; gap: 8px; font-weight: 500; color: var(--green); font-size: .95rem; }
.hero__badges svg { color: var(--green); }

.hero__media { position: relative; }
.hero__frame {
  position: relative; border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: var(--shadow-lg); border: 6px solid var(--white);
  aspect-ratio: 4 / 3.4;
}
.hero__frame img { width: 100%; height: 100%; object-fit: cover; }
.hero__stat {
  position: absolute; left: -22px; bottom: 28px;
  background: var(--green); color: var(--white);
  border-radius: var(--radius); padding: 18px 22px;
  box-shadow: var(--shadow); display: flex; align-items: center; gap: 12px;
}
.hero__stat-num { font-family: var(--font-head); font-weight: 700; font-size: 2.1rem; line-height: 1; }
.hero__stat-label { font-size: .82rem; line-height: 1.25; color: var(--green-100); }

/* ===== STATS STRIP ===== */
.stats { background: var(--green-dark); color: var(--white); }
.stats__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px; padding: 40px 24px;
}
.stat {
  text-align: center; padding: 8px 12px;
  border-right: 1px solid rgba(255,255,255,.12);
}
.stat:last-child { border-right: 0; }
.stat__num {
  display: block; font-family: var(--font-head); font-weight: 700;
  font-size: 2.6rem; line-height: 1; color: var(--white); margin-bottom: 8px;
}
.stat__num--text { font-size: 1.35rem; line-height: 1.15; }
.stat__label { font-size: .9rem; color: #b9c6bd; letter-spacing: .01em; }

/* ===== SERVIÇOS / PILLARS ===== */
.servicos { background: var(--white); }
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.pillar {
  position: relative; display: flex; flex-direction: column;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 36px 30px 30px;
  box-shadow: var(--shadow-soft);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  overflow: hidden;
}
.pillar::before {
  content: ""; position: absolute; left: 0; top: 0; width: 100%; height: 4px;
  background: var(--green); transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease);
}
.pillar:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: var(--line-strong); }
.pillar:hover::before { transform: scaleX(1); }
.pillar__num {
  position: absolute; top: 26px; right: 28px;
  font-family: var(--font-head); font-weight: 700; font-size: 1.5rem;
  color: var(--green-100);
}
.pillar__icon {
  width: 60px; height: 60px; border-radius: 16px;
  background: var(--green-50); color: var(--green);
  display: grid; place-items: center; margin-bottom: 22px;
  transition: background .3s var(--ease), color .3s var(--ease);
}
.pillar:hover .pillar__icon { background: var(--green); color: var(--white); }
.pillar__title { font-family: var(--font-head); font-weight: 600; font-size: 1.35rem; color: var(--green-dark); margin-bottom: 12px; }
.pillar__text { color: var(--muted); font-size: .98rem; margin-bottom: 22px; flex: 1; }
.pillar__link {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-weight: 600; font-size: .92rem; color: var(--green);
}
.pillar__link svg { transition: transform .25s var(--ease); }
.pillar:hover .pillar__link svg { transform: translateX(5px); }

/* ===== CONHEÇA A CLÍNICA ===== */
.conheca { background: var(--green-50); }
.conheca__inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; }
.conheca__lead { color: var(--muted); font-size: 1.06rem; margin-bottom: 26px; }
.conheca__lead strong { color: var(--green); }
.conheca__video {
  position: relative; width: 100%; max-width: 420px; margin: 0 auto;
  aspect-ratio: 1080 / 1600; border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow); background: #000;
  border: 6px solid var(--white);
}
.conheca__video-el { width: 100%; height: 100%; object-fit: cover; display: block; }
.conheca__sound {
  position: absolute; right: 14px; bottom: 14px; z-index: 2;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(15, 20, 17, .55); backdrop-filter: blur(4px);
  border: 1.5px solid rgba(255,255,255,.5);
  color: var(--white); display: grid; place-items: center;
  cursor: pointer; transition: background .2s var(--ease), transform .2s var(--ease);
}
.conheca__sound:hover { background: rgba(15, 20, 17, .75); transform: scale(1.06); }
.conheca__sound .icon-unmuted { display: none; }
.conheca__sound[aria-pressed="true"] .icon-muted { display: none; }
.conheca__sound[aria-pressed="true"] .icon-unmuted { display: block; }

/* ===== CHECKLIST ===== */
.checklist { list-style: none; display: grid; gap: 12px; margin-bottom: 30px; }
.checklist li { position: relative; padding-left: 32px; color: var(--ink); }
.checklist li::before {
  content: "✓"; position: absolute; left: 0; top: 1px;
  color: var(--white); background: var(--green); width: 20px; height: 20px;
  border-radius: 50%; font-size: .72rem; display: grid; place-items: center;
}

/* ===== ALUGUEL ===== */
.aluguel { background: var(--white); }
.rooms { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.room-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-soft); border: 1px solid var(--line);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.room-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.room-card__img { position: relative; height: 260px; background-size: cover; background-position: center; overflow: hidden; }
.room-card__img--consultorio { background-image: url("assets/sala-foto-1.jpg"); background-position: center 35%; }
.room-card__img--massoterapia { background-image: url("https://images.unsplash.com/photo-1600334129128-685c5582fd35?auto=format&fit=crop&w=900&q=80"); }
.room-card__tag {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.92); color: var(--green-dark);
  font-family: var(--font-head); font-weight: 600; font-size: .78rem;
  padding: 6px 12px; border-radius: 999px; box-shadow: var(--shadow-soft);
}
.room-card__body { padding: 28px 28px 32px; }
.room-card__title { font-family: var(--font-head); font-weight: 600; font-size: 1.4rem; color: var(--green-dark); margin-bottom: 12px; }
.room-card__body > p { color: var(--muted); margin-bottom: 18px; }
.room-card__list { list-style: none; display: grid; gap: 10px; }
.room-card__list li { position: relative; padding-left: 26px; color: var(--ink); font-size: .96rem; }
.room-card__list li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  color: var(--white); background: var(--green); width: 18px; height: 18px;
  border-radius: 50%; font-size: .7rem; display: grid; place-items: center;
}
.aluguel__cta {
  margin-top: 34px; background: var(--green); color: var(--white);
  border-radius: var(--radius); padding: 34px 40px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  flex-wrap: wrap; box-shadow: var(--shadow);
}
.aluguel__cta h3 { font-family: var(--font-head); font-weight: 600; font-size: 1.5rem; margin-bottom: 4px; }
.aluguel__cta p { color: var(--green-100); }

/* ===== ROOM CARD CLICKABLE ===== */
.room-card--clickable { cursor: pointer; }
.room-card--clickable:focus-visible { outline: 3px solid var(--green); outline-offset: 3px; }
.room-card__play {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
  background: rgba(51, 63, 54, 0); color: var(--white);
  font-family: var(--font-head); font-weight: 600; font-size: .9rem; letter-spacing: .04em;
  opacity: 0; transition: opacity .3s var(--ease), background .3s var(--ease);
}
.room-card--clickable:hover .room-card__play { opacity: 1; background: rgba(51, 63, 54, .58); }
.room-card__play svg {
  background: var(--white); color: var(--green-dark);
  border-radius: 50%; padding: 6px; width: 52px; height: 52px;
  box-shadow: 0 6px 20px rgba(0,0,0,.3); transition: transform .2s var(--ease);
}
.room-card--clickable:hover .room-card__play svg { transform: scale(1.1); }

/* ===== ESPECIALIDADES ===== */
.especialidades { background: var(--green-50); }
.spec-grid { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.spec-grid li {
  display: flex; align-items: center; gap: 12px;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 16px 18px;
  font-family: var(--font-head); font-weight: 500; font-size: .95rem; color: var(--green-dark);
  transition: .25s var(--ease);
}
.spec__ico {
  flex-shrink: 0; width: 32px; height: 32px; border-radius: 9px;
  background: var(--green-50); color: var(--green);
  display: grid; place-items: center; transition: .25s var(--ease);
}
.spec-grid li:hover { background: var(--green); color: var(--white); border-color: var(--green); transform: translateY(-3px); box-shadow: var(--shadow-soft); }
.spec-grid li:hover .spec__ico { background: rgba(255,255,255,.18); color: var(--white); }
.especialidades__note { text-align: center; color: var(--muted); margin-top: 32px; font-size: 1rem; }
.especialidades__note a { color: var(--green); font-weight: 600; }
.especialidades__note a:hover { text-decoration: underline; }

/* ===== PSICANÁLISE ===== */
.psicanalise { background: var(--white); }
.psicanalise__inner { display: grid; grid-template-columns: .85fr 1.15fr; gap: 60px; align-items: center; }
.psicanalise__media { position: relative; max-width: 420px; margin: 0 auto; width: 100%; }
.psicanalise__img {
  width: 100%; aspect-ratio: 1179 / 1560;
  border-radius: var(--radius); box-shadow: var(--shadow);
  background-size: cover; background-position: center top;
  background-image: url("assets/dra-dione-mota.jpg");
  border: 6px solid var(--white);
}
.psicanalise__badge {
  position: absolute; left: 18px; bottom: -18px; right: 18px;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 14px 20px;
  box-shadow: var(--shadow); text-align: left;
}
.psicanalise__badge-name { display: block; font-family: var(--font-head); font-weight: 700; color: var(--green-dark); font-size: 1.1rem; }
.psicanalise__badge-role { display: block; font-size: .84rem; color: var(--green); font-weight: 500; }
.psicanalise__content > p { color: var(--muted); margin-bottom: 22px; font-size: 1.06rem; }
.psicanalise__content > p strong { color: var(--green); }

/* ===== CONTATO ===== */
.contato { background: var(--green-50); }
.contato__grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 40px; }
.contato__info { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; align-content: start; }
.info-block {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 20px 22px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.info-block:hover { transform: translateY(-3px); box-shadow: var(--shadow-soft); }
.info-block__ico {
  flex-shrink: 0; width: 42px; height: 42px; border-radius: 11px;
  background: var(--green-50); color: var(--green);
  display: grid; place-items: center;
}
.info-block h3 { font-family: var(--font-head); font-weight: 600; font-size: 1.02rem; color: var(--green-dark); margin-bottom: 4px; }
.info-block p { color: var(--muted); font-size: .94rem; }
.info-block a { color: var(--green); font-weight: 600; }
.info-block a:hover { text-decoration: underline; }
.contato__map { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); min-height: 420px; border: 1px solid var(--line); }
.contato__map iframe { width: 100%; height: 100%; min-height: 420px; border: 0; display: block; }

/* ===== FOOTER ===== */
.footer { background: var(--green-dark); color: #d7ded8; padding-top: 64px; }
.footer__inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; padding-bottom: 48px; }
.footer__logo { height: 34px; filter: brightness(0) invert(1); opacity: .95; margin-bottom: 16px; }
.footer__brand p { color: #aebbb0; max-width: 340px; }
.footer__col h4 { font-family: var(--font-head); font-weight: 600; color: var(--white); margin-bottom: 16px; font-size: 1rem; }
.footer__col ul { list-style: none; display: grid; gap: 10px; }
.footer__col a:hover { color: var(--white); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 20px 0; }
.footer__bottom p { text-align: center; font-size: .88rem; color: #9fb0a4; }

/* ===== FLOATING WHATSAPP ===== */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 200;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25d366; color: var(--white);
  display: grid; place-items: center;
  box-shadow: 0 12px 28px -8px rgba(37,211,102,.7);
  transition: transform .25s var(--ease);
}
.wa-float:hover { transform: scale(1.08); }

/* ===== MODAL + CARROSSEL ===== */
.modal-overlay {
  position: fixed; inset: 0; z-index: 500;
  background: rgba(15, 20, 17, .82); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px; animation: fadeIn .22s ease;
}
.modal-overlay[hidden] { display: none; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal {
  background: var(--white); border-radius: var(--radius);
  width: 100%; max-width: 900px; max-height: 90vh; overflow-y: auto;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,.55);
  animation: slideUp .26s ease;
}
@keyframes slideUp { from { transform: translateY(24px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.modal__header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 26px 18px; border-bottom: 1px solid var(--line);
}
.modal__title { font-family: var(--font-head); font-weight: 700; font-size: 1.25rem; color: var(--green-dark); }
.modal__close {
  background: var(--green-50); border: none; cursor: pointer;
  border-radius: 50%; width: 40px; height: 40px;
  display: grid; place-items: center; color: var(--green-dark); transition: background .2s;
}
.modal__close:hover { background: var(--line); }

.carousel { position: relative; background: #000; overflow: hidden; user-select: none; }
.carousel__track { display: flex; transition: transform .35s var(--ease); }
.carousel__slide { flex: 0 0 100%; display: flex; align-items: center; justify-content: center; max-height: 520px; background: #111; }
.carousel__slide img { width: 100%; max-height: 520px; object-fit: contain; display: block; }
.carousel__arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 10;
  background: rgba(255,255,255,.18); backdrop-filter: blur(4px);
  border: 1.5px solid rgba(255,255,255,.35); color: var(--white);
  width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center; cursor: pointer; transition: background .2s var(--ease);
}
.carousel__arrow:hover { background: rgba(255,255,255,.35); }
.carousel__arrow--prev { left: 14px; }
.carousel__arrow--next { right: 14px; }
.carousel__dots { display: flex; justify-content: center; gap: 8px; padding: 16px 0 20px; }
.carousel__dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--line); border: none; cursor: pointer;
  transition: background .2s var(--ease), transform .2s var(--ease);
}
.carousel__dot.is-active { background: var(--green); transform: scale(1.25); }

/* ===== RESPONSIVE ===== */
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; gap: 44px; padding: 64px 24px 76px; }
  .hero__media { max-width: 460px; margin: 0 auto; width: 100%; }
  .conheca__inner { grid-template-columns: 1fr; gap: 40px; }
  .conheca__content { order: 2; }
  .conheca__video { order: 1; }
  .psicanalise__inner { grid-template-columns: 1fr; gap: 48px; }
  .psicanalise__media { order: -1; }
}

@media (max-width: 900px) {
  .nav {
    position: fixed; inset: 74px 0 auto 0;
    background: var(--white); border-bottom: 1px solid var(--line);
    transform: translateY(-120%); transition: transform .3s ease; margin: 0;
    box-shadow: var(--shadow-soft);
  }
  .nav.is-open { transform: translateY(0); }
  .nav__list { flex-direction: column; gap: 0; padding: 12px 24px; }
  .nav__list li { border-bottom: 1px solid var(--line); }
  .nav__list li:last-child { border-bottom: 0; }
  .nav__link { display: block; padding: 14px 0; }
  .header__cta { margin-left: auto; }
  .nav__toggle {
    display: flex; flex-direction: column; justify-content: center; gap: 5px;
    width: 42px; height: 42px; background: transparent; border: 0; cursor: pointer;
  }
  .nav__toggle span { height: 2px; width: 24px; background: var(--green-dark); border-radius: 2px; transition: .25s var(--ease); }
  .nav__toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav__toggle.is-active span:nth-child(2) { opacity: 0; }
  .nav__toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 24px 12px; }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,.12); padding-bottom: 22px; }
  .pillars { grid-template-columns: 1fr; }
  .rooms { grid-template-columns: 1fr; }
  .spec-grid { grid-template-columns: repeat(3, 1fr); }
  .contato__grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  .section { padding: 68px 0; }
  .hero__stat { left: 12px; }
  .aluguel__cta { flex-direction: column; align-items: flex-start; text-align: left; }
  .contato__info { grid-template-columns: 1fr; }
  .spec-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: 1fr 1fr; }
}
