:root {
  --cream: #F5F0E8;
  --warm-white: #FDFAF4;
  --espresso: #1C1410;
  --clay: #8B6F5E;
  --gold: #C9A96E;
  --gold-light: #E8D5A3;
  --terracota: #C17A5A;
  --text: #2A1F1A;
  --text-muted: #7A6A5E;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--warm-white);
  color: var(--text);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1000;
  opacity: 0.4;
}

/* NAV */
nav {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  padding: 22px 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.5s, padding 0.4s;
  overflow: hidden;
  isolation: isolate;
}

nav::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(253, 250, 244, 0.98), rgba(245, 240, 232, 0.95) 48%, rgba(233, 223, 208, 0.9));
  border-bottom: 1px solid rgba(201, 169, 110, 0.22);
  box-shadow: 0 10px 30px rgba(28, 20, 16, 0.08);
  z-index: -1;
}

nav::after {
  content: '';
  position: absolute;
  left: 60px;
  right: 60px;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(201, 169, 110, 0), rgba(201, 169, 110, 0.95), rgba(201, 169, 110, 0));
  opacity: 0.9;
}

nav.scrolled {
  background: rgba(253, 250, 244, 0.78);
  backdrop-filter: blur(12px);
  padding: 14px 54px;
  border-bottom: 1px solid rgba(201, 169, 110, 0.16);
}

nav .nav-logo {
  text-decoration: none;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  margin-right: auto;
}

nav .nav-logo img {
  height: 84px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--espresso);
  text-decoration: none;
  position: relative;
  transition: color 0.3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.4s;
}

.nav-links a:hover {
  color: var(--terracota);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--espresso);
}

.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 24px;
  font-size: 0.82rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
  color: var(--warm-white);
  text-decoration: none;
  border: 1px solid rgba(28, 20, 16, 0.08);
  background: linear-gradient(135deg, var(--gold), var(--terracota));
  padding: 10px 24px;
  box-shadow: 0 10px 24px rgba(193, 122, 90, 0.18);
  transition: background 0.3s, color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.nav-cta:hover {
  background: linear-gradient(135deg, var(--espresso), #403029);
  color: var(--warm-white);
  transform: translateY(-1px);
  box-shadow: 0 14px 26px rgba(28, 20, 16, 0.16);
}

/* PAGE HEADER */
.page-header {
  padding: 160px 60px 80px;
  background: var(--espresso);
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  right: -100px;
  top: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(201, 169, 110, 0.08);
}

.page-header::after {
  content: '';
  position: absolute;
  right: 50px;
  top: 50px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 1px solid rgba(201, 169, 110, 0.05);
}

.page-header-inner {
  position: relative;
  z-index: 2;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}

.breadcrumb a {
  font-size: 0.77rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.4);
  text-decoration: none;
  transition: color 0.3s;
}

.breadcrumb a:hover {
  color: var(--gold);
}

.breadcrumb span {
  font-size: 0.77rem;
  color: rgba(245, 240, 232, 0.25);
}

.breadcrumb strong {
  font-size: 0.77rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.page-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.5rem, 5.5vw, 5.5rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.08;
  margin-bottom: 20px;
}

.page-title em {
  font-style: italic;
  color: var(--gold);
}

.page-desc {
  font-size: 1.05rem;
  line-height: 1.9;
  color: rgba(245, 240, 232, 0.55);
  max-width: 520px;
}

.page-header-meta {
  display: flex;
  gap: 40px;
  margin-top: 48px;
}

.meta-item {
  border-top: 1px solid rgba(201, 169, 110, 0.2);
  padding-top: 16px;
}

.meta-label {
  font-size: 0.70rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.35);
  margin-bottom: 4px;
}

.meta-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.82rem;
  color: var(--gold);
}

/* MIN ORDER NOTICE */
.min-notice {
  background: var(--gold);
  padding: 16px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.min-notice p {
  font-size: 1.05rem;
  letter-spacing: 0.12em;
  color: var(--espresso);
  font-weight: 400;
}

.min-notice p strong {
  font-weight: 500;
}

.min-notice a {
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--espresso);
  text-decoration: none;
  border-bottom: 1px solid rgba(28, 20, 16, 0.3);
  padding-bottom: 1px;
  transition: border-color 0.3s;
}

.min-notice a:hover {
  border-color: var(--espresso);
}

/* CATALOG MAIN */
.catalog-main {
  padding: 80px 60px;
}

.catalog-controls {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas:
    "type count"
    "mode count";
  column-gap: 32px;
  row-gap: 18px;
  align-items: start;
  margin-bottom: 48px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(201, 169, 110, 0.2);
}

.filter-group {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  min-width: 0;
}

.catalog-controls .filter-group:nth-of-type(1) {
  grid-area: type;
}

.catalog-controls .filter-group:nth-of-type(2) {
  grid-area: mode;
}

.filter-label {
  font-size: 0.80rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-right: 8px;
}

.filter-btn {
  padding: 9px 20px;
  font-size: 0.80rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid rgba(139, 111, 94, 0.3);
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'Jost', sans-serif;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--espresso);
  border-color: var(--espresso);
  color: var(--cream);
}

.results-count {
  grid-area: count;
  justify-self: end;
  align-self: center;
  font-size: 0.88rem;
  color: var(--text-muted);
  white-space: nowrap;
  padding-left: 16px;
}

.results-count strong {
  color: var(--espresso);
}

/* GRID */
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.product-card {
  background: var(--warm-white);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: opacity 0.4s;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card.hidden {
  display: none;
}

.product-img {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: transform 0.6s;
  position: relative;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-img svg {
  width: 120px;
  height: 120px;
  opacity: 0.22;
  transition: transform 0.6s;
}

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

.product-card:hover .product-img svg {
  transform: scale(1.08);
}

.product-label {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--espresso);
  color: var(--gold);
  font-size: 0.64rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 5px 12px;
}

.product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(28, 20, 16, 0.58);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  opacity: 0;
  transition: opacity 0.4s;
}

.product-card:hover .product-overlay {
  opacity: 1;
}

.overlay-btn {
  padding: 12px 28px;
  background: var(--gold);
  color: var(--espresso);
  font-size: 0.77rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 500;
  transform: translateY(8px);
  transition: transform 0.4s;
}

.product-card:hover .overlay-btn {
  transform: translateY(0);
}

.overlay-info {
  font-size: 0.73rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.5);
  transform: translateY(8px);
  transition: transform 0.4s 0.05s;
}

.product-card:hover .overlay-info {
  transform: translateY(0);
}

.product-info {
  padding: 24px 28px 14px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-category {
  font-size: 0.84rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 5px;
}

.product-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  font-weight: 400;
  color: var(--espresso);
  margin-bottom: 6px;
  line-height: 1.24;
  min-height: 2.48em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-name a {
  color: inherit;
  text-decoration: none;
}

.product-name a:hover {
  text-decoration: underline;
  text-decoration-color: rgba(201, 169, 110, 0.6);
}

.product-desc {
  display: none;
}

.product-footer {
  padding: 0 28px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(201, 169, 110, 0.12);
  padding-top: 8px;
  padding-bottom: 14px;
  margin-top: 0;
  margin-top: auto;
}

.product-price {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.price-prefix {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.price-unit {
  font-size: 0.82rem;
  color: var(--text-muted);
  white-space: nowrap;
}

.product-price span {
  font-size: 0.92rem;
  color: var(--text-muted);
  font-weight: 400;
  font-family: 'Jost';
  margin-left: 0;
}

.price-pill {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.74rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1;
  color: var(--espresso);
  background: linear-gradient(120deg, rgba(201, 169, 110, 0.26), rgba(201, 169, 110, 0.1));
  border: 1px solid rgba(201, 169, 110, 0.45);
  border-radius: 999px;
  padding: 6px 12px 7px;
  box-shadow: 0 8px 18px rgba(28, 20, 16, 0.09);
}

.product-card[data-cat="conjuntos"] .price-pill {
  background: linear-gradient(120deg, rgba(240, 192, 64, 0.3), rgba(240, 192, 64, 0.15));
  border: 1px solid rgba(240, 192, 64, 0.6);
}

@media (max-height: 900px) and (min-width: 1025px) {
  .product-img {
    aspect-ratio: 16 / 10;
  }

  .product-info {
    padding: 14px 18px 8px;
  }

  .product-category {
    font-size: 0.74rem;
    margin-bottom: 4px;
  }

  .product-name {
    font-size: 1.12rem;
    min-height: 2.35em;
    margin-bottom: 4px;
  }

  .product-desc {
    font-size: 0.82rem;
    line-height: 1.45;
    min-height: 2.9em;
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }

  .product-badges {
    margin-top: 8px;
    gap: 4px;
  }

  .badge-feature,
  .badge-atacado,
  .badge-varejo {
    font-size: 0.62rem;
    padding: 4px 8px;
  }

  .product-footer {
    padding: 4px 18px 8px;
  }

  .product-price span {
    font-size: 0.8rem;
  }

  .price-pill {
    font-size: 1.58rem;
    padding: 4px 10px 5px;
  }
}

.product-card[data-cat="conjuntos"] .price-pill {
  background: linear-gradient(120deg, rgba(240, 192, 64, 0.3), rgba(240, 192, 64, 0.15));
  border: 1px solid rgba(240, 192, 64, 0.6);
}

.product-tag {
  font-size: 0.77rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: var(--cream);
  padding: 4px 10px;
}

/* CTA BANNER */
.cta-banner {
  background: var(--clay);
  padding: 80px 60px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
  margin-top: 2px;
}

.cta-banner h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.93rem;
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 12px;
}

.cta-banner p {
  font-size: 1.10rem;
  color: rgba(245, 240, 232, 0.7);
  line-height: 1.8;
  max-width: 560px;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}

.btn-light {
  display: inline-block;
  padding: 15px 36px;
  background: var(--cream);
  color: var(--clay);
  font-size: 0.82rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s, color 0.3s;
}

.btn-light:hover {
  background: var(--espresso);
  color: var(--cream);
}

.cta-note {
  font-size: 0.7rem;
  color: rgba(245, 240, 232, 0.45);
  letter-spacing: 0.1em;
}

/* FOOTER */
footer {
  background: var(--espresso);
  padding: 56px 60px 32px;
  border-top: 1px solid rgba(201, 169, 110, 0.12);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 44px;
  margin-bottom: 44px;
}

.footer-brand .nav-logo {
  display: block;
  margin-bottom: 14px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: var(--cream);
  text-decoration: none;
}

.footer-brand .nav-logo span {
  color: var(--gold);
}

.footer-brand p {
  font-size: 1.18rem;
  line-height: 1.75;
  color: rgba(245, 240, 232, 0.38);
}

.footer-col h4 {
  font-size: 0.96rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-col ul li a {
  font-size: 1.03rem;
  color: rgba(245, 240, 232, 0.38);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: var(--cream);
}

.footer-bottom {
  padding-top: 26px;
  border-top: 1px solid rgba(201, 169, 110, 0.08);
  display: flex;
  justify-content: space-between;
}

.footer-bottom p {
  font-size: 1.0rem;
  color: rgba(245, 240, 232, 0.25);
}

.js .reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s, transform 0.7s;
}

.js .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  nav {
    padding: 20px 24px;
  }

  nav.scrolled {
    padding: 20px 24px;
  }

  nav .nav-logo img {
    height: 78px;
  }

  .nav-links {
    display: none;
  }

  .page-header {
    padding: 110px 24px 60px;
  }

  .min-notice {
    padding: 14px 24px;
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .catalog-main {
    padding: 48px 24px;
  }

  .catalog-controls {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }

  .results-count {
    justify-self: auto;
    align-self: auto;
    white-space: normal;
    padding-left: 0;
  }

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

  .cta-banner {
    grid-template-columns: 1fr;
    padding: 60px 24px;
  }

  .cta-actions {
    align-items: flex-start;
  }

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

  footer {
    padding: 48px 24px 28px;
  }

  .page-header-meta {
    flex-wrap: wrap;
    gap: 24px;
  }
}

@media (max-width: 768px) {
  nav {
    padding: 14px 16px;
  }

  nav.scrolled {
    padding: 14px 16px;
  }

  nav .nav-logo {
    max-width: calc(100vw - 130px);
  }

  nav .nav-logo img {
    height: clamp(52px, 12vw, 64px);
    max-width: 100%;
  }

  .nav-cta {
    font-size: 0.68rem;
    letter-spacing: 0.08em;
    line-height: 1.2;
    white-space: normal;
    text-align: center;
    width: 86px;
    padding: 8px 8px;
  }

  .page-header {
    padding: 96px 16px 42px;
  }

  .page-title {
    font-size: clamp(2.2rem, 9vw, 3rem);
    margin-bottom: 12px;
  }

  .page-desc {
    font-size: 0.95rem;
    line-height: 1.65;
  }

  .page-header-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 26px;
  }

  .meta-value {
    font-size: 1.35rem;
  }

  .min-notice {
    padding: 12px 16px;
    gap: 10px;
  }

  .min-notice p {
    font-size: 0.9rem;
    letter-spacing: 0.04em;
  }

  .min-notice a {
    font-size: 0.7rem;
  }

  .catalog-main {
    padding: 34px 16px;
  }

  .catalog-controls {
    gap: 14px;
    margin-bottom: 26px;
    padding-bottom: 20px;
  }

  .filter-group {
    flex-wrap: wrap;
    gap: 6px;
  }

  .filter-label {
    width: 100%;
    margin-right: 0;
    margin-bottom: 4px;
  }

  .filter-btn {
    padding: 8px 12px;
    font-size: 0.68rem;
    letter-spacing: 0.08em;
  }

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

  .product-info {
    padding: 18px 16px 12px;
  }

  .product-footer {
    padding: 8px 16px 12px;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .product-name {
    font-size: 1.34rem;
  }

  .product-desc {
    font-size: 0.92rem;
  }

  .product-price {
    gap: 6px;
  }

  .product-price span {
    font-size: 0.86rem;
  }

  .price-pill {
    font-size: 2.32rem;
    padding: 5px 10px 6px;
  }

  .cta-banner {
    padding: 44px 16px;
    gap: 24px;
  }

  .cta-banner h2 {
    font-size: 1.35rem;
  }

  .cta-banner p {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .btn-light {
    width: 100%;
    text-align: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  footer {
    padding: 40px 16px 24px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }
}

.product-card[data-cat="conjuntos"] .price-pill {
  background: linear-gradient(120deg, rgba(240, 192, 64, 0.3), rgba(240, 192, 64, 0.15));
  border: 1px solid rgba(240, 192, 64, 0.6);
}

@media (max-width: 480px) {
  nav .nav-logo {
    max-width: calc(100vw - 112px);
  }

  nav .nav-logo img {
    height: clamp(44px, 11vw, 54px);
  }

  .nav-cta {
    display: none;
  }

  .page-header-meta {
    grid-template-columns: 1fr;
  }

  .overlay-btn {
    width: calc(100% - 24px);
    text-align: center;
    padding: 10px 12px;
    font-size: 0.65rem;
  }
}

.product-badges {
  display: flex;
  gap: 6px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.badge-feature {
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: #4b3328;
  background: linear-gradient(120deg, #f8e9c8 0%, #f2d8bf 45%, #eac8d9 100%);
  border: 1px solid rgba(193, 122, 90, 0.42);
  padding: 6px 14px;
  border-radius: 999px;
  box-shadow: 0 6px 14px rgba(139, 111, 94, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.65);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.35);
  transition: transform 0.28s, box-shadow 0.28s, filter 0.28s;
}

.badge-feature::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 20%, rgba(255, 255, 255, 0.58) 48%, transparent 78%);
  transform: translateX(-120%);
  transition: transform 0.55s ease;
  z-index: -1;
}

.badge-feature:hover {
  transform: translateY(-1px) scale(1.02);
  filter: brightness(1.04);
  box-shadow: 0 10px 18px rgba(139, 111, 94, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.badge-feature:hover::before {
  transform: translateX(130%);
}

.badge-atacado {
  font-size: 0.76rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--warm-white);
  background: var(--terracota);
  padding: 5px 10px;
  border-radius: 2px;
  transition: all 0.3s;
}

.badge-atacado:hover {
  background: var(--clay);
}

.badge-varejo {
  font-size: 0.76rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--espresso);
  background: var(--gold);
  padding: 5px 10px;
  border-radius: 2px;
  transition: all 0.3s;
}

.badge-varejo:hover {
  background: var(--gold-light);
}

/* WELCOME MODAL */
.welcome-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  pointer-events: none;
}

.welcome-modal.active {
  pointer-events: auto;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(28, 20, 16, 0.6);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.welcome-modal.active .modal-overlay {
  opacity: 1;
}

.modal-card {
  position: relative;
  background: var(--warm-white);
  border-radius: 8px;
  box-shadow: 0 25px 50px rgba(28, 20, 16, 0.2), 0 10px 25px rgba(28, 20, 16, 0.15);
  max-width: 520px;
  width: 90%;
  padding: 48px 40px;
  transform: scale(0.85) translateY(20px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 2001;
}

.welcome-modal.active .modal-card {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  color: var(--text);
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s;
}

.modal-close:hover {
  background: rgba(201, 169, 110, 0.15);
  color: var(--clay);
}

.modal-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 12px;
  text-align: center;
  color: var(--text);
}

.modal-content > p {
  text-align: center;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 32px;
}

.modal-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}

.modal-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 24px 16px;
  background: var(--cream);
  border: 2px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  color: var(--text);
  line-height: 1.4;
}

.modal-option:hover {
  background: var(--gold-light);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.option-icon {
  font-size: 32px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clay);
}

.option-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.option-icon svg,
.option-icon svg * {
  stroke: var(--clay);
  fill: none;
  color: var(--clay);
}

.option-text {
  color: var(--text);
}

.option-line {
  display: block;
}

.option-line + .option-line::before {
  content: ' ';
}

.modal-skip {
  width: 100%;
  padding: 14px 20px;
  background: transparent;
  border: 2px solid var(--gold);
  border-radius: 4px;
  color: var(--clay);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'Jost', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.modal-skip:hover {
  background: var(--gold);
  color: var(--warm-white);
}

@media (max-width: 640px) {
  .modal-card {
    padding: 34px 20px 30px;
  }

  .modal-content h2 {
    font-size: 26px;
  }

  .modal-options {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 22px;
  }

  .modal-option {
    flex-direction: row;
    min-height: 78px;
    padding: 16px 18px;
    gap: 18px;
    justify-content: flex-start;
  }

  .option-icon {
    font-size: 34px;
    width: 50px;
    height: 50px;
    flex-shrink: 0;
  }

  .option-icon svg {
    width: 50px;
    height: 50px;
  }

  .option-text {
    text-align: left;
    white-space: nowrap;
    line-height: 1.1;
    font-size: 14px;
    letter-spacing: 0.01em;
  }

  .option-line {
    display: inline;
  }
}
