:root {
  --bg: #f7f3eb;
  --surface: #fffdfa;
  --ink: #26231f;
  --muted: #706a61;
  --line: #d9d1c4;
  --gold: #9a7541;
  --deep: #342b24;
  --wine: #641e29;

  --radius: 14px;
  --container: 1240px;

  --serif: "Marcellus", serif;
  --sans: "DM Sans", sans-serif;
}


/* =========================
   BASE
========================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.6;
}

body.no-scroll {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

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

.skip-link {
  position: absolute;
  left: -9999px;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
  z-index: 999;
  background: #fff;
  padding: 12px;
}


/* =========================
   HEADER
========================= */

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;

  border-bottom: 1px solid transparent;

  transition: 0.25s;
}

.site-header.scrolled {
  background: rgba(247, 243, 235, 0.95);
  backdrop-filter: blur(16px);

  border-color: rgba(38, 35, 31, 0.1);
}

.header-inner {
  height: 84px;

  display: flex;
  align-items: center;

  gap: 28px;
}

.brand img {
  width: 142px;
  max-height: 58px;

  object-fit: contain;
}

.nav {
  display: flex;
  gap: 26px;

  margin-left: auto;
}

.nav a {
  position: relative;

  color: #403b35;

  font-size: 0.88rem;
}

.nav a::after {
  content: "";

  position: absolute;

  left: 0;
  right: 100%;
  bottom: -7px;

  height: 1px;

  background: var(--gold);

  transition: 0.2s;
}

.nav a:hover::after {
  right: 0;
}

.header-actions {
  display: flex;
  align-items: center;

  gap: 14px;
}

.request-button {
  border: 0;
  background: transparent;

  cursor: pointer;

  padding: 10px;

  font-weight: 600;
}

.request-button span {
  display: inline-grid;
  place-items: center;

  min-width: 22px;
  height: 22px;

  margin-left: 5px;

  border-radius: 99px;

  background: var(--deep);
  color: #fff;

  font-size: 0.75rem;
}


/* =========================
   BOTÕES
========================= */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 52px;

  padding: 0 26px;

  border: 1px solid transparent;
  border-radius: 999px;

  font-weight: 600;

  cursor: pointer;

  transition: 0.2s;
}

.button.primary {
  background: var(--deep);
  color: #fff;
}

.button.primary:hover {
  background: #4b4037;
  transform: translateY(-2px);
}

.button.light {
  background: #fff;
  color: var(--deep);
}

.button.light:hover {
  background: #f0e9df;
}

.compact-button {
  min-height: 44px;

  padding: 0 19px;

  font-size: 0.86rem;
}

.text-link {
  display: inline-flex;
  align-items: center;

  gap: 10px;

  font-weight: 600;
}

.text-link span {
  transition: 0.2s;
}

.text-link:hover span {
  transform: translateX(5px);
}


/* =========================
   MENU MOBILE
========================= */

.menu-toggle {
  display: none;

  border: 0;
  background: none;

  padding: 8px;
}

.menu-toggle span {
  display: block;

  width: 24px;
  height: 2px;

  margin: 5px;

  background: var(--ink);
}


/* =========================
   ELEMENTOS GERAIS
========================= */

.eyebrow {
  display: block;

  margin-bottom: 18px;

  color: var(--gold);

  text-transform: uppercase;
  letter-spacing: 0.18em;

  font-size: 0.72rem;
  font-weight: 600;
}

.hero h1,
.section h2,
.modal h2 {
  margin: 0;

  font-family: var(--serif);
  font-weight: 400;

  line-height: 1.08;
}

.section {
  padding: 100px 0;
}

.section h2 {
  font-size: clamp(2.3rem, 4vw, 4.1rem);

  letter-spacing: -0.025em;
}

.section-intro {
  max-width: 720px;

  margin-bottom: 46px;
}

.section-intro p,
.story-copy p {
  color: var(--muted);

  font-size: 1rem;
}


/* =========================
   HERO
========================= */

.hero {
  position: relative;
  overflow: hidden;

  padding: 125px 0 78px;

  background: var(--bg);
}

.hero::after {
  content: "";

  position: absolute;
  z-index: 0;

  top: 0;
  right: -10%;

  width: 43%;
  height: 100%;

  background: #eee5d7;

  transform: skewX(-24deg);
  transform-origin: top;
}

.hero-grid {
  position: relative;
  z-index: 1;

  display: grid;

  grid-template-columns: 0.9fr 1.1fr;

  gap: 68px;

  align-items: center;
}

.hero-copy {
  padding: 0;
}

.hero h1 {
  max-width: 720px;

  font-size: clamp(3.2rem, 5vw, 5.25rem);

  line-height: 1.04;

  letter-spacing: -0.035em;
}

.hero-copy > p {
  max-width: 550px;

  margin: 24px 0 30px;

  color: var(--muted);

  font-size: 1.03rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;

  gap: 24px;
}

.hero-visual {
  position: relative;
}

.hero-image-wrap {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;

  height: 570px;

  overflow: hidden;

  border-radius: 22px;

  background:
    linear-gradient(
      145deg,
      #f2ece3,
      #e8dfd2
    );
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;

  object-fit: contain;
  object-position: center;

  padding: 0;
}


/* =========================
   DIFERENCIAIS
========================= */

.trust-section {
  position: relative;
  z-index: 3;

  padding: 30px 0;

  background: var(--surface);

  border-top: 1px solid rgba(38, 35, 31, 0.08);
  border-bottom: 1px solid rgba(38, 35, 31, 0.08);
}

.trust-row {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 0;
}

.trust-row div {
  display: grid;

  grid-template-columns: 30px 1fr;

  column-gap: 12px;

  padding: 0 28px;

  border-right: 1px solid var(--line);
}

.trust-row div:first-child {
  padding-left: 0;
}

.trust-row div:last-child {
  padding-right: 0;

  border-right: 0;
}

.trust-row span {
  grid-row: 1 / 3;

  color: var(--gold);

  font-size: 0.75rem;
}

.trust-row strong {
  font-family: var(--serif);

  font-size: 1.05rem;
  font-weight: 400;
}

.trust-row small {
  color: var(--muted);

  font-size: 0.76rem;
}


/* =========================
   PERSONALIZAÇÃO
========================= */

.custom-section {
  padding: 0;

  background: var(--deep);
  color: #fff;
}

.custom-grid {
  display: grid;

  grid-template-columns: 0.9fr 1.1fr;

  min-height: 580px;

  align-items: center;
}

.custom-copy {
  padding: 70px 7vw 70px 0;
}

.custom-copy h2 {
  max-width: 520px;
}

.custom-copy p {
  max-width: 520px;

  margin: 24px 0 30px;

  color: #d4c9bd;

  font-size: 1.02rem;
}

.light-eyebrow {
  color: #cbaa76;
}

.custom-image {
  height: 100%;

  min-height: 580px;
}

.custom-image img {
  width:
    calc(
      100% +
      (100vw - min(100vw - 48px, var(--container))) / 2
    );

  max-width: none;

  height: 100%;

  object-fit: cover;
}


/* =========================
   COMO FUNCIONA
========================= */

.process {
  background: var(--surface);
}

.steps {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  border-top: 1px solid var(--line);
}

.steps article {
  min-height: 205px;

  padding: 28px 24px 0 0;

  border-right: 1px solid var(--line);
}

.steps article + article {
  padding-left: 24px;
}

.steps article:last-child {
  border-right: 0;
}

.steps span {
  color: var(--gold);

  font-size: 0.76rem;
}

.steps h3 {
  margin: 22px 0 8px;

  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
}

.steps p {
  margin-top: 0;

  color: var(--muted);

  font-size: 0.9rem;
}


/* =========================
   COLEÇÕES
========================= */

.collections {
  background: var(--surface);
}

.collection-list {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 18px;
}

.collection-panel {
  position: relative;

  height: 360px;

  padding: 0;

  overflow: hidden;

  border: 0;
  border-radius: var(--radius);

  background: #ddd;

  text-align: left;

  cursor: pointer;
}

.collection-panel img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: 0.6s;
}

.collection-panel::after {
  content: "";

  position: absolute;

  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(22, 17, 14, 0.72),
      rgba(22, 17, 14, 0.04)
    );
}

.collection-panel > span {
  position: absolute;

  z-index: 2;

  left: 30px;
  right: 30px;
  bottom: 28px;

  display: grid;

  grid-template-columns: 40px 1fr auto;

  align-items: end;

  color: #fff;
}

.collection-panel small {
  opacity: 0.7;
}

.collection-panel strong {
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 3.4rem);
  font-weight: 400;

  line-height: 1;
}

.collection-panel em {
  font-style: normal;
  font-weight: 600;

  font-size: 0.85rem;
}

.collection-panel:hover img {
  transform: scale(1.035);
}


/* =========================
   CATÁLOGO
========================= */

.catalog-section {
  background: var(--bg);
}

.catalog-heading {
  max-width: none;

  display: grid;

  grid-template-columns: 1.2fr 0.8fr;

  gap: 60px;

  align-items: end;
}

.catalog-toolbar {
  display: flex;

  justify-content: space-between;
  align-items: center;

  margin-bottom: 38px;
  padding-bottom: 20px;

  border-bottom: 1px solid var(--line);
}

.filters {
  display: flex;
  flex-wrap: wrap;

  gap: 10px;
}

.filter-btn {
  padding: 9px 15px;

  border: 1px solid var(--line);
  border-radius: 99px;

  background: transparent;

  color: var(--muted);

  cursor: pointer;
}

.filter-btn.active {
  border-color: var(--deep);

  background: var(--deep);
  color: #fff;
}

.results-count {
  color: var(--muted);

  font-size: 0.85rem;
}

.product-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 46px 24px;
}

.product-card {
  min-width: 0;
}

.product-visual-button {
  width: 100%;
  height: 420px;

  padding: 0;

  overflow: hidden;

  border: 0;
  border-radius: 12px;

  background: #fff;

  cursor: pointer;
}

.product-photo {
  width: 100%;
  height: 100%;

  background: #fff;
}

.product-photo img {
  width: 100%;
  height: 100%;

  padding: 14px;

  object-fit: contain;

  transition: 0.5s;
}

.product-card:hover .product-photo img {
  transform: scale(1.025);
}

.product-content {
  padding: 18px 4px;
}

.product-category {
  color: var(--gold);

  text-transform: uppercase;
  letter-spacing: 0.14em;

  font-size: 0.72rem;
}

.product-content h3 {
  margin: 7px 0;

  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 400;
}

.product-content p {
  margin: 0 0 16px;

  color: var(--muted);

  font-size: 0.9rem;
}

.card-actions {
  display: flex;

  justify-content: space-between;
  align-items: center;
}

.details-btn,
.add-btn {
  padding: 0;

  border: 0;

  background: none;

  font-weight: 600;

  cursor: pointer;
}

.add-btn {
  color: var(--gold);
}


/* =========================
   HISTÓRIA
========================= */

.story {
  background: var(--surface);
}

.story-grid {
  display: grid;

  grid-template-columns: 0.85fr 1fr;

  gap: 8vw;

  align-items: center;
}

.story-visual {
  padding: 0;
}

.story-visual > img {
  width: 100%;
  height: 500px;

  object-fit: cover;

  border-radius: 10px;
}

.story-copy {
  max-width: 570px;
}

.story-copy h2 {
  max-width: 560px;
}

.story-copy p {
  margin: 22px 0 0;
}


/* =========================
   CTA FINAL
========================= */

.final-cta {
  padding: 95px 0;

  text-align: center;
}

.final-cta-inner {
  max-width: 800px;
}

.final-cta p {
  max-width: 600px;

  margin: 22px auto 30px;

  color: var(--muted);
}


/* =========================
   FOOTER
========================= */

.footer {
  padding: 70px 0 24px;

  background: #211d19;
  color: #e7ded3;
}

.footer-grid {
  display: grid;

  grid-template-columns: 2fr 1fr 1fr;

  gap: 70px;
}

.footer-brand img {
  width: 165px;

  filter: brightness(0) invert(1);

  opacity: 0.9;
}

.footer-brand p {
  max-width: 380px;

  color: #aaa095;
}

.footer-grid > div:not(.footer-brand) {
  display: flex;
  flex-direction: column;

  gap: 12px;
}

.footer-grid strong {
  margin-bottom: 8px;

  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 400;
}

.footer-grid a,
.footer-grid span {
  color: #aaa095;
}

.footer-bottom {
  display: flex;

  justify-content: space-between;

  margin-top: 55px;
  padding-top: 20px;

  border-top: 1px solid #3b342e;

  color: #877d74;
}


/* =========================
   CARRINHO
========================= */

.cart-drawer {
  position: fixed;

  inset: 0;

  z-index: 90;

  background: rgba(20, 17, 15, 0.46);

  opacity: 0;

  pointer-events: none;

  transition: 0.25s;
}

.cart-drawer.open {
  opacity: 1;

  pointer-events: auto;
}

.cart-panel {
  position: absolute;

  right: 0;
  top: 0;

  width: min(520px, 100%);
  height: 100%;

  padding: 34px;

  overflow: auto;

  background: var(--surface);

  transform: translateX(100%);

  transition: 0.3s;
}

.cart-drawer.open .cart-panel {
  transform: none;
}

.cart-header {
  display: flex;

  justify-content: space-between;
  align-items: start;
}

.cart-header h2 {
  margin: 4px 0;

  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
}

.drawer-label {
  color: var(--gold);

  text-transform: uppercase;
  letter-spacing: 0.15em;

  font-size: 0.72rem;
}

.cart-header button,
.modal-close {
  border: 0;

  background: none;

  font-size: 2rem;

  cursor: pointer;
}

.cart-intro {
  color: var(--muted);
}

.cart-items {
  margin: 30px 0;
}

.cart-item {
  padding: 18px 0;

  border-bottom: 1px solid var(--line);
}

.cart-item-top {
  display: flex;

  justify-content: space-between;

  gap: 20px;
}

.cart-item strong {
  font-family: var(--serif);
  font-weight: 400;
}

.cart-item small {
  display: block;

  color: var(--muted);
}

.cart-config {
  margin: 10px 0;

  color: var(--muted);

  font-size: 0.84rem;
}

.cart-item-controls {
  display: flex;

  align-items: center;
  justify-content: space-between;
}

.qty {
  display: flex;

  align-items: center;

  gap: 12px;
}

.qty button,
.remove-btn {
  border: 0;

  background: none;

  cursor: pointer;
}

.remove-btn {
  color: #8f3f48;

  font-size: 0.82rem;
}

.empty-cart {
  padding: 55px 20px;

  color: var(--muted);

  text-align: center;
}

.empty-cart strong {
  display: block;

  color: var(--ink);

  font-family: var(--serif);
  font-size: 1.3rem;
}

.client-fields {
  display: grid;

  gap: 16px;

  margin-bottom: 22px;
}

.client-fields label,
.custom-notes {
  font-size: 0.82rem;
  font-weight: 600;
}

.client-fields input,
.client-fields textarea,
.custom-notes textarea {
  width: 100%;

  margin-top: 7px;
  padding: 13px 14px;

  border: 1px solid var(--line);
  border-radius: 10px;

  background: #fff;

  outline: none;
}

.client-fields input:focus,
.client-fields textarea:focus,
.custom-notes textarea:focus {
  border-color: var(--gold);
}

.full {
  width: 100%;
}

.privacy-note {
  display: block;

  margin-top: 12px;

  color: var(--muted);

  text-align: center;
}


/* =========================
   MODAL
========================= */

.modal {
  position: fixed;

  inset: 0;

  z-index: 100;

  display: grid;

  place-items: center;

  opacity: 0;

  pointer-events: none;

  transition: 0.2s;
}

.modal.open {
  opacity: 1;

  pointer-events: auto;
}

.modal-backdrop {
  position: absolute;

  inset: 0;

  background: rgba(20, 17, 15, 0.62);
}

.modal-content {
  position: relative;

  z-index: 2;

  display: grid;

  grid-template-columns: 1fr 1fr;

  width: min(1040px, calc(100% - 32px));
  max-height: 90vh;

  overflow: auto;

  border-radius: 18px;

  background: var(--surface);
}

.modal-close {
  position: absolute;

  right: 18px;
  top: 12px;

  z-index: 3;

  display: grid;

  place-items: center;

  width: 42px;
  height: 42px;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.8);
}

.modal-image {
  min-height: 720px;

  background: #fff;
}

.modal-image .product-photo {
  width: 100%;
  height: 100%;

  background: #fff;
}

.modal-image .product-photo img,
.modal-image img {
  width: 100%;
  height: 100%;

  padding: 24px;

  object-fit: contain;
}

.modal-body {
  padding: 52px;
}

.modal-category {
  color: var(--gold);

  text-transform: uppercase;
  letter-spacing: 0.14em;

  font-size: 0.72rem;
}

.modal-body h2 {
  margin: 8px 0 14px;

  font-size: 2.6rem;
}

.modal-body > p {
  color: var(--muted);
}

.made-to-order {
  padding: 12px 0;

  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);

  font-size: 0.84rem;
}

fieldset {
  margin: 24px 0;
  padding: 0;

  border: 0;
}

legend {
  margin-bottom: 11px;

  font-weight: 600;
}

.option-grid {
  display: flex;
  flex-wrap: wrap;

  gap: 8px;
}

.option-grid label,
.option-stack label {
  cursor: pointer;
}

.option-grid input,
.option-stack input {
  position: absolute;

  opacity: 0;
}

.option-grid span,
.option-stack span {
  display: block;

  padding: 9px 13px;

  border: 1px solid var(--line);
  border-radius: 99px;

  font-size: 0.85rem;
}

.option-grid input:checked + span,
.option-stack input:checked + span {
  border-color: var(--deep);

  background: var(--deep);
  color: #fff;
}

.option-stack {
  display: grid;

  gap: 8px;
}

.option-stack span {
  border-radius: 10px;
}

.custom-check {
  display: flex;

  align-items: center;

  gap: 10px;

  margin: 22px 0;

  font-weight: 600;
}

.custom-notes {
  display: none;

  margin: 0 0 20px;
}

.custom-notes.show {
  display: block;
}

.modal-contact {
  margin-top: 20px;

  font-size: 0.9rem;
}


/* =========================
   TOAST / ANIMAÇÕES
========================= */

.toast {
  position: fixed;

  left: 50%;
  bottom: 28px;

  z-index: 120;

  padding: 13px 20px;

  border-radius: 99px;

  background: var(--deep);
  color: #fff;

  opacity: 0;

  pointer-events: none;

  transform: translate(-50%, 30px);

  transition: 0.25s;
}

.toast.show {
  opacity: 1;

  transform: translate(-50%, 0);
}

.reveal {
  opacity: 0;

  transform: translateY(24px);

  transition:
    opacity 0.7s,
    transform 0.7s;
}

.reveal.visible {
  opacity: 1;

  transform: none;
}


/* =========================
   TABLET
========================= */

@media (max-width: 1050px) {

  .nav {
    display: none;
  }

  .menu-toggle {
    display: block;

    margin-left: auto;
  }

  .nav.open {
    position: absolute;

    top: 84px;
    left: 0;
    right: 0;

    display: flex;
    flex-direction: column;

    padding: 25px;

    border-bottom: 1px solid var(--line);

    background: var(--bg);
  }

  .compact-button {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 0.95fr 1.05fr;

    gap: 40px;
  }

  .hero h1 {
    font-size: clamp(3rem, 6vw, 4.5rem);
  }

  .hero-image-wrap {
    height: 500px;
  }

  .collection-list {
    grid-template-columns: 1fr 1fr;
  }

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

  .story-grid {
    gap: 55px;
  }

  .trust-row {
    grid-template-columns: 1fr 1fr;

    row-gap: 30px;
  }

  .trust-row div:nth-child(2) {
    border-right: 0;
  }

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

  .steps article:nth-child(2) {
    border-right: 0;
  }

  .steps article:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .catalog-heading {
    grid-template-columns: 1fr;

    gap: 20px;
  }

  .modal-content {
    grid-template-columns: 0.85fr 1fr;
  }

  .modal-image {
    min-height: 600px;
  }
}


/* =========================
   MOBILE
========================= */

@media (max-width: 720px) {

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


  /* HEADER */

  .header-inner {
    height: 70px;
  }

  .brand img {
    width: 112px;
  }

  .request-button {
    padding: 6px;

    font-size: 0;
  }

  .request-button span {
    margin: 0;

    font-size: 0.7rem;
  }

  .nav.open {
    top: 70px;
  }


  /* HERO */

  .hero {
    padding: 96px 0 50px;

    background: var(--bg);
  }

  .hero::after {
    display: none;
  }

  .hero-grid {
    display: grid;

    grid-template-columns: 1fr;

    gap: 28px;
  }

  .hero-copy {
    order: 1;

    padding: 0;
  }

  .hero-visual {
    order: 2;
  }

  .hero .eyebrow {
    margin-bottom: 13px;

    font-size: 0.67rem;

    letter-spacing: 0.16em;
  }

  .hero h1 {
    max-width: 100%;

    font-size: clamp(2.5rem, 10.5vw, 3.2rem);

    line-height: 1.03;

    letter-spacing: -0.035em;
  }

  .hero-copy > p {
    max-width: 100%;

    margin: 17px 0 23px;

    font-size: 0.95rem;

    line-height: 1.55;
  }

  .hero-actions {
    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 15px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-image-wrap {
    display: flex;

    align-items: center;
    justify-content: center;

    height: 420px;

    border-radius: 16px;

    background:
      linear-gradient(
        145deg,
        #f3ede5,
        #e9e0d4
      );
  }

  .hero-image-wrap img {
    width: 100%;
    height: 100%;

    object-fit: contain;
    object-position: center;

    padding: 0;
  }


  /* DIFERENCIAIS */

  .trust-section {
    padding: 38px 0;
  }

  .trust-row {
    grid-template-columns: 1fr 1fr;

    gap: 30px 18px;
  }

  .trust-row div,
  .trust-row div:first-child,
  .trust-row div:last-child {
    padding: 0;

    border: 0;

    grid-template-columns: 23px 1fr;
  }

  .trust-row strong {
    font-size: 0.98rem;
  }

  .trust-row small {
    font-size: 0.73rem;

    line-height: 1.4;
  }


  /* SEÇÕES */

  .section {
    padding: 70px 0;
  }

  .section h2 {
    font-size: clamp(2.15rem, 9.5vw, 3rem);

    line-height: 1.08;
  }

  .section-intro {
    margin-bottom: 34px;
  }

  .section-intro p,
  .story-copy p {
    font-size: 0.95rem;
  }


  /* PERSONALIZAÇÃO */

  .custom-grid {
    grid-template-columns: 1fr;

    min-height: 0;
  }

  .custom-copy {
    padding: 65px 0 55px;
  }

  .custom-copy p {
    margin: 20px 0 26px;

    font-size: 0.96rem;
  }

  .custom-copy .button {
    width: 100%;
  }

  .custom-image {
    min-height: 400px;
  }

  .custom-image img {
    width: calc(100% + 32px);

    margin-left: -16px;

    object-fit: cover;
  }


  /* PROCESSO */

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

  .steps article,
  .steps article + article {
    min-height: auto;

    padding: 22px 0;

    border-top: 1px solid var(--line);
    border-right: 0;
  }

  .steps article:first-child {
    border-top: 0;
  }

  .steps h3 {
    margin: 10px 0 5px;

    font-size: 1.25rem;
  }

  .steps p {
    margin-bottom: 0;
  }


  /* CATEGORIAS */

  .collection-list {
    grid-template-columns: 1fr;

    gap: 12px;
  }

  .collection-panel {
    height: 225px;

    border-radius: 10px;
  }

  .collection-panel > span {
    left: 20px;
    right: 20px;
    bottom: 18px;

    grid-template-columns: 32px 1fr;
  }

  .collection-panel strong {
    font-size: 2.1rem;
  }

  .collection-panel em {
    display: none;
  }


  /* CATÁLOGO */

  .catalog-heading {
    gap: 12px;
  }

  .catalog-toolbar {
    align-items: flex-start;
    flex-direction: column;

    gap: 16px;

    margin-bottom: 28px;
  }

  .filters {
    width: 100%;

    flex-wrap: nowrap;

    overflow-x: auto;

    padding-bottom: 5px;

    scrollbar-width: none;
  }

  .filters::-webkit-scrollbar {
    display: none;
  }

  .filter-btn {
    flex: 0 0 auto;
  }

  .product-grid {
    grid-template-columns: 1fr;

    gap: 35px;
  }

  .product-visual-button {
    height: 420px;
  }


  /* HISTÓRIA */

  .story-grid {
    grid-template-columns: 1fr;

    gap: 35px;
  }

  .story-visual {
    order: 2;
  }

  .story-copy {
    order: 1;
  }

  .story-visual > img {
    height: 400px;

    border-radius: 8px;
  }

  .story-copy p {
    margin-top: 18px;
  }


  /* CTA */

  .final-cta {
    padding: 70px 0;
  }

  .final-cta p {
    margin: 18px auto 26px;
  }

  .final-cta .button {
    width: 100%;
  }


  /* FOOTER */

  .footer {
    padding-top: 55px;
  }

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

    gap: 36px;
  }

  .footer-bottom {
    display: grid;

    gap: 8px;

    margin-top: 45px;
  }


  /* MODAL */

  .modal-content {
    grid-template-columns: 1fr;

    max-height: 94vh;
  }

  .modal-image {
    min-height: 390px;
  }

  .modal-body {
    padding: 28px 20px;
  }

  .modal-body h2 {
    font-size: 2rem;
  }


  /* CARRINHO */

  .cart-panel {
    padding: 26px 20px;
  }
}
