:root {
  --bg: #f7f1f4;
  --card: #ffffff;
  --primary: #28131c;
  --primaryText: #ffffff;
  --text: #24141a;
  --muted: #765f69;
  --accent: #c2185b;
  --accentDark: #8f1244;
  --accentSoft: #fde7f0;
  --soft: #fff5f8;
  --line: rgba(40, 19, 28, 0.12);
  --shadow: 0 24px 70px rgba(40, 19, 28, 0.14);
  --focusRing: rgba(194, 24, 91, 0.38);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  overflow-x: hidden;
}

body {
  min-height: 100dvh;
  background: var(--card);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.lightboxOpen {
  overflow: hidden;
}

a,
button {
  color: inherit;
  cursor: pointer;
}

a {
  text-decoration: none;
}

button {
  font-family: inherit;
}

img {
  max-width: 100%;
}

.beautyPage {
  width: 100%;
  min-height: 100dvh;
  background: var(--card);
}

.beautyCard {
  width: 100%;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--card);
}

@media (min-width: 768px) {
  body,
  .beautyPage {
    background: linear-gradient(180deg, #fbf4f7 0%, #f2e6eb 100%);
  }

  .beautyPage {
    display: grid;
    place-items: center;
    padding: 2rem 1rem;
  }

  .beautyCard {
    max-width: 430px;
    min-height: auto;
    border: 1px solid rgba(40, 19, 28, 0.08);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }
}

.beautyHero {
  position: relative;
  height: 300px;
  flex-shrink: 0;
  overflow: hidden;
  background: var(--primary);
}

.beautyHero img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: var(--heroPosition, center center);
}

.heroOverlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(40, 19, 28, 0.92), rgba(40, 19, 28, 0.28), rgba(40, 19, 28, 0.04));
}

.shareBtn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 3;
  display: grid;
  width: 2.85rem;
  height: 2.85rem;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--primary);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.24);
  transition: transform 0.18s ease, background 0.18s ease;
}

.shareBtn:hover,
.btn:hover,
.quickLink:hover,
.socialLink:hover,
.serviceBtn:hover,
.finalCta a:hover,
.promoContent a:hover,
.floatingWhatsapp:hover {
  transform: translateY(-2px);
}

.shareBtn i,
.btn i,
.quickIcon i,
.socialLink i,
.infoPanel i,
.floatingWhatsapp i {
  display: block;
  font-size: 1rem;
  line-height: 1;
}

.heroText {
  position: absolute;
  left: 1rem;
  right: 4.8rem;
  bottom: 4.9rem;
  z-index: 2;
  color: #ffffff;
}

.heroText p,
.sectionTitle p,
.socialSection > p,
.finalCta p,
.promoContent p {
  margin: 0;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.heroText p {
  color: rgba(255, 255, 255, 0.76);
}

.heroText h1 {
  margin: 0.4rem 0 0;
  color: #ffffff;
  font-size: clamp(2rem, 10vw, 3rem);
  font-weight: 950;
  line-height: 0.96;
  overflow-wrap: anywhere;
}

.beautyContent {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 1rem;
}

.brandPanel {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: center;
  margin-top: -4rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  padding: 0.85rem;
  box-shadow: 0 18px 42px rgba(40, 19, 28, 0.14);
  backdrop-filter: blur(14px);
}

.brandMark {
  display: grid;
  width: 4.9rem;
  height: 4.9rem;
  place-items: center;
  overflow: hidden;
  border: 2px solid #ffffff;
  border-radius: 8px;
  background: var(--primary);
  color: var(--primaryText);
  font-size: 1rem;
  font-weight: 950;
}

.brandMark img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.brandInfo {
  min-width: 0;
}

.status {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  border-radius: 999px;
  background: var(--accentSoft);
  color: var(--accentDark);
  padding: 0.38rem 0.62rem;
  font-size: 0.64rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.brandInfo h2 {
  margin: 0.45rem 0 0;
  color: var(--text);
  font-size: 1.45rem;
  font-weight: 950;
  line-height: 1.03;
  overflow-wrap: anywhere;
}

.brandInfo p,
.description,
.serviceInfo p,
.promoContent span,
.finalCta span,
.testimonialCard p {
  color: var(--muted);
  line-height: 1.45;
}

.brandInfo p {
  margin: 0.35rem 0 0;
  font-size: 0.86rem;
  font-weight: 720;
}

.description {
  margin: 1rem 0 0;
  font-size: 0.96rem;
  font-weight: 620;
}

.mainActions {
  display: grid;
  gap: 0.7rem;
  margin-top: 1rem;
}

@media (min-width: 380px) {
  .mainActions {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

.btn,
.serviceBtn,
.promoContent a,
.finalCta a,
.floatingWhatsapp {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 950;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.btnPrimary,
.finalCta a,
.promoContent a,
.floatingWhatsapp {
  background: var(--accent);
  color: #ffffff;
}

.btnSecondary {
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btnSecondary:hover {
  background: var(--primary);
  color: var(--primaryText);
}

.quickLinks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
  margin-top: 0.85rem;
}

.quickLink {
  display: grid;
  gap: 0.42rem;
  min-height: 76px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  padding: 0.7rem 0.4rem;
  text-align: center;
  transition: transform 0.18s ease, background 0.18s ease;
}

.quickIcon {
  display: grid;
  width: 2.25rem;
  height: 2.25rem;
  place-items: center;
  border-radius: 999px;
  background: var(--primary);
  color: var(--primaryText);
}

.quickIcon i {
  font-size: 1.02rem;
}

.quickLink span:last-child {
  font-size: 0.7rem;
  font-weight: 900;
}

.promoSection,
.servicesSection,
.packageSection,
.priceSection,
.gallerySection,
.testimonialSection,
.socialSection,
.infoPanel,
.finalCta {
  margin-top: 1.2rem;
}

.promoSection {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--primary);
  color: var(--primaryText);
}

.promoImageWrap {
  height: 155px;
  background: #1f1117;
}

.promoImageWrap img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.promoContent {
  padding: 1rem;
}

.promoContent p,
.finalCta p {
  color: rgba(255, 255, 255, 0.68);
}

.promoContent h2,
.finalCta h2 {
  margin: 0.35rem 0 0;
  color: #ffffff;
  font-size: 1.35rem;
  font-weight: 950;
  line-height: 1.06;
}

.promoContent span,
.finalCta span {
  display: block;
  margin-top: 0.45rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  font-weight: 650;
}

.promoContent small {
  display: block;
  margin-top: 0.55rem;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.78rem;
  font-weight: 750;
}

.promoContent a,
.finalCta a {
  width: 100%;
  margin-top: 1rem;
}

.sectionTitle {
  border-top: 1px solid var(--line);
  padding-top: 1.15rem;
}

.sectionTitle p,
.socialSection > p {
  color: var(--accentDark);
}

.sectionTitle h2 {
  margin: 0.3rem 0 0;
  color: var(--text);
  font-size: 1.3rem;
  font-weight: 950;
  line-height: 1.08;
}

.galleryHeading {
  text-align: center;
}

.galleryHeading p {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: #a58f98;
  letter-spacing: 0.24em;
}

.galleryHeading p::before,
.galleryHeading p::after {
  content: "";
  width: 2rem;
  height: 1px;
  background: rgba(40, 19, 28, 0.16);
}

.galleryHeading h2 {
  margin-top: 0.45rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0;
}

.galleryFilters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
  overflow-x: auto;
  padding-bottom: 0.15rem;
}

.galleryFilter {
  position: relative;
  flex: 0 0 auto;
  border: 0;
  background: transparent;
  color: #9a858e;
  padding: 0.35rem 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: capitalize;
}

.galleryFilter::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: transparent;
}

.galleryFilter.active {
  color: var(--text);
}

.galleryFilter.active::after {
  background: var(--text);
}

.galleryList {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 0.5rem;
  margin-top: 1.3rem;
}

.galleryItem {
  position: relative;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: var(--soft);
  padding: 0;
  color: inherit;
  text-align: left;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.galleryItem:hover {
  transform: translateY(-2px);
}

.galleryItem:first-child,
.galleryItem.featured {
  grid-column: 1 / -1;
}

.galleryItem img {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: block;
  object-fit: cover;
}

.galleryItem:first-child img,
.galleryItem.featured img {
  aspect-ratio: 4 / 3.45;
}

.galleryItem span {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  background: linear-gradient(to top, rgba(31, 17, 23, 0.72), transparent);
  color: #ffffff;
  padding: 1.75rem 0.7rem 0.65rem;
  font-size: 0.76rem;
  font-weight: 800;
  opacity: 0;
  transition: opacity 0.18s ease;
}

.galleryItem:hover span,
.galleryItem:focus-visible span {
  opacity: 1;
}

.servicesList,
.packageList,
.priceList,
.testimonialList {
  display: grid;
  gap: 0.75rem;
  margin-top: 0.9rem;
}

.serviceCard,
.packageCard,
.priceRow,
.testimonialCard,
.infoPanel > div {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.serviceCard {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.85rem;
  align-items: center;
  padding: 0.9rem;
}

.serviceInfo h3 {
  margin: 0;
  color: var(--text);
  font-size: 1rem;
  font-weight: 950;
  line-height: 1.15;
}

.serviceInfo p {
  margin: 0.35rem 0 0;
  font-size: 0.84rem;
  font-weight: 620;
}

.serviceMeta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.55rem;
}

.serviceMeta span,
.priceBadge {
  display: inline-flex;
  border-radius: 999px;
  background: var(--accentSoft);
  color: var(--accentDark);
  padding: 0.36rem 0.55rem;
  font-size: 0.72rem;
  font-weight: 950;
}

.serviceBtn {
  min-height: 42px;
  border: 0;
  background: var(--primary);
  color: var(--primaryText);
  padding: 0 0.85rem;
  white-space: nowrap;
}

.packageList {
  grid-template-columns: 1fr;
}

.packageCard {
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(194, 24, 91, 0.12), transparent 42%),
    #ffffff;
  padding: 1rem;
}

.packageCard h3 {
  margin: 0.55rem 0 0;
  color: var(--text);
  font-size: 1.08rem;
  font-weight: 950;
  line-height: 1.08;
}

.packageCard p {
  margin: 0.4rem 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 650;
  line-height: 1.45;
}

.packageBadge {
  display: inline-flex;
  border-radius: 999px;
  background: var(--primary);
  color: var(--primaryText);
  padding: 0.35rem 0.58rem;
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.packageFooter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-top: 0.95rem;
  border-top: 1px solid var(--line);
  padding-top: 0.8rem;
}

.packageFooter strong {
  color: var(--accentDark);
  font-size: 1.05rem;
  font-weight: 950;
}

.packageFooter a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  padding: 0 0.8rem;
  font-size: 0.78rem;
  font-weight: 950;
  transition: transform 0.18s ease;
}

.packageFooter a:hover {
  transform: translateY(-2px);
}

.priceRow {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.85rem;
  align-items: center;
  border-left: 3px solid var(--accent);
  padding: 0.95rem;
}

.priceRow h3 {
  margin: 0;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 950;
}

.priceRow p {
  margin: 0.25rem 0 0;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 650;
  line-height: 1.35;
}

.testimonialCard {
  padding: 0.9rem;
}

.testimonialCard p {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 650;
}

.testimonialCard strong {
  display: block;
  margin-top: 0.6rem;
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 950;
}

.socialLinks {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.75rem;
}

.socialLink {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--soft);
  color: var(--text);
  padding: 0.65rem 0.85rem;
  font-size: 0.82rem;
  font-weight: 900;
  transition: transform 0.18s ease, background 0.18s ease;
}

.socialLink i {
  width: 1rem;
  text-align: center;
}

.infoPanel {
  display: grid;
  gap: 0.7rem;
}

.infoPanel > div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.7rem;
  align-items: center;
  background: var(--soft);
  padding: 0.9rem;
}

.infoPanel > div > span {
  display: grid;
  width: 2.35rem;
  height: 2.35rem;
  place-items: center;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
}

.infoPanel i {
  font-size: 1.05rem;
}

.infoPanel p {
  margin: 0;
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.infoPanel strong {
  display: block;
  margin-top: 0.25rem;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1.3;
}

.finalCta {
  border-radius: 8px;
  background: var(--primary);
  color: var(--primaryText);
  padding: 1.15rem;
}

.footer {
  margin-top: auto;
  padding-top: 1rem;
  padding-bottom: 0.25rem;
  text-align: center;
}

.footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
}

.floatingWhatsapp {
  position: fixed;
  right: 1rem;
  bottom: calc(1rem + env(safe-area-inset-bottom));
  z-index: 20;
  min-height: 48px;
  padding: 0 1rem;
  box-shadow: 0 16px 42px rgba(40, 19, 28, 0.25);
}

.galleryLightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(31, 25, 22, 0.94);
  padding: 4.5rem 1.25rem;
}

.galleryLightbox.open {
  display: flex;
}

.lightboxFigure {
  width: min(100%, 760px);
  margin: 0;
  text-align: center;
}

.lightboxFigure img {
  width: 100%;
  max-height: 68dvh;
  display: block;
  object-fit: contain;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.3);
}

.lightboxFigure figcaption {
  min-height: 1.2rem;
  margin-top: 1.25rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.lightboxClose,
.lightboxArrow {
  position: absolute;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.82);
  transition: color 0.18s ease, transform 0.18s ease;
}

.lightboxClose:hover,
.lightboxArrow:hover {
  color: #ffffff;
  transform: scale(1.06);
}

.lightboxClose {
  top: 1.3rem;
  right: 1.25rem;
  width: 2.6rem;
  height: 2.6rem;
  font-size: 1.65rem;
}

.lightboxArrow {
  top: 50%;
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 999px;
  font-size: 1.2rem;
  transform: translateY(-50%);
}

.lightboxArrow:hover {
  transform: translateY(-50%) scale(1.06);
}

.lightboxPrev {
  left: 0.55rem;
}

.lightboxNext {
  right: 0.55rem;
}

a:focus-visible,
button:focus-visible {
  outline: 4px solid var(--focusRing);
  outline-offset: 4px;
}

@media (max-width: 370px) {
  .quickLinks {
    grid-template-columns: repeat(2, 1fr);
  }

  .serviceCard,
  .priceRow {
    grid-template-columns: 1fr;
  }

  .packageFooter {
    align-items: flex-start;
    flex-direction: column;
  }

  .packageFooter a {
    width: 100%;
  }

  .serviceBtn {
    width: 100%;
  }

  .heroText {
    right: 1rem;
  }
}
