:root {
  --line: 2px solid var(--ink);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--paper);
  font-family:
    DM Sans,
    sans-serif;
  margin: 0;
}

.noise {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 180 180'%3E%3Cfilter id='a'%3E%3CfeTurbulence baseFrequency='.9' numOctaves='2' stitchTiles='stitch' type='fractalNoise'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23a)' opacity='.5'/%3E%3C/svg%3E");
  inset: 0;
  opacity: 0.055;
  pointer-events: none;
  position: fixed;
  z-index: 100;
}

.topbar {
  backdrop-filter: blur(10px);
  background: rgba(246, 241, 232, 0.93);
  border-bottom: var(--line);
  gap: 34px;
  height: 76px;
  padding: 0 clamp(20px, 4vw, 70px);
  position: sticky;
  top: 0;
  z-index: var(--layer-header);
}

.brand,
.topbar {
  align-items: center;
  display: flex;
}

.brand {
  color: inherit;
  font: 700 20px Space Grotesk;
  gap: 9px;
  text-decoration: none;
}

.nav {
  display: flex;
  gap: 24px;
  margin: auto;
}

.footer-links a,
.nav a {
  color: inherit;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.nav a:hover {
  text-decoration: underline;
  text-decoration-thickness: 2px;
}

.menu-btn {
  background: none;
  border: 0;
  display: none;
  font-size: 26px;
}

.kicker {
  font: 700 13px Space Grotesk;
  letter-spacing: 0.14em;
}

.btn,
.kicker {
  text-transform: uppercase;
}

.btn {
  align-items: center;
  border: var(--line);
  box-shadow: 5px 5px 0 var(--ink);
  color: inherit;
  display: inline-flex;
  font: 700 15px Space Grotesk;
  gap: 32px;
  justify-content: space-between;
  padding: 17px 22px;
  text-decoration: none;
  transition: 0.2s;
}

.btn:hover {
  box-shadow: 2px 2px 0 var(--ink);
  transform: translate(3px, 3px);
}

.btn-dark {
  background: var(--ink);
  color: #fff;
}

/* ticker */
.ticker {
  border: 0;
  background: linear-gradient(90deg, #8b5cf6, #ff4f9a, #ff8a4c, #ffd84d);
  color: #fff;
  padding: 13px 0;
  box-shadow: 0 8px 25px rgba(139, 92, 246, .14);
  white-space:nowrap;
}

.ticker div {
  display: inline-block;
  padding: 14px 0;
  font: 700 19px "Space Grotesk";
  letter-spacing: .08em;
  animation: ticker 24s linear infinite
}

@keyframes ticker {
  to {
    transform: translateX(-50%)
  }
}


.section {
  border-bottom: var(--line);
  padding: clamp(75px, 9vw, 140px) clamp(20px, 5vw, 80px);
}

.motive-card {
  border: var(--line);
  box-shadow: 7px 7px 0 var(--ink);
  display: flex;
  flex-direction: column;
  min-height: 320px;
  padding: 28px;
  position: relative;
  transition: 0.25s;
}

.motive-card:hover {
  box-shadow: 12px 13px 0 var(--ink);
  transform: translateY(-6px) rotate(-0.5deg);
}

.motive-card h3 {
  font: 700 clamp(32px, 4vw, 54px)/0.95 Space Grotesk;
  letter-spacing: -0.04em;
  margin: auto 0 12px;
  max-width: 650px;
}

.motive-card p {
  font-size: 16px;
  max-width: 500px;
}

.motive-card button {
  align-self: flex-start;
  background: none;
  border: 0;
  border-bottom: 2px solid;
  color: inherit;
  cursor: pointer;
  font-weight: 700;
  padding: 7px 0;
}

.btn-pink {
  background: var(--pink);
  margin-top: 25px;
}

.lacos {
  background: var(--ink);
  color: #fff;
  display: grid;
  gap: 7vw;
  grid-template-columns: 0.9fr 1.1fr;
  overflow: hidden;
}

.lacos-word {
  color: var(--pink);
  font: 700 clamp(100px, 17vw, 260px)/0.7 Space Grotesk;
  letter-spacing: -0.08em;
  transform: rotate(180deg);
  writing-mode: vertical-rl;
}

.lacos-text {
  align-self: center;
  max-width: 720px;
}

.lacos-text p {
  font-size: clamp(20px, 2.5vw, 34px);
  line-height: 1.25;
}

.lacos-text h3 {
  color: var(--yellow);
  font: 700 clamp(38px, 5vw, 70px) Space Grotesk;
}

.lacos-text a {
  color: #fff;
  font-weight: 700;
}

.lacos-doodles span {
  font-size: 70px;
  position: absolute;
}

.lacos-doodles span:first-child {
  color: var(--pink);
  right: 5%;
  top: 9%;
  transform: rotate(13deg);
}

.lacos-doodles span:nth-child(2) {
  bottom: 7%;
  color: var(--yellow);
  left: 40%;
}

.lacos-doodles span:nth-child(3) {
  bottom: 13%;
  color: var(--blue);
  right: 2%;
}

footer {
  background: var(--ink);
  color: #fff;
  display: grid;
  gap: 35px;
  grid-template-columns: 1fr 1fr;
  padding: 55px clamp(20px, 5vw, 80px);
}

.footer-brand {
  color: var(--yellow);
  font: 700 48px Space Grotesk;
}

.footer-brand span {
  color: #fff;
  font: 400 14px DM Sans;
}

.footer-links {
  gap: 20px;
}

.footer-links a {
  color: #fff;
}

footer>p {
  font-size: 20px;
}

footer small {
  border-top: 1px solid #444;
  grid-column: 1 / -1;
  opacity: 0.6;
  padding-top: 25px;
}

.toast {
  background: var(--ink);
  border: 2px solid #fff;
  bottom: 25px;
  color: #fff;
  font-weight: 700;
  left: 50%;
  padding: 13px 20px;
  position: fixed;
  transform: translate(-50%, 120px);
  transition: 0.3s;
  z-index: var(--layer-toast);
}

.toast.show {
  transform: translate(-50%);
}

@media (max-width: 900px) {
  .nav {
    display: none;
  }

  .nav.open {
    background: var(--paper);
    border-bottom: var(--line);
    display: flex;
    flex-direction: column;
    left: 0;
    padding: 25px;
    position: absolute;
    right: 0;
    top: 76px;
  }

  .menu-btn {
    display: block;
    margin-left: auto;
  }

  .lacos {
    grid-template-columns: 1fr;
  }

  .lacos-word {
    font-size: clamp(90px, 28vw, 180px);
    transform: none;
    writing-mode: horizontal-tb;
    margin-top: 30px
  }

  footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .topbar {
    height: 66px;
  }

  .section {
    padding-bottom: 75px;
    padding-top: 75px;
  }

  .footer-links {
    align-items: flex-start;
  }
}

.catalog-head {
  align-items: end;
  display: grid;
  gap: 7vw;
  grid-template-columns: 1.15fr 0.85fr;
}

.catalog-head h2 {
  font: 700 clamp(52px, 7vw, 94px)/0.9 Space Grotesk;
  letter-spacing: -0.06em;
  margin: 18px 0;
}

.catalog-head h2 span {
  font-family: Georgia, serif;
  font-weight: 400;
}

.catalog-intro {
  font-size: 19px;
  max-width: 610px;
}

.category-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 48px 0 30px;
}

.active-filter button,
.category-chips button {
  background: var(--paper);
  border: 2px solid var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
  cursor: pointer;
  font-weight: 700;
  padding: 10px 14px;
}

.category-chips button.active {
  background: var(--pink);
  box-shadow: 1px 1px 0 var(--ink);
  transform: translate(2px, 2px);
}

.active-filter {
  align-items: center;
  background: var(--blue);
  border: 2px solid var(--ink);
  display: flex;
  font-weight: 700;
  gap: 12px;
  justify-content: space-between;
  margin: -5px 0 30px;
  padding: 12px 15px;
}

.active-filter[hidden] {
  display: none;
}

.active-filter button {
  box-shadow: none;
  padding: 6px 10px;
}

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

.product-card {
  background: var(--paper);
  border: 2px solid var(--ink);
  box-shadow: 5px 5px 0 var(--ink);
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  position: relative;
  transition: 0.2s;
}

.product-card:hover {
  box-shadow: 9px 10px 0 var(--ink);
  transform: translateY(-5px) rotate(-0.3deg);
}

.product-card-image {
  aspect-ratio: 1;
  background: #eee;
  border-bottom: 2px solid var(--ink);
  cursor: pointer;
  overflow: hidden;
  position: relative;
}

.product-card-image img {
  display: block;
  height: 100%;
  object-fit: cover;
  transition: 0.35s;
  width: 100%;
}

.product-card:hover .product-card-image img {
  transform: scale(1.035);
}

.product-card-badge {
  background: var(--yellow);
  border: 2px solid var(--ink);
  font: 700 10px Space Grotesk;
  left: 10px;
  padding: 5px 8px;
  position: absolute;
  text-transform: uppercase;
  top: 10px;
}

.product-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 17px;
}

.product-card-code {
  font: 700 10px Space Grotesk;
  letter-spacing: 0.08em;
  opacity: 0.55;
}

.product-card h3 {
  font: 700 19px/1.08 Space Grotesk;
  letter-spacing: -0.025em;
  margin: 8px 0 18px;
}

.product-card-footer {
  align-items: end;
  display: flex;
  gap: 12px;
  justify-content: space-between;
  margin-top: auto;
}

.product-price {
  font: 700 19px Space Grotesk;
}

.product-price.consult {
  font-size: 12px;
  max-width: 100px;
  text-transform: uppercase;
}

.catalog-more {
  margin-top: 48px;
  text-align: center;
}

.catalog-more .btn {
  margin: auto;
}

.empty-products {
  background: var(--yellow);
  border: 3px dashed var(--ink);
  grid-column: 1 / -1;
  padding: 60px 25px;
  text-align: center;
}

.empty-products h3 {
  font: 700 35px Space Grotesk;
  margin: 0 0 8px;
}

@media (max-width: 1200px) {
  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .catalog-head {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 600px) {
  .product-grid {
    gap: 12px;
    grid-template-columns: 1fr 1fr;
  }

  .product-card-body {
    padding: 12px;
  }

  .product-card h3 {
    font-size: 15px;
  }

  .product-price {
    font-size: 16px;
  }

  .product-card-footer {
    display: block;
  }

  .category-chips {
    flex-wrap: nowrap;
    margin-right: -20px;
    overflow-x: auto;
    padding-bottom: 7px;
  }

  .category-chips button {
    white-space: nowrap;
  }
}

.brand-logo {
  display: block;
  height: 50px;
  max-width: 180px;
  object-fit: contain;
  width: auto;
}

@media (max-width: 900px) {
  .brand-logo {
    height: 42px;
    max-width: 145px;
  }
}

@keyframes soundPulse {
  70% {
    box-shadow: 0 0 0 9px rgba(29, 157, 85, 0);
  }
}

@keyframes wakeIn {
  0% {
    opacity: 0;
    transform: translateY(35px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.conversation {
  align-items: center;
  background: var(--blue);
  display: grid;
  gap: 8vw;
  grid-template-columns: 1fr 1fr;
}

.conversation-chaos {
  background: repeating-linear-gradient(45deg, #fff 0 17px, #f4f4f4 17px 34px);
  border: 3px solid var(--ink);
  box-shadow: 10px 10px 0 var(--ink);
  min-height: 560px;
  overflow: hidden;
  position: relative;
}

.chat-sticker {
  background: var(--yellow);
  font-weight: 700;
  left: 40px;
  padding: 9px 12px;
  top: 30px;
  transform: rotate(-6deg);
}

.chat-bubble,
.chat-sticker {
  border: 2px solid var(--ink);
  position: absolute;
}

.chat-bubble {
  box-shadow: 5px 5px 0 var(--ink);
  font: 700 18px/1.25 Space Grotesk;
  max-width: 70%;
  padding: 17px 19px;
}

.bubble-1 {
  background: #fff;
  left: 35px;
  top: 120px;
  transform: rotate(-2deg);
}

.bubble-2 {
  background: var(--pink);
  right: 35px;
  top: 245px;
  transform: rotate(2deg);
}

.bubble-3 {
  background: var(--yellow);
  bottom: 65px;
  left: 60px;
  transform: rotate(-1deg);
}

.conversation-copy h2 {
  font: 700 clamp(58px, 7.5vw, 105px)/0.8 Space Grotesk;
  letter-spacing: -0.065em;
  margin: 20px 0;
}

.conversation-copy h3 {
  font: 700 clamp(30px, 4vw, 52px) Space Grotesk;
  margin: 0 0 20px;
}

.conversation-copy>p {
  font-size: 19px;
  max-width: 590px;
}

.talk-options {
  display: grid;
  gap: 8px;
  grid-template-columns: 1fr 1fr;
  margin-top: 24px;
}

.talk-options[hidden] {
  display: none;
}

.talk-options button {
  background: #fff;
  border: 2px solid var(--ink);
  cursor: pointer;
  font-weight: 700;
  padding: 12px;
  text-align: left;
}

.talk-options button:hover {
  background: var(--yellow);
}

.lacos {
  position: relative;
}

.lacos:after {
  bottom: 35px;
  content: "não é sobre guardar coisas. é sobre guardar o que elas lembram.";
  font-family: Georgia, serif;
  font-style: italic;
  max-width: 280px;
  position: absolute;
  right: 5vw;
  transform: rotate(-4deg);
}

@media (max-width: 900px) {
  .conversation {
    grid-template-columns: 1fr;
  }

  .conversation-chaos {
    min-height: 460px;
  }
}

@media (max-width: 600px) {
  .conversation-chaos {
    min-height: 390px;
  }

  .chat-bubble {
    font-size: 14px;
  }

  .bubble-1 {
    top: 95px;
  }

  .bubble-2 {
    top: 195px;
  }

  .bubble-3 {
    bottom: 45px;
    left: 30px;
  }

  .talk-options {
    grid-template-columns: 1fr;
  }

  .lacos:after {
    display: none;
  }
}

:root {
  --ink: var(--color-ink, #17141f);
  --paper: var(--color-surface, #fffaf5);
  --white: var(--color-white, #fff);
  --yellow: var(--color-yellow, #ffd84d);
  --pink: var(--color-pink, #ff4f9a);
  --site: var(--color-sites, #b55cfa);
  --blue: var(--color-blue, #55c8ff);
  --purple: var(--color-purple, #6d3ee8);
  --mint: var(--color-mint, #64dfc4);
  --orange: var(--color-orange, #ff8a4c);
  --soft-purple: var(--color-soft-purple, #eee7ff);
  --soft-pink: var(--color-soft-pink, #ffe5f0);
  --soft-blue: var(--color-soft-blue, #e6f7ff);
  --soft-yellow: var(--color-soft-yellow, #fff5c8);
  --line: 1.5px solid rgba(23, 20, 31, 0.16);
  --radius-sm: var(--radius-small, 16px);
  --radius: var(--radius-medium, 26px);
  --radius-lg: var(--radius-large, 40px);
  --shadow: var(--shadow-card, 0 18px 50px rgba(41, 28, 62, 0.1));
  --shadow-hover: var(--shadow-card-hover, 0 26px 70px rgba(41, 28, 62, 0.16));
}

body {
  background:
    radial-gradient(circle at 7% 9%,
      rgba(255, 216, 77, 0.38),
      transparent 23rem),
    radial-gradient(circle at 92% 14%,
      rgba(139, 92, 246, 0.18),
      transparent 27rem),
    radial-gradient(circle at 76% 63%,
      rgba(85, 200, 255, 0.13),
      transparent 30rem),
    var(--paper);
  color: var(--ink);
}

.noise {
  opacity: 0.025;
}

::selection {
  background: var(--pink);
  color: #fff;
}

.section {
  position: relative;
}

.section:not(.hero) {
  padding-bottom: clamp(70px, 8vw, 120px);
  padding-top: clamp(70px, 8vw, 120px);
}

.kicker {
  letter-spacing: 0.11em;
}

.topbar {
  backdrop-filter: blur(18px) saturate(1.35);
  -webkit-backdrop-filter: blur(18px) saturate(1.35);
  background: hsla(0, 0%, 100%, 0.76);
  border: 1px solid rgba(23, 20, 31, 0.1);
  border-radius: 24px;
  box-shadow: 0 10px 35px rgba(31, 20, 50, 0.08);
  height: 82px;
  margin: 12px clamp(12px, 2vw, 28px) 0;
  padding: 0 clamp(16px, 3vw, 34px);
  top: 12px;
}

.brand-logo {
  max-height: 53px;
}

.nav {
  background: rgba(245, 240, 255, 0.7);
  border: 1px solid rgba(139, 92, 246, 0.09);
  border-radius: 999px;
  gap: 7px;
  padding: 6px;
}

body#impel-site .nav a {
  border-radius: 999px;
  padding: 9px 13px;
  text-decoration: none;
  transition: 0.2s ease;
}

.nav a:hover {
  background: #fff;
  box-shadow: 0 5px 18px rgba(66, 39, 110, 0.08);
  color: #6d3ee8;
}

.btn {
  border: 1px solid rgba(23, 20, 31, 0.12);
  border-radius: 999px;
  box-shadow: 0 9px 24px rgba(31, 20, 50, 0.1);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    filter 0.22s ease;
}

.btn:hover {
  box-shadow: 0 15px 32px rgba(31, 20, 50, 0.15);
  transform: translateY(-3px);
}

.btn-dark {
  background: linear-gradient(135deg, #17141f, #332744);
}

.btn-pink {
  background: linear-gradient(135deg, #ff4f9a, #ff786d);
  color: #fff;
}

.catalog-head h2,
.conversation-copy h2 {
  letter-spacing: -0.055em;
}

body#impel-site .motive-card {
  border: 1px solid rgba(23, 20, 31, 0.1);
  border-radius: 28px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transform: none;
  transition: 0.25s ease;
}

body#impel-site .motive-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-7px);
}

.catalog {
  background: linear-gradient(180deg, #fff, #fffaf5);
}

body#impel-site .category-chips button {
  background: #fff;
  border: 1px solid rgba(23, 20, 31, 0.12);
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(30, 20, 44, 0.05);
}

body#impel-site .category-chips button.active,
body#impel-site .category-chips button:hover {
  background: var(--ink);
  color: #fff;
}

body#impel-site .product-grid {
  gap: 20px;
}

body#impel-site .product-card {
  background: #fff;
  border: 1px solid rgba(23, 20, 31, 0.08);
  border-radius: 28px;
  box-shadow: 0 13px 36px rgba(38, 24, 54, 0.08);
  overflow: hidden;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

body#impel-site .product-card:hover {
  box-shadow: 0 24px 55px rgba(38, 24, 54, 0.15);
  transform: translateY(-8px);
}

body#impel-site .product-card-image {
  border: 0;
  overflow: hidden;
}

.product-card-image img {
  transition: transform 0.45s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.product-card:hover .product-card-image img {
  transform: scale(1.045);
}

body#impel-site .product-card-badge {
  backdrop-filter: blur(9px);
  background: hsla(0, 0%, 100%, 0.88);
  border: 0;
  border-radius: 999px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

@keyframes snakeRecordFlash {
  0% {
    opacity: 0;
    transform: translate(-50%, -10px) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translate(-50%) scale(1);
  }
}

body#impel-site .conversation {
  background: var(--blue);
}

body#impel-site .chat-bubble {
  border: 1px solid rgba(23, 20, 31, 0.1);
  border-radius: 22px;
  box-shadow: 0 14px 34px rgba(32, 21, 48, 0.08);
}

body#impel-site .chat-bubble:nth-child(2) {
  background: linear-gradient(135deg, #8b5cf6, #ff4f9a);
  color: #fff;
}

body#impel-site .chat-sticker {
  border: 0;
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

body#impel-site .talk-options button {
  background: #fff;
  border: 1px solid rgba(23, 20, 31, 0.1);
  border-radius: 16px;
  transition: 0.18s ease;
}

body#impel-site .talk-options button:hover {
  background: var(--soft-purple);
  transform: translateX(4px);
}

body#impel-site .lacos {
  background: linear-gradient(145deg, #1a1423, #241832);
}

body#impel-site footer {
  background:
    radial-gradient(circle at 10% 20%,
      rgba(139, 92, 246, 0.25),
      transparent 24rem),
    radial-gradient(circle at 90% 30%,
      rgba(255, 79, 154, 0.2),
      transparent 25rem),
    #0d0a12;
  border: 0;
}

.footer-links a {
  background: hsla(0, 0%, 100%, 0.06);
  border-radius: 999px;
  padding: 8px 12px;
  transition: 0.2s ease;
}

.footer-links a:hover {
  background: hsla(0, 0%, 100%, 0.13);
}

@media (max-width: 900px) {
  .topbar {
    border-radius: 19px;
    height: 70px;
    margin: 8px 9px 0;
  }

  body#impel-site .nav {
    background: hsla(0, 0%, 100%, 0.97);
    border-radius: 22px;
    box-shadow: 0 24px 60px rgba(25, 15, 39, 0.18);
    padding: 12px;
  }
}

@media (max-width: 600px) {
  :root {
    --radius: var(--radius-medium);
  }

  .section:not(.hero) {
    padding-bottom: 62px;
    padding-top: 10px;
  }

  body#impel-site .product-card {
    border-radius: 22px;
  }
}

.section {
  border-bottom: 0;
}

.active-filter {
  background: linear-gradient(135deg, #e5f7ff, #e7fff8);
  border: 0;
  border-radius: 18px;
  box-shadow: 0 8px 22px rgba(35, 22, 51, 0.06);
}

.active-filter button {
  background: #fff;
  border: 0;
  border-radius: 999px;
}

.empty-products {
  background: linear-gradient(145deg, #fff7cc, #fffdf2);
  border: 1px dashed rgba(23, 20, 31, 0.2);
  border-radius: 26px;
}

.conversation-chaos {
  background:
    linear-gradient(hsla(0, 0%, 100%, 0.88), hsla(0, 0%, 100%, 0.88)),
    repeating-linear-gradient(45deg, #fff 0 17px, #f4f4f4 17px 34px);
  border: 1px solid rgba(23, 20, 31, 0.1);
  border-radius: 30px;
  box-shadow: 0 22px 55px rgba(33, 21, 49, 0.12);
}

.catalog-head {
  min-width: 0;
}

.motive-card {
  cursor: pointer;
}

.motive-card:focus-visible {
  outline: 3px solid var(--purple);
  outline-offset: 5px;
}

.motive-card button {
  pointer-events: auto;
}

.footer-brand {
  align-items: flex-start;
  color: #fff;
  display: flex;
  flex-direction: column;
  font: 700 clamp(40px, 5vw, 62px)/0.82 Space Grotesk;
  letter-spacing: -0.065em;
  margin: 0;
  max-width: 100%;
  width: max-content;
}

.footer-brand:first-line {
  color: #fff;
}

.footer-brand span {
  color: var(--yellow);
  display: block;
  font: 700 12px/1 DM Sans;
  letter-spacing: 0.22em;
  margin-top: 10px;
  text-transform: uppercase;
}

.footer-links {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-links a {
  align-items: center;
  display: inline-flex;
  min-height: 40px;
  text-decoration: none;
}

.footer-links a:hover {
  transform: translateY(-2px);
}

html {
  scroll-padding-top: 110px;
}

#catalogo,
#conversa,
#lacos,
header[id],
section[id] {
  scroll-margin-top: 110px;
}

@media (max-width: 900px) {
  html {
    scroll-padding-top: 92px;
  }

  #catalogo,
  #conversa,
  #lacos,
  header[id],
  section[id] {
    scroll-margin-top: 92px;
  }
}

.mobile-quick-nav {
  display: none;
}

@media (max-width: 900px) {
  .mobile-quick-nav {
    backdrop-filter: blur(16px) saturate(1.3);
    -webkit-backdrop-filter: blur(16px) saturate(1.3);
    background: hsla(0, 0%, 100%, 0.88);
    border: 1px solid rgba(23, 20, 31, 0.1);
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(31, 20, 50, 0.1);
    display: grid;
    gap: 7px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 8px 9px 0;
    padding: 7px;
    position: sticky;
    top: 86px;
    z-index: 48;
  }

  .mobile-quick-nav a {
    align-items: center;
    border-radius: 13px;
    color: var(--ink);
    display: flex;
    font: 800 12px/1.05 Space Grotesk;
    justify-content: center;
    min-height: 42px;
    min-width: 0;
    padding: 8px 6px;
    text-align: center;
    text-decoration: none;
    transition:
      transform 0.18s ease,
      background 0.18s ease;
    white-space: nowrap;
  }

  .mobile-quick-nav a:first-child,
  .mobile-quick-nav a:nth-child(2),
  .mobile-quick-nav a:nth-child(3) {
    background: var(--soft-purple);
    color: #6338c3;
  }

  .mobile-quick-nav a:active {
    transform: scale(0.97);
  }

  html {
    scroll-padding-top: 150px;
  }

  #catalogo,
  #conversa,
  #lacos,
  header[id],
  section[id] {
    scroll-margin-top: 150px;
  }
}

@media (max-width: 600px) {
  .mobile-quick-nav {
    gap: 5px;
    padding: 6px;
  }

  .mobile-quick-nav a {
    font-size: 11px;
    padding-inline: 4px;
  }
}

body {
  overflow-x: hidden;
}

@media (max-width: 900px) {
  html {
    scroll-padding-top: 0;
  }

  body#impel-site #catalogo,
  body#impel-site #conversa,
  body#impel-site #lacos,
  body#impel-site section[id] {
    scroll-margin-top: 142px;
  }

  body#impel-site #topo {
    scroll-margin-top: 0;
  }
}

@keyframes entryCardExit {
  0% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  45% {
    opacity: 1;
    transform: translateY(-8px) scale(1.025);
  }

  to {
    opacity: 0;
    transform: translateY(-24px) scale(1.08);
  }
}

.catalog-intro-block {
  align-items: end;
  display: grid;
  gap: clamp(8px, 2vw, 26px);
  grid-template-columns: minmax(0, 1fr) minmax(150px, 0.48fr);
  min-width: 0;
}

.catalog-intro-copy {
  min-width: 0;
}

body#impel-site .catalog-head {
  gap: clamp(28px, 5vw, 72px);
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
}

@media (max-width: 900px) {
  body#impel-site .catalog-head {
    gap: 26px;
    grid-template-columns: 1fr;
  }

  .catalog-intro-block {
    align-items: end;
    grid-template-columns: minmax(0, 1fr) minmax(120px, 0.42fr);
  }
}

@media (max-width: 600px) {
  .catalog-intro-block {
    gap: 2px;
    grid-template-columns: minmax(0, 1fr) minmax(95px, 0.38fr);
  }

  body#impel-site .catalog-head h2 {
    font-size: clamp(42px, 12vw, 62px);
  }

  body#impel-site .catalog-intro {
    font-size: 14px;
  }
}

body#impel-site .catalog-intro-block {
  align-items: stretch;
  display: grid;
  gap: clamp(4px, 1vw, 14px);
  grid-template-columns: minmax(0, 1fr) minmax(180px, 0.52fr);
  overflow: visible;
}

body#impel-site .catalog-intro-copy {
  align-self: stretch;
  min-width: 0;
  position: relative;
  z-index: 3;
}

@media (min-width: 1200px) {
  body#impel-site .catalog-intro-block {
    grid-template-columns: minmax(0, 1fr) minmax(210px, 0.55fr);
  }
}

@media (max-width: 900px) {
  body#impel-site .catalog-intro-block {
    gap: 0;
    grid-template-columns: minmax(0, 1fr) minmax(125px, 0.46fr);
  }
}

@media (max-width: 600px) {
  body#impel-site .catalog-intro-block {
    gap: 0;
    grid-template-columns: minmax(0, 1fr) minmax(100px, 0.43fr);
  }
}

@media (max-width: 900px) {
  body#impel-site .hero-eyebrow {
    grid-area: eyebrow;
    justify-self: start;
    margin: 0 0 2px;
    max-width: 100%;
    position: relative;
    width: max-content;
    z-index: 3;
  }
}

.catalog {
  background: #fff;
}

.catalog-head {
  position: relative;
}

.catalog-head:after {
  bottom: -18px;
  color: var(--pink);
  content: "olha isso aqui! ↘";
  font:
    italic 700 14px/1 Georgia,
    serif;
  left: 42%;
  pointer-events: none;
  position: absolute;
  transform: rotate(-6deg);
}

.product-card {
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.product-card:nth-child(6n + 2) {
  transform: rotate(0.25deg);
}

.product-card:nth-child(6n + 5) {
  transform: rotate(-0.25deg);
}

.product-card:hover {
  transform: translateY(-6px) rotate(-0.4deg);
}

.conversation {
  background:
    radial-gradient(circle at 10% 15%,
      rgba(255, 216, 77, 0.35),
      transparent 19rem),
    linear-gradient(135deg, var(--blue), #dff8fb);
}

.conversation-chaos {
  isolation: isolate;
}

.chat-bubble,
.chat-sticker {
  z-index: 4;
}

.conversation-copy .kicker {
  background: var(--yellow);
  border: 2px solid var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
  display: inline-block;
  padding: 7px 10px;
  transform: rotate(-2deg);
}

.conversation-copy h2 {
  color: var(--ink);
}

.conversation-copy .btn {
  margin-top: 24px;
}

.lacos {
  background:
    radial-gradient(circle at 85% 15%,
      rgba(255, 79, 154, 0.14),
      transparent 23rem),
    var(--ink);
}

.lacos-word {
  text-shadow: 5px 5px 0 rgba(255, 216, 77, 0.22);
}

@media (max-width: 900px) {
  .catalog-head:after {
    display: none;
  }
}

@media (max-width: 600px) {
  .conversation-chaos {
    min-height: 410px;
  }

  .bubble-3 {
    bottom: 38px;
    left: 20px;
    max-width: 62%;
  }
}

.hero {
  align-items: center;
  background:
    radial-gradient(circle at 85% 18%,
      rgba(255, 216, 77, 0.24),
      transparent 23rem),
    radial-gradient(circle at 5% 82%,
      rgba(255, 79, 154, 0.1),
      transparent 22rem),
    var(--paper);
  border: 0;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  isolation: isolate;
  min-height: calc(100vh - 100px);
  overflow: hidden;
  padding: clamp(70px, 8vw, 115px) clamp(20px, 5vw, 80px);
  position: relative;
}

.hero:before {
  background: linear-gradient(135deg, var(--pink), var(--orange));
  border-radius: 50%;
  bottom: -180px;
  content: "";
  filter: blur(80px);
  height: 420px;
  left: -170px;
  opacity: 0.1;
  position: absolute;
  width: 420px;
  z-index: -1;
}

.hero-copy {
  align-items: center;
  display: flex;
  flex-direction: column;
  max-width: 720px;
  z-index: 4;
}

.hero-eyebrow {
  align-self: flex-start;
  background: linear-gradient(110deg, var(--yellow), #fff1a4);
  border: 0;
  border-radius: 999px;
  box-shadow: 0 7px 20px rgba(194, 153, 0, 0.14);
  color: var(--ink);
  display: inline-block;
  font: 700 13px Space Grotesk;
  letter-spacing: 0.11em;
  padding: 10px 15px;
  text-transform: uppercase;
  transform: rotate(-1deg);
}

.hero-title {
  font: 700 clamp(64px, 11vw, 125px)/0.82 Space Grotesk;
  letter-spacing: -0.07em;
  margin: 30px 0 26px;
  text-wrap: balance;
  width: 100%;
}

.hero-titlesc {
  font: 700 clamp(64px, 11vw, 125px)/0.82 Space Grotesk;
  letter-spacing: -0.07em;
  margin: 30px 0 26px;
  text-wrap: balance;
  width: 100%;
  justify-content: center;  
  Display: flex;
}

.hero-title em {
  color: var(--color-sites, #b55cfa);
  font-family:
    Space Grotesk,
    sans-serif;
  font-style: normal;
  font-weight: 700;
  position: relative;
}

.hero-titlesc em {
  color: var(--color-sites, #b55cfa);
  font-family:
    Space Grotesk,
    sans-serif;
  font-style: normal;
  font-weight: 700;
  position: relative;
}

.hero-description {
  color: #484052;
  font-size: clamp(18px, 2vw, 25px);
  line-height: 1.5;
  margin: 0;
  max-width: 540px;
  width: 100%;
}

.hero-description strong {
  color: var(--ink);
  font-weight: 800;
}

.hero-main-image {
  align-self: center;
  justify-self: start;
  margin-left: clamp(-55px, -4vw, -18px);
  max-width: 760px;
  padding: 0;
  position: relative;
  z-index: 2;
}

.hero-main-image,
.hero-main-image img {
  background: transparent;
  border: 0;
  box-shadow: none;
  width: 100%;
}

.hero-main-image img {
  border-radius: 0;
  display: block;
  filter: none;
  height: auto;
  max-height: 700px;
  object-fit: contain;
  object-position: center bottom;
}

.hero-main-image:before {
  aspect-ratio: 1;
  background: var(--yellow);
  border-radius: 46% 54% 43% 57% / 58% 39% 61% 42%;
  content: "";
  left: 48%;
  opacity: 0.92;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-7deg);
  width: 64%;
  z-index: -1;
}

.hero-main-image:after {
  background: var(--blue);
  border: 2px solid var(--ink);
  bottom: 13%;
  box-shadow: 4px 4px 0 var(--ink);
  content: "100% nossa cara";
  font: 800 11px/1 Space Grotesk;
  padding: 9px 12px;
  position: absolute;
  right: 1%;
  transform: rotate(6deg);
  z-index: 4;
}

@media (max-width: 900px) {
  .hero {
    align-items: center;
    column-gap: clamp(8px, 2.4vw, 18px);
    grid-template-areas: "eyebrow eyebrow" "title image" "description description" "scroll scroll";
    grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
    min-height: auto;
    padding: 34px clamp(14px, 4vw, 26px) 42px;
    row-gap: 14px;
  }

  .hero-copy {
    display: contents;
  }

  .hero-eyebrow {
    align-self: auto;
    grid-area: eyebrow;
    justify-self: start;
    margin: 0 0 2px;
    max-width: 100%;
    width: max-content;
  }

  .hero-eyebrow,
  .hero-title {
    position: relative;
    z-index: 3;
  }

  .hero-title {
    font-size: clamp(38px, 10.5vw, 58px);
    grid-area: title;
    padding-right: 2px;
  }

  .hero-main-image,
  .hero-title {
    align-self: center;
    justify-self: stretch;
    margin: 0;
    min-width: 0;
    width: 100%;
  }

  .hero-main-image {
    align-items: center;
    display: flex;
    grid-area: image;
    height: auto;
    justify-content: center;
    max-width: 100%;
    overflow: visible;
    padding: 0;
  }

  .hero-main-image img {
    filter: drop-shadow(0 14px 18px rgba(35, 22, 51, 0.08));
    height: auto;
    margin: 0;
    max-height: 430px;
    max-width: 100%;
    object-fit: contain;
    object-position: center bottom;
    transform: none;
    width: 100%;
  }

  .hero-main-image:before {
    width: 72%;
  }

  .hero-main-image:after {
    bottom: 8%;
    font-size: 9px;
    padding: 7px 9px;
    right: 3%;
  }

  .hero-description {
    border: 0;
    grid-area: description;
    margin-top: -8px;
    max-width: none;
    min-width: 0;
    padding: 0;
    position: relative;
    width: 100%;
    z-index: 3;
  }
}

@media (max-width: 600px) {
  .hero {
    column-gap: 4px;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.04fr);
    padding: 26px 12px 10px ;
    row-gap: 11px;
  }

  .hero-title {
    font-size: clamp(35px, 12vw, 52px);
    padding-right: 3px;
  }

  .hero-main-image {
    transform: translateY(2px);
  }

  .hero-main-image img {
    max-height: 350px;
    max-width: 104%;
    width: 104%;
  }

  .hero-main-image:after {
    display: none;
  }

  .hero-description {
    font-size: 20px;
    line-height: 1.10;
    margin-top: -10px;
    justify-content: center;
    display: flex;
    text-align: center;
  }

  .hero {
    grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
    padding-left: 10px;
    padding-right: 10px;
  }

  .hero-main-image img {
    max-width: 90%;
    width: 108%;
  }
}

@keyframes gateOrbitA {
  0% {
    transform: rotate(-11deg);
  }

  to {
    transform: rotate(349deg);
  }
}

@keyframes gateOrbitB {
  0% {
    transform: rotate(18deg);
  }

  to {
    transform: rotate(378deg);
  }
}

@keyframes gateOrbitC {
  0% {
    transform: rotate(5deg);
  }

  to {
    transform: rotate(365deg);
  }
}

@media (max-width: 900px) {

  html,
  body#impel-site {
    max-width: 100%;
    overflow-x: clip;
    width: 100%;
  }

  .mobile-quick-nav,
  .topbar,
  body,
  footer,
  main,
  section {
    max-width: 100%;
  }

  .catalog,
  .conversation,
  .hero,
  .lacos {
    overflow-x: clip;
  }
}

@media (max-width: 600px) {
  body#impel-site .category-chips {
    margin-right: 0;
    max-width: 100%;
  }

  .catalog-intro-block,
  .conversation-chaos,
  .hero-main-image {
    max-width: 100%;
    min-width: 0;
  }
}

body#impel-site .modal-secondary-gallery[hidden] {
  display: none;
}

.product-card .product-price small {
  display: block;
  font: 700 9px/1 Space Grotesk;
  letter-spacing: 0.05em;
  margin-bottom: 3px;
  opacity: 0.58;
  text-transform: uppercase;
}

.back-to-products-button {
  align-items: center;
  background: var(--yellow, #ffd84d);
  border: 2px solid var(--ink, #17141f);
  border-radius: 999px;
  box-shadow: 4px 4px 0 var(--ink, #17141f);
  color: var(--ink, #17141f);
  cursor: pointer;
  display: inline-flex;
  font:
    900 0.86rem Space Grotesk,
    sans-serif;
  justify-content: center;
  letter-spacing: 0.035em;
  min-height: 52px;
  padding: 14px 22px;
  transition:
    transform 0.16s ease,
    box-shadow 0.16s ease;
  margin-top: 10px;
}

.back-to-products-button:hover {
  box-shadow: 6px 6px 0 var(--ink, #17141f);
  transform: translate(-2px, -2px);
}

.back-to-products-button:active {
  box-shadow: 2px 2px 0 var(--ink, #17141f);
  transform: translate(2px, 2px);
}

.cart-button {
  background: #17141f;
  border: 0;
  border-radius: 999px;
  color: #fff;
  cursor: pointer;
  font-weight: 800;
  padding: 11px 16px;
  white-space: nowrap;
}

.cart-button span {
  background: #ffd84d;
  border-radius: 50%;
  color: #17141f;
  display: inline-grid;
  height: 24px;
  margin-left: 6px;
  min-width: 24px;
  place-items: center;
}

@media (max-width: 900px) {
  .cart-button {
    font-size: 12px;
    padding: 9px 11px;
  }

  .topbar {
    gap: 8px;
  }
}

.nav-search {
  flex: 0 1 280px;
  margin-left: auto;
  position: relative;
  width: min(280px, 22vw);
}

.nav-search-box {
  align-items: center;
  background: #fff;
  border: 1px solid rgba(23, 20, 31, 0.1);
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(38, 24, 55, 0.06);
  display: flex;
  gap: 8px;
  height: 42px;
  padding: 0 10px 0 13px;
}

.nav-search-box>span {
  color: rgba(23, 20, 31, 0.46);
  flex: 0 0 auto;
  font-size: 18px;
  line-height: 1;
}

.nav-search-box input {
  background: transparent;
  border: 0;
  color: var(--ink);
  font:
    600 13px DM Sans,
    sans-serif;
  min-width: 0;
  outline: 0;
  width: 100%;
}

.nav-search-box input::placeholder {
  color: rgba(23, 20, 31, 0.44);
}

.nav-search-box button {
  background: var(--soft-purple, #eee7ff);
  border: 0;
  border-radius: 50%;
  color: #6338c3;
  cursor: pointer;
  display: grid;
  flex: 0 0 28px;
  font-size: 17px;
  height: 28px;
  place-items: center;
  width: 28px;
}

.nav-search-count {
  background: #17141f;
  border-radius: 999px;
  box-shadow: 0 8px 22px rgba(23, 20, 31, 0.14);
  color: #fff;
  display: none;
  font:
    700 10px DM Sans,
    sans-serif;
  padding: 5px 8px;
  position: absolute;
  right: 8px;
  top: calc(100% + 6px);
  white-space: nowrap;
}

.nav-search:focus-within .nav-search-count {
  display: block;
}

@media (max-width: 900px) {
  .topbar {
    align-items: center;
    display: grid;
    gap: 10px;
    grid-template-columns: auto minmax(0, 1fr) auto;
  }

  .topbar .brand {
    grid-column: 1;
  }

  .topbar .nav-search {
    flex: none;
    grid-column: 2;
    grid-row: 1;
    justify-self: stretch;
    margin: 0;
    max-width: none;
    width: 100%;
  }

  .topbar .menu-btn {
    grid-column: 3;
    grid-row: 1;
  }

  .nav-search-box {
    height: 40px;
  }

  .nav-search-count {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }
}

@media (min-width: 901px) {
  .topbar {
    align-items: center;
    display: flex;
  }

  .topbar .nav {
    margin-left: auto;
  }

  .topbar .nav-search {
    margin-left: 18px;
    margin-right: 10px;
  }

  body#impel-site .topbar {
    align-items: center;
    display: flex;
    gap: 24px;
    justify-content: space-between;
    min-height: 70px;
  }

  .topbar .brand {
    flex: 0 0 auto;
  }

  body#impel-site .topbar .nav-search {
    flex: 0 1 420px;
    margin-left: auto;
    margin-right: 0;
    width: min(420px, 34vw);
  }

  body#impel-site .topbar .menu-btn {
    display: none;
  }

  .desktop-nav-row {
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    background: hsla(0, 0%, 100%, 0.94);
    border-bottom: 1px solid rgba(23, 20, 31, 0.08);
    border-top: 1px solid rgba(23, 20, 31, 0.06);
    box-shadow: 0 6px 18px rgba(36, 23, 50, 0.04);
    min-height: 48px;
    padding: 6px 18px;
    position: sticky;
    top: 70px;
    width: 100%;
    z-index: var(--layer-header);
  }

  .desktop-nav-row,
  body#impel-site .desktop-nav-row .nav {
    align-items: center;
    display: flex;
    justify-content: center;
  }

  body#impel-site .desktop-nav-row .nav {
    gap: clamp(18px, 2.2vw, 34px);
    margin: 0;
  }

  .desktop-nav-row .nav a {
    white-space: nowrap;
  }
}

@media (max-width: 900px) {
  body#impel-site .desktop-nav-row {
    display: none;
  }

  body#impel-site .topbar {
    align-items: center;
    display: grid;
    gap: 10px;
    grid-template-columns: auto minmax(0, 1fr) auto;
  }

  .topbar .brand {
    grid-column: 1;
  }

  body#impel-site .topbar .nav-search {
    grid-column: 2;
    margin: 0;
    width: 100%;
  }

  body#impel-site .topbar .menu-btn {
    display: block;
    grid-column: 3;
  }
}

@media (min-width: 901px) {
  body#impel-site .topbar {
    align-items: center;
    display: grid;
    gap: 18px;
    grid-template-columns: 1fr minmax(520px, 72vw) 1fr;
    min-height: 74px;
    position: relative;
  }

  body#impel-site .topbar .brand {
    grid-column: 1;
    justify-self: start;
    margin: 0;
  }

  body#impel-site .topbar .nav-search {
    flex: none;
    grid-column: 2;
    justify-self: center;
    margin: 0;
    max-width: 980px;
    width: 100%;
  }

  .nav-search-box {
    height: 46px;
    width: 100%;
  }

  body#impel-site .topbar .menu-btn {
    display: none;
  }

  body#impel-site .desktop-nav-row {
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);

    background: hsla(0, 0%, 100%, 0.92);

    border: 1px solid rgba(23, 20, 31, 0.08);
    border-radius: 999px;

    box-shadow:
      0 12px 34px rgba(36, 23, 50, 0.1),
      0 2px 8px rgba(36, 23, 50, 0.05);

    margin: 10px auto 0;
    max-width: calc(100vw - 48px);
    min-height: auto;
    padding: 7px 10px;
    position: sticky;
    top: 82px;

    width: max-content;
    z-index: var(--layer-header);
  }

  body#impel-site .desktop-nav-row .nav {
    display: flex;

    gap: 6px;
    margin: 0;
    padding: 0;

    width: max-content;
  }

  .desktop-nav-row .nav a,
  body#impel-site .desktop-nav-row .nav {
    align-items: center;
    border-radius: 999px;
    justify-content: center;
  }

  .desktop-nav-row .nav a {
    display: inline-flex;

    min-height: 38px;
    padding: 8px 14px;

    transition:
      background 0.18s ease,
      transform 0.18s ease,
      color 0.18s ease;
    white-space: nowrap;
  }

  .desktop-nav-row .nav a:hover {
    background: var(--soft-purple, #eee7ff);
    color: #6338c3;
    transform: translateY(-1px);
  }
}

@media (min-width: 901px) and (max-width: 1200px) {
  body#impel-site .topbar {
    grid-template-columns: auto minmax(460px, 68vw) auto;
  }

  .desktop-nav-row .nav a {
    font-size: 0.86rem;
    padding-left: 11px;
    padding-right: 11px;
  }
}

body#impel-site .topbar {
  position: sticky;
}

@media (min-width: 901px) {
  body#impel-site .topbar {
    height: 74px;
    min-height: 74px;
  }

  body#impel-site .desktop-nav-row {
    position: sticky;
    top: 84px;
    z-index: var(--layer-header);
  }
}

body#impel-site .catalog .category-chips {
  margin: 28px 0 30px;
}

body#impel-site .catalog .product-grid {
  max-width: none;
  width: 100%;
}

@media (max-width: 900px) {
  body#impel-site .catalog .category-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 22px 0 24px;
    overflow-x: visible;
    overflow-y: visible;
    padding: 0;
    white-space: normal;
  }

  body#impel-site .catalog .category-chips button {
    flex: 0 0 auto;
    max-width: 100%;
    white-space: normal;
  }

  body#impel-site .catalog .product-grid {
    gap: 18px;
    grid-template-columns: minmax(0, 1fr);
  }

  body#impel-site .catalog .product-card {
    max-width: none;
    width: 100%;
  }

  .catalog .product-card-image {
    width: 100%;
  }
}

body#impel-site .topbar {
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: var(--layer-header);
}

body main {
  scroll-margin-top: 140px;
}

body#impel-site .catalog .category-chips {
  align-content: center;
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  overflow: visible;
  text-align: center;
  width: 100%;
}

body#impel-site .catalog .category-chips button {
  flex: 0 0 auto;
}

body#impel-site #catalogo,
body#impel-site #categoryChips {
  scroll-margin-top: 150px;
}

@media (min-width: 901px) {
  body#impel-site .topbar {
    height: 74px;
    min-height: 74px;
  }

  body#impel-site .desktop-nav-row {
    left: 50%;
    margin: 0;
    max-width: calc(100vw - 48px);
    position: fixed;
    right: auto;
    top: 84px;
    transform: translateX(-50%);

    width: max-content;
    z-index: var(--layer-header);
  }

  body main {
    padding-top: 64px;
  }

  body#impel-site .catalog .category-chips {
    margin: 28px auto 30px;
  }
}

@media (max-width: 900px) {
  body#impel-site .desktop-nav-row {
    display: none;
  }

  body#impel-site .topbar {
    height: 64px;
    min-height: 64px;
  }

  body main {
    padding-top: 64px;
  }

  body#impel-site #catalogo,
  body#impel-site #categoryChips {
    scroll-margin-top: 76px;
  }

  body#impel-site .catalog .category-chips {
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin: 22px auto 24px;
    overflow: visible;
    padding-inline: 4px;
    white-space: normal;
  }

  body#impel-site .catalog .category-chips button {
    max-width: 100%;
    text-align: center;
    white-space: normal;
  }

  body#impel-site .catalog .product-grid {
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
  }
}

@media (min-width: 901px) {
  body#impel-site .topbar {
    height: 74px;
    min-height: 74px;
  }

  body#impel-site .desktop-nav-row {
    top: 84px;
  }
}

#catalogSearch::-webkit-search-cancel-button,
#catalogSearch::-webkit-search-decoration,
#catalogSearch::-webkit-search-results-button,
#catalogSearch::-webkit-search-results-decoration {
  -webkit-appearance: none;
  appearance: none;
  display: none;
}

#catalogSearch {
  appearance: textfield;
}

.mobile-menu-nav {
  display: none;
}

@media (max-width: 900px) {
  .mobile-menu-nav {
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    background: hsla(0, 0%, 100%, 0.97);
    border: 1px solid rgba(23, 20, 31, 0.1);
    border-radius: 20px;
    box-shadow: 0 18px 45px rgba(38, 24, 55, 0.15);
    flex-direction: column;
    gap: 4px;
    left: 10px;
    padding: 10px;
    position: fixed;
    right: 10px;
    top: 64px;
    z-index: 119;
  }

  body#impel-site .mobile-menu-nav.open {
    display: flex;
  }

  .mobile-menu-nav a {
    border-radius: 14px;
    color: var(--ink);
    display: block;
    font-weight: 700;
    padding: 12px 14px;
    text-decoration: none;
  }

  .mobile-menu-nav a:active {
    background: var(--soft-purple, #eee7ff);
  }

  body#impel-site .catalog .product-grid {
    gap: 10px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  body#impel-site .catalog .product-card {
    min-width: 0;
    width: 100%;
  }

  body#impel-site .catalog .product-card-body {
    padding: 11px;
  }

  body#impel-site .catalog .product-card h3 {
    font-size: 14px;
    line-height: 1.15;
  }

  body#impel-site .catalog .product-price {
    font-size: 15px;
  }
}

@media (min-width: 901px) {
  :root {
    --desktop-topbar-height: 74px;
    --desktop-nav-gap: 20px;
  }

  body#impel-site .topbar {
    box-shadow: 0 1px 0 rgba(23, 20, 31, 0.08);
    height: var(--desktop-topbar-height);
    min-height: var(--desktop-topbar-height);
  }

  body#impel-site .desktop-nav-row {
    box-shadow: 0 12px 30px rgba(36, 23, 50, 0.1);
    margin: 0;
    top: calc(var(--desktop-topbar-height) + var(--desktop-nav-gap));
  }
}

.product-card {
  color: inherit;
  cursor: pointer;
  text-decoration: none;
}

.cart-button {
  align-items: center;
  display: inline-flex;
  text-decoration: none;
}

.brand:focus-visible,
.cart-button:focus-visible,
.footer-links a:focus-visible,
.mobile-menu-nav a:focus-visible,
.mobile-quick-nav a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {

  *,
  :after,
  :before,
  html {
    scroll-behavior: auto;
  }

  *,
  :after,
  :before {
    animation-duration: 0.01ms;
    animation-iteration-count: 1;
    transition-duration: 0.01ms;
  }
}

.legal-page {
  background: var(--paper);
  min-height: 100vh;
  padding: 30px 18px;
}

.legal-page main {
  background: var(--white);
  border-radius: 28px;
  box-shadow: var(--shadow);
  margin: auto;
  max-width: 820px;
  padding: clamp(25px, 5vw, 65px);
}

.legal-page h1 {
  font:
    700 clamp(42px, 7vw, 72px) / 0.95 Space Grotesk,
    sans-serif;
  letter-spacing: -0.05em;
  margin-bottom: 28px;
}

.legal-page h2 {
  margin-top: 34px;
}

.legal-page li,
.legal-page p {
  font-size: 17px;
  line-height: 1.7;
}

.legal-page a {
  color: var(--purple);
  font-weight: 700;
}

.download-card {
  background: var(--soft-purple);
  border: 1px solid var(--color-border, #e7e0eb);
  border-radius: 16px;
  color: inherit;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  margin: 12px 0;
  padding: 20px;
  text-decoration: none;
}

.download-card span {
  color: var(--purple);
  font-weight: 800;
}

@media (max-width: 600px) {
  .download-card {
    display: grid;
  }
}

/* ===== TOPBAR + CONTA GOOGLE (2026-09-03) ===== */
.account-button {
  align-items: center;
  background: #fff;
  border: 1px solid rgba(23, 20, 31, 0.12);
  border-radius: 999px;
  color: var(--ink, #17141f);
  display: inline-flex;
  flex: 0 0 auto;
  font: 800 12px/1 DM Sans, sans-serif;
  gap: 8px;
  min-height: 42px;
  padding: 4px 12px 4px 4px;
  position: relative;
  text-decoration: none;
  white-space: nowrap;
}

.account-button:hover {
  border-color: rgba(103, 63, 198, .35);
}

.account-avatar,
.account-avatar-fallback {
  border-radius: 50%;
  flex: 0 0 32px;
  height: 32px;
  width: 32px;
}

.account-avatar {
  display: block;
  object-fit: cover;
}

.account-avatar[hidden] {
  display: none;
}

.account-avatar-fallback {
  align-items: center;
  background: var(--soft-purple, #eee7ff);
  color: var(--purple, #673fc6);
  display: inline-flex;
  font: 900 14px Space Grotesk, sans-serif;
  justify-content: center;
}

.account-avatar-fallback[hidden] {
  display: none;
}

.account-online-dot {
  background: #22a447;
  border: 2px solid #fff;
  border-radius: 50%;
  height: 10px;
  left: 28px;
  position: absolute;
  top: 3px;
  width: 10px;
}

.account-online-dot[hidden] {
  display: none;
}

.account-button.is-authenticated {
  background: #faf8ff;
}

@media (min-width: 901px) {
  body#impel-site .topbar {
    grid-template-columns: auto minmax(320px, 1fr) auto auto;
  }

  body#impel-site .topbar .brand {
    grid-column: 1;
  }

  body#impel-site .topbar .nav-search {
    grid-column: 2;
    justify-self: center;
    max-width: 680px;
    width: min(680px, 52vw);
  }

  body#impel-site .topbar .account-button {
    grid-column: 3;
  }

  body#impel-site .topbar .cart-button {
    grid-column: 4;
  }
}

@media (max-width: 900px) {
  body#impel-site .topbar {
    gap: 8px;
    grid-template-areas:
      "brand account cart menu"
      "search search search search";
    grid-template-columns: minmax(72px, auto) 40px auto 40px;
    height: auto;
    min-height: 0;
    padding: 8px 10px 9px;
  }

  body#impel-site .topbar .brand {
    grid-area: brand;
    min-width: 0;
  }

  body#impel-site .topbar .brand-logo {
    height: 35px;
    max-width: 112px;
    object-fit: contain;
  }

  body#impel-site .topbar .account-button {
    grid-area: account;
    height: 40px;
    min-height: 40px;
    padding: 4px;
    width: 40px;
  }

  body#impel-site .topbar .account-avatar,
  body#impel-site .topbar .account-avatar-fallback {
    flex-basis: 32px;
    height: 32px;
    width: 32px;
  }

  body#impel-site .topbar .account-label {
    display: none;
  }

  body#impel-site .topbar .account-online-dot {
    left: 28px;
    top: 2px;
  }

  body#impel-site .topbar .cart-button {
    grid-area: cart;
    height: 40px;
    min-width: 52px;
    padding: 6px 8px;
  }

  body#impel-site .topbar .cart-label {
    display: none;
  }

  body#impel-site .topbar .cart-button::before {
    content: "🛒";
    font-size: 17px;
    line-height: 1;
  }

  body#impel-site .topbar .cart-button span#cartCount {
    height: 22px;
    margin-left: 3px;
    min-width: 22px;
  }

  body#impel-site .topbar .menu-btn {
    align-items: center;
    display: inline-flex;
    font-size: 24px;
    grid-area: menu;
    height: 40px;
    justify-content: center;
    padding: 0;
    width: 40px;
  }

  body#impel-site .topbar .nav-search {
    grid-area: search;
    margin: 0;
    max-width: none;
    width: 100%;
  }

  body#impel-site .topbar .nav-search-box {
    height: 40px;
  }

  body#impel-site .mobile-menu-nav {
    top: 102px;
  }
}

@media (max-width: 430px) {
  body#impel-site .topbar {
    grid-template-columns: minmax(64px, 1fr) 38px 50px 38px;
  }

  body#impel-site .topbar .brand-logo {
    max-width: 98px;
  }

  body#impel-site .topbar .account-button,
  body#impel-site .topbar .menu-btn {
    height: 38px;
    width: 38px;
  }

  body#impel-site .topbar .cart-button {
    height: 38px;
    min-width: 50px;
  }
}

/* Catálogo sem personagem/pointer */
body#impel-site .catalog-head,
body#impel-site .catalog-intro-block {
  grid-template-columns: minmax(0, 1fr);
}

body#impel-site .catalog-intro-copy {
  max-width: 920px;
}


/* ===== TOPBAR MOBILE EM UMA LINHA + CARRINHO ICONIFY (2026-09-03) ===== */
.cart-button .cart-icon {
  display: inline-block;
  flex: 0 0 auto;
  font-size: 21px;
  line-height: 1;
}

@media (max-width: 900px) {
  body#impel-site .topbar {
    align-items: center;
    display: grid;
    gap: 6px;
    grid-template-areas: "brand search account cart menu";
    grid-template-columns: auto minmax(90px, 1fr) 38px 46px 38px;
    height: 58px;
    min-height: 58px;
    padding: 8px 8px;
  }

  body#impel-site .topbar .brand {
    grid-area: brand;
    min-width: 0;
  }

  body#impel-site .topbar .brand-logo {
    display: block;
    height: 32px;
    max-width: 92px;
    object-fit: contain;
    width: auto;
  }

  body#impel-site .topbar .nav-search {
    grid-area: search;
    margin: 0;
    max-width: none;
    min-width: 0;
    width: 100%;
  }

  body#impel-site .topbar .nav-search-box {
    height: 38px;
    min-width: 0;
    padding-inline: 9px 6px;
  }

  body#impel-site .topbar .nav-search-box>span {
    flex: 0 0 auto;
  }

  body#impel-site .topbar .nav-search-box input {
    min-width: 0;
    width: 100%;
  }

  body#impel-site .topbar .nav-search-count {
    display: none;
  }

  body#impel-site .topbar .account-button {
    grid-area: account;
    height: 38px;
    min-height: 38px;
    padding: 3px;
    width: 38px;
  }

  body#impel-site .topbar .account-avatar,
  body#impel-site .topbar .account-avatar-fallback {
    flex-basis: 30px;
    height: 30px;
    width: 30px;
  }

  body#impel-site .topbar .account-online-dot {
    left: 26px;
    top: 1px;
  }

  body#impel-site .topbar .cart-button {
    align-items: center;
    display: inline-flex;
    gap: 2px;
    grid-area: cart;
    height: 38px;
    justify-content: center;
    min-width: 46px;
    padding: 4px 5px;
  }

  body#impel-site .topbar .cart-button::before {
    content: none;
    display: none;
  }

  body#impel-site .topbar .cart-button .cart-icon {
    font-size: 20px;
  }

  body#impel-site .topbar .cart-button span#cartCount {
    height: 19px;
    margin-left: 0;
    min-width: 19px;
    padding: 0 4px;
  }

  body#impel-site .topbar .menu-btn {
    grid-area: menu;
    height: 38px;
    width: 38px;
  }

  body#impel-site .mobile-menu-nav {
    top: 58px;
  }
}

@media (max-width: 520px) {
  body#impel-site .topbar {
    gap: 4px;
    grid-template-columns: 76px minmax(72px, 1fr) 36px 43px 36px;
    padding-inline: 6px;
  }

  body#impel-site .topbar .brand-logo {
    max-width: 76px;
  }

  body#impel-site .topbar .nav-search-box {
    height: 36px;
    padding-inline: 7px 4px;
  }

  body#impel-site .topbar .nav-search-box input {
    font-size: 12px;
  }

  body#impel-site .topbar .account-button,
  body#impel-site .topbar .menu-btn {
    height: 36px;
    width: 36px;
  }

  body#impel-site .topbar .account-avatar,
  body#impel-site .topbar .account-avatar-fallback {
    flex-basis: 28px;
    height: 28px;
    width: 28px;
  }

  body#impel-site .topbar .account-online-dot {
    left: 24px;
  }

  body#impel-site .topbar .cart-button {
    height: 36px;
    min-width: 43px;
    padding-inline: 3px;
  }

  body#impel-site .topbar .cart-button .cart-icon {
    font-size: 19px;
  }

  body#impel-site .topbar .cart-button span#cartCount {
    font-size: 10px;
    height: 18px;
    min-width: 18px;
  }
}

@media (max-width: 360px) {
  body#impel-site .topbar {
    grid-template-columns: 64px minmax(58px, 1fr) 34px 41px 34px;
  }

  body#impel-site .topbar .brand-logo {
    max-width: 64px;
  }

  body#impel-site .topbar .account-button,
  body#impel-site .topbar .menu-btn {
    height: 34px;
    width: 34px;
  }

  body#impel-site .topbar .cart-button {
    height: 34px;
    min-width: 41px;
  }
}

/* 2.2 - mobile cart notification badge */
@media (max-width: 900px) {
  body#impel-site .topbar .cart-button {
    position: relative;
    overflow: visible;
  }

  body#impel-site .topbar .cart-button span#cartCount {
    position: absolute;
    top: -5px;
    right: -5px;
    z-index: 2;
    display: grid;
    place-items: center;
    min-width: 18px;
    height: 18px;
    margin: 0;
    padding: 0 4px;
    border: 2px solid #fff;
    border-radius: 999px;
    background: #ffd84d;
    color: #17141f;
    font-size: 10px;
    font-weight: 900;
    line-height: 1;
    box-sizing: border-box;
    pointer-events: none;
  }
}


/* ===== NAVEGAÇÃO POR CATEGORIAS + MENU DA CONTA ===== */
.footer-brand img{display:block;width:min(210px,52vw);height:auto;filter:brightness(0) invert(1)}
.account-menu-wrap{position:relative;display:flex;align-items:center}
.account-popover{position:absolute;right:0;top:calc(100% + 10px);z-index:5000;width:min(360px,calc(100vw - 24px));padding:10px;background:#fff;border:1px solid rgba(23,20,31,.12);border-radius:18px;box-shadow:0 22px 60px rgba(23,20,31,.18)}
.account-popover[hidden]{display:none}
.account-popover-head{display:grid;gap:3px;padding:10px 12px 12px;border-bottom:1px solid rgba(23,20,31,.08)}
.account-popover-head b{font:800 16px/1.2 'Space Grotesk',sans-serif}
.account-popover-head span{font-size:12px;color:#746d7c;overflow:hidden;text-overflow:ellipsis}
.account-popover>a{display:grid;gap:3px;padding:11px 12px;border-radius:12px;color:#17141f;text-decoration:none}
.account-popover>a:hover{background:#f5f1ff}
.account-popover>a b{font-size:13px}
.account-popover>a span{font-size:11px;line-height:1.35;color:#746d7c}
.account-popover .account-popover-logout{display:block;margin-top:4px;border-top:1px solid rgba(23,20,31,.08);border-radius:0;color:#8b1e2d;font-weight:800}
@media (min-width:901px){
  .desktop-nav-row .nav{display:flex;align-items:center;justify-content:center;gap:clamp(12px,2vw,28px);width:100%;overflow-x:auto;scrollbar-width:none}
  .desktop-nav-row .nav::-webkit-scrollbar{display:none}
  .desktop-nav-row .nav a{white-space:nowrap}
}
@media (max-width:900px){
  .desktop-nav-row{display:none!important}
  .account-menu-wrap{grid-area:account}
  .account-popover{position:fixed;right:12px;top:70px;max-height:calc(100vh - 84px);overflow:auto}
}
