/* Landing page - racine tryparentis.com */
.lp-body {
  background: var(--background);
}

.lp {
  width: min(1100px, 100%);
  margin: 0 auto;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  padding: 24px 20px calc(28px + env(safe-area-inset-bottom, 0px));
}

.lp-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 28px;
}

.lp-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 36px;
  align-items: center;
}

.lp-copy {
  width: 100%;
  max-width: 520px;
  text-align: center;
}

.lp-copy h1 {
  margin: 0;
  font-size: clamp(1.75rem, 4.5vw, 2.6rem);
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--text);
}

.lp-subtitle {
  margin: 14px 0 0;
  font-size: 1.05rem;
  line-height: 1.5;
  color: var(--muted);
  font-weight: 400;
}

.lp-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.lp-store {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  text-decoration: none;
  height: 40px;
}

.lp-store img {
  display: block;
  height: 40px;
  width: auto;
}

.lp-carousel {
  width: 100%;
  max-width: 380px;
}

.lp-slides {
  position: relative;
  min-height: 0;
}

.lp-slide {
  display: none;
  flex-direction: column;
  align-items: center;
}

.lp-slide.is-active {
  display: flex;
  animation: lpFade 0.45s ease;
}

@keyframes lpFade {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.lp-slide-frame {
  width: min(100%, 340px);
  aspect-ratio: 1;
  border-radius: 28px;
  overflow: hidden;
  background: var(--card);
  box-shadow: 0 12px 40px rgba(30, 58, 95, 0.08);
}

.lp-slide-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lp-slide-caption {
  margin: 22px 0 0;
  text-align: center;
  font-size: clamp(1.2rem, 3vw, 1.55rem);
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--text);
}

.lp-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  min-height: 10px;
}

.lp-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  border: none;
  padding: 0;
  background: #c8cdd3;
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease;
}

.lp-dot.is-active {
  width: 20px;
  background: var(--marine);
}

.lp-footer {
  margin-top: 40px;
  text-align: center;
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.4;
}

.lp-footer a {
  color: var(--marine);
  font-weight: 700;
  text-decoration: none;
}

@media (min-width: 900px) {
  .lp {
    padding: 36px 40px 40px;
    justify-content: center;
  }

  .lp-brand {
    justify-content: flex-start;
    margin-bottom: 48px;
  }

  .lp-main {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 56px;
  }

  .lp-copy {
    flex: 1;
    max-width: 480px;
    text-align: left;
  }

  .lp-actions {
    justify-content: flex-start;
    max-width: none;
  }

  .lp-carousel {
    flex: 0 0 400px;
    max-width: 400px;
  }

  .lp-footer {
    text-align: left;
  }
}

.lp-seo-cities {
  width: 100%;
  max-width: 640px;
  margin: 40px auto 0;
  text-align: center;
}

.lp-seo-cities h2 {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text);
}

.lp-seo-cities-lead {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.45;
}

.lp-seo-cities-list {
  list-style: none;
  margin: 16px auto 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.lp-seo-cities-list a {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--card, #fff);
  border: 1px solid var(--border, #e4eaf0);
  color: var(--marine, #1e3a5f);
  font-weight: 700;
  text-decoration: none;
  font-size: 0.95rem;
}

@media (prefers-reduced-motion: reduce) {
  .lp-slide.is-active {
    animation: none;
  }
}
