/* ========================================
   FC M?veis sob Medida — Landing Page
   Paleta: grafite / preto + ?mbar dourado
   ======================================== */

:root {
  --bg: #0c0c0c;
  --bg-elevated: #141414;
  --bg-soft: #1a1a1a;
  --surface: #222222;
  --gold: #c9a227;
  --gold-soft: #d4b84a;
  --gold-dim: rgba(201, 162, 39, 0.18);
  --gold-line: rgba(201, 162, 39, 0.35);
  --text: #f5f2eb;
  --text-muted: #a8a29a;
  --white: #ffffff;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --header-h: 72px;
  --radius: 2px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --max: 1120px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

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

ul,
ol {
  list-style: none;
}

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

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

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

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0.01em;
}

h2 {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  margin-bottom: 0.75rem;
}

h3 {
  font-size: 1.35rem;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.85rem;
}

.lead {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 36rem;
  font-weight: 300;
}

.section {
  padding: clamp(4.5rem, 10vw, 7.5rem) 0;
}

.section__head {
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.section__head .lead {
  margin-top: 0.75rem;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.6rem;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border: 1px solid transparent;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease);
  white-space: nowrap;
}

.btn--gold {
  background: var(--gold);
  color: #1a1408;
}

.btn--gold:hover {
  background: var(--gold-soft);
  transform: translateY(-1px);
}

.btn--ghost {
  border-color: rgba(245, 242, 235, 0.35);
  color: var(--text);
  background: transparent;
}

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

.btn--sm {
  padding: 0.65rem 1.15rem;
  font-size: 0.8rem;
}

.btn--lg {
  padding: 1.1rem 2.2rem;
  font-size: 1rem;
}

/* ---------- Header ---------- */

.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  background: rgba(12, 12, 12, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}

.header.is-scrolled {
  border-bottom-color: rgba(201, 162, 39, 0.15);
  background: rgba(12, 12, 12, 0.92);
}

.header__inner {
  width: min(100% - 2rem, 1200px);
  margin-inline: auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.header__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.header__logo {
  width: 44px;
  height: 44px;
}

.header__name {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.header__name strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
}

.header__name small {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.header__nav ul {
  display: flex;
  gap: 1.5rem;
}

.header__nav a:not(.btn) {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-muted);
  transition: color 0.25s;
}

.header__nav a:not(.btn):hover {
  color: var(--gold);
}

.header__toggle {
  display: none;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  z-index: 110;
}

.header__toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  transition: transform 0.3s var(--ease), opacity 0.3s;
}

.header__toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.header__toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.header__toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

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

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--header-h) + 2rem) 0 5.5rem;
  overflow: hidden;
}

@media (min-width: 861px) {
  .hero {
    align-items: center;
    padding-bottom: 4rem;
  }

  .hero__content {
    margin-top: 2rem;
  }
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.04);
  animation: heroZoom 18s var(--ease) forwards;
}

@keyframes heroZoom {
  to {
    transform: scale(1);
  }
}

.hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12, 12, 12, 0.55) 0%, rgba(12, 12, 12, 0.35) 30%, rgba(12, 12, 12, 0.72) 62%, rgba(12, 12, 12, 0.94) 100%),
    linear-gradient(90deg, rgba(12, 12, 12, 0.82) 0%, rgba(12, 12, 12, 0.45) 42%, rgba(12, 12, 12, 0.15) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(100% - 2.5rem, 38rem);
  margin-left: max(1.25rem, calc((100vw - min(100vw - 2.5rem, var(--max))) / 2));
  margin-right: auto;
  animation: heroRise 1s var(--ease) 0.15s both;
}

@keyframes heroRise {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__brand {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.02em;
  margin-bottom: 0.85rem;
  line-height: 1.1;
}

.hero__title {
  font-size: clamp(1.85rem, 4.2vw, 3rem);
  font-weight: 500;
  color: var(--text);
  margin-bottom: 1rem;
  max-width: 16ch;
}

.hero__sub {
  color: var(--text-muted);
  font-weight: 300;
  font-size: 1.05rem;
  margin-bottom: 2rem;
  max-width: 32rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero__scroll {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  width: 24px;
  height: 36px;
  border: 1px solid rgba(245, 242, 235, 0.35);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.hero__scroll span {
  width: 3px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollPulse 1.6s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%,
  100% {
    opacity: 0.3;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(6px);
  }
}

/* ---------- Sobre / Selos ---------- */

.sobre {
  background:
    radial-gradient(ellipse 60% 50% at 10% 0%, var(--gold-dim), transparent 60%),
    var(--bg);
}

.selos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 0.5rem;
}

.selo {
  padding: 1.5rem 0;
  border-top: 1px solid var(--gold-line);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.selo.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.selo__icon {
  width: 28px;
  height: 28px;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.selo__icon svg {
  width: 100%;
  height: 100%;
}

.selo strong {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
}

.selo span:last-child {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 300;
}

/* ---------- Ambientes ---------- */

.ambientes {
  background: var(--bg-elevated);
}

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

.ambiente {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  cursor: default;
}

.ambiente img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.ambiente::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(12, 12, 12, 0.92) 100%);
}

.ambiente h3 {
  position: absolute;
  left: 1.15rem;
  bottom: 1.15rem;
  z-index: 1;
  font-size: 1.45rem;
  color: var(--text);
}

.ambiente:hover img {
  transform: scale(1.06);
}

/* ---------- Galeria / Carousel ---------- */


/* ---------- Gallery tabs ---------- */

.gallery-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: clamp(2rem, 4vw, 2.75rem);
}

.gallery-head__copy {
  flex: 1 1 50%;
  max-width: 50%;
  margin-bottom: 0;
}

.gallery-head .section__head {
  margin-bottom: 0;
}

.gallery-tabs {
  flex: 1 1 50%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

@media (max-width: 720px) {
  .gallery-head {
    flex-direction: column;
    align-items: stretch;
    gap: 1.25rem;
  }

  .gallery-head__copy {
    max-width: none;
  }

  .gallery-tabs {
    justify-content: flex-start;
  }
}

.gallery-tabs__btn {
  min-width: 7.5rem;
  padding: 0.7rem 1.4rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid rgba(245, 242, 235, 0.18);
  background: transparent;
  transition: color 0.25s, border-color 0.25s, background 0.25s;
}

.gallery-tabs__btn:hover {
  color: var(--text);
  border-color: var(--gold-line);
}

.gallery-tabs__btn.is-active {
  color: #1a1408;
  background: var(--gold);
  border-color: var(--gold);
}

.gallery-empty {
  text-align: center;
  color: var(--text-muted);
  padding: 3rem 1rem;
  font-weight: 300;
}

.galeria {
  background:
    radial-gradient(ellipse 50% 40% at 90% 20%, var(--gold-dim), transparent 55%),
    var(--bg);
}

.carousel {
  position: relative;
}

.carousel__viewport {
  overflow: hidden;
  touch-action: pan-y;
}

.carousel__track {
  display: flex;
  transition: transform 0.55s var(--ease);
  will-change: transform;
}

.carousel__slide {
  flex: 0 0 100%;
  min-width: 0;
  padding: 0 0.25rem;
}

.slide {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: center;
}

.slide__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--surface);
  cursor: zoom-in;
}

.slide__media img,
.slide__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 0.7rem;
  background: rgba(12, 12, 12, 0.75);
  color: var(--gold);
  border: 1px solid var(--gold-line);
}

.slide__play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(12, 12, 12, 0.25);
  pointer-events: none;
}

.slide__play svg {
  width: 56px;
  height: 56px;
  color: var(--gold);
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
}

.slide__info h3 {
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  margin-bottom: 0.75rem;
}

.slide__info p {
  color: var(--text-muted);
  font-weight: 300;
  max-width: 28rem;
}

.slide__meta {
  margin-top: 1.25rem;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.carousel__btn {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  z-index: 5;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold-line);
  background: rgba(12, 12, 12, 0.7);
  color: var(--gold);
  transition: background 0.25s, border-color 0.25s;
}

.carousel__btn:hover {
  background: var(--gold-dim);
  border-color: var(--gold);
}

.carousel__btn svg {
  width: 22px;
  height: 22px;
}

.carousel__btn--prev {
  left: -0.5rem;
}

.carousel__btn--next {
  right: -0.5rem;
}

.carousel__dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.75rem;
}

.carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(245, 242, 235, 0.25);
  transition: background 0.25s, transform 0.25s;
}

.carousel__dot.is-active {
  background: var(--gold);
  transform: scale(1.25);
}

/* Antes / Depois */
.antes-depois[hidden] {
  display: none !important;
}

.antes-depois {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(201, 162, 39, 0.15);
}

.antes-depois__title {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.antes-depois__grid {
  display: grid;
  gap: 2rem;
}

.ad-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.ad-item__side {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  cursor: zoom-in;
}

.ad-item__side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ad-item__label {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.35rem 0.6rem;
  background: rgba(12, 12, 12, 0.8);
  color: var(--gold);
}

.ad-item__caption {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--text-muted);
  font-weight: 300;
  margin-top: 0.25rem;
}

/* ---------- Processo ---------- */

.processo {
  background: var(--bg-elevated);
}

.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
  counter-reset: none;
}

.step {
  position: relative;
  padding-top: 1rem;
  border-top: 1px solid var(--gold-line);
}

.step__num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
  line-height: 1;
}

.step h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.step p {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 300;
}

/* ---------- Depoimentos ---------- */

.depoimentos {
  background: var(--bg);
}

.testimonials {
  position: relative;
  max-width: 720px;
  margin-inline: auto;
}

.testimonials__viewport {
  overflow: hidden;
}

.testimonials__track {
  display: flex;
  transition: transform 0.5s var(--ease);
}

.testimonials .carousel__btn--prev {
  left: -3rem;
  top: 45%;
}

.testimonials .carousel__btn--next {
  right: -3rem;
  top: 45%;
}

.testimonial {
  flex: 0 0 100%;
  text-align: center;
  padding: 1rem 1.5rem 0.5rem;
}

.testimonial__quote {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.45;
  margin-bottom: 1.5rem;
  color: var(--text);
}

.testimonial__author {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ---------- CTA Final ---------- */

.cta-final {
  position: relative;
  padding: clamp(5rem, 12vw, 8rem) 0;
  background:
    linear-gradient(180deg, rgba(12, 12, 12, 0.82), rgba(12, 12, 12, 0.92)),
    url("../img/projeto-quarto-01.jpg") center / cover no-repeat;
  text-align: center;
}

.cta-final__inner {
  max-width: 36rem;
}

.cta-final h2 {
  margin-bottom: 0.85rem;
}

.cta-final p:not(.eyebrow) {
  color: var(--text-muted);
  font-weight: 300;
  margin-bottom: 2rem;
}

/* ---------- Footer ---------- */

.footer {
  background: #080808;
  border-top: 1px solid rgba(201, 162, 39, 0.12);
  padding: 3rem 0 0;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  padding-bottom: 2.5rem;
}

.footer__brand {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.footer__brand strong {
  font-family: var(--font-display);
  font-size: 1.25rem;
  display: block;
}

.footer__brand p {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 300;
}

.footer__meta {
  display: flex;
  gap: 3rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 300;
}

.footer__meta strong {
  color: var(--text);
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer__meta a {
  transition: color 0.25s;
}

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

.footer__copy {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.25rem 0;
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ---------- WhatsApp float ---------- */

.wa-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 90;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  transition: transform 0.3s var(--ease);
}

.wa-float:hover {
  transform: scale(1.08);
}

.wa-float svg {
  width: 28px;
  height: 28px;
}

/* ---------- Lightbox ---------- */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.94);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox[hidden] {
  display: none;
}

.lightbox__body {
  max-width: min(90vw, 900px);
  max-height: 78vh;
}

.lightbox__body img,
.lightbox__body video {
  max-height: 78vh;
  width: auto;
  max-width: 100%;
  margin-inline: auto;
  object-fit: contain;
}

.lightbox__close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--text);
  z-index: 2;
}

.lightbox__close svg {
  width: 24px;
  height: 24px;
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--gold);
  z-index: 2;
  border: 1px solid var(--gold-line);
  background: rgba(12, 12, 12, 0.55);
  transition: background 0.25s, border-color 0.25s;
}

.lightbox__nav:hover {
  background: var(--gold-dim);
  border-color: var(--gold);
}

.lightbox__nav svg {
  width: 24px;
  height: 24px;
}

.lightbox__nav--prev {
  left: 0.5rem;
}

.lightbox__nav--next {
  right: 0.5rem;
}

.lightbox__caption {
  margin-top: 1rem;
  color: var(--text-muted);
  text-align: center;
  font-weight: 300;
}

/* ---------- Reveal on scroll ---------- */

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

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsive ---------- */

@media (max-width: 1024px) {
  .selos {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps {
    grid-template-columns: repeat(3, 1fr);
  }

  .step:nth-child(4),
  .step:nth-child(5) {
    grid-column: span 1;
  }

  .carousel__btn--prev {
    left: 0.25rem;
  }

  .carousel__btn--next {
    right: 0.25rem;
  }

  .testimonials .carousel__btn {
    display: none;
  }
}

@media (max-width: 860px) {
  .header__toggle {
    display: flex;
  }

  .header__nav {
    position: fixed;
    inset: 0;
    background: rgba(8, 8, 8, 0.98);
    flex-direction: column;
    justify-content: center;
    gap: 2.5rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s var(--ease), visibility 0.35s;
  }

  .header__nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .header__nav ul {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }

  .header__nav a:not(.btn) {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--text);
  }

  .slide {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .slide__media {
    aspect-ratio: 3 / 4;
  }

  .slide__info {
    text-align: center;
    padding-inline: 0.5rem;
  }

  .slide__info p {
    margin-inline: auto;
  }

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

  .steps {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .hero__scroll {
    display: none;
  }

  .hero__content {
    margin-left: 1.25rem;
    width: calc(100% - 2.5rem);
  }
}

@media (max-width: 560px) {
  .selos {
    grid-template-columns: 1fr;
    gap: 0;
  }

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

  .ambiente {
    aspect-ratio: 16 / 10;
  }

  .ad-item {
    grid-template-columns: 1fr;
  }

  .footer__meta {
    flex-direction: column;
    gap: 1.5rem;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .header__nav .btn {
    width: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}


body.lightbox-open .carousel__btn {
  visibility: hidden;
  pointer-events: none;
}
