:root {
  --ink: #111317;
  --text: #343a40;
  --muted: #6f777d;
  --line: #e7ecef;
  --soft: #f7fafb;
  --cyan: #a8e8ee;
  --cyan-strong: #42bfc9;
  --cyan-dark: #126d76;
  --champagne: #c8aa74;
  --white: #fff;
  --max: 1180px;
  --radius: 18px;
  --shadow: 0 22px 70px rgba(12, 34, 40, .08);
}

* { 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(--ink);
  background: var(--white);
  line-height: 1.6;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p { margin: 0; color: var(--text); }
h1, h2, h3, h4 { margin: 0; line-height: 1.08; letter-spacing: 0; }
h1 { font-size: clamp(42px, 6vw, 78px); font-weight: 720; }
h2 { font-size: clamp(30px, 4vw, 52px); font-weight: 700; }
h3 { font-size: 22px; font-weight: 680; }

.wrap { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; }
.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--ink);
  color: #fff;
}
.skip-link:focus { left: 12px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(231, 236, 239, .9);
}
.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 780;
  font-size: 23px;
}
.brand-logo {
  width: 148px;
  height: auto;
  max-height: 48px;
  object-fit: contain;
}
.brand-mark {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 6px rgba(168, 232, 238, .26);
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #24282c;
  font-size: 14px;
  font-weight: 560;
}
.nav-menu a:hover, .nav-menu a[aria-current="page"] { color: var(--cyan-dark); }
.menu-toggle { display: none; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #fff;
  font-weight: 680;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 12px 32px rgba(17, 19, 23, .12); }
.btn.secondary { background: #fff; color: var(--ink); border-color: var(--line); }
.btn.cyan { background: var(--cyan-dark); border-color: var(--cyan-dark); }
.btn.small { min-height: 38px; padding: 0 16px; font-size: 14px; }

.hero {
  padding: 96px 0 78px;
  background: linear-gradient(180deg, #fff 0%, #f8fbfc 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: clamp(38px, 7vw, 96px);
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  margin-bottom: 24px;
  padding-left: 14px;
  border-left: 3px solid var(--cyan-strong);
  color: var(--cyan-dark);
  font-size: 13px;
  font-weight: 720;
  text-transform: uppercase;
}
.hero p {
  max-width: 680px;
  margin-top: 24px;
  font-size: clamp(18px, 2vw, 22px);
}
.actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.notice {
  margin-top: 30px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-left: 3px solid var(--champagne);
  background: #fff;
  color: var(--text);
}

.visual-panel {
  min-height: 470px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 30% 24%, rgba(168, 232, 238, .64), transparent 24%),
    linear-gradient(145deg, #fff, #f5fafb 56%, #eef8f9);
  position: relative;
  overflow: hidden;
}
.media-panel {
  background: #fff;
}
.media-panel video,
.media-panel img,
.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.media-panel video {
  position: absolute;
  inset: 0;
}
.media-panel::before,
.media-panel::after {
  display: none;
}
.image-card {
  min-height: 360px;
  overflow: hidden;
  padding: 0;
}
.image-card img {
  aspect-ratio: 4 / 5;
}
.product-media {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--soft);
  margin-bottom: 18px;
  padding: 14px;
}
.visual-panel::before {
  content: "";
  position: absolute;
  inset: 58px;
  border: 1px solid rgba(17, 19, 23, .08);
}
.visual-panel::after {
  content: "MAGIKUP";
  position: absolute;
  left: 38px;
  bottom: 34px;
  color: rgba(17, 19, 23, .2);
  letter-spacing: .18em;
  font-weight: 780;
}
.placeholder-note {
  position: absolute;
  right: 28px;
  top: 28px;
  max-width: 210px;
  color: var(--muted);
  font-size: 13px;
}

section { padding: 88px 0; }
.section-head {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 34px;
  align-items: end;
  margin-bottom: 38px;
}
.section-head p { font-size: 18px; }
.grid { display: grid; gap: 18px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.card {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
}
.card p { margin-top: 12px; color: var(--text); }
.card .btn { margin-top: 22px; }
.icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--soft);
  border: 1px solid var(--line);
  color: var(--cyan-dark);
  margin-bottom: 22px;
  font-weight: 780;
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: center;
}
.soft-section { background: var(--soft); }
.dark-section { background: var(--ink); color: #fff; }
.dark-section p, .dark-section .muted { color: #c9d0d3; }
.dark-section .card { background: #181b20; border-color: rgba(255,255,255,.1); }
.muted { color: var(--muted); }

.steps {
  counter-reset: step;
}
.step {
  position: relative;
  padding-top: 58px;
}
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: 0;
  left: 0;
  color: var(--cyan-dark);
  font-weight: 780;
}

.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}
.faq-item summary {
  cursor: pointer;
  font-size: 19px;
  font-weight: 680;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item p { margin-top: 12px; max-width: 820px; }

.breadcrumbs {
  padding: 22px 0 0;
  color: var(--muted);
  font-size: 14px;
}
.page-hero {
  padding: 66px 0 70px;
  border-bottom: 1px solid var(--line);
}
.page-hero p { max-width: 820px; margin-top: 22px; font-size: 20px; }

.catalog-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}
.filter-btn {
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
}
.filter-btn.active { background: var(--ink); color: #fff; border-color: var(--ink); }
.product-card [data-field] { color: var(--muted); font-size: 14px; }

.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}
.contact-list a, .contact-list span {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}
.form {
  display: grid;
  gap: 14px;
}
.form label { display: grid; gap: 7px; font-weight: 650; color: var(--ink); }
.form input, .form textarea, .form select {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 12px;
  font: inherit;
}
.form textarea { min-height: 120px; resize: vertical; }
.form .inline { display: flex; align-items: flex-start; gap: 10px; font-weight: 500; }
.form .inline input { width: auto; min-height: auto; margin-top: 6px; }
.form-status { min-height: 24px; color: var(--cyan-dark); font-weight: 650; }

.cta-band {
  padding: 58px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}

.site-footer {
  padding: 58px 0 34px;
  background: #0f1115;
  color: #fff;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr .8fr .8fr 1fr;
  gap: 28px;
}
.site-footer p, .site-footer a, .site-footer li { color: #cfd5d8; }
.site-footer ul { list-style: none; padding: 0; margin: 16px 0 0; display: grid; gap: 8px; }
.legal-note {
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: 13px;
}

.wa-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--cyan-dark);
  color: #fff;
  box-shadow: 0 16px 38px rgba(18, 109, 118, .28);
  font-weight: 760;
}
.wa-float svg { width: 20px; height: 20px; fill: currentColor; }
.mobile-bottom-bar { display: none; }

.reveal { opacity: 0; transform: translateY(16px); transition: opacity .5s ease, transform .5s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* INSERTAR AQUI GOOGLE TAG MANAGER */
/* INSERTAR AQUI GOOGLE ANALYTICS 4 */
/* INSERTAR AQUI META PIXEL */
