@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --purple-950: #22163f;
  --purple-900: #2f1f5c;
  --purple-800: #3d2878;
  --purple-700: #4b2a8c;
  --purple-600: #5c3ba3;
  --purple-500: #6c4bb8;
  --purple-200: #d8ccf5;
  --purple-100: #ede8f8;
  --purple-50: #f7f3ff;
  --lavender: #f3eeff;
  --white: #ffffff;
  --ink: #17122b;
  --muted: #625a78;
  --line: rgba(75, 42, 140, 0.1);
  --shadow: 0 28px 70px rgba(47, 31, 92, 0.16);
  --shadow-soft: 0 14px 36px rgba(47, 31, 92, 0.08);
  --radius: 22px;
  --radius-lg: 30px;
  --max: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(108, 75, 184, 0.12), transparent 28%),
    linear-gradient(180deg, var(--lavender) 0%, #fcfbff 24%, var(--white) 100%);
  line-height: 1.65;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

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

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
}

.brand img, .brand svg {
  height: 42px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--muted);
}

.nav-links a:hover { color: var(--purple-700); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--purple-800), var(--purple-500));
  color: var(--white);
  font-weight: 700;
  box-shadow: var(--shadow-soft);
}

.menu-toggle {
  display: none;
  border: none;
  background: transparent;
  font-size: 1.6rem;
  color: var(--purple-800);
}

/* Store badges */
.store-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 54px;
  padding: 10px 16px;
  border-radius: 16px;
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.store-badge:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.store-badge.apple {
  background: #000;
}

.store-badge-icon {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
}

.store-badge-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.store-badge-copy small {
  font-size: 0.68rem;
  opacity: 0.82;
  font-weight: 500;
}

.store-badge-copy strong {
  font-size: 1rem;
  font-weight: 800;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 999px;
  background: #25d366;
  color: var(--white);
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.24);
}

.btn-whatsapp svg {
  width: 22px;
  height: 22px;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 999px;
  background: var(--white);
  color: var(--purple-800);
  border: 1px solid var(--line);
  font-weight: 700;
}

/* Hero */
.hero { padding: 72px 0 48px; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 42px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--purple-100);
  color: var(--purple-800);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-copy h1 {
  margin: 18px 0 16px;
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: var(--purple-950);
}

.hero-copy p {
  margin: 0 0 26px;
  font-size: 1.12rem;
  color: var(--muted);
  max-width: 580px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

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

.stat-card {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.stat-card strong {
  display: block;
  color: var(--purple-800);
  font-size: 1rem;
}

.stat-card span {
  color: var(--muted);
  font-size: 0.88rem;
}

.hero-visual img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

/* Sections */
section { padding: 78px 0; }

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 44px;
}

.section-head h2 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--purple-950);
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 1.06rem;
}

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

.feature-card {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(247,243,255,0.98));
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.feature-card:nth-child(even) {
  grid-template-columns: 1.08fr 0.92fr;
}

.feature-card:nth-child(even) .feature-copy { order: 2; }
.feature-card:nth-child(even) .feature-poster { order: 1; }

.feature-poster img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(47, 31, 92, 0.12);
}

.feature-copy h3 {
  margin: 0 0 10px;
  font-size: 1.5rem;
  color: var(--purple-900);
}

.feature-copy p {
  margin: 0 0 14px;
  color: var(--muted);
}

.pill-row { display: flex; flex-wrap: wrap; gap: 8px; }

.pill {
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--purple-100);
  color: var(--purple-800);
  font-size: 0.8rem;
  font-weight: 800;
}

.showcase-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

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

/* Shop types */
.shop-types {
  padding-top: 24px;
}

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

.shop-card {
  padding: 26px 22px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.shop-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.shop-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: var(--purple-100);
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.shop-card h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
  color: var(--purple-900);
}

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

/* Highlight features */
.highlights {
  background: linear-gradient(180deg, rgba(247, 243, 255, 0.65), rgba(255, 255, 255, 0));
}

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

.highlight-card {
  position: relative;
  padding: 28px 26px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.highlight-card.highlight-featured {
  border: 2px solid rgba(75, 42, 140, 0.22);
  background: linear-gradient(180deg, #fff 0%, #f9f6ff 100%);
  box-shadow: var(--shadow);
}

.highlight-tag {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 6px 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--purple-700), var(--purple-500));
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.highlight-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: var(--purple-100);
  font-size: 1.55rem;
  margin-bottom: 16px;
}

.highlight-card h3 {
  margin: 0 0 10px;
  font-size: 1.35rem;
  color: var(--purple-900);
}

.highlight-card p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 0.96rem;
}

.benefit {
  padding: 26px 22px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.benefit-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--purple-100);
  color: var(--purple-800);
  font-size: 1.3rem;
  margin-bottom: 14px;
}

.benefit h3 {
  margin: 0 0 8px;
  font-size: 1.06rem;
}

.benefit p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.contact-card, .locations-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.contact-card h3, .locations-card h3 {
  margin: 0 0 16px;
  color: var(--purple-900);
  font-size: 1.35rem;
}

.contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.contact-item:last-child { border-bottom: none; padding-bottom: 0; }

.contact-item-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--purple-100);
  color: var(--purple-800);
  flex: 0 0 42px;
}

.contact-item strong {
  display: block;
  margin-bottom: 4px;
  color: var(--purple-900);
}

.contact-item span, .contact-item a {
  color: var(--muted);
  font-size: 0.95rem;
}

.location-block + .location-block {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.location-block strong {
  display: block;
  margin-bottom: 6px;
  color: var(--purple-800);
}

.location-block p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* CTA */
.cta { padding-bottom: 90px; }

.cta-card {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: center;
  padding: 38px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--purple-950), var(--purple-600));
  color: var(--white);
  box-shadow: var(--shadow);
}

.cta-card h2 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 3vw, 2.7rem);
  line-height: 1.08;
}

.cta-card p {
  margin: 0 0 24px;
  color: rgba(255,255,255,0.88);
  max-width: 580px;
}

.cta-card .store-badge {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
}

.cta-card .store-badge.apple {
  background: rgba(0,0,0,0.35);
}

/* Footer */
.site-footer {
  padding: 30px 0 42px;
  border-top: 1px solid var(--line);
  background: rgba(255,255,255,0.78);
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-links a:hover { color: var(--purple-700); }

@media (max-width: 980px) {
  .hero-grid, .feature-grid, .cta-card, .benefits-grid, .contact-grid,
  .shop-grid, .highlight-grid {
    grid-template-columns: 1fr;
  }

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

  .feature-card, .feature-card:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .feature-card:nth-child(even) .feature-copy,
  .feature-card:nth-child(even) .feature-poster { order: initial; }

  .benefits-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-stats { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 76px;
    left: 20px;
    right: 20px;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    border-radius: 18px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .nav-links.open { display: flex; }
  .menu-toggle { display: block; }
  .benefits-grid { grid-template-columns: 1fr; }
  .shop-grid { grid-template-columns: 1fr; }
}
