/* ---------- Reset & Base ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --blue: #A9DDF3;
  --blue-dark: #4FA9D8;
  --yellow: #FFD966;
  --yellow-dark: #F2B705;
  --pink: #F7B8C4;
  --pink-dark: #E8879C;
  --green: #B7E4C7;
  --green-dark: #6FBF8B;

  --ink: #2E2A26;
  --ink-soft: #5B564F;
  --cream: #FFFDF8;
  --cream-soft: #FFF8ED;

  --blue-tint: #E4F4FC;
  --pink-tint: #FDEEF1;
  --yellow-tint: #FFF8E3;
  --green-tint: #EAF7EF;

  --radius: 24px;
  --shadow: 0 12px 30px rgba(46, 42, 38, 0.08);

  --font-title: 'Quicksand', sans-serif;
  --font-body: 'Nunito', sans-serif;
}

html { scroll-behavior: smooth; overflow-x: hidden; width: 100%; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

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

h1, h2, h3, h4 { font-family: var(--font-title); font-weight: 700; line-height: 1.2; }

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

ul { list-style: none; }

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: #fff;
  padding: 10px 16px;
  z-index: 999;
}
.skip-link:focus { left: 16px; top: 16px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 999px;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform .2s ease, box-shadow .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn--primary {
  background: var(--blue-dark);
  color: #fff;
  box-shadow: 0 8px 20px rgba(79, 169, 216, 0.4);
}
.btn--primary:hover { box-shadow: 0 12px 26px rgba(79, 169, 216, 0.5); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--ink);
}

.btn--whatsapp {
  background: #25D366;
  color: #fff;
}

.btn--lg { padding: 16px 34px; font-size: 1.05rem; }

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  background: rgba(255, 253, 248, 0.92);
  backdrop-filter: blur(8px);
  z-index: 100;
  border-bottom: 1px solid rgba(46,42,38,0.06);
}

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

.logo img { height: 40px; width: auto; }

.nav__list {
  display: flex;
  gap: 32px;
}
.nav__list a {
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
}
.nav__list a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: var(--blue-dark);
  transition: width .2s ease;
}
.nav__list a:hover::after { width: 100%; }

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

.header__social { display: flex; gap: 12px; }
.header__social a {
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--blue);
  color: var(--ink);
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.header__social a:hover {
  background: var(--blue-dark);
  color: #fff;
  transform: translateY(-3px);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav__toggle span {
  width: 24px; height: 2.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  padding: 72px 0 60px;
  overflow: hidden;
  position: relative;
  background: var(--blue-tint);
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
}

.hero__text h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  color: var(--ink);
}
.hero__text h1 span { color: var(--blue-dark); }

.hero__subtitle {
  margin-top: 18px;
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 440px;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

.hero__art {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 380px;
}

.blob {
  position: absolute;
  border-radius: 50%;
  z-index: 0;
}
.blob--light {
  width: 400px; height: 400px;
  background: var(--blue);
  top: -40px; left: -10px;
}
.blob--dark {
  width: 220px; height: 220px;
  background: var(--blue-dark);
  bottom: -30px; right: 0;
  opacity: 0.55;
}

.hero__dots {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 110px;
  height: 110px;
  background-image: radial-gradient(var(--blue-dark) 3px, transparent 3px);
  background-size: 18px 18px;
  opacity: 0.35;
  z-index: 0;
}

.hero__photo-main {
  position: relative;
  width: 460px;
  aspect-ratio: 2752 / 1536;
  border-radius: 32px;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 0 0 6px #fff, 0 20px 45px rgba(46, 42, 38, 0.18);
  background: var(--blue);
}
.hero__photo-main img { width: 100%; height: 100%; object-fit: cover; }
.hero__photo-main .badge {
  top: 10px;
  bottom: auto;
  right: auto;
  left: -10px;
}

.hero__photo-secondary {
  position: absolute;
  left: -30px;
  bottom: -30px;
  width: 150px;
  height: 150px;
  border-radius: 20px;
  overflow: hidden;
  z-index: 2;
  box-shadow: 0 14px 30px rgba(46, 42, 38, 0.2);
  border: 6px solid #fff;
  background: var(--blue);
  transform: rotate(-6deg);
  transition: transform .3s ease;
}
.hero__photo-secondary:hover { transform: rotate(0deg) scale(1.05); }
.hero__photo-secondary img { width: 100%; height: 100%; object-fit: cover; }

.hero__art.placeholder .hero__photo-main,
.hero__art.placeholder .hero__photo-secondary { display: flex; align-items: center; justify-content: center; }

.badge {
  position: absolute;
  bottom: 20px;
  right: -10px;
  background: var(--pink-dark);
  color: #fff;
  font-family: var(--font-title);
  font-weight: 700;
  padding: 12px 26px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  z-index: 3;
  white-space: nowrap;
}

/* ---------- Placeholder generic ---------- */
.placeholder,
img.placeholder {
  background: repeating-linear-gradient(45deg, #EFEAE0, #EFEAE0 10px, #F7F3EB 10px, #F7F3EB 20px);
}
img.placeholder { min-height: 160px; }

/* ---------- Sobre ---------- */
.sobre { padding: 100px 0; background: var(--cream); }

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

.sobre__art { position: relative; }

.sobre__dots {
  position: absolute;
  top: -24px; right: -24px;
  width: 90px; height: 90px;
  background-image: radial-gradient(var(--blue-dark) 3px, transparent 3px);
  background-size: 16px 16px;
  opacity: 0.35;
  z-index: 0;
}

.sobre__photo-main {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
  z-index: 1;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.sobre__photo-main img { width: 100%; height: 100%; object-fit: cover; }

.sobre__photo-secondary {
  position: absolute;
  right: -24px;
  bottom: -30px;
  width: 150px; height: 150px;
  border-radius: 18px;
  overflow: hidden;
  border: 6px solid #fff;
  box-shadow: 0 14px 30px rgba(46, 42, 38, 0.2);
  transform: rotate(6deg);
  transition: transform .3s ease;
  z-index: 2;
}
.sobre__photo-secondary:hover { transform: rotate(0deg) scale(1.05); }
.sobre__photo-secondary img { width: 100%; height: 100%; object-fit: cover; }

.ring {
  position: absolute;
  border-radius: 50%;
  z-index: 0;
}
.ring--accent {
  width: 140px; height: 140px;
  border: 24px solid var(--pink);
  top: -30px; left: -30px;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-title);
  font-weight: 700;
  color: var(--blue-dark);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: 12px;
}
.eyebrow--center { display: block; text-align: center; }

.sobre__text h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); margin-bottom: 20px; }
.sobre__text p { color: var(--ink-soft); margin-bottom: 16px; max-width: 560px; }

.section-title {
  text-align: center;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  margin-bottom: 48px;
}

/* ---------- Diferenciais ---------- */
.diferenciais { padding: 100px 0; position: relative; overflow: hidden; background: var(--pink-tint); }
.diferenciais::before,
.diferenciais::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  z-index: 0;
}
.diferenciais::before { width: 260px; height: 260px; background: var(--pink); opacity: 0.3; top: -90px; left: -90px; }
.diferenciais::after { width: 200px; height: 200px; background: var(--yellow); opacity: 0.35; bottom: -70px; right: -70px; }
.diferenciais .container { position: relative; z-index: 1; }

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

.card--featured {
  grid-column: 1 / -1;
  display: flex;
}
.card--featured .card__img { flex: 0 0 42%; }
.card--featured .card__img img { width: 100%; height: 100%; object-fit: cover; }
.card--featured .card__body {
  flex: 1;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.card.card--featured h3 {
  padding: 0 0 10px;
  border-top: none;
  font-size: 1.35rem;
}
.card.card--featured p { color: var(--ink-soft); font-size: 1rem; }

.card.card--extras h3 { border-top-color: var(--pink-dark); }
.card.card--nutricao h3 { border-top-color: var(--green-dark); }

.card.card--natureza h3 { border-top-color: var(--yellow-dark); }
.card.card--natureza p { color: var(--ink-soft); font-size: 1rem; }

.card__img--hover-swap { position: relative; }
.card__img.card__img--hover-swap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity .5s ease, transform .3s ease;
}
.card__img--hover-swap .card__img-hover { opacity: 0; }
.card:hover .card__img--hover-swap .card__img-hover { opacity: 1; }

.cards__methods {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  background: var(--cream-soft);
  border-radius: var(--radius);
  padding: 18px 28px;
}
.cards__methods-label {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-right: 4px;
}
.method-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 12px;
  padding: 8px 16px;
  height: 48px;
  box-shadow: 0 6px 14px rgba(46, 42, 38, 0.06);
}
.method-badge img { max-height: 26px; width: auto; object-fit: contain; }
.method-badge__fallback {
  display: none;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--ink-soft);
}

.card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #fff;
  transition: transform .25s ease, box-shadow .25s ease;
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 42px rgba(46, 42, 38, 0.16);
}

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

.card__icon {
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream-soft);
  padding: 24px;
}
.card__icon img { max-height: 76px; width: auto; object-fit: contain; }
.card__icon-fallback {
  display: none;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--blue-dark);
  letter-spacing: 0.02em;
}

.card h3 {
  font-size: 1.05rem;
  padding: 20px 20px 0;
  border-top: 6px solid var(--blue-dark);
}
.card > p {
  padding: 8px 20px 20px;
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* ---------- Espaço ---------- */
.espaco { padding: 100px 0; background: var(--green-tint); position: relative; overflow: hidden; }
.espaco::before {
  content: '';
  position: absolute;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: var(--green);
  opacity: 0.3;
  top: -70px; right: -70px;
  z-index: 0;
}
.espaco::after {
  content: '';
  position: absolute;
  width: 100px; height: 100px;
  left: 24px; bottom: 24px;
  background-image: radial-gradient(var(--blue-dark) 3px, transparent 3px);
  background-size: 16px 16px;
  opacity: 0.3;
  z-index: 0;
}
.espaco .container { position: relative; z-index: 1; }

.galeria-wrap { position: relative; }

.espaco-showcase { margin-top: 48px; }

/* ---- Stage: large featured photo ---- */
.espaco-stage { position: relative; margin-bottom: 18px; }

.espaco-stage__frame {
  position: relative;
  margin: 0 auto;
  width: 100%;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 16/9;
  max-height: 520px;
  background: var(--ink);
}
.espaco-stage__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  cursor: zoom-in;
  transition: opacity .3s ease;
}
.espaco-stage__frame.is-fading img { opacity: 0; }

.espaco-stage__frame figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.75));
  color: #fff;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.35rem;
  padding: 70px 30px 22px;
  pointer-events: none;
}

.espaco-stage__frame .galeria__expand {
  top: 16px;
  right: 16px;
}

.espaco-stage__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--blue-dark);
  cursor: pointer;
  z-index: 3;
  box-shadow: var(--shadow);
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.espaco-stage__nav:hover { background: var(--blue-dark); color: #fff; transform: translateY(-50%) scale(1.08); }
.espaco-stage__nav--prev { left: 16px; }
.espaco-stage__nav--next { right: 16px; }

.espaco-stage__progress {
  height: 4px;
  background: rgba(0, 0, 0, 0.08);
  border-radius: 999px;
  overflow: hidden;
  margin-top: 14px;
}
.espaco-stage__progress span {
  display: block;
  height: 100%;
  width: 0%;
  background: var(--blue);
  border-radius: 999px;
}
.espaco-stage__progress span.is-animating { transition: width linear; }

/* ---- Thumbnail rail (kept as a scrollable carousel) ---- */
.espaco-thumbs {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 4px 4px 8px;
  -webkit-overflow-scrolling: touch;
}
.espaco-thumbs::-webkit-scrollbar { height: 6px; }
.espaco-thumbs::-webkit-scrollbar-track { background: transparent; }
.espaco-thumbs::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 999px; }

.espaco-thumb {
  position: relative;
  flex: 0 0 100px;
  aspect-ratio: 4/3;
  scroll-snap-align: start;
  border-radius: 12px;
  overflow: hidden;
  border: 3px solid transparent;
  padding: 0;
  background: none;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity .2s ease, border-color .2s ease, transform .2s ease;
}
.espaco-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.espaco-thumb:hover { opacity: 0.9; transform: translateY(-2px); }
.espaco-thumb.is-active { opacity: 1; border-color: var(--blue); }

.galeria__expand {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .2s ease;
  z-index: 2;
}
.espaco-stage:hover .galeria__expand { opacity: 1; }

.galeria-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px; height: 40px;
  border-radius: 50%;
  background: #fff;
  box-shadow: var(--shadow);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  line-height: 1;
  color: var(--blue-dark);
  cursor: pointer;
  z-index: 2;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.galeria-nav:hover { background: var(--blue-dark); color: #fff; transform: translateY(-50%) scale(1.08); }
.galeria-nav--prev { left: -18px; }
.galeria-nav--next { right: -18px; }
@media (max-width: 640px) {
  .galeria-nav { display: none; }
}

/* ---------- Depoimentos ---------- */
.depoimentos { padding: 100px 0; position: relative; overflow: hidden; background: var(--yellow-tint); }
.depoimentos::before {
  content: '';
  position: absolute;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: var(--yellow);
  opacity: 0.3;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
}
.depoimentos .container { position: relative; z-index: 1; }

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

.video-card {
  display: block;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .25s ease, box-shadow .25s ease;
}
.video-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 42px rgba(46, 42, 38, 0.14);
}

.video-card__thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--blue);
}
.video-card__thumb img { width: 100%; height: 100%; object-fit: cover; }

.video-card__play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--blue-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(46, 42, 38, 0.25);
  transition: transform .2s ease, background .2s ease;
}
.video-card:hover .video-card__play {
  transform: translate(-50%, -50%) scale(1.1);
  background: #fff;
}

.video-card__caption {
  padding: 16px 20px;
  font-family: var(--font-title);
  font-weight: 700;
  color: var(--blue-dark);
  text-align: center;
}

/* ---------- Contato ---------- */
.contato-section { padding: 100px 0; background: var(--blue-tint); position: relative; overflow: hidden; }
.contato-section::before {
  content: '';
  position: absolute;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: var(--green);
  opacity: 0.3;
  top: -90px; right: -100px;
  z-index: 0;
}

.contato__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.contato__info { position: relative; }
.contato__info::before {
  content: '';
  position: absolute;
  top: -18px; left: -36px;
  width: 80px; height: 80px;
  background-image: radial-gradient(var(--blue-dark) 3px, transparent 3px);
  background-size: 14px 14px;
  opacity: 0.3;
  z-index: -1;
}

.section-title--left { text-align: left; margin-bottom: 16px; }

.contato__lead {
  color: var(--ink-soft);
  font-size: 1.05rem;
  margin-bottom: 14px;
  max-width: 480px;
}
.contato__lead:last-of-type { margin-bottom: 28px; }

.contato__note {
  color: var(--ink-soft);
  font-size: 0.85rem;
  margin-top: 14px;
  max-width: 420px;
}

.info-list { margin-bottom: 36px; }
.info-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(46,42,38,0.08);
}
.info-list li:last-child { border-bottom: none; }

.info-list__icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--blue-dark);
  display: flex; align-items: center; justify-content: center;
  transition: transform .2s ease, background .2s ease;
}
.info-list li:hover .info-list__icon {
  transform: scale(1.1);
  background: var(--blue-dark);
  color: #fff;
}

.info-list strong {
  display: block;
  font-family: var(--font-title);
  font-size: 0.95rem;
  margin-bottom: 4px;
}
.info-list p { color: var(--ink-soft); font-size: 0.95rem; }

.contato__map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
}
.contato__map iframe {
  width: 100%;
  height: 380px;
  border: 0;
  display: block;
}

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: #F4F1EA; padding: 40px 0 0; }

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  padding-bottom: 32px;
}

.footer__brand { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }

.footer__logo {
  background: #fff;
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 12px;
}

.footer__brand p { color: #D8D4CB; font-size: 0.9rem; max-width: 320px; }

.footer__social { display: flex; gap: 12px; }
.footer__social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  transition: transform .2s ease, background .2s ease;
}
.footer__social a:hover {
  background: var(--blue-dark);
  transform: translateY(-3px);
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  text-align: center;
  font-size: 0.85rem;
  color: #9A9689;
}

/* ---------- WhatsApp Float ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.45);
  z-index: 200;
  transition: transform .2s ease;
}
.whatsapp-float:hover { transform: scale(1.08); }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(20, 18, 16, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 500;
}
.lightbox.is-open { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
.lightbox__close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: none;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s ease;
}
.lightbox__close:hover { background: rgba(255, 255, 255, 0.3); }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .nav { position: fixed; top: 78px; left: 0; right: 0; bottom: 0;
    background: var(--cream);
    transform: translateX(100%);
    transition: transform .3s ease;
    z-index: 99;
    overflow-y: auto;
  }
  .nav.is-open { transform: translateX(0); }
  .nav__list { flex-direction: column; padding: 32px 24px; gap: 24px; }
  .header__social { display: none; }
  .nav__toggle { display: flex; }

  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__text { order: 2; }
  .hero__ctas { justify-content: center; }
  .hero__subtitle { margin-left: auto; margin-right: auto; }

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

  .cards { grid-template-columns: 1fr; }
  .card--featured { flex-direction: column; }
  .card--featured .card__img { flex: none; aspect-ratio: 16/9; }
  .depoimentos__grid { grid-template-columns: 1fr; }

  .contato__inner { grid-template-columns: 1fr; }
  .section-title--left { text-align: center; }
  .contato__lead,
  .contato__note { margin-left: auto; margin-right: auto; text-align: center; }
  .info-list li { text-align: left; }

  .footer__inner { flex-direction: column; text-align: center; }
  .footer__brand { flex-direction: column; }
}

@media (max-width: 560px) {
  .cards { grid-template-columns: 1fr; }
  .espaco-stage__frame { aspect-ratio: 4/3; max-height: none; }
  .espaco-stage__frame figcaption { font-size: 1.05rem; padding: 46px 18px 16px; }
  .espaco-stage__nav { width: 38px; height: 38px; font-size: 1.25rem; }
  .espaco-thumb { flex: 0 0 74px; }
  .footer__inner { grid-template-columns: 1fr; }
  .header__actions .btn--whatsapp span { display: none; }
  .hero__photo-main { width: 100%; max-width: 340px; aspect-ratio: 2752 / 1536; }
  .hero__photo-main .badge { display: none; }
  .hero__photo-secondary { width: 110px; height: 110px; left: -10px; bottom: -20px; }
  .blob--light { width: 280px; height: 280px; }
  .blob--dark { width: 160px; height: 160px; }

  .cards__methods {
    padding: 10px 14px;
    gap: 8px;
    flex-wrap: nowrap;
    justify-content: center;
  }
  .cards__methods-label { font-size: 0.62rem; margin-right: 0; }
  .method-badge { padding: 5px 8px; height: 32px; border-radius: 10px; }
  .method-badge img { max-height: 16px; }
  .method-badge__fallback { font-size: 0.62rem; }
}
