:root {
  --blue-deep: #27317d;
  --blue-ink: #0d1b55;
  --blue-soft: #eef5ff;
  --cyan: #91e5ee;
  --lilac: #d7d1ff;
  --purple: #7068d8;
  --yellow: #ffe56f;
  --green: #11b889;
  --white: #ffffff;
  --text: #18203b;
  --muted: #667085;
  --border: #dfe6f2;
  --shadow: 0 20px 60px rgba(16, 28, 74, 0.12);
  --radius-lg: 28px;
  --radius-md: 20px;
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.55;
}

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

a {
  color: inherit;
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  top: -60px;
  left: 12px;
  background: var(--blue-deep);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 12px;
  z-index: 20;
}

.skip-link:focus {
  top: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(223, 230, 242, 0.8);
}

.header-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  min-height: 72px;
}

.brand {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 18px rgba(39, 49, 125, 0.18);
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nav {
  display: none;
  justify-content: center;
  gap: 24px;
  color: var(--blue-ink);
  font-size: 0.95rem;
  font-weight: 700;
}

.nav a {
  text-decoration: none;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 800;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

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

.btn-primary {
  color: var(--white);
  background: var(--blue-deep);
  box-shadow: 0 14px 28px rgba(39, 49, 125, 0.22);
}

.btn-secondary {
  color: var(--blue-ink);
  background: var(--white);
  border-color: var(--border);
}

.btn-outline {
  color: var(--blue-deep);
  background: var(--white);
  border-color: var(--blue-deep);
}

.btn-whatsapp {
  color: var(--white);
  background: var(--green);
  box-shadow: 0 14px 28px rgba(17, 184, 137, 0.25);
}

.header-cta {
  min-height: 42px;
  padding: 10px 16px;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 20%, rgba(145, 229, 238, .35), transparent 26%),
    radial-gradient(circle at 85% 15%, rgba(215, 209, 255, .55), transparent 28%),
    linear-gradient(180deg, #f7fbff 0%, #eef5ff 100%);
}

.hero-grid {
  display: grid;
  gap: 28px;
  padding-block: 44px 34px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--purple);
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 16px;
  color: var(--blue-ink);
  font-size: clamp(2.3rem, 12vw, 4.9rem);
  line-height: .98;
  letter-spacing: -0.06em;
}

h2 {
  margin-bottom: 12px;
  color: var(--blue-ink);
  font-size: clamp(2rem, 7vw, 3.3rem);
  line-height: 1;
  letter-spacing: -0.045em;
}

h3 {
  color: var(--blue-ink);
  font-size: 1.3rem;
  line-height: 1.16;
  margin-bottom: 10px;
}

.hero-text {
  max-width: 610px;
  margin-bottom: 22px;
  color: #45506f;
  font-size: 1.06rem;
}

.hero-actions {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-points span,
.badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 11px;
  border-radius: 999px;
  background: var(--white);
  color: var(--blue-deep);
  border: 1px solid rgba(39, 49, 125, .12);
  font-size: .82rem;
  font-weight: 900;
}

.badge-highlight {
  background: var(--yellow);
  border-color: transparent;
}

.hero-visual {
  position: relative;
  min-height: 330px;
  display: grid;
  place-items: end center;
}

.mascot {
  width: min(62vw, 250px);
  height: auto;
  max-height: 320px;
  object-fit: contain;
}

.bubble {
  position: absolute;
  border-radius: 999px;
  background: rgba(145, 229, 238, .55);
  border: 1px solid rgba(255, 255, 255, .9);
  box-shadow: inset 0 0 20px rgba(255, 255, 255, .75);
  animation: bubble 6s ease-in-out infinite;
}

.bubble-one {
  width: 72px;
  height: 72px;
  left: 8%;
  top: 22%;
}

.bubble-two {
  width: 44px;
  height: 44px;
  right: 16%;
  top: 12%;
  animation-delay: .7s;
}

.bubble-three {
  width: 118px;
  height: 118px;
  right: 4%;
  bottom: 18%;
  background: rgba(215, 209, 255, .5);
  animation-delay: 1.1s;
}

.stores-section,
.steps-section,
.faq-section,
.final-cta {
  padding-block: 54px;
}

.section-heading {
  max-width: 650px;
  margin-bottom: 28px;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
}

.section-heading.compact {
  max-width: 520px;
}

.store-grid {
  display: grid;
  gap: 18px;
}

.store-card {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
}

.store-photo {
  background: var(--blue-soft);
  border-bottom: 1px solid var(--border);
}

.store-photo img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.store-content {
  padding: 22px;
}

.store-topline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.store-description {
  color: var(--muted);
}

.store-info {
  display: grid;
  gap: 14px;
  margin: 20px 0 0;
}

.store-info div {
  padding-left: 14px;
  border-left: 3px solid var(--cyan);
}

.store-info dt {
  color: var(--blue-ink);
  font-weight: 900;
  font-size: .88rem;
}

.store-info dd {
  margin: 2px 0 0;
  color: #4e5875;
}

.store-info a {
  color: var(--blue-deep);
  font-weight: 900;
  text-decoration: none;
}

.store-actions {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.steps-section {
  background: linear-gradient(180deg, #fff 0%, #f5f8ff 100%);
}

.steps-list {
  list-style: none;
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
}

.steps-list li {
  position: relative;
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 14px 36px rgba(16, 28, 74, 0.08);
}

.step-number {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border-radius: 14px;
  background: var(--blue-deep);
  color: var(--white);
  font-weight: 900;
}

.steps-list p {
  color: var(--muted);
}

.seo-section {
  padding-block: 20px 54px;
}

.seo-card {
  display: grid;
  gap: 16px;
  padding: 26px;
  border-radius: var(--radius-lg);
  background: var(--blue-ink);
  color: var(--white);
}

.seo-card h2,
.seo-card .eyebrow {
  color: var(--white);
}

.seo-card p {
  margin: 0;
  color: rgba(255, 255, 255, .82);
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 8px 22px rgba(16, 28, 74, .06);
  overflow: hidden;
}

summary {
  cursor: pointer;
  padding: 18px;
  color: var(--blue-ink);
  font-weight: 900;
}

details p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--muted);
}

.final-cta-card {
  display: grid;
  gap: 14px;
  padding: 28px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at right bottom, rgba(255, 229, 111, .5), transparent 35%),
    linear-gradient(135deg, var(--blue-deep), var(--purple));
  color: var(--white);
  text-align: center;
}

.final-cta-card h2 {
  color: var(--white);
  margin-bottom: 0;
}

.final-cta-card p {
  margin: 0;
  color: rgba(255, 255, 255, .82);
}

.final-cta-card .btn {
  justify-self: center;
}

.site-footer {
  padding-block: 34px 86px;
  color: rgba(255,255,255,.84);
  background: var(--blue-ink);
}

.footer-grid {
  display: grid;
  gap: 22px;
}

.footer-grid img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 18px;
}

.footer-grid p,
.footer-grid span,
.footer-grid a {
  display: block;
  margin: 6px 0 0;
}

.footer-grid strong {
  color: var(--white);
}

.footer-grid a {
  color: var(--cyan);
  text-decoration: none;
  font-weight: 800;
}

.mobile-whatsapp {
  position: fixed;
  z-index: 30;
  left: 16px;
  right: 16px;
  bottom: 14px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  border-radius: 999px;
  background: var(--green);
  color: var(--white);
  text-decoration: none;
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(17, 184, 137, .32);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes bubble {
  0%, 100% { transform: translateY(0) scale(1); opacity: .7; }
  50% { transform: translateY(-18px) scale(1.06); opacity: 1; }
}

@media (min-width: 640px) {
  .hero-actions,
  .store-actions {
    display: flex;
    flex-wrap: wrap;
  }

  .hero-actions .btn {
    min-width: 190px;
  }

  .store-photo img {
    height: 280px;
  }
  
  .mascot {
    width: min(32vw, 430px);
    max-height: 520px;
  }

  .hero-visual {
    min-height: 520px;
  }
}

@media (min-width: 820px) {
  .nav {
    display: flex;
  }

  .hero-grid {
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    padding-block: 68px 58px;
  }

  .hero-visual {
    min-height: 500px;
  }

  .mascot {
    width: min(38vw, 430px);
  }

  .store-card {
    grid-template-columns: .9fr 1.1fr;
  }

  .store-photo {
    border-right: 1px solid var(--border);
    border-bottom: 0;
  }

  .store-photo img {
    height: 100%;
    min-height: 410px;
  }

  .steps-list {
    grid-template-columns: repeat(4, 1fr);
  }

  .seo-card {
    grid-template-columns: .9fr 1.1fr;
    align-items: center;
    padding: 38px;
  }

  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
    align-items: start;
  }

  .mobile-whatsapp {
    display: none;
  }

  .site-footer {
    padding-bottom: 36px;
  }
}

@media (max-width: 420px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .header-cta {
    font-size: .88rem;
    padding-inline: 13px;
  }

  .hero-grid {
    padding-top: 32px;
  }

  .store-content {
    padding: 18px;
  }

  .btn {
    width: 100%;
  }

  .hero-visual {
    min-height: 235px;
  }

  .mascot {
    width: min(58vw, 220px);
    max-height: 285px;
  }
}