:root {
  --bg: #f1f1f1;
  --surface: #f8f7fb;
  --surface-strong: #ffffff;
  --ink: #000000;
  --muted: #404040;
  --line: rgba(120, 75, 157, 0.14);
  --brand: #784b9d;
  --brand-deep: #5f397d;
  --brand-secondary: #916dad;
  --brand-soft: #d7d0e2;
  --accent: #fab24c;
  --accent-soft: rgba(250, 178, 76, 0.18);
  --shadow: 0 20px 44px rgba(95, 57, 125, 0.1);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --shell: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(215, 208, 226, 0.52), transparent 24%),
    radial-gradient(circle at top right, rgba(145, 109, 173, 0.12), transparent 18%),
    linear-gradient(180deg, #fbfbfd 0%, #f5f4f8 42%, #f0edf5 100%);
}

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

a {
  color: inherit;
}

.lp-shell {
  width: min(calc(100% - 40px), var(--shell));
  margin: 0 auto;
}

.lp-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: rgba(120, 75, 157, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.lp-header__inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.lp-brand picture,
.lp-floating-whatsapp picture {
  display: block;
}

.lp-brand img {
  width: 92px;
  height: auto;
}

.lp-nav {
  display: flex;
  gap: 24px;
  font-size: 0.95rem;
  color: #ffffff;
  font-weight: 700;
}

.lp-nav a {
  text-decoration: none;
}

.lp-btn,
.lp-link {
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-deep) 100%);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(120, 75, 157, 0.24);
}

.lp-btn:hover,
.lp-link:hover {
  transform: translateY(-1px);
}

.lp-btn--header,
.lp-btn--secondary {
  background: #ffffff;
  color: var(--brand-deep);
  border-color: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 28px rgba(56, 24, 80, 0.18);
}

.lp-btn--light {
  background: #fff;
  color: var(--brand-deep);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.14);
}

.lp-link {
  color: var(--brand-deep);
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  min-height: 48px;
}

.lp-link--strong {
  display: inline-flex;
  margin-top: 20px;
}

.lp-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(120, 75, 157, 0.08);
  border: 1px solid rgba(120, 75, 157, 0.12);
  color: var(--brand-deep);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.lp-kicker--light {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.18);
  color: #ffffff;
}

.lp-hero {
  padding: 24px 0 28px;
}

.lp-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(320px, 0.72fr);
  gap: 28px;
  align-items: center;
  min-height: calc(100vh - 104px);
}

.lp-hero__content h1,
.lp-section__heading h2,
.lp-split__content h2,
.lp-footer-cta h2,
.lp-contact__content h2 {
  margin: 16px 0;
  font-family: "Fraunces", serif;
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.lp-hero__content h1 {
  font-size: clamp(2.05rem, 3.5vw, 3.5rem);
  max-width: 19ch;
  color: var(--brand-deep);
  text-transform: none;
  margin: 12px 0;
  text-wrap: balance;
  line-height: 1.03;
}

.lp-hero__lead,
.lp-hero__crosslinks,
.lp-section__heading p,
.lp-split__content p,
.lp-contact__content p,
.lp-footer-cta p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
}

.lp-hero__crosslinks {
  margin: 18px 0 0;
  font-size: 0.95rem;
}

.lp-hero__crosslinks a {
  color: var(--brand-deep);
  font-weight: 800;
  text-decoration: none;
}

.lp-hero__crosslinks a:hover {
  text-decoration: underline;
}

.lp-checklist {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 10px;
}

.lp-checklist li {
  position: relative;
  padding-left: 34px;
  line-height: 1.4;
  font-weight: 600;
}

.lp-checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--brand-soft);
  color: var(--brand);
  font-weight: 800;
}

.lp-checklist--compact {
  margin-top: 18px;
}

@media (min-width: 861px) {
  .lp-checklist--compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 28px;
    row-gap: 12px;
  }
}

.lp-hero__actions,
.lp-contact__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 18px;
  margin-top: 20px;
}

.lp-hero__media {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 14px;
  align-items: stretch;
  position: relative;
}

.lp-hero__viewport {
  overflow: visible;
}

.lp-hero__gallery {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.lp-hero__gallery .lp-hero__card--main {
  grid-row: 1 / span 2;
}

.lp-hero-nav {
  display: none;
}

.lp-hero__media::before {
  content: "";
  position: absolute;
  inset: 10% 0 8% 8%;
  background: radial-gradient(circle, rgba(120, 75, 157, 0.16) 0%, rgba(120, 75, 157, 0.04) 48%, transparent 72%);
  filter: blur(20px);
  z-index: 0;
}

.lp-hero__card,
.lp-card,
.lp-review,
.lp-step,
.lp-google-box,
.lp-contact__content,
.lp-contact__map,
.lp-faq details {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(120, 75, 157, 0.08);
  box-shadow: var(--shadow);
}

.lp-hero__card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  min-height: 156px;
  position: relative;
  z-index: 1;
}

.lp-hero__card img,
.lp-split__gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lp-hero__card--main {
  min-height: 344px;
}

.lp-section {
  padding: 84px 0;
}

.lp-section--soft {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(232, 227, 239, 0.42));
}

.lp-section--contrast,
.lp-section--footer-cta {
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.08), transparent 28%),
    linear-gradient(135deg, #784b9d 0%, #916dad 52%, #5f397d 100%);
  color: #fff;
}

.lp-section__heading {
  max-width: 760px;
  margin-bottom: 34px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.lp-section__heading h2,
.lp-split__content h2,
.lp-contact__content h2,
.lp-footer-cta h2 {
  font-size: clamp(2rem, 3.2vw, 3.4rem);
}

.lp-section__heading--light h2,
.lp-section__heading--light p,
.lp-section--contrast .lp-section__heading p,
.lp-footer-cta p,
.lp-footer-cta h2 {
  color: #fff;
}

.lp-grid {
  display: grid;
  gap: 20px;
}

.lp-grid--four {
  grid-template-columns: repeat(4, minmax(260px, 1fr));
}

.lp-card {
  border-radius: var(--radius-md);
  padding: 28px;
  background: rgba(255, 255, 255, 0.94);
}

.lp-card img {
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  padding: 10px;
  border-radius: 999px;
  background: rgba(120, 75, 157, 0.18);
  filter: contrast(1.15) saturate(1.05);
}

.lp-card h3,
.lp-review strong,
.lp-step h3 {
  margin: 0 0 10px;
  color: var(--brand-deep);
  line-height: 1.1;
}

.lp-card h3 {
  font-size: 1.35rem;
  line-height: 1.08;
  overflow-wrap: anywhere;
}

.lp-review strong {
  font-size: 1rem;
}

.lp-card p,
.lp-review p,
.lp-google-box p,
.lp-step h3,
.lp-faq p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.lp-inline-cta {
  margin-top: 28px;
  padding: 24px 28px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(120, 75, 157, 0.1), rgba(215, 208, 226, 0.42));
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid rgba(120, 75, 157, 0.08);
}

.lp-inline-cta p {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
}

.lp-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 34px;
  align-items: center;
}

.lp-split__content--full {
  max-width: 900px;
}

.lp-feature-strip {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.lp-feature-photo {
  display: grid;
  grid-template-columns: 34% minmax(0, 1fr);
  align-items: stretch;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(120, 75, 157, 0.08);
  box-shadow: var(--shadow);
  min-height: 170px;
}

.lp-feature-photo img {
  width: 100%;
  height: 100%;
  min-height: 170px;
  object-fit: cover;
}

.lp-feature-photo__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 18px 18px 18px;
}

.lp-feature-photo__body h3 {
  margin: 0 0 8px;
  color: var(--brand-deep);
  font-size: 1.12rem;
  line-height: 1.2;
}

.lp-feature-photo__body p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
  font-size: 1rem;
}

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

.lp-step {
  border-radius: var(--radius-md);
  padding: 28px;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.lp-step span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #fff;
  color: var(--brand-deep);
  font-weight: 800;
  margin-bottom: 18px;
}

.lp-step h3 {
  color: #fff;
  line-height: 1.45;
  font-size: 1.2rem;
}

.lp-center {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.lp-reviews-carousel {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
}

.lp-reviews-viewport {
  overflow: hidden;
}

.lp-reviews {
  display: flex;
  gap: 20px;
  transition: transform 0.25s ease;
}

.lp-reviews-meta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: -8px 0 24px;
}

.lp-reviews-meta__rating,
.lp-reviews-meta__count {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(120, 75, 157, 0.08);
  color: var(--brand-deep);
  font-weight: 800;
}

.lp-review {
  flex: 0 0 calc((100% - 40px) / 3);
  border-radius: var(--radius-md);
  padding: 28px;
  background: rgba(255, 255, 255, 0.94);
}

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

.lp-reviews-grid .lp-review {
  flex: none;
}

.lp-review__stars {
  color: var(--accent);
  letter-spacing: 0.18em;
  margin-bottom: 14px;
  font-size: 1.1rem;
}

.lp-review strong {
  display: inline-block;
  margin-top: 16px;
  color: var(--ink);
}

.lp-review__time {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.92rem;
}

.lp-reviews-note {
  margin: 18px 0 0;
  text-align: center;
  color: var(--muted);
}

.lp-reviews-nav {
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 999px;
  background: rgba(120, 75, 157, 0.12);
  color: var(--brand-deep);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, opacity 0.2s ease, background-color 0.2s ease;
}

.lp-reviews-nav:hover:not(:disabled) {
  transform: translateY(-1px);
  background: rgba(120, 75, 157, 0.18);
}

.lp-reviews-nav:disabled {
  opacity: 0.35;
  cursor: default;
}

.lp-google-box {
  margin-top: 26px;
  border-radius: var(--radius-md);
  padding: 24px 28px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: rgba(255, 255, 255, 0.94);
}

.lp-faq {
  display: grid;
  gap: 14px;
}

.lp-faq details {
  border-radius: var(--radius-sm);
  padding: 20px 22px;
  background: rgba(255, 255, 255, 0.94);
}

.lp-faq summary {
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

.lp-faq summary::-webkit-details-marker {
  display: none;
}

.lp-faq p {
  margin-top: 12px;
}

.lp-contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
  gap: 24px;
}

.lp-contact__content,
.lp-contact__map {
  border-radius: var(--radius-lg);
  padding: 30px;
  background: rgba(255, 255, 255, 0.96);
}

.lp-contact__list {
  display: grid;
  gap: 2px;
  margin-top: 8px;
}

.lp-contact__list p {
  margin: 0;
  line-height: 1.4;
}

.lp-contact__content > p {
  margin-bottom: 12px;
}

.lp-contact__actions {
  margin-top: 16px;
}

.lp-contact__map iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  border-radius: calc(var(--radius-lg) - 6px);
}

.lp-footer-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.lp-footer {
  padding: 26px 0 34px;
  background: var(--brand-deep);
  color: rgba(255, 255, 255, 0.82);
  text-align: center;
}

.lp-footer p {
  margin: 6px 0;
}

.lp-floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 50;
}

.lp-floating-whatsapp img {
  width: 58px;
  height: 58px;
  border-radius: 999px;
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.18);
}

@media (max-width: 1080px) {
  .lp-grid--four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lp-review {
    flex-basis: calc((100% - 20px) / 2);
  }

  .lp-reviews-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lp-hero__grid,
  .lp-contact {
    grid-template-columns: 1fr;
  }

  .lp-feature-strip {
    grid-template-columns: 1fr;
  }

  .lp-hero__content h1 {
    max-width: 13ch;
  }
}

@media (max-width: 860px) {
  .lp-header__inner {
    min-height: auto;
    padding: 12px 0;
    flex-wrap: wrap;
  }

  .lp-nav {
    order: 3;
    width: 100%;
    flex-wrap: wrap;
    gap: 14px;
  }

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

  .lp-hero__media {
    grid-template-columns: 1fr;
  }

  .lp-hero__card--main {
    min-height: 320px;
  }
}

@media (max-width: 640px) {
  .lp-shell {
    width: min(calc(100% - 52px), var(--shell));
  }

  .lp-hero {
    padding-top: 20px;
  }

  .lp-section {
    padding: 64px 0;
  }

  .lp-grid--four,
  .lp-hero__stack {
    grid-template-columns: 1fr;
  }

  .lp-reviews-grid {
    grid-template-columns: 1fr;
  }

  .lp-hero__media {
    grid-template-columns: 1fr;
    position: relative;
  }

  .lp-hero__viewport {
    overflow: hidden;
  }

  .lp-hero__gallery {
    display: flex;
    gap: 14px;
  }

  .lp-hero__gallery .lp-hero__card,
  .lp-hero__gallery .lp-hero__card--main {
    flex: 0 0 100%;
    min-height: 210px;
  }

  .lp-hero-nav {
    display: inline-flex;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 999px;
    align-items: center;
    justify-content: center;
    background: rgba(120, 75, 157, 0.2);
    color: var(--brand-deep);
    font-size: 1.8rem;
    line-height: 1;
    cursor: pointer;
  }

  .lp-hero-nav:disabled {
    opacity: 0.35;
    cursor: default;
  }

  .lp-hero-nav--prev {
    left: -8px;
  }

  .lp-hero-nav--next {
    right: -8px;
  }

  .lp-reviews-carousel {
    grid-template-columns: 1fr;
    position: relative;
  }

  .lp-reviews-viewport {
    overflow: hidden;
    scroll-snap-type: none;
    padding-bottom: 0;
  }

  .lp-review {
    flex-basis: 100%;
    scroll-snap-align: none;
  }

  .lp-reviews-nav {
    display: inline-flex;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 40px;
    height: 40px;
    background: rgba(120, 75, 157, 0.2);
  }

  .lp-reviews-nav--prev {
    left: -8px;
  }

  .lp-reviews-nav--next {
    right: -8px;
  }

  .lp-header__inner {
    gap: 12px;
  }

  .lp-brand {
    width: 100%;
    display: flex;
    justify-content: flex-start;
  }

  .lp-nav {
    justify-content: center;
    text-align: center;
    gap: 12px 22px;
  }

  .lp-nav a {
    display: inline-flex;
    justify-content: center;
  }

  .lp-btn,
  .lp-btn--header,
  .lp-btn--secondary,
  .lp-btn--light {
    width: 100%;
  }

  .lp-google-box,
  .lp-inline-cta,
  .lp-footer-cta,
  .lp-contact__actions {
    align-items: stretch;
  }

  .lp-hero__content h1 {
    max-width: none;
    font-size: clamp(2rem, 8.8vw, 3rem);
    line-height: 1.06;
  }

  .lp-section__heading h2,
  .lp-split__content h2,
  .lp-contact__content h2,
  .lp-footer-cta h2 {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
    line-height: 1.1;
  }

  .lp-hero__lead,
  .lp-section__heading p,
  .lp-split__content p,
  .lp-contact__content p,
  .lp-footer-cta p,
  .lp-card p,
  .lp-review p,
  .lp-faq p,
  .lp-contact__list p {
    font-size: 0.96rem;
    line-height: 1.55;
  }

  .lp-checklist {
    gap: 12px;
  }

  .lp-checklist li {
    padding-left: 30px;
    font-size: 0.95rem;
  }

  .lp-checklist li::before {
    width: 22px;
    height: 22px;
    font-size: 0.85rem;
  }

  .lp-kicker {
    font-size: 0.72rem;
    line-height: 1.3;
    padding: 6px 12px;
    min-height: auto;
  }

  .lp-feature-photo {
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }

  .lp-feature-photo img {
    display: block;
    width: 100%;
    height: 260px;
    min-height: 260px;
    object-fit: cover;
    flex: 0 0 auto;
  }

  .lp-feature-photo__body {
    display: block;
    padding: 18px 18px 20px;
    background: rgba(255, 255, 255, 0.98);
  }

  .lp-feature-photo__body h3 {
    font-size: 1.15rem;
    line-height: 1.2;
  }

  .lp-feature-photo__body p {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .lp-footer {
    padding-bottom: 96px;
  }

  .lp-footer p {
    font-size: 0.94rem;
    line-height: 1.5;
  }

  .lp-floating-whatsapp {
    right: 14px;
    bottom: 14px;
  }

  .lp-floating-whatsapp img {
    width: 54px;
    height: 54px;
  }
}
