/* =========================================================
   LOVTY3D — ESTILOS PRINCIPAIS
   EDITE AS CORES PRINCIPAIS NESTA ÁREA, SE NECESSÁRIO.
========================================================= */

:root {
  --bg: #fffafc;
  --surface: #ffffff;
  --surface-soft: #f8efff;
  --text: #24182d;
  --text-soft: #665d6c;
  --line: #eadfed;

  --primary: #6f32a8;
  --primary-dark: #4f187e;
  --primary-soft: #ebd8ff;

  --pink: #f26d9c;
  --pink-soft: #ffe0eb;
  --yellow: #ffc95c;
  --dark: #211329;

  --shadow-sm: 0 8px 24px rgba(53, 24, 72, 0.08);
  --shadow-md: 0 18px 50px rgba(53, 24, 72, 0.13);

  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 36px;

  --container: 1160px;
  --transition: 180ms ease;
}

/* Reset básico */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
}

::selection {
  background: var(--primary-soft);
  color: var(--primary-dark);
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

.section {
  padding: 100px 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.skip-link {
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 100;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--dark);
  color: #fff;
  transform: translateY(-150%);
  transition: transform var(--transition);
}

.skip-link:focus {
  transform: translateY(0);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--primary);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 34px;
}

.section-heading h2,
.customization h2,
.about h2,
.cta h2 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.section-heading p:not(.eyebrow) {
  max-width: 620px;
  margin: 16px 0 0;
  color: var(--text-soft);
}

/* =========================================================
   CABEÇALHO
========================================================= */

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(234, 223, 237, 0.85);
  background: rgba(255, 250, 252, 0.9);
  backdrop-filter: blur(14px);
}

.header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.brand__mark {
  display: inline-grid;
  width: 37px;
  height: 37px;
  place-items: center;
  border-radius: 11px;
  background: linear-gradient(140deg, var(--primary), var(--pink));
  color: #fff;
  font-size: 0.67rem;
  letter-spacing: -0.06em;
  box-shadow: 0 8px 18px rgba(111, 50, 168, 0.25);
}

.brand__text span {
  color: var(--primary);
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav a {
  color: var(--text-soft);
  font-size: 0.92rem;
  font-weight: 700;
  transition: color var(--transition);
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--primary);
}

.nav .nav__instagram {
  padding: 10px 15px;
  border: 1px solid var(--primary);
  border-radius: 999px;
  color: var(--primary);
}

.nav .nav__instagram:hover,
.nav .nav__instagram:focus-visible {
  background: var(--primary);
  color: #fff;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 9px;
  border: 0;
  border-radius: 10px;
  background: var(--surface-soft);
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  border-radius: 999px;
  background: var(--primary-dark);
}

/* =========================================================
   BOTÕES
========================================================= */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 800;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button--primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 11px 22px rgba(111, 50, 168, 0.24);
}

.button--primary:hover,
.button--primary:focus-visible {
  background: var(--primary-dark);
}

.button--secondary {
  border-color: var(--line);
  background: #fff;
  color: var(--primary-dark);
}

.button--secondary:hover,
.button--secondary:focus-visible {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.button--dark {
  background: var(--dark);
  color: #fff;
}

.button--dark:hover,
.button--dark:focus-visible {
  background: var(--primary-dark);
}

.button--light {
  background: #fff;
  color: var(--primary-dark);
}

.button--light:hover,
.button--light:focus-visible {
  box-shadow: 0 12px 30px rgba(30, 12, 40, 0.18);
}

/* =========================================================
   HERO
========================================================= */

.hero {
  position: relative;
  overflow: hidden;
  padding: 90px 0 78px;
  background:
    radial-gradient(circle at 80% 15%, rgba(242, 109, 156, 0.15), transparent 28%),
    linear-gradient(145deg, #fff8fc 0%, #f7ecff 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 60px;
}

.hero__text {
  max-width: 620px;
}

.hero h1 {
  max-width: 650px;
  margin: 0;
  font-size: clamp(3.2rem, 7vw, 5.9rem);
  line-height: 0.93;
  letter-spacing: -0.075em;
}

.hero h1 span {
  color: var(--primary);
}

.hero__description {
  max-width: 530px;
  margin: 24px 0;
  color: var(--text-soft);
  font-size: 1.08rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__note {
  margin: 18px 0 0;
  color: var(--text-soft);
  font-size: 0.8rem;
}

.hero__visual {
  position: relative;
  min-height: 420px;
  isolation: isolate;
}

.hero-card {
  position: absolute;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 28px;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(10px);
}

.hero-card--large {
  top: 60px;
  left: 50%;
  width: min(100%, 320px);
  min-height: 260px;
  padding: 34px;
  transform: translateX(-50%) rotate(-7deg);
  background: linear-gradient(145deg, #7c3cc0, #d56fa9);
  color: #fff;
}

.hero-card--large::after {
  position: absolute;
  right: -22px;
  bottom: -22px;
  width: 90px;
  height: 90px;
  border: 12px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  content: "";
}

.hero-card__icon {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 28px;
  place-items: center;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.18);
  font-size: 1.7rem;
}

.hero-card--large strong {
  font-size: 1.55rem;
  line-height: 1.1;
}

.hero-card--large small {
  margin-top: 8px;
  opacity: 0.9;
}

.hero-card--small {
  display: grid;
  width: 112px;
  height: 112px;
  place-items: center;
  font-size: 2.4rem;
  font-weight: 900;
}

.hero-card--purple {
  top: 7px;
  right: 4%;
  background: var(--primary-soft);
  color: var(--primary-dark);
  transform: rotate(13deg);
}

.hero-card--pink {
  bottom: 25px;
  left: 4%;
  background: var(--pink-soft);
  color: #c72f65;
  transform: rotate(-12deg);
}

.hero-ring {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(111, 50, 168, 0.16);
  border-radius: 50%;
}

.hero-ring--one {
  top: 18px;
  left: 5%;
  width: 360px;
  height: 360px;
}

.hero-ring--two {
  right: -60px;
  bottom: -80px;
  width: 300px;
  height: 300px;
  border-width: 25px;
  border-color: rgba(242, 109, 156, 0.1);
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.45;
}

.hero__glow--one {
  top: -130px;
  right: 15%;
  width: 300px;
  height: 300px;
  background: #dca7ff;
}

.hero__glow--two {
  bottom: -150px;
  left: 10%;
  width: 260px;
  height: 260px;
  background: #ffc2d8;
}

/* =========================================================
   BENEFÍCIOS
========================================================= */

.benefits {
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.benefit {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 125px;
  padding: 20px 28px;
  border-right: 1px solid var(--line);
}

.benefit:last-child {
  border-right: 0;
}

.benefit__icon {
  display: grid;
  flex: 0 0 auto;
  width: 45px;
  height: 45px;
  place-items: center;
  border-radius: 14px;
  background: var(--surface-soft);
  color: var(--primary);
  font-size: 1.35rem;
}

.benefit h2 {
  margin: 0;
  font-size: 0.96rem;
}

.benefit p {
  margin: 4px 0 0;
  color: var(--text-soft);
  font-size: 0.84rem;
}

/* =========================================================
   CATÁLOGO
========================================================= */

.catalog {
  background: var(--bg);
}

.catalog__search {
  width: min(100%, 285px);
}

.catalog__search input {
  width: 100%;
  min-height: 46px;
  padding: 11px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  outline: 0;
  background: #fff;
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.catalog__search input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(111, 50, 168, 0.1);
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 22px;
}

.filter-button {
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--text-soft);
  font-size: 0.84rem;
  font-weight: 700;
  transition: all var(--transition);
}

.filter-button:hover,
.filter-button:focus-visible {
  border-color: var(--primary);
  color: var(--primary);
}

.filter-button.is-active {
  border-color: var(--primary);
  background: var(--primary);
  color: #fff;
}

.catalog__status {
  min-height: 28px;
  color: var(--text-soft);
  font-size: 0.86rem;
}

.catalog__status p {
  margin: 0 0 14px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.product-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: 0 4px 0 rgba(82, 44, 100, 0.01);
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}

.product-card:hover {
  border-color: #d9b6f1;
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.product-card__image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 0.92;
  background: linear-gradient(145deg, #f3e3ff, #ffe9f1);
}

.product-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

.product-card:hover .product-card__image {
  transform: scale(1.04);
}

.product-card__tag {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(36, 24, 45, 0.78);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
}

.product-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 17px;
}

.product-card__category {
  margin: 0 0 7px;
  color: var(--primary);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-card h3 {
  margin: 0;
  font-size: 1.01rem;
  line-height: 1.22;
}

.product-card__description {
  display: -webkit-box;
  overflow: hidden;
  margin: 9px 0 16px;
  color: var(--text-soft);
  font-size: 0.84rem;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.product-card__bottom {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
}

.product-card__price {
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 800;
}

.product-card__details {
  padding: 7px 0;
  border: 0;
  background: transparent;
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 800;
}

.product-card__details:hover,
.product-card__details:focus-visible {
  color: var(--primary-dark);
  text-decoration: underline;
}

.empty-state,
.error-state {
  grid-column: 1 / -1;
  padding: 42px 22px;
  border: 1px dashed #d7bbeb;
  border-radius: var(--radius-md);
  background: #fff;
  color: var(--text-soft);
  text-align: center;
}

.error-state strong {
  display: block;
  margin-bottom: 8px;
  color: var(--primary-dark);
}

/* =========================================================
   PERSONALIZAÇÃO
========================================================= */

.customization {
  overflow: hidden;
  background: var(--dark);
  color: #fff;
}

.customization__content {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  gap: 90px;
}

.customization .eyebrow {
  color: #edbcff;
}

.customization h2 {
  max-width: 560px;
}

.customization__text > p:not(.eyebrow) {
  max-width: 620px;
  margin: 20px 0 30px;
  color: #d6ccda;
}

.customization__illustration {
  position: relative;
  min-height: 400px;
}

.cube {
  position: absolute;
  border-radius: 28px;
  box-shadow: 18px 20px 0 rgba(0, 0, 0, 0.12);
}

.cube--one {
  top: 62px;
  left: 10%;
  width: 190px;
  height: 190px;
  background: linear-gradient(145deg, #bf72ed, #6331a1);
  transform: rotate(-13deg);
}

.cube--two {
  top: 12px;
  right: 6%;
  width: 120px;
  height: 120px;
  background: linear-gradient(145deg, #ffacc8, #e85990);
  transform: rotate(15deg);
}

.cube--three {
  right: 15%;
  bottom: 30px;
  width: 160px;
  height: 160px;
  background: linear-gradient(145deg, #ffe096, #edaa44);
  transform: rotate(-8deg);
}

.customization__spark {
  position: absolute;
  color: #f7c4ff;
  font-size: 2.4rem;
}

.spark--one {
  top: 8px;
  left: 13%;
}

.spark--two {
  right: 1%;
  bottom: 5px;
  color: #ffe6a6;
}

.steps {
  display: grid;
  gap: 19px;
  max-width: 620px;
  padding: 0;
  list-style: none;
}

.steps li {
  display: flex;
  gap: 14px;
}

.steps li > span {
  display: grid;
  width: 29px;
  height: 29px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: #9d58d0;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
}

.steps strong {
  font-size: 0.94rem;
}

.steps p {
  margin: 2px 0 0;
  color: #cfc3d3;
  font-size: 0.86rem;
}

.text-link {
  display: inline-flex;
  gap: 7px;
  margin-top: 32px;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 800;
}

.text-link:hover,
.text-link:focus-visible {
  color: #edbcff;
}

/* =========================================================
   SOBRE E CTA
========================================================= */

.about {
  background: #fff;
}

.about__content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
}

.about__copy {
  padding-top: 8px;
}

.about__copy p {
  margin: 0 0 17px;
  color: var(--text-soft);
}

.about__copy .button {
  margin-top: 8px;
}

.cta {
  padding: 72px 0;
  background:
    radial-gradient(circle at 85% 10%, rgba(255, 255, 255, 0.2), transparent 28%),
    linear-gradient(120deg, var(--primary-dark), var(--primary), #a042a2);
  color: #fff;
}

.cta__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
}

.cta .eyebrow {
  color: #f3cbff;
}

.cta h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.cta p:not(.eyebrow) {
  margin: 12px 0 0;
  color: #f5eafb;
}

/* =========================================================
   RODAPÉ
========================================================= */

.footer {
  background: #160c1e;
  color: #fff;
}

.footer__content {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding: 48px 0 30px;
}

.brand--footer .brand__mark {
  box-shadow: none;
}

.footer__content p {
  max-width: 340px;
  margin: 13px 0 0;
  color: #c6bacb;
  font-size: 0.86rem;
}

.footer__links {
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer__links a {
  color: #ded3e2;
  font-size: 0.86rem;
}

.footer__links a:hover,
.footer__links a:focus-visible {
  color: #fff;
  text-decoration: underline;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 19px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  color: #a99caf;
  font-size: 0.75rem;
}

.footer__bottom p {
  margin: 0;
}

/* =========================================================
   MODAL DO PRODUTO
========================================================= */

.modal {
  width: min(calc(100% - 32px), 900px);
  max-height: min(760px, calc(100dvh - 32px));
  padding: 0;
  border: 0;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 28px 90px rgba(14, 6, 21, 0.35);
}

.modal::backdrop {
  background: rgba(22, 12, 30, 0.66);
  backdrop-filter: blur(4px);
}

.modal__close {
  position: absolute;
  z-index: 2;
  top: 13px;
  right: 13px;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--dark);
  font-size: 1.8rem;
  line-height: 1;
  box-shadow: var(--shadow-sm);
}

.modal__close:hover,
.modal__close:focus-visible {
  background: var(--primary);
  color: #fff;
}

.modal__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 430px;
}

.modal__image-wrap {
  min-height: 100%;
  background: var(--surface-soft);
}

.modal__image {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.modal__details {
  display: flex;
  flex-direction: column;
  padding: 48px 38px 34px;
}

.modal__category {
  margin: 0 0 9px;
  color: var(--primary);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.modal__details h2 {
  margin: 0;
  font-size: clamp(1.65rem, 4vw, 2.3rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.modal__description {
  margin: 16px 0;
  color: var(--text-soft);
}

.modal__price {
  margin: 5px 0 17px;
  color: var(--primary-dark);
  font-size: 1rem;
  font-weight: 900;
}

.modal__list {
  display: grid;
  gap: 9px;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
}

.modal__list li {
  display: flex;
  gap: 9px;
  color: var(--text-soft);
  font-size: 0.87rem;
}

.modal__list li::before {
  color: var(--primary);
  content: "✦";
}

.modal__whatsapp {
  width: 100%;
  margin-top: auto;
}

/* =========================================================
   ESTADOS E RESPONSIVIDADE
========================================================= */

.noscript-message {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 99;
  max-width: 330px;
  padding: 14px;
  border-radius: 12px;
  background: #fff3cd;
  color: #5f4600;
  box-shadow: var(--shadow-md);
  font-size: 0.84rem;
}

@media (max-width: 1000px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero__content {
    gap: 35px;
  }

  .customization__content,
  .about__content {
    gap: 55px;
  }
}

@media (max-width: 780px) {
  .section {
    padding: 72px 0;
  }

  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .menu-toggle {
    display: block;
  }

  .nav {
    position: fixed;
    top: 78px;
    right: 16px;
    left: 16px;
    display: none;
    align-items: stretch;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #fff;
    box-shadow: var(--shadow-md);
  }

  .nav.is-open {
    display: grid;
  }

  .nav a {
    padding: 12px;
  }

  .nav .nav__instagram {
    text-align: center;
  }

  .hero {
    padding: 65px 0 55px;
  }

  .hero__content,
  .customization__content,
  .about__content {
    grid-template-columns: 1fr;
  }

  .hero__visual {
    min-height: 340px;
    max-width: 460px;
    width: 100%;
    margin: 0 auto;
  }

  .hero-card--large {
    top: 48px;
  }

  .section-heading {
    display: block;
  }

  .catalog__search {
    width: 100%;
    margin-top: 24px;
  }

  .benefits__grid {
    grid-template-columns: 1fr;
  }

  .benefit {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .benefit:last-child {
    border-bottom: 0;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .product-card__body {
    padding: 14px;
  }

  .product-card__bottom {
    display: block;
  }

  .product-card__details {
    margin-top: 9px;
  }

  .customization__illustration {
    order: 2;
    min-height: 315px;
  }

  .customization__text {
    order: 1;
  }

  .cta__content,
  .footer__content,
  .footer__bottom {
    display: grid;
  }

  .footer__bottom {
    gap: 7px;
  }

  .modal__content {
    grid-template-columns: 1fr;
  }

  .modal__image {
    min-height: 260px;
    max-height: 320px;
  }

  .modal__details {
    padding: 28px 23px 25px;
  }
}

@media (max-width: 440px) {
  .hero h1 {
    font-size: 3.15rem;
  }

  .hero-card--large {
    width: 250px;
    min-height: 220px;
    padding: 26px;
  }

  .hero-card--small {
    width: 88px;
    height: 88px;
    font-size: 1.8rem;
  }

  .hero-card--purple {
    right: 0;
  }

  .hero-card--pink {
    left: 0;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 6px;
  }

  .filter-button {
    flex: 0 0 auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

/* =========================================================
   LOGO OFICIAL DA LOVTY3D
========================================================= */

.brand {
  display: inline-flex;
  align-items: center;
  max-width: 190px;
}

.brand__logo {
  display: block;
  width: auto;
  max-width: 180px;
  height: 46px;
  object-fit: contain;
  object-position: left center;
}

/* Logo no rodapé, em tamanho um pouco menor */
.brand__logo--footer {
  height: 42px;
  max-width: 165px;
}

/* Ajuste para telas pequenas */
@media (max-width: 440px) {
  .brand__logo {
    max-width: 145px;
    height: 38px;
  }

  .brand__logo--footer {
    max-width: 150px;
    height: 38px;
  }
}