/* ============================================================
   STUDIO ANA CARDOSO — identidade: rosé · rosewood · ameixa
   ============================================================ */

:root {
  --rose: #D4A6B0;
  --rose-soft: #E9CDD4;
  --rose-mist: #F7EEF0;
  --rosewood: #6A4950;
  --plum: #4E0044;
  --plum-deep: #36002F;
  --ink: #2B1E22;
  --cream: #FBF7F6;
  --white: #FFFFFF;
  --wa: #25D366;
  --wa-dark: #1DA851;

  --font-display: "Cormorant Garamond", serif;
  --font-head: "Montserrat", sans-serif;
  --font-body: "Poppins", sans-serif;

  --radius: 18px;
  --shadow: 0 20px 60px -20px rgba(78, 0, 68, .25);
  --container: 1180px;
  --ease: cubic-bezier(.22, .8, .3, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.container {
  width: min(var(--container), 92%);
  margin-inline: auto;
}

/* ---------- tipografia utilitária ---------- */

.eyebrow {
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 1.1rem;
}
.eyebrow--dark { color: var(--rosewood); }

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

.section__head { max-width: 640px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }

.section__title {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4.4vw, 3.3rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--plum);
}
.section__title em {
  font-style: italic;
  color: var(--rosewood);
}
.section__title--light { color: var(--white); }
.section__title--light em { color: var(--rose); }

.section__sub {
  margin-top: 1rem;
  color: rgba(255, 255, 255, .75);
  font-size: .95rem;
}

.section--dark {
  background:
    radial-gradient(900px 500px at 85% -10%, rgba(212, 166, 176, .16), transparent 60%),
    linear-gradient(160deg, var(--plum-deep) 0%, var(--plum) 55%, #3D0A38 100%);
}
.section--blush { background: linear-gradient(180deg, var(--rose-mist), var(--cream)); }

/* ---------- botões ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-head);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: .95rem 1.7rem;
  border-radius: 999px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s;
  will-change: transform;
}
.btn:hover { transform: translateY(-3px); }

.btn--whatsapp {
  background: var(--wa);
  color: #fff;
  box-shadow: 0 12px 30px -10px rgba(37, 211, 102, .55);
}
.btn--whatsapp:hover { background: var(--wa-dark); box-shadow: 0 18px 40px -12px rgba(37, 211, 102, .65); }

.btn--ghost {
  color: var(--rose-soft);
  border: 1px solid rgba(212, 166, 176, .45);
  background: transparent;
}
.btn--ghost:hover { border-color: var(--rose); color: #fff; background: rgba(212, 166, 176, .08); }

.btn--outline {
  color: var(--rosewood);
  border: 1px solid var(--rose);
  background: transparent;
}
.btn--outline:hover { color: var(--plum); border-color: var(--rosewood); background: rgba(212, 166, 176, .12); }

.btn--lg { padding: 1.1rem 2rem; }
.btn--xl { padding: 1.25rem 2.6rem; font-size: .9rem; }

.icon-wa { width: 1.15em; height: 1.15em; fill: currentColor; flex-shrink: 0; }

/* ---------- header ---------- */

.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 1.1rem 0;
  transition: background .4s, padding .4s, box-shadow .4s;
}
.header.is-scrolled {
  background: rgba(54, 0, 47, .92);
  backdrop-filter: blur(14px);
  padding: .65rem 0;
  box-shadow: 0 10px 40px -15px rgba(0, 0, 0, .5);
}

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

.header__logo-img { height: 46px; width: auto; transition: height .4s; }
.header.is-scrolled .header__logo-img { height: 38px; }

.nav { display: flex; align-items: center; gap: 1.9rem; }

.nav__link {
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .85);
  text-decoration: none;
  position: relative;
  padding: .3rem 0;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--rose);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .4s var(--ease);
}
.nav__link:hover { color: var(--rose-soft); }
.nav__link:hover::after { transform: scaleX(1); transform-origin: left; }

.nav__cta { padding: .7rem 1.3rem; font-size: .72rem; }

.header__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: .4rem;
  z-index: 110;
}
.header__toggle span {
  width: 26px; height: 2px;
  background: var(--rose-soft);
  border-radius: 2px;
  transition: transform .35s var(--ease), opacity .3s;
}
.header__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header__toggle.is-open span:nth-child(2) { opacity: 0; }
.header__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- hero ---------- */

.hero {
  position: relative;
  min-height: min(100svh, 920px);
  display: flex;
  align-items: center;
  padding: 7.5rem 0 4rem;
  overflow: hidden;
  color: var(--white);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1000px 600px at 78% 18%, rgba(212, 166, 176, .22), transparent 60%),
    radial-gradient(700px 500px at 10% 90%, rgba(106, 73, 80, .5), transparent 65%),
    linear-gradient(150deg, var(--plum-deep) 0%, var(--plum) 50%, #521343 100%);
}

/* textura de grão sutil */
.hero__grain {
  position: absolute;
  inset: 0;
  opacity: .5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 .04 0'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.9rem, 6.5vw, 5.2rem);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -.01em;
}
.hero__title em {
  font-style: italic;
  color: var(--rose);
}

.hero__sub {
  margin-top: 1.6rem;
  max-width: 480px;
  color: rgba(255, 255, 255, .78);
  font-size: 1.02rem;
}

.hero__actions {
  margin-top: 2.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero__media { position: relative; }

.hero__badge {
  position: absolute;
  top: 2.2rem;
  left: -1.2rem;
  background: var(--white);
  color: var(--plum);
  border-radius: 14px;
  padding: .9rem 1.4rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}
.hero__badge-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
}
.hero__badge-txt {
  font-family: var(--font-head);
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--rosewood);
}

/* ---------- slots de mídia (placeholders p/ fotos e vídeos) ---------- */

.media-slot { position: relative; }

.media-slot__art {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4 / 5;
  background:
    radial-gradient(120% 90% at 20% 10%, rgba(255, 255, 255, .22), transparent 50%),
    linear-gradient(150deg, var(--rose) 0%, var(--rosewood) 100%);
}
.media-slot__art::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: calc(var(--radius) - 8px);
  pointer-events: none;
}

.media-slot__art--rose     { background: radial-gradient(120% 90% at 20% 10%, rgba(255,255,255,.25), transparent 50%), linear-gradient(150deg, #E3BBC4 0%, var(--rose) 55%, #B98995 100%); }
.media-slot__art--plum     { background: radial-gradient(120% 90% at 20% 10%, rgba(255,255,255,.14), transparent 50%), linear-gradient(150deg, #6E2261 0%, var(--plum) 60%, var(--plum-deep) 100%); }
.media-slot__art--rosewood { background: radial-gradient(120% 90% at 20% 10%, rgba(255,255,255,.16), transparent 50%), linear-gradient(150deg, #8A626A 0%, var(--rosewood) 60%, #4E3238 100%); }
.media-slot__art--blush    { background: radial-gradient(120% 90% at 20% 10%, rgba(255,255,255,.4), transparent 50%), linear-gradient(150deg, #F3DDE2 0%, var(--rose-soft) 55%, var(--rose) 100%); }

.lotus {
  width: clamp(56px, 8vw, 92px);
  fill: rgba(255, 255, 255, .55);
}
.media-slot__art--blush .lotus { fill: rgba(106, 73, 80, .4); }

.media-slot__play {
  position: absolute;
  width: 62px; height: 62px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .25);
  transition: transform .35s var(--ease);
}
.media-slot__play::after {
  content: "";
  position: absolute;
  top: 50%; left: 53%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 11px 0 11px 18px;
  border-color: transparent transparent transparent var(--plum);
}
.media-slot:hover .media-slot__play,
.gallery__item:hover .media-slot__play { transform: scale(1.12); }

.media-slot__label,
.gallery__item figcaption {
  margin-top: .7rem;
  font-family: var(--font-head);
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
  text-align: center;
}

.media-slot--hero .media-slot__art { aspect-ratio: 4 / 5; box-shadow: var(--shadow); }
.media-slot--hero .media-slot__video {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: block;
}

/* ---------- faixa marquee ---------- */

.ribbon {
  background: var(--rose);
  overflow: hidden;
  padding: .85rem 0;
}
.ribbon__track {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  width: max-content;
  animation: marquee 26s linear infinite;
}
.ribbon__track span {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--plum);
  white-space: nowrap;
}
.ribbon__track i { color: var(--rosewood); font-style: normal; font-size: .8rem; }

@keyframes marquee {
  to { transform: translateX(-33.333%); }
}

/* ---------- serviços ---------- */

.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.1rem 1.1rem 1.6rem;
  box-shadow: 0 14px 45px -22px rgba(78, 0, 68, .22);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px -22px rgba(78, 0, 68, .32);
}

.service-card__media .media-slot__art { aspect-ratio: 4 / 3; }
.service-card__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
}
.service-card__media .media-slot__label { color: rgba(106, 73, 80, .55); }

.service-card__body { padding: 1.2rem .4rem 0; position: relative; }

.service-card__num {
  position: absolute;
  top: .4rem; right: .4rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.6rem;
  color: var(--rose);
}

.service-card__title {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--plum);
}

.service-card__desc {
  margin-top: .5rem;
  font-size: .86rem;
  color: #6b5a60;
}

.service-card__cta {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  margin-top: 1.1rem;
  font-family: var(--font-head);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--rosewood);
  text-decoration: none;
  border-bottom: 1px solid var(--rose);
  padding-bottom: .25rem;
  transition: color .3s, gap .3s var(--ease);
}
.service-card__cta:hover { color: var(--plum); gap: .8rem; }

/* ---------- galeria ---------- */

.gallery__filters {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-bottom: 2.2rem;
}

.chip {
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .7);
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  padding: .55rem 1.2rem;
  cursor: pointer;
  transition: all .3s;
}
.chip:hover { border-color: var(--rose); color: var(--rose-soft); }
.chip.is-active {
  background: var(--rose);
  border-color: var(--rose);
  color: var(--plum);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.3rem;
}

.gallery__item {
  cursor: pointer;
  transition: transform .4s var(--ease), opacity .4s;
}
.gallery__item:hover { transform: translateY(-6px); }
.gallery__item.is-hidden { display: none; }
.gallery__item .media-slot__art { aspect-ratio: 1 / 1; }
.gallery__item img {
  border-radius: var(--radius);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  width: 100%;
}

/* ---------- sobre ---------- */

.about__inner {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
}

.about__frame {
  position: relative;
  border-radius: 160px 160px var(--radius) var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.about__frame::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: 150px 150px calc(var(--radius) - 8px) calc(var(--radius) - 8px);
  pointer-events: none;
}
.about__frame img { width: 100%; }

.about__content p { margin-bottom: 1rem; color: #5c4b51; font-size: .95rem; }

.about__list {
  list-style: none;
  margin: 1.4rem 0 2rem;
}
.about__list li {
  position: relative;
  padding-left: 1.7rem;
  margin-bottom: .65rem;
  font-size: .92rem;
  color: var(--rosewood);
  font-weight: 400;
}
.about__list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--rose);
}

/* ---------- depoimentos ---------- */

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

.review-card {
  display: flex;
  flex-direction: column;
  gap: .9rem;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.8rem 1.9rem;
  box-shadow: 0 16px 40px -22px rgba(78, 0, 68, .25);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 55px -22px rgba(78, 0, 68, .32);
}

.review-card__stars { color: #F2A93B; font-size: 1rem; letter-spacing: .18em; }

.review-card__text {
  flex: 1;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.08rem;
  line-height: 1.55;
  color: var(--ink);
}

.review-card__meta {
  display: flex;
  align-items: center;
  gap: .7rem;
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--rosewood);
}
.review-card__meta strong { color: var(--plum); }

.review-card__avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(150deg, var(--rose-soft), var(--rose));
  color: var(--plum);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  flex-shrink: 0;
}

.review-card--soon { opacity: .75; border: 1px dashed var(--rose); box-shadow: none; }

.review-card--cta { background: linear-gradient(150deg, #FDF6F4, var(--rose-mist)); border: 1px solid var(--rose-soft); }
.review-card--cta .btn { align-self: flex-start; }

/* ---------- avaliações do Google ---------- */

.greviews {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.9rem 2.3rem;
  box-shadow: 0 16px 45px -22px rgba(78, 0, 68, .28);
  margin-bottom: 2.6rem;
}

.greviews__score {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .1rem;
  padding-right: 2rem;
  border-right: 1px solid var(--rose-soft);
}
.greviews__num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 600;
  line-height: 1;
  color: var(--plum);
}
.greviews__stars {
  color: #F2A93B;
  font-size: 1.05rem;
  letter-spacing: .18em;
}
.greviews__count {
  font-family: var(--font-head);
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--rosewood);
  white-space: nowrap;
}

.greviews__quote {
  flex: 1;
  min-width: 240px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  line-height: 1.5;
  color: var(--ink);
  border: 0;
}
.greviews__quote cite {
  display: block;
  margin-top: .5rem;
  font-family: var(--font-head);
  font-style: normal;
  font-size: .64rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--rosewood);
}

/* ---------- instagram ---------- */

.insta__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.4rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.icon-ig { width: 1.15em; height: 1.15em; fill: currentColor; flex-shrink: 0; }

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

.insta__tile {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.insta__tile .lotus { width: 44px; fill: rgba(255, 255, 255, .5); }
.insta__tile img { width: 100%; height: 100%; object-fit: cover; }

.insta__tile--rose     { background: radial-gradient(120% 90% at 20% 10%, rgba(255,255,255,.25), transparent 50%), linear-gradient(150deg, #E3BBC4, var(--rose) 60%, #B98995); }
.insta__tile--plum     { background: radial-gradient(120% 90% at 20% 10%, rgba(255,255,255,.14), transparent 50%), linear-gradient(150deg, #6E2261, var(--plum) 65%, var(--plum-deep)); }
.insta__tile--rosewood { background: radial-gradient(120% 90% at 20% 10%, rgba(255,255,255,.16), transparent 50%), linear-gradient(150deg, #8A626A, var(--rosewood) 65%, #4E3238); }
.insta__tile--blush    { background: radial-gradient(120% 90% at 20% 10%, rgba(255,255,255,.4), transparent 50%), linear-gradient(150deg, #F3DDE2, var(--rose-soft) 60%, var(--rose)); }
.insta__tile--blush .lotus { fill: rgba(106, 73, 80, .4); }

.insta__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(78, 0, 68, .55);
  opacity: 0;
  transition: opacity .35s var(--ease);
}
.insta__overlay .icon-ig { width: 26px; height: 26px; fill: #fff; }
.insta__tile:hover .insta__overlay { opacity: 1; }

/* ---------- localização ---------- */

.location__inner {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
}

.location__list {
  list-style: none;
  margin: 1.6rem 0 2rem;
}
.location__list li {
  position: relative;
  padding-left: 1.7rem;
  margin-bottom: .8rem;
  font-size: .93rem;
  color: #5c4b51;
}
.location__list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--rose);
}
.location__list strong {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--rosewood);
}
.location__list a { color: var(--plum); text-decoration: none; border-bottom: 1px solid var(--rose); }
.location__list a:hover { color: var(--rosewood); }

.location__actions { display: flex; flex-wrap: wrap; gap: 1rem; }

.location__map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  line-height: 0;
}
.location__map iframe {
  width: 100%;
  height: 420px;
  border: 0;
}

/* ---------- CTA final ---------- */

.cta { position: relative; overflow: hidden; text-align: center; }

.cta__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(600px 320px at 50% 100%, rgba(212, 166, 176, .25), transparent 70%);
}

.cta__inner { position: relative; }

.cta__lotus {
  width: 64px;
  fill: var(--rose);
  margin-bottom: 1.4rem;
}

.cta__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 500;
  color: var(--white);
  line-height: 1.12;
}
.cta__title em { font-style: italic; color: var(--rose); }

.cta__sub {
  margin: 1rem auto 2.2rem;
  color: rgba(255, 255, 255, .75);
  max-width: 420px;
}

.cta__hours {
  margin-top: 1.6rem;
  font-family: var(--font-head);
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .45);
}

/* ---------- rodapé ---------- */

.footer {
  background: var(--plum-deep);
  color: rgba(255, 255, 255, .75);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding: 4rem 0 3rem;
}

.footer__logo { height: 52px; width: auto; margin-bottom: 1rem; }

.footer__brand p {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--rose);
  font-size: 1.05rem;
}

.footer__col h4 {
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 1.1rem;
}

.footer__col a, .footer__muted {
  display: block;
  color: rgba(255, 255, 255, .68);
  text-decoration: none;
  font-size: .88rem;
  margin-bottom: .55rem;
  transition: color .3s;
}
.footer__col a:hover { color: var(--rose-soft); }

.footer__bar {
  border-top: 1px solid rgba(212, 166, 176, .15);
  padding: 1.2rem 0;
  font-size: .78rem;
  color: rgba(255, 255, 255, .45);
}
.footer__bar-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .5rem;
}
.footer__bar a { color: var(--rose); text-decoration: none; }
.footer__bar a:hover { text-decoration: underline; }

/* ---------- WhatsApp flutuante ---------- */

.wa-float {
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  z-index: 90;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--wa);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 35px -8px rgba(37, 211, 102, .6);
  transition: transform .35s var(--ease);
  animation: pulse 2.6s infinite;
}
.wa-float:hover { transform: scale(1.1); }
.wa-float svg { width: 30px; height: 30px; fill: #fff; }

@keyframes pulse {
  0%   { box-shadow: 0 12px 35px -8px rgba(37, 211, 102, .6), 0 0 0 0 rgba(37, 211, 102, .45); }
  70%  { box-shadow: 0 12px 35px -8px rgba(37, 211, 102, .6), 0 0 0 18px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 12px 35px -8px rgba(37, 211, 102, .6), 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ---------- lightbox ---------- */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(43, 30, 34, .92);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s;
}
.lightbox.is-open { opacity: 1; pointer-events: auto; }

.lightbox__content {
  max-width: min(860px, 90vw);
  max-height: 84vh;
}
.lightbox__content img,
.lightbox__content video,
.lightbox__content .media-slot__art {
  max-width: min(860px, 90vw);
  max-height: 84vh;
  border-radius: var(--radius);
}
.lightbox__content .media-slot__art { width: min(520px, 86vw); }

.lightbox__close {
  position: absolute;
  top: 1.2rem; right: 1.6rem;
  font-size: 2.4rem;
  line-height: 1;
  color: #fff;
  background: none;
  border: 0;
  cursor: pointer;
  opacity: .7;
  transition: opacity .3s, transform .3s;
}
.lightbox__close:hover { opacity: 1; transform: rotate(90deg); }

/* ---------- animações de revelação ---------- */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
  transition-delay: var(--d, 0s);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .ribbon__track { animation: none; }
  .wa-float { animation: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   RESPONSIVO
   ============================================================ */

@media (max-width: 1024px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery__grid { grid-template-columns: repeat(3, 1fr); }
  .reviews__grid { grid-template-columns: 1fr 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .insta__grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 860px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__media { max-width: 420px; }
  .hero { padding-top: 6.5rem; }
  .about__inner { grid-template-columns: 1fr; }
  .about__media { max-width: 420px; margin-inline: auto; }
  .location__inner { grid-template-columns: 1fr; }
  .location__map iframe { height: 320px; }
  .greviews__score { padding-right: 0; border-right: 0; }

  /* menu mobile */
  .header__toggle { display: flex; }
  .nav {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    background: linear-gradient(160deg, var(--plum-deep), var(--plum));
    opacity: 0;
    pointer-events: none;
    transition: opacity .4s;
  }
  .nav.is-open { opacity: 1; pointer-events: auto; }
  .nav__link { font-size: 1rem; }
  .nav__cta { margin-top: .6rem; }
}

@media (max-width: 620px) {
  .gallery__grid { grid-template-columns: repeat(2, 1fr); gap: .9rem; }
  .insta__grid { grid-template-columns: repeat(2, 1fr); gap: .8rem; }
  .services__grid { grid-template-columns: 1fr; }
  .reviews__grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 1.8rem; padding: 3rem 0 2rem; }
  .footer__bar-inner { flex-direction: column; text-align: center; }
  .hero__badge { left: auto; right: -.2rem; top: 2.2rem; bottom: auto; }
  .btn--xl { padding: 1.1rem 1.8rem; font-size: .8rem; }
}
