:root {
  --pink: #f51d72;
  --pink-dark: #d90f5d;
  --pink-pale: #fff0f5;
  --ink: #151316;
  --muted: #6b6469;
  --line: #e9e4e7;
  --paper: #ffffff;
  --soft: #f8f6f7;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 12px max(24px, calc((100vw - var(--max)) / 2));
  background: rgba(255,255,255,.94);
  border-bottom: 1px solid rgba(233,228,231,.9);
  backdrop-filter: blur(14px);
}
.brand img { width: 176px; height: 44px; object-fit: contain; object-position: left center; }
nav { display: flex; align-items: center; gap: 28px; }
nav a { text-decoration: none; font-size: .92rem; font-weight: 650; }
nav a:not(.nav-buy):hover { color: var(--pink); }
.nav-buy { padding: 10px 17px; color: white; background: var(--ink); border-radius: 999px; }
.menu-toggle { display: none; border: 0; background: transparent; font: inherit; font-weight: 700; }

.hero {
  max-width: var(--max);
  min-height: 690px;
  margin: auto;
  padding: 76px 24px 72px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
  overflow: hidden;
}
.eyebrow { margin: 0 0 14px; color: var(--pink); font-size: .78rem; font-weight: 850; letter-spacing: .16em; text-transform: uppercase; }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { letter-spacing: -.045em; line-height: 1.03; }
h1 { margin-bottom: 24px; font-size: clamp(3rem, 6.2vw, 5.8rem); font-weight: 900; }
h1 span { color: var(--pink); }
.lead { max-width: 560px; margin-bottom: 30px; color: var(--muted); font-size: clamp(1.06rem, 2vw, 1.25rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button { display: inline-flex; justify-content: center; align-items: center; min-height: 50px; padding: 12px 22px; border: 1px solid var(--ink); border-radius: 999px; text-decoration: none; font-weight: 800; transition: transform .2s, background .2s; }
.button:hover { transform: translateY(-2px); }
.button.primary { color: white; background: var(--ink); }
.button.secondary { background: white; }
.quick-facts { display: flex; gap: 22px; margin-top: 42px; color: var(--muted); font-size: .82rem; }
.quick-facts span { padding-right: 22px; border-right: 1px solid var(--line); }
.quick-facts span:last-child { border: 0; padding: 0; }
.quick-facts strong { display: block; color: var(--ink); font-size: 1.4rem; line-height: 1.1; }
.hero-visual {
  position: relative;
  min-width: 0;
  padding: 18px;
  overflow: hidden;
  background: white;
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 28px 60px rgba(37,14,24,.12);
}
.hero-visual img { position: relative; z-index: 2; width: 100%; aspect-ratio: 1 / 1; object-fit: contain; object-position: center; border-radius: 18px; }
.pink-disc { display: none; }

.statement { padding: 86px 24px; color: white; text-align: center; background: var(--ink); }
.statement p { margin-bottom: 12px; color: #f5a8c7; font-weight: 700; }
.statement h2 { max-width: 880px; margin: auto; font-size: clamp(2.2rem, 5vw, 4.6rem); }

.product, .inside, .manuals, .faq { max-width: var(--max); margin: auto; padding: 110px 24px; }
.section-heading { max-width: 690px; margin-bottom: 48px; }
.section-heading.centered { margin-left: auto; margin-right: auto; text-align: center; }
h2 { margin-bottom: 22px; font-size: clamp(2.35rem, 5vw, 4.25rem); font-weight: 900; }
.section-heading > p:last-child { color: var(--muted); font-size: 1.08rem; }
.product-grid { display: grid; grid-template-columns: 1.2fr .8fr; grid-template-rows: auto auto; gap: 20px; }
.feature-card { position: relative; overflow: hidden; background: var(--soft); border-radius: 24px; }
.feature-card.large { grid-row: 1 / 3; }
.feature-card img { width: 100%; height: 100%; min-height: 330px; object-fit: cover; }
.feature-card > div:not(.card-number) { position: absolute; inset: auto 18px 18px; padding: 18px; background: rgba(255,255,255,.92); border-radius: 16px; backdrop-filter: blur(8px); }
.feature-card span, .card-number { color: var(--pink); font-size: .75rem; font-weight: 900; }
.feature-card h3 { margin: 3px 0 4px; font-size: 1.4rem; line-height: 1.15; }
.feature-card p { margin: 0; color: var(--muted); font-size: .92rem; }
.feature-card.caption-below { display: flex; flex-direction: column; }
.feature-card.caption-below img { height: auto; min-height: 0; aspect-ratio: 1 / 1; object-fit: cover; }
.feature-card.large.caption-below img { min-height: 0; object-fit: contain; background: white; }
.feature-card.caption-below > div:not(.card-number) {
  position: static;
  inset: auto;
  flex: 1;
  margin: 0;
  padding: 22px 24px 24px;
  background: white;
  border: 1px solid var(--line);
  border-top: 0;
  border-radius: 0 0 20px 20px;
  backdrop-filter: none;
}
.feature-card.dark { min-height: 250px; padding: 34px; color: white; background: var(--ink); }
.feature-card.dark h3 { margin-top: 24px; font-size: 2rem; }
.feature-card.dark p { color: #cfc7cc; }
.feature-card.dark a { position: absolute; bottom: 30px; text-decoration: none; color: #ff8db8; font-weight: 800; }

.split-section { display: grid; grid-template-columns: 1fr 1fr; min-height: 650px; background: var(--pink-pale); }
.split-image img { width: 100%; height: 100%; object-fit: cover; }
.split-copy { align-self: center; max-width: 590px; padding: 84px clamp(32px, 7vw, 100px); }
.split-copy > p:not(.eyebrow) { color: var(--muted); }
.check-list { margin: 30px 0 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding: 14px 0 14px 34px; border-bottom: 1px solid #ead5dd; font-weight: 700; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--pink); font-weight: 900; }

.inside-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.inside-grid article { padding-bottom: 24px; border-bottom: 3px solid var(--pink); }
.inside-grid img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; border-radius: 20px; }
.inside-grid h3 { margin: 22px 0 7px; font-size: 1.3rem; }
.inside-grid p { margin: 0; color: var(--muted); }
.included-line { margin: 34px auto 0; padding: 18px 24px; max-width: 780px; text-align: center; background: var(--pink-pale); border-radius: 14px; font-weight: 700; }

.howto { display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: 66px; padding: 100px max(24px, calc((100vw - var(--max)) / 2)); background: var(--soft); }
.howto img { border-radius: 24px; }
.howto-copy > p:not(.eyebrow) { color: var(--muted); }
.howto .safety { margin-top: 28px; padding-left: 18px; border-left: 3px solid var(--pink); font-size: .88rem; }

.video-guide {
  max-width: var(--max);
  margin: 0 auto;
  padding: 100px 24px;
  display: grid;
  grid-template-columns: 1fr 300px;
  align-items: center;
  gap: 80px;
}
.video-guide-copy { max-width: 690px; }
.video-guide-copy > p:not(.eyebrow) { max-width: 650px; color: var(--muted); font-size: 1.08rem; }
.qr-card {
  padding: 22px 22px 18px;
  text-align: center;
  text-decoration: none;
  background: white;
  border: 2px solid var(--pink);
  border-radius: 24px;
  box-shadow: 0 20px 45px rgba(57, 20, 35, .12);
}
.qr-card img { width: 100%; border-radius: 10px; }
.qr-card span { display: block; margin-top: 10px; font-weight: 850; }

.manuals { border-top: 1px solid var(--line); }
.manual-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.manual-card { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 18px; min-height: 104px; padding: 20px; color: var(--ink); text-decoration: none; background: var(--soft); border: 1px solid var(--line); border-radius: 18px; transition: transform .2s, border-color .2s; }
.manual-card:hover { transform: translateY(-2px); border-color: var(--pink); }
.manual-card.featured { background: var(--pink-pale); border-color: #f8a9c6; }
.language-code { display: grid; place-items: center; width: 48px; height: 48px; color: white; background: var(--ink); border-radius: 50%; font-weight: 900; }
.manual-card.featured .language-code { background: var(--pink); }
.manual-card strong, .manual-card small { display: block; }
.manual-card small { margin-top: 3px; color: var(--muted); }
.faq-list a { color: var(--pink-dark); font-weight: 750; }

.faq { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; }
.faq-list { border-top: 1px solid var(--line); }
details { padding: 22px 0; border-bottom: 1px solid var(--line); }
summary { cursor: pointer; list-style: none; padding-right: 40px; font-weight: 800; position: relative; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; position: absolute; right: 4px; top: -5px; color: var(--pink); font-size: 1.6rem; }
details[open] summary::after { content: "−"; }
details p { margin: 14px 44px 0 0; color: var(--muted); }

.final-cta { padding: 100px 24px; text-align: center; color: var(--ink); background: #f486b0; }
.final-cta .eyebrow { color: var(--ink); opacity: .72; }
.final-cta h2 { margin-bottom: 12px; }
.final-cta p:not(.eyebrow) { margin-bottom: 28px; font-size: 1.15rem; }
.button.light { color: var(--ink); background: white; border-color: white; }

footer { padding: 52px max(24px, calc((100vw - var(--max)) / 2)); color: #aaa1a7; background: var(--ink); }
footer img { width: 160px; margin-bottom: 16px; filter: invert(1); }
footer p { margin-bottom: 24px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 22px; padding: 22px 0; border-top: 1px solid #342f32; border-bottom: 1px solid #342f32; }
.footer-links a { color: white; text-decoration: none; }
.whatsapp-link { display: inline-flex; align-items: center; gap: 8px; }
.whatsapp-link svg { width: 22px; height: 22px; fill: #25d366; flex: 0 0 auto; }
footer small { display: block; margin-top: 22px; }

.legal-page { background: var(--soft); }
.legal-header { position: static; }
.back-link { color: var(--ink); text-decoration: none; font-weight: 750; }
.legal-content { max-width: 860px; margin: 0 auto; padding: 80px 24px 100px; background: white; }
.legal-content h1 { margin-bottom: 8px; font-size: clamp(2.8rem, 8vw, 5rem); }
.legal-content h2 { margin: 48px 0 14px; font-size: 1.55rem; letter-spacing: -.02em; }
.legal-content p, .legal-content li { color: #4f494d; }
.legal-content a { color: var(--pink-dark); }
.legal-updated { margin-bottom: 52px; color: var(--muted) !important; }
.legal-footer { display: flex; justify-content: space-between; gap: 20px; padding-top: 28px; padding-bottom: 28px; }
.legal-footer a { color: white; font-weight: 900; text-decoration: none; }

@media (max-width: 850px) {
  .site-header { min-height: 68px; }
  .brand img { width: 150px; }
  .menu-toggle { display: block; }
  nav { display: none; position: absolute; top: 67px; left: 0; right: 0; padding: 20px 24px 28px; flex-direction: column; align-items: stretch; gap: 16px; background: white; border-bottom: 1px solid var(--line); }
  nav.open { display: flex; }
  .nav-buy { text-align: center; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 52px; gap: 44px; }
  .hero-copy { text-align: center; }
  .lead { margin-left: auto; margin-right: auto; }
  .hero-actions, .quick-facts { justify-content: center; }
  .hero-visual { max-width: 560px; margin: auto; }
  .product-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .feature-card.large { grid-row: auto; }
  .feature-card.large img { min-height: 470px; }
  .split-section { grid-template-columns: 1fr; }
  .split-image img { max-height: 620px; }
  .split-copy { max-width: none; }
  .howto { grid-template-columns: 1fr; gap: 34px; }
  .video-guide { grid-template-columns: 1fr 240px; gap: 44px; }
  .faq { grid-template-columns: 1fr; gap: 22px; }
}

@media (max-width: 620px) {
  h1 { font-size: clamp(2.75rem, 14vw, 4rem); }
  .hero { padding: 40px 18px 56px; }
  .hero-actions .button { width: 100%; }
  .quick-facts { gap: 10px; }
  .quick-facts span { padding-right: 10px; }
  .statement, .product, .inside, .manuals, .faq { padding-left: 18px; padding-right: 18px; }
  .product, .inside, .manuals, .faq { padding-top: 78px; padding-bottom: 78px; }
  .feature-card.large img { min-height: 390px; }
  .inside-grid { grid-template-columns: 1fr; gap: 34px; }
  .split-copy, .howto { padding: 70px 20px; }
  .howto { display: flex; flex-direction: column; }
  .howto-copy { order: 1; }
  .howto img { order: 2; }
  .video-guide { grid-template-columns: 1fr; padding: 76px 20px; }
  .qr-card { width: min(260px, 100%); margin: auto; }
  .manual-grid { grid-template-columns: 1fr; }
  .footer-links { flex-direction: column; gap: 12px; }
  .legal-content { padding-top: 54px; }
  .legal-footer { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .button { transition: none; }
}
