:root {
  --bg: #eef1ed;
  --card: #ffffff;
  --ink: #111513;
  --muted: #66706b;
  --soft: #f3f6f2;
  --softStrong: #e6ede5;
  --line: rgba(17, 21, 19, 0.11);
  --primary: #12362d;
  --primaryText: #ffffff;
  --accent: #f6b23e;
  --accentDark: #815008;
  --accentSoft: #fff3d8;
  --success: #12805c;
  --danger: #c75a2c;
  --shadow: 0 24px 70px rgba(17, 21, 19, 0.16);
  --focus: rgba(246, 178, 62, 0.45);
  --heroPositionMobile: center center;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  overflow-x: hidden;
}

body {
  min-height: 100dvh;
  background: var(--card);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.noScroll {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  color: inherit;
  cursor: pointer;
  font: inherit;
}

img {
  max-width: 100%;
}

.page {
  width: 100%;
  min-height: 100dvh;
  background: var(--card);
}

.card {
  width: 100%;
  min-height: 100dvh;
  overflow: hidden;
  background: var(--card);
}

@media (min-width: 768px) {
  body {
    background:
      radial-gradient(circle at top, rgba(246, 178, 62, 0.22), transparent 30rem),
      linear-gradient(135deg, #e8eee8, #f7f3eb);
  }

  .page {
    display: grid;
    min-height: 100dvh;
    place-items: center;
    padding: 2rem 1rem;
    background:
      radial-gradient(circle at top, rgba(18, 54, 45, 0.12), transparent 30rem),
      transparent;
  }

  .card {
    max-width: 430px;
    min-height: auto;
    border: 1px solid rgba(17, 21, 19, 0.1);
    border-radius: 1.7rem;
    box-shadow: var(--shadow);
  }
}

.hero {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  background: var(--primary);
}

.hero img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  display: block;
  object-fit: cover;
  object-position: var(--heroPositionMobile);
}

.heroShade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(9, 16, 14, 0.86), rgba(9, 16, 14, 0.28) 54%, rgba(9, 16, 14, 0.16)),
    radial-gradient(circle at 88% 14%, rgba(246, 178, 62, 0.38), transparent 34%);
}

.heroContent {
  position: absolute;
  right: 1.2rem;
  bottom: 5.15rem;
  left: 1.2rem;
  color: #fff;
}

.statusBadge {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 0.45rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--primary);
  padding: 0.48rem 0.72rem;
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.statusBadge::before {
  content: "";
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 999px;
  background: var(--success);
  box-shadow: 0 0 0 4px rgba(18, 128, 92, 0.16);
}

.hero h1 {
  max-width: 9ch;
  margin: 0.9rem 0 0;
  font-size: clamp(2.35rem, 12vw, 3.35rem);
  font-weight: 950;
  line-height: 0.86;
  letter-spacing: -0.075em;
  overflow-wrap: anywhere;
}

.hero p {
  max-width: 25rem;
  margin: 0.85rem 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
  font-weight: 720;
  line-height: 1.38;
}

.iconButton {
  display: grid;
  width: 2.9rem;
  height: 2.9rem;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--primary);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
  transition: transform 0.18s ease, background 0.18s ease;
}

.iconButton:hover {
  transform: translateY(-2px);
  background: #fff;
}

.shareButton {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
}

.content {
  display: flex;
  flex-direction: column;
  gap: 1.05rem;
  padding: 1.15rem;
}

.profile {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: center;
  margin-top: -3.6rem;
  position: relative;
  z-index: 3;
}

.avatar {
  display: grid;
  width: 5.35rem;
  height: 5.35rem;
  place-items: center;
  overflow: hidden;
  border: 4px solid var(--card);
  border-radius: 1.25rem;
  background:
    linear-gradient(135deg, rgba(246, 178, 62, 0.9), rgba(246, 178, 62, 0.56)),
    var(--primary);
  color: var(--primary);
  font-size: 1.2rem;
  font-weight: 950;
  letter-spacing: -0.04em;
  box-shadow: 0 16px 34px rgba(17, 21, 19, 0.18);
}

.avatar.hasImage {
  background: #fff;
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profileText {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 1.15rem;
  background: rgba(255, 255, 255, 0.94);
  padding: 0.78rem 0.85rem;
  box-shadow: 0 14px 32px rgba(17, 21, 19, 0.09);
}

.profileText p,
.profileText strong {
  margin: 0;
  display: block;
  overflow-wrap: anywhere;
}

.profileText p {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 760;
  line-height: 1.35;
}

.profileText strong {
  margin-top: 0.22rem;
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 950;
}

.description {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  font-weight: 620;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.mainActions {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 0.7rem;
}

.btn,
.cta a {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border-radius: 1rem;
  border: 0;
  font-size: 0.92rem;
  font-weight: 950;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.btn:hover,
.cta a:hover,
.quickLink:hover,
.socialLink:hover,
.galleryItem:hover {
  transform: translateY(-2px);
}

.btnPrimary {
  background: var(--primary);
  color: var(--primaryText);
}

.btnPrimary i,
.cta a i,
.floatingWhatsapp i {
  color: #25d366;
}

.btnSecondary {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: #fff;
}

.btnSecondary:hover {
  background: var(--primary);
  color: var(--primaryText);
}

.quickLinks {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.55rem;
}

.quickLink {
  display: grid;
  min-height: 82px;
  place-items: center;
  gap: 0.45rem;
  border: 0;
  border-radius: 1rem;
  background: var(--soft);
  padding: 0.68rem 0.42rem;
  text-align: center;
  transition: transform 0.18s ease, background 0.18s ease;
}

.quickLink:hover {
  background: var(--softStrong);
}

.quickIcon {
  display: grid;
  width: 2.25rem;
  height: 2.25rem;
  place-items: center;
  border-radius: 0.82rem;
  background: var(--primary);
  color: #fff;
}

.quickLink span:last-child {
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 920;
}

.socialSection {
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}

.socialSection p,
.sectionHead p {
  margin: 0;
  color: var(--accentDark);
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.socialLinks {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.7rem;
}

.socialLink {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border-radius: 999px;
  background: var(--soft);
  padding: 0.6rem 0.8rem;
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 900;
  transition: transform 0.18s ease, background 0.18s ease;
}

.socialLink:hover {
  background: var(--softStrong);
}

.trustStrip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid rgba(18, 54, 45, 0.1);
  border-radius: 1.1rem;
  background: var(--primary);
  color: #fff;
}

.trustStrip div {
  min-width: 0;
  padding: 0.95rem 0.6rem;
  text-align: center;
}

.trustStrip div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.trustStrip strong,
.trustStrip span {
  display: block;
}

.trustStrip strong {
  font-size: 1.05rem;
  font-weight: 950;
  line-height: 1;
}

.trustStrip span {
  margin-top: 0.35rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.68rem;
  font-weight: 760;
  line-height: 1.2;
}

.sectionBlock {
  border-top: 1px solid var(--line);
  padding-top: 1.05rem;
}

.sectionHead h2 {
  margin: 0.32rem 0 0;
  color: var(--ink);
  font-size: 1.34rem;
  font-weight: 950;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.serviceCards {
  display: grid;
  gap: 0.75rem;
  margin-top: 0.85rem;
}

.serviceCard {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 1.15rem;
  background: #fff;
  padding: 0.95rem;
}

.serviceCard::after {
  content: "";
  position: absolute;
  top: -2.4rem;
  right: -2.4rem;
  width: 5rem;
  height: 5rem;
  border-radius: 999px;
  background: rgba(246, 178, 62, 0.14);
}

.serviceIcon,
.processIcon {
  display: grid;
  width: 2.35rem;
  height: 2.35rem;
  place-items: center;
  border-radius: 0.85rem;
  background: var(--accentSoft);
  color: var(--accentDark);
}

.serviceCard h3,
.priceRow h3,
.processItem h3 {
  margin: 0.7rem 0 0;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 950;
  line-height: 1.12;
}

.serviceCard p,
.priceRow p,
.processItem p,
.faqItem p,
.noteText {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 620;
  line-height: 1.45;
}

.priceList {
  display: grid;
  gap: 0.65rem;
  margin-top: 0.85rem;
}

.priceRow {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.75rem;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: var(--soft);
  padding: 0.9rem;
}

.priceRow h3 {
  margin-top: 0;
}

.priceRow strong {
  display: inline-flex;
  width: max-content;
  max-width: 8.2rem;
  justify-content: center;
  border-radius: 999px;
  background: #fff;
  color: var(--primary);
  padding: 0.48rem 0.65rem;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 950;
  line-height: 1.15;
}

.noteText {
  border-left: 3px solid var(--accent);
  padding-left: 0.75rem;
}

.processList {
  display: grid;
  gap: 0.65rem;
  margin-top: 0.85rem;
}

.processItem {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  border-radius: 1rem;
  background: var(--soft);
  padding: 0.9rem;
}

.processNumber {
  color: rgba(18, 54, 45, 0.23);
  font-size: 1.5rem;
  font-weight: 950;
  line-height: 1;
  letter-spacing: -0.05em;
}

.processItem h3 {
  margin-top: 0.55rem;
}

.galleryFilters {
  display: flex;
  gap: 0.45rem;
  overflow-x: auto;
  margin: 0.85rem -1.15rem 0;
  padding: 0 1.15rem 0.18rem;
  scrollbar-width: none;
}

.galleryFilters::-webkit-scrollbar {
  display: none;
}

.filterButton {
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
  padding: 0.6rem 0.82rem;
  font-size: 0.78rem;
  font-weight: 900;
}

.filterButton.active {
  border-color: var(--primary);
  background: var(--primary);
  color: #fff;
}

.galleryGrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.galleryItem {
  position: relative;
  min-height: 150px;
  overflow: hidden;
  border: 0;
  border-radius: 1rem;
  background: var(--soft);
  padding: 0;
  text-align: left;
  transition: transform 0.18s ease;
}

.galleryItem.featured {
  grid-column: 1 / -1;
  min-height: 220px;
}

.galleryItem img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: cover;
}

.galleryItem::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(9, 16, 14, 0.68), transparent 56%);
}

.galleryItem span {
  position: absolute;
  right: 0.7rem;
  bottom: 0.7rem;
  left: 0.7rem;
  z-index: 2;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1.18;
}

.faqList {
  display: grid;
  gap: 0.55rem;
  margin-top: 0.85rem;
}

.faqItem {
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: #fff;
  padding: 0.85rem 0.95rem;
}

.faqItem summary {
  color: var(--ink);
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 950;
  line-height: 1.3;
}

.faqItem p {
  padding-right: 0.5rem;
}

.infoGrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.infoItem {
  min-width: 0;
  border-radius: 1rem;
  background: var(--soft);
  padding: 0.85rem;
}

.infoItem i {
  color: var(--primary);
}

.infoItem span {
  display: block;
  margin-top: 0.55rem;
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.infoItem strong {
  display: block;
  margin-top: 0.28rem;
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 900;
  line-height: 1.28;
  overflow-wrap: anywhere;
}

.cta {
  overflow: hidden;
  border-radius: 1.3rem;
  background:
    radial-gradient(circle at 92% 0%, rgba(246, 178, 62, 0.26), transparent 34%),
    var(--primary);
  color: #fff;
  padding: 1.1rem;
}

.cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.cta h2 {
  margin: 0.38rem 0 0;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 950;
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.cta span {
  display: block;
  margin-top: 0.52rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  font-weight: 650;
  line-height: 1.45;
}

.cta a {
  width: 100%;
  margin-top: 1rem;
  background: #fff;
  color: var(--primary);
}

.footer {
  padding: 0.25rem 0 0.8rem;
  text-align: center;
}

.footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 740;
}

.floatingWhatsapp {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right));
  bottom: max(1rem, env(safe-area-inset-bottom));
  z-index: 15;
  display: grid;
  width: 3.45rem;
  height: 3.45rem;
  place-items: center;
  border-radius: 999px;
  background: var(--primary);
  box-shadow: 0 18px 36px rgba(17, 21, 19, 0.28);
}

.floatingWhatsapp i {
  font-size: 1.55rem;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(9, 16, 14, 0.9);
  padding: 4.6rem 1.15rem 2rem;
}

.lightbox.isOpen {
  display: flex;
}

.lightboxFigure {
  width: min(100%, 520px);
  margin: 0;
}

.lightboxFigure img {
  width: 100%;
  max-height: 64dvh;
  display: block;
  border-radius: 1rem;
  object-fit: contain;
  background: #111;
}

.lightboxFigure figcaption {
  margin-top: 0.9rem;
  color: rgba(255, 255, 255, 0.78);
  text-align: center;
  font-size: 0.9rem;
  font-weight: 720;
}

.lightboxClose {
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
}

.lightboxNav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.lightboxNav:hover {
  transform: translateY(calc(-50% - 2px));
}

.lightboxPrev {
  left: 0.8rem;
}

.lightboxNext {
  right: 0.8rem;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 4px solid var(--focus);
  outline-offset: 4px;
}

@media (max-width: 390px) {
  .content {
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .quickLinks {
    grid-template-columns: repeat(2, 1fr);
  }

  .infoGrid,
  .mainActions {
    grid-template-columns: 1fr;
  }

  .priceRow {
    grid-template-columns: 1fr;
  }

  .priceRow strong {
    width: fit-content;
  }
}
