:root {
  --ink: #291d25;
  --muted: #76636d;
  --deep: #74405a;
  --deep-2: #4b273a;
  --mauve: #a76d86;
  --rose: #f5e2e9;
  --rose-2: #fff4f7;
  --cream: #fffaf4;
  --gold: #c9a25a;
  --white: #ffffff;
  --shadow: 0 22px 70px rgba(75, 39, 58, 0.18);
  --shadow-soft: 0 16px 42px rgba(75, 39, 58, 0.10);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max-width: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--ink);
  background: linear-gradient(180deg, var(--cream) 0%, #ffffff 44%, var(--rose-2) 100%);
  line-height: 1.65;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 250, 244, 0.92);
  border-bottom: 1px solid rgba(116, 64, 90, 0.14);
  backdrop-filter: blur(16px);
}

.nav {
  width: min(94%, 1240px);
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}

.brand-symbol {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--deep), var(--mauve));
  box-shadow: 0 12px 28px rgba(116, 64, 90, 0.22);
  letter-spacing: 0.02em;
}

.brand-name {
  font-size: clamp(1rem, 2vw, 1.18rem);
  line-height: 1.1;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
}

.nav-menu a {
  padding: 11px 14px;
  border-radius: 999px;
  color: var(--deep-2);
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  background: rgba(116, 64, 90, 0.10);
  outline: none;
  transform: translateY(-1px);
}

.nav-menu .nav-button {
  color: var(--white);
  background: var(--deep);
  box-shadow: 0 14px 30px rgba(116, 64, 90, 0.20);
}

.nav-menu .nav-button:hover,
.nav-menu .nav-button:focus-visible {
  color: var(--white);
  background: var(--deep-2);
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: var(--rose);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-button span {
  width: 21px;
  height: 2px;
  border-radius: 10px;
  background: var(--deep-2);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

body.menu-open .menu-button span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.menu-open .menu-button span:nth-child(2) {
  opacity: 0;
}

body.menu-open .menu-button span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: calc(100vh - 78px);
  display: flex;
  align-items: center;
  padding: clamp(70px, 10vw, 120px) 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 15%, rgba(201, 162, 90, 0.22), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(167, 109, 134, 0.20), transparent 26%),
    linear-gradient(135deg, #fffaf4 0%, #f8e8ee 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 110px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.88));
  pointer-events: none;
}

.hero-bg {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.78;
  pointer-events: none;
}

.hero-bg-one {
  left: -130px;
  bottom: 10%;
  background: rgba(116, 64, 90, 0.13);
}

.hero-bg-two {
  right: -120px;
  top: 14%;
  background: rgba(201, 162, 90, 0.16);
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(300px, 0.64fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--deep);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  border-radius: 20px;
  background: var(--gold);
}

h1,
h2,
h3 {
  color: var(--ink);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

h1 {
  max-width: 850px;
  font-size: clamp(3rem, 8vw, 6.9rem);
}

.hero-text {
  max-width: 720px;
  margin-top: 24px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2.2vw, 1.42rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--deep), var(--deep-2));
  box-shadow: 0 18px 34px rgba(116, 64, 90, 0.25);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow: 0 22px 42px rgba(116, 64, 90, 0.32);
}

.btn-light {
  color: var(--deep-2);
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(116, 64, 90, 0.18);
}

.full {
  width: 100%;
}

.hero-card {
  position: relative;
  padding: clamp(26px, 4vw, 40px);
  border: 1px solid rgba(116, 64, 90, 0.14);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 8px;
  background: linear-gradient(90deg, var(--deep), var(--mauve), var(--gold));
}

.circle-mark {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--mauve), var(--deep));
  font-size: 2rem;
  box-shadow: 0 20px 35px rgba(116, 64, 90, 0.22);
}

.hero-card h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.hero-card p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 1.05rem;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.tags span {
  padding: 9px 12px;
  border-radius: 999px;
  color: var(--deep-2);
  background: var(--rose);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.86rem;
  font-weight: 800;
}

.section {
  padding: clamp(72px, 9vw, 116px) 0;
}

.two-columns {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.62fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.section-text h2,
.section-heading h2,
.contact-card h2 {
  font-size: clamp(2.2rem, 5vw, 4.5rem);
}

.section-text p,
.section-heading p,
.contact-card p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.08rem;
}

.quote-card {
  position: relative;
  padding: clamp(28px, 4vw, 44px);
  border-radius: var(--radius-xl);
  color: var(--white);
  background: linear-gradient(135deg, var(--deep), var(--deep-2));
  box-shadow: var(--shadow);
}

.quote-card span {
  display: block;
  margin-bottom: 4px;
  color: var(--gold);
  font-size: 5.5rem;
  line-height: 0.75;
}

.quote-card p {
  font-size: clamp(1.18rem, 2.3vw, 1.65rem);
}

.visual-section {
  background:
    linear-gradient(180deg, rgba(245, 226, 233, 0.70), rgba(255, 255, 255, 0.92)),
    radial-gradient(circle at 85% 20%, rgba(201, 162, 90, 0.14), transparent 25%);
}

.section-heading {
  max-width: 820px;
  margin: 0 auto 38px;
  text-align: center;
}

.section-heading .eyebrow {
  justify-content: center;
}

.section-heading .eyebrow::after {
  content: "";
  width: 34px;
  height: 2px;
  border-radius: 20px;
  background: var(--gold);
}

.steps,
.modality-grid,
.contact-grid {
  display: grid;
  gap: 20px;
}

.steps {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.step-card,
.modality-card,
.contact-card {
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(116, 64, 90, 0.12);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
}

.step-card {
  min-height: 260px;
}

.step-number {
  display: inline-flex;
  margin-bottom: 26px;
  color: var(--gold);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.20em;
}

.step-card h3,
.modality-card h3 {
  font-size: clamp(1.55rem, 3vw, 2.2rem);
}

.step-card p {
  margin-top: 16px;
  color: var(--muted);
}

.modalities {
  background: #fff;
}

.modality-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.modality-card {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  position: relative;
}

.modality-card::after {
  content: "";
  position: absolute;
  right: -38px;
  bottom: -46px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(167, 109, 134, 0.12);
}

.modality-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: var(--white);
  background: linear-gradient(135deg, var(--deep), var(--mauve));
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 900;
  box-shadow: 0 18px 28px rgba(116, 64, 90, 0.18);
}

.statement {
  padding: clamp(70px, 8vw, 104px) 0;
  background: var(--deep-2);
}

.statement-box {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
  color: var(--white);
}

.statement-box p {
  color: var(--rose);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

.statement-box h2 {
  margin-top: 16px;
  color: var(--white);
  font-size: clamp(2.2rem, 5.2vw, 5rem);
}

.contact-section {
  background:
    radial-gradient(circle at 20% 15%, rgba(201, 162, 90, 0.18), transparent 24%),
    linear-gradient(180deg, var(--rose-2), var(--cream));
}

.contact-grid {
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 0.72fr);
  align-items: stretch;
}

.contact-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.main-contact {
  color: var(--white);
  background: linear-gradient(135deg, var(--deep), var(--deep-2));
}

.main-contact h2,
.main-contact .eyebrow,
.main-contact p {
  color: var(--white);
}

.main-contact .eyebrow::before {
  background: var(--gold);
}

.phone {
  display: block;
  margin: 18px 0 24px;
  color: var(--gold);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1;
  word-break: break-word;
}

.text-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 22px;
  color: var(--deep);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 900;
  border-bottom: 2px solid var(--gold);
}

.footer {
  padding: 30px 0;
  color: var(--white);
  background: #24181f;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  font-family: Arial, Helvetica, sans-serif;
}

.footer a {
  color: var(--gold);
  font-weight: 800;
}

.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 45;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 18px;
  border-radius: 999px;
  color: var(--white);
  background: #1fae55;
  box-shadow: 0 18px 34px rgba(31, 174, 85, 0.30);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.95rem;
  font-weight: 900;
}

.back-top {
  position: fixed;
  right: 22px;
  bottom: 86px;
  z-index: 45;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: var(--deep);
  box-shadow: 0 14px 28px rgba(75, 39, 58, 0.25);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.back-top.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.js .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 940px) {
  .menu-button {
    display: inline-flex;
  }

  .nav-menu {
    position: fixed;
    left: 4%;
    right: 4%;
    top: 88px;
    display: grid;
    gap: 8px;
    padding: 18px;
    border: 1px solid rgba(116, 64, 90, 0.14);
    border-radius: 24px;
    background: rgba(255, 250, 244, 0.98);
    box-shadow: var(--shadow-soft);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.24s ease, transform 0.24s ease;
  }

  body.menu-open .nav-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-menu a {
    width: 100%;
    padding: 14px 16px;
  }

  .hero-layout,
  .two-columns,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .steps,
  .modality-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }
}

@media (max-width: 620px) {
  .nav {
    min-height: 72px;
  }

  .brand-symbol {
    width: 42px;
    height: 42px;
    font-size: 0.9rem;
  }

  .brand-name {
    max-width: 190px;
  }

  .hero {
    padding: 54px 0 70px;
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .section {
    padding: 64px 0;
  }

  .section-heading {
    text-align: left;
  }

  .section-heading .eyebrow {
    justify-content: flex-start;
  }

  .section-heading .eyebrow::after {
    display: none;
  }

  .phone {
    font-size: clamp(2.15rem, 11vw, 3.2rem);
  }

  .floating-whatsapp {
    left: 16px;
    right: 16px;
  }

  .back-top {
    bottom: 84px;
  }
}
