:root {
  --bg: #f4ece6;
  --bg-soft: #fbf7f3;
  --panel: rgba(255, 255, 255, 0.72);
  --panel-strong: rgba(255, 255, 255, 0.9);
  --ink: #24181d;
  --muted: #685960;
  --accent: #d1a1a0;
  --accent-strong: #bf888a;
  --accent-dark: #8d5d61;
  --accent-deep: #5a4046;
  --line: rgba(90, 64, 70, 0.12);
  --shadow-soft: 0 28px 60px rgba(78, 52, 57, 0.1);
  --shadow-card: 0 34px 78px rgba(78, 52, 57, 0.14);
  --brand-mark-font: "Cormorant Garamond", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(236, 211, 210, 0.62), transparent 34%),
    linear-gradient(180deg, #fffaf7 0%, #f4ece6 38%, #f8f2ed 100%);
  line-height: 1.65;
}

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

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

.site-main {
  padding-top: 0;
}

.site-backdrop {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 15% 10%, rgba(208, 160, 162, 0.16), transparent 22%),
    radial-gradient(circle at 85% 12%, rgba(255, 255, 255, 0.9), transparent 20%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.4), rgba(244, 236, 230, 0.88)),
    repeating-linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.24) 0,
      rgba(255, 255, 255, 0.24) 2px,
      rgba(255, 255, 255, 0) 2px,
      rgba(255, 255, 255, 0) 16px
    );
}

.container {
  width: min(1140px, 90vw);
  margin: 0 auto;
}

.hero-section {
  padding: clamp(56px, 7vw, 92px) 0 58px;
}

.section {
  padding: clamp(80px, 9vw, 118px) 0;
}

.hero-grid,
.split-grid,
.social-grid,
.feature-grid,
.location-grid,
.contact-grid {
  display: grid;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  position: relative;
  padding: clamp(28px, 5vw, 60px);
  border-radius: 44px;
  background:
    radial-gradient(circle at top right, rgba(239, 215, 214, 0.86), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(250, 242, 239, 0.86));
  border: 1px solid rgba(114, 81, 86, 0.12);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.hero-grid::before,
.hero-grid::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.hero-grid::before {
  width: 320px;
  height: 320px;
  top: -140px;
  right: -100px;
  background: rgba(209, 161, 160, 0.2);
}

.hero-grid::after {
  width: 180px;
  height: 180px;
  bottom: -80px;
  left: 46%;
  background: rgba(255, 255, 255, 0.78);
}

.split-grid,
.social-grid,
.feature-grid,
.location-grid,
.contact-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hero-copy,
.hero-visual,
.feature-copy,
.feature-cover {
  position: relative;
  z-index: 1;
}

.eyebrow,
.section-label,
.procedure-tag,
.note-label,
.metric-label {
  display: inline-flex;
  align-items: center;
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-dark);
}

.eyebrow {
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(209, 161, 160, 0.14);
  border: 1px solid rgba(141, 93, 97, 0.12);
}

.display-title,
.section-title,
.procedure-title,
.shortcut-title {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 0.98;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.display-title {
  font-size: clamp(3.8rem, 8vw, 6.9rem);
  margin-top: 16px;
  max-width: 8ch;
}

.section-title {
  font-size: clamp(2.3rem, 4vw, 4rem);
  margin-top: 12px;
  max-width: 13ch;
}

.procedure-title {
  font-size: 1.95rem;
  line-height: 1.03;
  margin-top: 12px;
}

.shortcut-title {
  font-size: 1.55rem;
}

.hero-kicker {
  margin: 18px 0 8px;
  font-size: 0.96rem;
  color: var(--accent-deep);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-lead,
.section-copy,
.hero-body {
  color: var(--muted);
}

.hero-lead {
  max-width: 34rem;
  font-size: 1.16rem;
  margin: 20px 0 14px;
}

.hero-body,
.section-copy {
  font-size: 1.02rem;
  max-width: 40rem;
}

.hero-actions,
.social-actions,
.location-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.button:hover,
.button:focus {
  transform: translateY(-2px);
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--accent-strong), var(--accent-dark));
  box-shadow: 0 18px 34px rgba(116, 77, 82, 0.24);
}

.button-secondary {
  color: var(--accent-deep);
  border-color: rgba(141, 93, 97, 0.18);
  background: rgba(255, 255, 255, 0.62);
}

.hero-points {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-points li {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 999px;
  color: var(--accent-deep);
  font-weight: 600;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(141, 93, 97, 0.12);
  box-shadow: 0 12px 24px rgba(89, 62, 67, 0.06);
}

.hero-points li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent-strong);
  box-shadow: 0 0 0 6px rgba(209, 161, 160, 0.18);
}

.hero-visual {
  display: grid;
  justify-items: end;
}

.hero-image-frame {
  overflow: hidden;
  width: min(100%, 470px);
  padding: 14px;
  border-radius: 38px 38px 148px 38px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(245, 226, 224, 0.72));
  border: 1px solid rgba(141, 93, 97, 0.12);
  box-shadow: var(--shadow-card);
}

.social-image-frame,
.contact-image-frame {
  overflow: hidden;
  border-radius: 36px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow-card);
}

.hero-image-frame img {
  width: 100%;
  height: clamp(480px, 58vw, 720px);
  object-fit: cover;
  object-position: center 18%;
  border-radius: 30px 30px 132px 30px;
}

.social-image-frame img,
.contact-image-frame img {
  width: 100%;
  height: clamp(420px, 54vw, 620px);
  object-fit: cover;
  object-position: center 18%;
}

.hero-note-card {
  position: absolute;
  left: 24px;
  bottom: 24px;
  width: min(300px, 72%);
  padding: 22px 24px;
  border-radius: 28px;
  background: rgba(255, 247, 245, 0.82);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(141, 93, 97, 0.12);
  box-shadow: var(--shadow-soft);
}

.note-copy,
.metric-value {
  margin: 8px 0 0;
  color: var(--accent-deep);
}

.shortcut-copy {
  color: var(--muted);
}

.shortcut-section {
  margin-top: -34px;
  padding-bottom: 0;
  position: relative;
  z-index: 2;
}

.shortcut-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.shortcut-card {
  position: relative;
  min-height: 0;
  padding: 26px 26px 28px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(141, 93, 97, 0.12);
  box-shadow: var(--shadow-soft);
  display: grid;
  align-content: start;
  gap: 8px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  overflow: hidden;
}

.shortcut-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--accent-strong), rgba(209, 161, 160, 0.2));
}

.shortcut-card:hover,
.shortcut-card:focus {
  transform: translateY(-4px);
  box-shadow: 0 32px 50px rgba(89, 62, 67, 0.12);
  border-color: rgba(141, 93, 97, 0.18);
}

.split-grid {
  align-items: start;
}

.split-grid .stack {
  display: grid;
  gap: 22px;
}

.glass-card,
.metric-card,
.procedure-card,
.map-card {
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.glass-card {
  padding: 32px;
  font-size: 1.06rem;
  line-height: 1.8;
}

.metrics-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.metric-card {
  padding: 24px;
  min-height: 160px;
  align-content: start;
  background: linear-gradient(180deg, rgba(255, 248, 245, 0.96), rgba(255, 255, 255, 0.78));
}

.metric-value {
  font-size: 1.02rem;
  font-weight: 700;
}

.social-grid {
  padding: clamp(28px, 4vw, 52px);
  border-radius: 40px;
  background: linear-gradient(135deg, rgba(91, 63, 68, 0.98), rgba(142, 103, 108, 0.92) 56%, rgba(220, 188, 186, 0.82));
  box-shadow: 0 34px 76px rgba(75, 49, 54, 0.18);
}

.social-card {
  padding-right: clamp(0px, 2vw, 24px);
}

.social-section .section-label,
.social-section .section-title {
  color: #fff;
}

.social-section .section-copy {
  color: rgba(255, 255, 255, 0.78);
}

.social-section .button-primary,
.contact-section .button-primary {
  background: #fff;
  color: var(--accent-deep);
  box-shadow: 0 18px 34px rgba(38, 22, 27, 0.18);
}

.social-section .button-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
}

.social-image-frame {
  border-radius: 36px 140px 36px 36px;
}

.section-heading {
  max-width: 740px;
  margin-bottom: 36px;
}

.procedure-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.procedure-card {
  position: relative;
  padding: 28px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(252, 247, 245, 0.78));
}

.procedure-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--accent-strong), rgba(209, 161, 160, 0));
}

.procedure-card--wide {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(92, 63, 68, 0.97), rgba(146, 107, 112, 0.94));
  color: #fff;
}

.procedure-card--wide::before {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0));
}

.procedure-card--wide .procedure-tag,
.procedure-card--wide .procedure-title {
  color: #fff;
}

.procedure-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.procedure-link {
  display: inline-flex;
  align-items: center;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(247, 238, 236, 0.82);
  border: 1px solid rgba(141, 93, 97, 0.14);
  color: var(--accent-deep);
  font-weight: 600;
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.procedure-link:hover,
.procedure-link:focus {
  background: rgba(209, 161, 160, 0.14);
  border-color: rgba(141, 93, 97, 0.22);
  transform: translateY(-2px);
}

.procedure-card--wide .procedure-link {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.feature-section {
  padding-top: 26px;
}

.editorial-section {
  padding-top: 28px;
}

.editorial-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(24px, 4vw, 44px);
  align-items: stretch;
}

.editorial-copy {
  max-width: 34rem;
}

.editorial-card {
  position: relative;
  padding: 0;
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(238, 214, 213, 0.84), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(246, 236, 232, 0.96));
  border: 1px solid rgba(141, 93, 97, 0.12);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.editorial-card::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 26px;
  border: 1px solid rgba(141, 93, 97, 0.08);
  pointer-events: none;
}

.editorial-card-link {
  display: grid;
  gap: 18px;
  height: 100%;
  padding: clamp(28px, 4vw, 38px);
}

.editorial-card-link:hover,
.editorial-card-link:focus {
  text-decoration: none;
}

.editorial-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  color: var(--muted);
  font-size: 0.94rem;
}

.editorial-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(209, 161, 160, 0.16);
  color: var(--accent-deep);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.editorial-card p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.post-link-inline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-deep);
  font-weight: 700;
}

.post-link-inline::after {
  content: "→";
  font-size: 1.05rem;
}

.feature-grid {
  position: relative;
  padding: clamp(30px, 4vw, 52px);
  border-radius: 40px;
  background: linear-gradient(135deg, rgba(255, 247, 244, 0.98), rgba(228, 206, 203, 0.94));
  border: 1px solid rgba(141, 93, 97, 0.12);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.feature-grid::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  right: -120px;
  top: -120px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.46);
}

.feature-copy {
  max-width: 35rem;
}

.feature-cover {
  display: grid;
  place-items: center;
  min-height: 100%;
}

.feature-cover::before {
  content: "";
  position: absolute;
  width: min(420px, 100%);
  aspect-ratio: 1;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.26));
  transform: rotate(-8deg);
}

.feature-cover img {
  position: relative;
  z-index: 1;
  width: min(360px, 100%);
  filter: drop-shadow(0 26px 44px rgba(56, 32, 37, 0.18));
}

.location-grid {
  padding: clamp(28px, 4vw, 48px);
  border-radius: 38px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  align-items: stretch;
}

.location-copy {
  max-width: 34rem;
}

.map-card {
  padding: 14px;
  background: rgba(250, 244, 241, 0.92);
}

.map-card iframe {
  width: 100%;
  min-height: 430px;
  border: 0;
  border-radius: 24px;
}

.contact-section {
  padding-bottom: clamp(88px, 11vw, 146px);
}

.contact-grid {
  padding: clamp(28px, 4vw, 52px);
  border-radius: 40px;
  background: linear-gradient(135deg, rgba(92, 64, 69, 0.98), rgba(143, 104, 109, 0.92) 58%, rgba(225, 198, 196, 0.82));
  box-shadow: 0 34px 76px rgba(75, 49, 54, 0.18);
}

.contact-copy {
  max-width: 31rem;
}

.contact-section .section-label,
.contact-section .section-title {
  color: #fff;
}

.contact-section .section-copy {
  color: rgba(255, 255, 255, 0.78);
}

.contact-image-frame {
  border-radius: 36px 140px 36px 36px;
}

.button.floating-whatsapp-cta {
  position: fixed;
  left: 16px;
  right: 16px;
  width: auto;
  bottom: 16px;
  bottom: calc(16px + env(safe-area-inset-bottom));
  z-index: 80;
  visibility: hidden;
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0s linear 0.22s;
}

.button.floating-whatsapp-cta.is-visible {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  transition-delay: 0s;
}

@media (max-width: 1080px) {
  .hero-grid,
  .split-grid,
  .social-grid,
  .editorial-grid,
  .feature-grid,
  .location-grid,
  .contact-grid,
  .shortcut-grid,
  .metrics-grid,
  .procedure-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid::after {
    display: none;
  }

  .procedure-card--wide {
    grid-column: span 1;
  }

  .hero-visual {
    justify-items: start;
  }

  .hero-note-card {
    position: static;
    width: 100%;
    margin-top: 18px;
  }

  .shortcut-section {
    margin-top: 18px;
  }

  .social-image-frame,
  .contact-image-frame {
    border-radius: 32px;
  }
}

@media (max-width: 720px) {
  .site-main {
    padding-bottom: 96px;
  }

  .hero-section {
    padding: 44px 0 28px;
  }

  .section {
    padding: 58px 0;
  }

  .hero-grid,
  .social-grid,
  .editorial-card-link,
  .feature-grid,
  .location-grid,
  .contact-grid,
  .glass-card,
  .procedure-card,
  .metric-card,
  .shortcut-card {
    padding: 24px;
  }

  .button {
    width: 100%;
  }

  .display-title {
    font-size: clamp(3.1rem, 18vw, 4.45rem);
  }

  .section-title {
    max-width: none;
  }

  .hero-points {
    display: grid;
  }

  .hero-points li {
    width: 100%;
  }

  .hero-image-frame,
  .social-image-frame,
  .contact-image-frame {
    width: 100%;
  }

  .hero-image-frame {
    padding: 10px;
    border-radius: 28px 28px 92px 28px;
  }

  .hero-image-frame img {
    height: 420px;
    border-radius: 22px 22px 82px 22px;
  }

  .social-image-frame img,
  .contact-image-frame img,
  .map-card iframe {
    min-height: 340px;
    height: 340px;
  }

  .social-actions,
  .hero-actions,
  .location-actions {
    gap: 12px;
  }
}

@media (min-width: 721px) {
  .floating-whatsapp-cta {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
