/* ============================================================
   MEDICAL DENTISTRY LTDA — style.css
   Para alterar cores principais, edite as variáveis abaixo.
   ============================================================ */

:root {
  /* Paleta da marca */
  --navy:       #152848;
  --navy-dark:  #0d1c34;
  --navy-mid:   #1e3a5f;
  --gold:       #B49632;
  --gold-light: #d4b44a;
  --gold-pale:  #f5edd6;
  --white:      #ffffff;
  --off-white:  #f7f8fc;
  --gray-50:    #f4f5f8;
  --gray-100:   #e8eaf0;
  --gray-300:   #b0b8c8;
  --gray-500:   #6b7896;
  --gray-700:   #3a4460;
  --text:       #1a243a;
  --text-muted: #5a6680;

  /* Tipografia */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  /* Espaçamentos */
  --section-py: 96px;
  --container:  1200px;
  --radius:     8px;
  --radius-lg:  16px;

  /* Sombras */
  --shadow-sm:  0 2px 8px rgba(21,40,72,.08);
  --shadow-md:  0 8px 32px rgba(21,40,72,.12);
  --shadow-lg:  0 20px 60px rgba(21,40,72,.18);

  /* Transição */
  --ease: 0.25s cubic-bezier(0.4,0,0.2,1);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font: inherit; }
input, textarea, select { font: inherit; }

/* ============================================================
   CONTAINER
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .02em;
  transition: transform var(--ease), box-shadow var(--ease), background var(--ease), color var(--ease);
  border: none;
  white-space: nowrap;
}

.btn--primary {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(21,40,72,.25);
}
.btn--primary:hover {
  background: var(--navy-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(21,40,72,.3);
}

.btn--whatsapp {
  background: #25D366;
  color: var(--white);
  box-shadow: 0 4px 16px rgba(37,211,102,.3);
}
.btn--whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,.4);
}

.btn--lg { padding: 18px 36px; font-size: 16px; }
.btn--full { width: 100%; justify-content: center; }

.btn--header {
  padding: 11px 22px;
  font-size: 14px;
}

/* ============================================================
   SECTION COMMON
   ============================================================ */
.section {
  padding: var(--section-py) 0;
}

.section__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.section__eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section__eyebrow--light { color: rgba(255,255,255,.7); }

.section__title {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 18px;
}

.section__subtitle {
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.7;
}

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-100);
  transition: box-shadow var(--ease);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 72px;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.header__logo img {
  height: 44px;
  width: auto;
}

.header__brand {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.header__brand-name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: .01em;
}

.header__brand-sub {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  color: var(--gold);
  text-transform: uppercase;
}

.nav { margin-left: auto; }

.nav__list {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav__link {
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-700);
  border-radius: 6px;
  transition: color var(--ease), background var(--ease);
}

.nav__link:hover {
  color: var(--navy);
  background: var(--gray-50);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform var(--ease), opacity var(--ease);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  background: var(--navy-dark);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding-top: 72px;
}

.hero__bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(180,150,50,.08) 0%, transparent 55%),
    radial-gradient(circle at 80% 20%, rgba(21,40,72,.6) 0%, transparent 50%),
    linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-dark) 100%);
  pointer-events: none;
}

/* Decorative grid */
.hero__bg-pattern::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
  flex: 1;
  padding-top: 60px;
  padding-bottom: 40px;
  position: relative;
  z-index: 2;
}

.hero__eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  padding: 6px 14px;
  border: 1px solid rgba(180,150,50,.3);
  border-radius: 100px;
  background: rgba(180,150,50,.08);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(30px, 4.5vw, 52px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.18;
  margin-bottom: 24px;
}

.hero__subtitle {
  font-size: 17px;
  color: rgba(255,255,255,.7);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 520px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

/* Hero Visual */
.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__globe {
  position: relative;
  width: 380px;
  height: 380px;
}

.hero__globe-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.1);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: spin linear infinite;
}

.hero__globe-ring--1 {
  width: 100%; height: 100%;
  border-color: rgba(180,150,50,.2);
  animation-duration: 20s;
}

.hero__globe-ring--2 {
  width: 78%; height: 78%;
  border-color: rgba(255,255,255,.08);
  animation-duration: 15s;
  animation-direction: reverse;
}

.hero__globe-ring--3 {
  width: 56%; height: 56%;
  border-color: rgba(180,150,50,.12);
  animation-duration: 10s;
}

@keyframes spin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}

.hero__globe-core {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 160px;
  height: 160px;
  background: rgba(255,255,255,.06);
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
}

.hero__logo-img {
  width: 110px;
  height: 110px;
  object-fit: contain;
}

.hero__tag {
  position: absolute;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  color: rgba(255,255,255,.9);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .05em;
  padding: 6px 14px;
  border-radius: 100px;
  white-space: nowrap;
}

.hero__tag--1 { top: 10%; left: -10%; }
.hero__tag--2 { top: 12%; right: -8%; }
.hero__tag--3 { bottom: 18%; left: -12%; }
.hero__tag--4 { bottom: 10%; right: -5%; }

/* Stats bar */
.hero__stats {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.2);
  backdrop-filter: blur(8px);
  padding: 28px 0;
}

.hero__stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.hero__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 48px;
  text-align: center;
}

.hero__stat-number {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}

.hero__stat-label {
  font-size: 12px;
  color: rgba(255,255,255,.55);
  margin-top: 4px;
  letter-spacing: .03em;
}

.hero__stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.12);
  flex-shrink: 0;
}

/* ============================================================
   SEGMENTS
   ============================================================ */
.segments {
  background: var(--off-white);
}

.segments__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.segment-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
  position: relative;
  overflow: hidden;
}

.segment-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--gold));
  opacity: 0;
  transition: opacity var(--ease);
}

.segment-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gray-300);
}

.segment-card:hover::before {
  opacity: 1;
}

.segment-card__icon {
  width: 52px;
  height: 52px;
  background: var(--gold-pale);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  flex-shrink: 0;
}

.segment-card__icon svg {
  width: 26px;
  height: 26px;
}

.segment-card__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
}

.segment-card__text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
}

.segment-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  margin-top: 4px;
  transition: gap var(--ease), color var(--ease);
}

.segment-card__btn::after {
  content: '→';
  transition: transform var(--ease);
}

.segment-card:hover .segment-card__btn {
  color: var(--navy);
}

.segment-card:hover .segment-card__btn::after {
  transform: translateX(4px);
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  background: var(--white);
}

.about__inner {
  display: block;
  max-width: 880px;
  margin: 0 auto;
}

.about__content {
  width: 100%;
}

.about__visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.about__visual-card {
  width: 100%;
  min-height: 210px;
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  border-radius: var(--radius-lg);
  padding: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(180,150,50,.18);
}

.about__visual-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: .7;
}

.about__visual-card::after {
  content: '';
  position: absolute;
  bottom: -54px;
  right: -54px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 30px solid rgba(180,150,50,.12);
}

.about__visual-icon {
  width: 116px;
  height: 116px;
  border-radius: 28px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  backdrop-filter: blur(8px);
}

.about__visual-icon svg {
  width: 72px;
  height: 72px;
}

.about__visual-label {
  position: absolute;
  z-index: 3;
  color: rgba(255,255,255,.9);
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .05em;
  backdrop-filter: blur(8px);
}

.about__visual-label--1 { top: 24px; left: 28px; }
.about__visual-label--2 { right: 24px; top: 68px; }
.about__visual-label--3 { left: 48px; bottom: 28px; }

.about__badge {
  background: var(--gold-pale);
  border: 1px solid rgba(180,150,50,.25);
  border-radius: var(--radius);
  padding: 14px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}

.about__badge-line {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: .03em;
}

.about__badge-line--gold {
  color: var(--gold);
}

.about__content .section__title {
  text-align: left;
  margin-bottom: 24px;
}

.about__text {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 16px;
}

.about__text--gold {
  color: var(--navy-mid);
  background: var(--gold-pale);
  border-left: 3px solid var(--gold);
  padding: 16px 20px;
  border-radius: 0 var(--radius) var(--radius) 0;
}

.about__highlights {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 28px 0;
}

.about__highlight {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
}

.about__highlight svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex-shrink: 0;
  stroke-width: 2.5;
}

/* ============================================================
   DIFFERENTIALS
   ============================================================ */
.differentials {
  background: var(--navy-dark);
}

.differentials .section__title {
  color: var(--white);
}

.differentials__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.differential-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  transition: background var(--ease), border-color var(--ease), transform var(--ease);
}

.differential-card:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(180,150,50,.3);
  transform: translateY(-4px);
}

.differential-card__num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: rgba(180,150,50,.18);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -.02em;
}

.differential-card__icon {
  width: 48px;
  height: 48px;
  color: var(--gold-light);
  margin-bottom: 20px;
}

.differential-card__icon svg {
  width: 100%;
  height: 100%;
}

.differential-card__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.3;
}

.differential-card__text {
  font-size: 14px;
  color: rgba(255,255,255,.55);
  line-height: 1.7;
}

/* ============================================================
   CATALOG
   ============================================================ */
.catalog {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  position: relative;
  overflow: hidden;
}

.catalog::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(180,150,50,.12) 0%, transparent 70%);
}

.catalog__inner {
  display: flex;
  align-items: center;
  gap: 80px;
  position: relative;
  z-index: 1;
}

.catalog__content {
  flex: 1;
}

.catalog__title {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.22;
  margin-bottom: 18px;
}

.catalog__text {
  color: rgba(255,255,255,.7);
  font-size: 17px;
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 500px;
}

.catalog__deco {
  flex-shrink: 0;
  width: 200px;
  height: 200px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.catalog__deco-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.1);
}

.catalog__deco-icon {
  color: rgba(255,255,255,.4);
  width: 100px;
  height: 100px;
}

.catalog__deco-icon svg {
  width: 100%;
  height: 100%;
}

/* ============================================================
   AUDIENCE
   ============================================================ */
.audience {
  background: var(--gray-50);
}

.audience__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 16px;
}

.audience-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 28px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
  cursor: default;
}

.audience-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

.audience-card__icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}

.audience-card__icon svg {
  width: 22px;
  height: 22px;
}

.audience-card span {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  background: var(--white);
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.contact__info .section__title { text-align: left; }

.contact__desc {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 36px;
}

.contact__channels {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact__channel {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  transition: border-color var(--ease), transform var(--ease);
  color: inherit;
}

.contact__channel:hover {
  border-color: var(--navy);
  transform: translateX(4px);
}

.contact__channel--wa:hover { border-color: #25D366; }

.contact__channel svg {
  width: 22px;
  height: 22px;
  color: var(--navy);
  flex-shrink: 0;
}

.contact__channel--wa svg { color: #25D366; }

.contact__channel-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gray-500);
}

.contact__channel-value {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
}

/* Form */
.contact__form-wrap {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--gray-100);
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form__group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-700);
  letter-spacing: .02em;
}

.form__group input,
.form__group textarea,
.form__group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--text);
  font-size: 15px;
  transition: border-color var(--ease), box-shadow var(--ease);
  outline: none;
  appearance: none;
}

.form__group input:focus,
.form__group textarea:focus,
.form__group select:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(21,40,72,.08);
}

.form__group textarea { resize: vertical; min-height: 120px; }

.form__note {
  font-size: 12px;
  color: var(--gray-500);
  line-height: 1.6;
  margin-top: -8px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy-dark);
  padding-top: 72px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer__logo img {
  height: 52px;
  width: auto;
  margin-bottom: 16px;
}

.footer__desc {
  font-size: 14px;
  color: rgba(255,255,255,.5);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 12px;
}

.footer__cnpj,
.footer__location {
  font-size: 12px;
  color: rgba(255,255,255,.35);
  line-height: 1.8;
}

.footer__nav-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
}

.footer__nav ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__nav a {
  font-size: 14px;
  color: rgba(255,255,255,.5);
  transition: color var(--ease);
}

.footer__nav a:hover { color: var(--white); }

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer__contact-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,.5);
  transition: color var(--ease);
}

.footer__contact-link:hover { color: var(--white); }
.footer__contact-link--wa:hover { color: #25D366; }

.footer__bottom {
  padding: 20px 0;
}

.footer__bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.footer__bottom span {
  font-size: 12px;
  color: rgba(255,255,255,.3);
}

/* ============================================================
   WHATSAPP FLOAT BUTTON
   ============================================================ */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 6px 24px rgba(37,211,102,.45);
  transition: transform var(--ease), box-shadow var(--ease);
}

.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 32px rgba(37,211,102,.55);
}

.wa-float::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: rgba(37,211,102,.25);
  animation: wa-pulse 2.5s ease infinite;
}

@keyframes wa-pulse {
  0%   { transform: scale(1);   opacity: .8; }
  70%  { transform: scale(1.4); opacity: 0; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}

[data-reveal].revealed {
  opacity: 1;
  transform: none;
}

/* ============================================================
   RESPONSIVE — TABLET (≤1024px)
   ============================================================ */
@media (max-width: 1024px) {
  :root { --section-py: 72px; }

  .hero__inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero__subtitle { margin: 0 auto 40px; }
  .hero__actions { justify-content: center; }
  .hero__visual { display: none; }

  .segments__grid { grid-template-columns: repeat(2, 1fr); }
  .differentials__grid { grid-template-columns: repeat(2, 1fr); }
  .audience__grid { grid-template-columns: repeat(4, 1fr); }

  .about__inner { max-width: 880px; }

  .catalog__inner { flex-direction: column; gap: 40px; text-align: center; }
  .catalog__text { max-width: 100%; }
  .catalog__deco { display: none; }

  .contact__inner { grid-template-columns: 1fr; gap: 48px; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤768px)
   ============================================================ */
@media (max-width: 768px) {
  :root { --section-py: 56px; }

  /* Header mobile */
  .header__inner { position: relative; }
  .header__brand { display: none; }

  .nav {
    position: fixed;
    top: 82px; left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-100);
    box-shadow: var(--shadow-md);
    padding: 20px 24px;
    transform: translateY(-120%);
    visibility: hidden;
    pointer-events: none;
    max-height: calc(100vh - 82px);
    max-height: calc(100dvh - 82px);
    overflow-y: auto;
    transition: transform var(--ease);
    margin-left: 0;
    z-index: 999;
  }

  .nav.open {
    transform: translateY(0);
    visibility: visible;
    pointer-events: auto;
  }

  .nav__list { flex-direction: column; align-items: flex-start; gap: 4px; }

  .hamburger { display: flex; }

  .btn--header { display: none; }

  /* Grids */
  .segments__grid { grid-template-columns: 1fr; }
  .differentials__grid { grid-template-columns: 1fr; }
  .audience__grid { grid-template-columns: repeat(2, 1fr); }


  .contact__form-wrap { padding: 24px; }
  .form__row { grid-template-columns: 1fr; }

  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .footer__brand { grid-column: auto; }
  .footer__bottom .container { flex-direction: column; text-align: center; }

  .hero__stat { padding: 0 20px; }
  .hero__stat-number { font-size: 22px; }
}

@media (max-width: 520px) {
  .product-card__actions { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; }
  .btn--full { width: 100%; }
  .audience__grid { grid-template-columns: repeat(2, 1fr); }
  .hero__stats-inner { gap: 0; flex-wrap: wrap; }
  .hero__stat { flex: 1 1 40%; border-bottom: 1px solid rgba(255,255,255,.08); padding: 16px; }
  .hero__stat-divider { display: none; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  html { scroll-behavior: auto; }
}


/* ============================================================
   AJUSTES DE CONSISTÊNCIA — Medical Dentistry LTDA
   ============================================================ */
.header__inner { height: 82px; }
.header__logo { gap: 0; }
.header__logo img {
  height: 62px;
  width: auto;
  max-width: 190px;
  object-fit: contain;
}
.header__brand { display: none !important; }
.btn--secondary {
  background: var(--white);
  color: var(--navy);
  box-shadow: 0 4px 18px rgba(255,255,255,.16);
}
.btn--secondary:hover {
  background: var(--gold-pale);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,255,255,.22);
}
.hero { padding-top: 82px; }
.hero__core-icon {
  width: 92px;
  height: 92px;
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__globe-core {
  background: rgba(255,255,255,.075);
  border: 1px solid rgba(180,150,50,.35);
}
.hero__tag {
  color: rgba(255,255,255,.92);
  background: rgba(255,255,255,.1);
}
.contact__channel--notice {
  background: var(--gold-pale);
  border-color: rgba(180,150,50,.35);
}
.contact__channel--notice svg { color: var(--gold); }
.footer__logo {
  display: inline-flex;
  background: var(--white);
  padding: 10px 14px;
  border-radius: 12px;
  margin-bottom: 16px;
}
.footer__logo img {
  height: 70px;
  width: auto;
  max-width: 180px;
  margin-bottom: 0;
  object-fit: contain;
}
.footer__contact-text {
  font-size: 14px;
  color: rgba(255,255,255,.5);
  line-height: 1.7;
}
.wa-float { display: none !important; }
@media (max-width: 768px) {
  .header__inner { height: 76px; }
  .header__logo img { height: 56px; max-width: 160px; }
  .nav { top: 82px; }
  .hero { padding-top: 76px; }
}


/* ============================================================
   APRIMORAMENTOS V4 — acabamento visual e responsivo
   ============================================================ */
.header__inner {
  min-height: 82px;
}
.header__logo img {
  height: 58px;
  max-width: 185px;
}

.hero__stat-number {
  letter-spacing: .01em;
}

.about {
  background:
    radial-gradient(circle at 18% 18%, rgba(180,150,50,.08) 0%, transparent 30%),
    linear-gradient(180deg, var(--white) 0%, var(--off-white) 100%);
}

.about__inner {
  display: block !important;
  max-width: 1080px;
  margin: 0 auto;
}

.about__content {
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 22px;
  padding: 48px 56px;
  box-shadow: 0 20px 70px rgba(21,40,72,.08);
}

.about__content .section__eyebrow {
  display: block;
  text-align: center;
}

.about__content .section__title {
  text-align: center;
  margin-bottom: 22px;
}

.about__text {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.about__text--gold {
  margin-top: 22px;
  border-radius: 12px;
  border-left: 0;
  border-top: 3px solid var(--gold);
}

.about__summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 30px 0 8px;
}

.about__summary-card {
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  border-radius: 14px;
  padding: 18px;
}

.about__summary-card strong {
  display: block;
  color: var(--navy);
  font-size: 15px;
  margin-bottom: 6px;
}

.about__summary-card span {
  display: block;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.55;
}

.about__highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 18px;
  margin: 30px 0;
}

.about__highlight {
  align-items: flex-start;
  background: rgba(21,40,72,.025);
  border: 1px solid var(--gray-100);
  border-radius: 12px;
  padding: 14px;
}

.about__content > .btn {
  display: flex;
  width: fit-content;
  margin: 30px auto 0;
}

.contact__channel--notice .contact__channel-value,
.footer__contact-text {
  color: rgba(255,255,255,.72);
}

.contact__channel--notice .contact__channel-value {
  color: var(--navy);
}

.footer__inner {
  align-items: flex-start;
}

.footer__logo {
  box-shadow: 0 10px 30px rgba(0,0,0,.12);
}

@media (max-width: 768px) {
  .about__content {
    padding: 34px 24px;
    border-radius: 18px;
  }
  .about__summary,
  .about__highlights {
    grid-template-columns: 1fr;
  }
  .about__content > .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 520px) {
  .product-card__actions { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .header__logo img { height: 50px; max-width: 150px; }
  .about__content { padding: 28px 18px; }
}


/* ============================================================
   AJUSTE V5 — logo do header maior e sem texto minúsculo
   ============================================================ */
.header__logo img {
  height: 64px;
  width: auto;
  max-width: 86px;
  object-fit: contain;
}
.header__logo {
  min-width: 86px;
}
@media (max-width: 768px) {
  .header__logo img { height: 58px; max-width: 78px; }
  .header__logo { min-width: 78px; }
}
@media (max-width: 520px) {
  .product-card__actions { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .header__logo img { height: 54px; max-width: 72px; }
  .header__logo { min-width: 72px; }
}

/* ============================================================
   CATÁLOGO / LOJA DE ORÇAMENTO
   ============================================================ */
.catalog__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.btn--ghost-light {
  background: rgba(255,255,255,.08);
  color: var(--white);
  border: 1px solid rgba(255,255,255,.18);
}

.btn--ghost-light:hover {
  background: rgba(255,255,255,.14);
  transform: translateY(-2px);
}

.catalog-page {
  padding-top: 82px;
  background: var(--off-white);
}

.catalog-hero {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  padding: 86px 0 70px;
  position: relative;
  overflow: hidden;
}

.catalog-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 16% 10%, rgba(180,150,50,.16), transparent 32%),
    radial-gradient(circle at 88% 26%, rgba(255,255,255,.08), transparent 38%),
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: auto, auto, 60px 60px, 60px 60px;
  pointer-events: none;
}

.catalog-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 60px;
  align-items: center;
}

.catalog-hero__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 54px);
  line-height: 1.12;
  color: var(--white);
  margin-bottom: 20px;
}

.catalog-hero__text {
  color: rgba(255,255,255,.72);
  font-size: 17px;
  line-height: 1.75;
  max-width: 680px;
}

.catalog-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.catalog-hero__badges span {
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.86);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
}

.catalog-hero__panel {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 34px;
  display: flex;
  align-items: center;
  gap: 20px;
  backdrop-filter: blur(8px);
}

.catalog-hero__panel img {
  width: 86px;
  height: 86px;
  object-fit: contain;
  background: var(--white);
  border-radius: 18px;
  padding: 12px;
}

.catalog-hero__panel strong,
.catalog-hero__panel span {
  display: block;
}

.catalog-hero__panel strong {
  color: var(--white);
  font-weight: 700;
  line-height: 1.35;
}

.catalog-hero__panel span {
  color: rgba(255,255,255,.58);
  font-size: 13px;
  margin-top: 4px;
}

.catalog-store {
  padding: 72px 0 96px;
}

.catalog-store__top {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
}

.catalog-store__top .section__title {
  margin-bottom: 0;
}

.cart-open-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--gray-100);
  background: var(--white);
  color: var(--navy);
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}

.cart-open-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

.cart-open-btn__icon {
  font-size: 20px;
  line-height: 1;
}

.cart-open-btn__text {
  font-size: 14px;
}

.cart-open-btn strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
  font-size: 13px;
}

.catalog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.catalog-filter {
  border: 1px solid var(--gray-100);
  background: var(--white);
  color: var(--gray-700);
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 700;
  transition: background var(--ease), color var(--ease), border-color var(--ease), transform var(--ease);
}

.catalog-filter:hover,
.catalog-filter.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
  transform: translateY(-1px);
}

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

.product-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 0;
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}

.product-card__media {
  height: 168px;
  background: linear-gradient(135deg, var(--gray-50), var(--gray-100));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.product-card__media-button {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  overflow: hidden;
  cursor: zoom-in;
  touch-action: manipulation;
}

.product-card__media-button:focus-visible {
  outline-offset: -4px;
}

.product-card__media-button img {
  transition: transform var(--ease);
}

.product-card__emoji {
  font-size: 48px;
}

.product-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--navy);
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  border-radius: 999px;
  padding: 5px 10px;
  letter-spacing: .04em;
}

.product-card__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  flex: 1;
}

.product-card__sku {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
}

.product-card__title {
  color: var(--navy);
  font-size: 16px;
  line-height: 1.35;
  font-weight: 800;
}

.product-card__meta {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.5;
}

.product-card__actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  align-items: center;
  margin-top: auto;
  padding-top: 10px;
}

.product-card__cart-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--gray-100);
  background: var(--white);
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
  padding: 10px 14px;
  border-radius: var(--radius);
  transition: background var(--ease), transform var(--ease), border-color var(--ease);
}

.product-card__cart-btn:hover {
  background: var(--gray-50);
  border-color: var(--navy);
  transform: translateY(-1px);
}

.product-card__cart-icon {
  font-size: 16px;
  line-height: 1;
}

.product-card__actions .btn {
  justify-content: center;
  width: 100%;
  padding: 12px 16px;
  font-size: 14px;
}

@media (hover: hover) and (pointer: fine) {
  .product-card:hover {
    z-index: 2;
    box-shadow: var(--shadow-md);
    border-color: var(--gray-300);
  }
}

@media (hover: hover) and (pointer: fine) and (prefers-reduced-motion: no-preference) {
  .product-card:hover {
    transform: scale(1.03);
  }

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

.btn--outline {
  background: var(--white);
  color: var(--navy);
  border: 1px solid var(--gray-100);
}

.btn--outline:hover {
  border-color: var(--navy);
  transform: translateY(-1px);
}

.catalog-toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%) translateY(14px);
  z-index: 1700;
  max-width: min(520px, calc(100% - 32px));
  background: var(--navy);
  color: var(--white);
  border: 1px solid rgba(180,150,50,.28);
  border-radius: 999px;
  padding: 13px 18px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  font-size: 14px;
  line-height: 1.45;
  opacity: 0;
  transition: opacity var(--ease), transform var(--ease);
}

.catalog-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.product-lightbox {
  position: fixed;
  inset: 0;
  width: 100vw;
  max-width: none;
  height: 100vh;
  height: 100dvh;
  max-height: none;
  margin: 0;
  padding: clamp(14px, 3vw, 32px);
  border: 0;
  background: rgba(13,28,52,.94);
  overflow: auto;
  overscroll-behavior: contain;
  cursor: zoom-out;
}

.product-lightbox[open] {
  display: grid;
  place-items: center;
}

.product-lightbox::backdrop {
  background: transparent;
}

.product-lightbox__content {
  width: min(1100px, 100%);
  max-height: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  cursor: default;
  pointer-events: none;
}

.product-lightbox__toolbar {
  display: flex;
  justify-content: flex-end;
  flex: 0 0 auto;
}

.product-lightbox__toolbar button {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 50%;
  background: #ffffff;
  color: #0d1c34;
  font-size: 28px;
  line-height: 1;
  box-shadow: var(--shadow-md);
  touch-action: manipulation;
  pointer-events: auto;
}

.product-lightbox__image-wrap {
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-lightbox__image {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: calc(100vh - 120px);
  max-height: calc(100dvh - 120px);
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  user-select: none;
  pointer-events: auto;
}

@media (prefers-reduced-motion: reduce) {
  .product-card:hover,
  .product-card__cart-btn:hover,
  .product-card__media-button img {
    transform: none !important;
  }
}

.catalog-toast[hidden] {
  display: none;
}

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(13,28,52,.42);
  z-index: 1500;
}

.quote-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(430px, 100%);
  height: 100vh;
  height: 100dvh;
  background: var(--white);
  z-index: 1600;
  box-shadow: -20px 0 60px rgba(13,28,52,.18);
  transform: translateX(105%);
  transition: transform var(--ease);
  display: flex;
  flex-direction: column;
}

.quote-drawer.open {
  transform: translateX(0);
}

.quote-drawer__header {
  padding: 22px 24px;
  border-bottom: 1px solid var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.quote-drawer__header h2 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  color: var(--navy);
}

.quote-drawer__header button {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--gray-100);
  background: var(--white);
  color: var(--navy);
  font-size: 24px;
  line-height: 1;
}

.quote-drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: 8px 24px;
}

.quote-empty {
  color: var(--text-muted);
  text-align: center;
  padding: 60px 20px;
}

.quote-item {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--gray-100);
}

.quote-item__emoji {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-50);
  font-size: 28px;
}

.quote-item__sku {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .05em;
}

.quote-item__title {
  color: var(--navy);
  font-weight: 800;
  font-size: 14px;
  line-height: 1.35;
  margin: 3px 0 10px;
}

.quote-item__controls {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: var(--navy);
}

.quote-item__controls button {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  border: 1px solid var(--gray-100);
  background: var(--white);
  color: var(--navy);
  font-size: 18px;
  line-height: 1;
}

.quote-item__remove {
  border: 0;
  background: none;
  color: var(--text-muted);
  text-decoration: underline;
  font-size: 12px;
  padding: 4px 0 0;
}

.quote-drawer__footer {
  padding: 20px 24px 24px;
  border-top: 1px solid var(--gray-100);
  background: var(--white);
}

.quote-drawer__footer .btn:disabled {
  opacity: .5;
  cursor: not-allowed;
  transform: none;
}

.quote-totals {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 16px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.quote-totals strong {
  color: var(--navy);
}

.quote-clear {
  display: block;
  margin: 12px auto 0;
  border: 0;
  background: none;
  color: var(--text-muted);
  text-decoration: underline;
  font-size: 13px;
}

.quote-status {
  min-height: 20px;
  margin-top: 12px;
  color: var(--gold);
  font-size: 13px;
  text-align: center;
  line-height: 1.45;
}

@media (max-width: 1024px) {
  .catalog-hero__inner { grid-template-columns: 1fr; gap: 34px; }
  .catalog-hero__panel { max-width: 420px; }
  .catalog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .catalog-hero { padding: 64px 0 50px; }
  .catalog-store__top { align-items: flex-start; flex-direction: column; }
  .catalog-grid { grid-template-columns: 1fr; }
  .catalog__actions { justify-content: center; }
  .catalog-hero__panel { display: none; }
  .cart-open-btn__text { display: none; }
}

/* Ajuste v8 — seção de solicitação de itens fora do catálogo */
.contact__desc--compact {
  font-size: 15px;
  color: var(--gray-500);
  margin-top: -18px;
}


.form__note--privacy {
  margin-top: -12px;
  color: var(--gray-500);
}

.catalog-request {
  padding: 0 0 86px;
  background: var(--off-white);
}

.catalog-request__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 34px 38px;
  box-shadow: var(--shadow-sm);
}

.catalog-request__inner h2 {
  font-family: var(--font-display);
  color: var(--navy);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.2;
  margin-bottom: 10px;
}

.catalog-request__inner p {
  color: var(--text-muted);
  max-width: 680px;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .catalog-request__inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 24px;
  }
}

/* ============================================================
   THEME TOGGLE + DARK MODE
   ============================================================ */
html[data-theme="dark"] {
  --navy:       #d7e5ff;
  --navy-dark:  #07111f;
  --navy-mid:   #8fb2e8;
  --gold:       #d4b44a;
  --gold-light: #f0d879;
  --gold-pale:  #2a2414;
  --white:      #0b1424;
  --off-white:  #08111f;
  --gray-50:    #111c2e;
  --gray-100:   #243149;
  --gray-300:   #52617a;
  --gray-500:   #a0aec6;
  --gray-700:   #d1d8e8;
  --text:       #eef4ff;
  --text-muted: #b7c3d8;
  --shadow-sm:  0 2px 8px rgba(0,0,0,.28);
  --shadow-md:  0 8px 32px rgba(0,0,0,.36);
  --shadow-lg:  0 20px 60px rgba(0,0,0,.45);
}

html[data-theme="dark"] body { background: var(--white); }
html[data-theme="dark"] .header {
  background: rgba(11,20,36,.94);
  border-bottom-color: rgba(255,255,255,.08);
}
html[data-theme="dark"] .header__logo img,
html[data-theme="dark"] .catalog-hero__panel img,
html[data-theme="dark"] .footer__logo-card img { background: #fff; border-radius: 12px; }
html[data-theme="dark"] .hero { background: #07111f; }
html[data-theme="dark"] .hero__bg-pattern { opacity: .92; }
html[data-theme="dark"] .hero__title,
html[data-theme="dark"] .hero__subtitle,
html[data-theme="dark"] .hero__tag { color: #fff; }
html[data-theme="dark"] .nav__link.active { background: rgba(255,255,255,.08) !important; color: #fff !important; }
html[data-theme="dark"] .form__group input,
html[data-theme="dark"] .form__group textarea,
html[data-theme="dark"] .form__group select { background: #0f1a2c; color: var(--text); border-color: var(--gray-100); }
html[data-theme="dark"] .product-card__media { background: #111c2e; }
html[data-theme="dark"] .product-card__cart-btn { background: #0f1a2c; color: var(--text); border-color: var(--gray-100); }
html[data-theme="dark"] .quote-drawer { background: #0b1424; }
html[data-theme="dark"] .cart-overlay { background: rgba(0,0,0,.64); }

.theme-toggle {
  width: 66px;
  height: 34px;
  border: 1px solid var(--gray-100);
  border-radius: 999px;
  background: linear-gradient(135deg, #fff7d6, #ffffff);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8px;
  color: var(--navy-dark);
  box-shadow: var(--shadow-sm);
  transition: background var(--ease), border-color var(--ease), transform var(--ease);
  flex-shrink: 0;
}
.theme-toggle:hover { transform: translateY(-1px); }
.theme-toggle__icon { font-size: 14px; line-height: 1; z-index: 2; }
.theme-toggle__knob {
  position: absolute;
  left: 3px;
  top: 3px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 3px 10px rgba(0,0,0,.18);
  transition: transform var(--ease), background var(--ease);
  z-index: 1;
}
html[data-theme="dark"] .theme-toggle {
  background: linear-gradient(135deg, #13233b, #07111f);
  border-color: rgba(255,255,255,.14);
}
html[data-theme="dark"] .theme-toggle__knob {
  transform: translateX(31px);
  background: #d7e5ff;
}

.product-card__promo,
.quote-item__promo {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  border-radius: 999px;
  background: var(--gold-pale);
  color: var(--gold);
  border: 1px solid rgba(180,150,50,.28);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 5px 9px;
  margin-top: 8px;
}
.quote-item__promo { font-size: 10px; padding: 4px 8px; margin-top: 6px; }

@media (max-width: 768px) {
  .theme-toggle { margin-left: auto; }
}

/* ============================================================
   HERO REFINEMENT V18 — primeira dobra mais escura, limpa e legível
   ============================================================ */
.hero {
  min-height: 760px;
  background: #071426 !important;
}
.hero__bg-pattern {
  opacity: 1 !important;
  background-image:
    radial-gradient(circle at 14% 18%, rgba(180,150,50,.18) 0%, transparent 28%),
    radial-gradient(circle at 76% 42%, rgba(38,73,119,.34) 0%, transparent 34%),
    linear-gradient(135deg, #061120 0%, #102947 48%, #071426 100%) !important;
}
.hero__bg-pattern::after {
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px) !important;
  background-size: 72px 72px;
}
.hero__inner {
  gap: 72px;
  padding-top: 76px;
  padding-bottom: 56px;
}
.hero__eyebrow {
  background: rgba(180,150,50,.12) !important;
  border-color: rgba(180,150,50,.42) !important;
  color: #f0d879 !important;
}
.hero__title {
  color: #ffffff !important;
  text-shadow: 0 6px 28px rgba(0,0,0,.28);
}
.hero__subtitle {
  color: rgba(255,255,255,.82) !important;
  max-width: 560px;
}
.hero .btn--primary {
  background: #ffffff !important;
  color: #0b1f3f !important;
  box-shadow: 0 10px 26px rgba(0,0,0,.22) !important;
}
.hero .btn--primary:hover {
  background: #f5edd6 !important;
}
.hero .btn--secondary {
  background: rgba(255,255,255,.09) !important;
  color: #ffffff !important;
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: none !important;
}
.hero .btn--secondary:hover {
  background: rgba(255,255,255,.14) !important;
}
.hero__globe {
  width: 340px;
  height: 340px;
}
.hero__globe-ring {
  border-color: rgba(255,255,255,.09) !important;
}
.hero__globe-ring--1 {
  border-color: rgba(180,150,50,.24) !important;
}
.hero__globe-ring--3 {
  border-color: rgba(180,150,50,.18) !important;
}
.hero__globe-core {
  width: 136px;
  height: 136px;
  background: rgba(8,21,40,.72) !important;
  border: 1px solid rgba(240,216,121,.45) !important;
  box-shadow: 0 18px 50px rgba(0,0,0,.24), inset 0 0 36px rgba(255,255,255,.04);
}
.hero__core-icon {
  width: 72px !important;
  height: 72px !important;
  color: #f0d879 !important;
}
.hero__tag {
  background: rgba(255,255,255,.1) !important;
  border-color: rgba(255,255,255,.18) !important;
  color: rgba(255,255,255,.94) !important;
}
.hero__tag--1 { top: 14%; left: -4%; }
.hero__tag--2 { top: 16%; right: -3%; }
.hero__tag--3 { bottom: 22%; left: -6%; }
.hero__tag--4 { bottom: 16%; right: -2%; }
.hero__stats {
  background: rgba(3,10,20,.42) !important;
  border-top-color: rgba(255,255,255,.08) !important;
}
.hero__stat-label {
  color: rgba(255,255,255,.64) !important;
}
html[data-theme="dark"] .hero {
  background: #061120 !important;
}
html[data-theme="dark"] .hero__bg-pattern {
  opacity: 1 !important;
  background-image:
    radial-gradient(circle at 14% 18%, rgba(180,150,50,.12) 0%, transparent 28%),
    radial-gradient(circle at 76% 42%, rgba(30,58,95,.28) 0%, transparent 34%),
    linear-gradient(135deg, #040b14 0%, #0b1f38 52%, #061120 100%) !important;
}
html[data-theme="dark"] .hero .btn--primary {
  background: #f8fafc !important;
  color: #061120 !important;
}
html[data-theme="dark"] .hero .btn--secondary {
  background: rgba(255,255,255,.08) !important;
  color: #ffffff !important;
}
@media (max-width: 1024px) {
  .hero { min-height: auto; }
  .hero__inner { padding-top: 64px; padding-bottom: 64px; }
}

/* ============================================================
   AJUSTE V19 — contraste real no modo escuro
   Corrige títulos e textos apagados em Diferenciais e Catálogo.
   ============================================================ */
html[data-theme="dark"] .differentials {
  background: #061120 !important;
}

html[data-theme="dark"] .differentials .section__eyebrow {
  color: #f0d879 !important;
}

html[data-theme="dark"] .differentials .section__title {
  color: #ffffff !important;
  text-shadow: 0 8px 28px rgba(0,0,0,.32);
}

html[data-theme="dark"] .differential-card {
  background: rgba(255,255,255,.055) !important;
  border-color: rgba(255,255,255,.12) !important;
}

html[data-theme="dark"] .differential-card:hover {
  background: rgba(255,255,255,.085) !important;
  border-color: rgba(240,216,121,.36) !important;
}

html[data-theme="dark"] .differential-card__num {
  color: rgba(240,216,121,.28) !important;
}

html[data-theme="dark"] .differential-card__icon {
  color: #f0d879 !important;
}

html[data-theme="dark"] .differential-card__title {
  color: #ffffff !important;
}

html[data-theme="dark"] .differential-card__text {
  color: rgba(255,255,255,.72) !important;
}

html[data-theme="dark"] .catalog {
  background: linear-gradient(135deg, #061120 0%, #102947 58%, #071426 100%) !important;
}

html[data-theme="dark"] .catalog::before {
  background: radial-gradient(circle, rgba(240,216,121,.12) 0%, transparent 70%) !important;
}

html[data-theme="dark"] .catalog .section__eyebrow,
html[data-theme="dark"] .catalog .section__eyebrow--light {
  color: #f0d879 !important;
}

html[data-theme="dark"] .catalog__title {
  color: #ffffff !important;
  text-shadow: 0 8px 28px rgba(0,0,0,.3);
}

html[data-theme="dark"] .catalog__text {
  color: rgba(255,255,255,.78) !important;
}

html[data-theme="dark"] .catalog__deco-ring {
  border-color: rgba(255,255,255,.16) !important;
}

html[data-theme="dark"] .catalog__deco-icon {
  color: rgba(255,255,255,.65) !important;
}


/* ============================================================
   AJUSTE V20 — tema persistente e limpeza visual
   ============================================================ */
.hero__bg-pattern::before {
  content: none !important;
  display: none !important;
}
.hero__bg-pattern {
  overflow: hidden;
}
html[data-theme="dark"] .catalog-hero {
  background: linear-gradient(135deg, #040b14 0%, #0b1f38 55%, #061120 100%) !important;
}
html[data-theme="dark"] .catalog-hero::before {
  opacity: .26 !important;
}
html[data-theme="dark"] .catalog-hero__title {
  color: #ffffff !important;
  text-shadow: 0 8px 28px rgba(0,0,0,.32);
}
html[data-theme="dark"] .catalog-hero__text {
  color: rgba(255,255,255,.80) !important;
}
html[data-theme="dark"] .catalog-hero__badges span,
html[data-theme="dark"] .catalog-hero__panel {
  background: rgba(255,255,255,.08) !important;
  border-color: rgba(255,255,255,.16) !important;
  color: #ffffff !important;
}
html[data-theme="dark"] .catalog-hero__panel span {
  color: rgba(255,255,255,.72) !important;
}

/* ============================================================
   POLIMENTO V22 — consistência visual e estados finais
   ============================================================ */
:focus-visible {
  outline: 3px solid rgba(180,150,50,.45);
  outline-offset: 3px;
}

.header__inner {
  gap: 22px;
}

.header .theme-toggle {
  margin-left: 10px;
}

.hero__actions .btn,
.catalog__actions .btn {
  min-width: 190px;
  justify-content: center;
}

.segment-card__btn,
.footer__nav a,
.quote-clear,
.quote-item__remove {
  text-underline-offset: 3px;
}

.product-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card__media:has(.product-card__image) {
  background: var(--gray-50);
}

.product-card__promo,
.quote-item__promo {
  line-height: 1.2;
}

.quote-item__emoji img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
}

.quote-drawer__header button:hover,
.quote-item__controls button:hover {
  border-color: var(--gold);
  background: var(--gold-pale);
}

#finish-quote {
  font-size: 15px;
}

.form__feedback {
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
}

.form__feedback--error {
  background: #fff0f0;
  border: 1px solid #ffcccc;
  color: #9f1f16;
}

.form__feedback--success {
  background: #f0fff4;
  border: 1px solid #b9e7c6;
  color: #0f5f3f;
}

.catalog-hero {
  background: linear-gradient(135deg, #071426 0%, #102947 54%, #071426 100%) !important;
}

.catalog-hero__title {
  color: #ffffff !important;
  text-shadow: 0 8px 26px rgba(0,0,0,.26);
}

.catalog-hero__text {
  color: rgba(255,255,255,.80) !important;
}

.catalog-hero .section__eyebrow {
  color: #f0d879 !important;
}

.catalog-hero__panel {
  background: rgba(255,255,255,.08) !important;
  border-color: rgba(255,255,255,.16) !important;
}

.catalog-hero__panel strong {
  color: #ffffff !important;
}

.catalog-hero__panel span {
  color: rgba(255,255,255,.72) !important;
}

.catalog-request__inner {
  align-items: center;
}

html[data-theme="dark"] .catalog-request,
html[data-theme="dark"] .catalog-store,
html[data-theme="dark"] .segments,
html[data-theme="dark"] .audience {
  background: #08111f !important;
}

html[data-theme="dark"] .about {
  background: linear-gradient(180deg, #08111f 0%, #07111f 100%) !important;
}

html[data-theme="dark"] .about__content,
html[data-theme="dark"] .segment-card,
html[data-theme="dark"] .audience-card,
html[data-theme="dark"] .catalog-request__inner,
html[data-theme="dark"] .product-card,
html[data-theme="dark"] .quote-drawer,
html[data-theme="dark"] .quote-drawer__footer,
html[data-theme="dark"] .quote-drawer__header {
  background: #0b1424 !important;
  border-color: #243149 !important;
}

html[data-theme="dark"] .about__summary-card,
html[data-theme="dark"] .about__highlight,
html[data-theme="dark"] .quote-item__emoji {
  background: #111c2e !important;
  border-color: #243149 !important;
}

html[data-theme="dark"] .section__title,
html[data-theme="dark"] .about__summary-card strong,
html[data-theme="dark"] .segment-card__title,
html[data-theme="dark"] .audience-card span,
html[data-theme="dark"] .product-card__title,
html[data-theme="dark"] .quote-drawer__header h2,
html[data-theme="dark"] .quote-item__title,
html[data-theme="dark"] .quote-item__controls,
html[data-theme="dark"] .quote-totals strong {
  color: #f8fafc !important;
}

html[data-theme="dark"] .section__subtitle,
html[data-theme="dark"] .about__text,
html[data-theme="dark"] .about__summary-card span,
html[data-theme="dark"] .segment-card__text,
html[data-theme="dark"] .product-card__meta,
html[data-theme="dark"] .quote-totals,
html[data-theme="dark"] .quote-empty,
html[data-theme="dark"] .catalog-request__inner p,
html[data-theme="dark"] .contact__desc,
html[data-theme="dark"] .form__note,
html[data-theme="dark"] .form__note--privacy {
  color: #b7c3d8 !important;
}

html[data-theme="dark"] .form__feedback--error {
  background: rgba(180,35,24,.14);
  border-color: rgba(255,120,110,.28);
  color: #ffb8b0;
}

html[data-theme="dark"] .form__feedback--success {
  background: rgba(17,132,91,.14);
  border-color: rgba(99,220,166,.28);
  color: #99f0cd;
}

html[data-theme="dark"] .quote-drawer__header button,
html[data-theme="dark"] .quote-item__controls button {
  background: #0f1a2c !important;
  color: #f8fafc !important;
  border-color: #26364f !important;
}

html[data-theme="dark"] .quote-drawer__header button:hover,
html[data-theme="dark"] .quote-item__controls button:hover {
  background: #13243d !important;
  border-color: #d4b44a !important;
}

html[data-theme="dark"] .product-card__cart-btn:hover,
html[data-theme="dark"] .cart-open-btn:hover,
html[data-theme="dark"] .catalog-filter:hover,
html[data-theme="dark"] .catalog-filter.active {
  border-color: #d4b44a !important;
}

@media (max-width: 768px) {
  .header .btn--header {
    display: none !important;
  }
  .header .theme-toggle {
    margin-left: auto;
  }
  .hero__actions .btn,
  .catalog__actions .btn {
    width: 100%;
  }
  .catalog-hero__badges span {
    font-size: 11px;
  }
}

/* ============================================================
   INSTAGRAM SECTION
   ============================================================ */
.instagram-section {
  background: var(--white);
}

.instagram__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 56px;
  align-items: center;
}

.instagram__content .section__title {
  text-align: left;
  margin-bottom: 16px;
}

.instagram__text {
  max-width: 560px;
  margin-bottom: 28px;
}

.instagram__card {
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.instagram__card img {
  width: 220px;
  height: 220px;
  object-fit: contain;
  border-radius: 18px;
  background: var(--white);
}

.instagram__card strong {
  display: block;
  color: var(--navy);
  font-size: 16px;
  margin-bottom: 4px;
}

.instagram__card span {
  color: var(--text-muted);
  font-size: 14px;
}

html[data-theme="dark"] .instagram-section {
  background: #081524;
}

html[data-theme="dark"] .instagram__card {
  background: #0e1c30;
  border-color: rgba(255,255,255,.12);
}

html[data-theme="dark"] .instagram__card strong {
  color: #f7f8fc;
}

html[data-theme="dark"] .instagram__card span {
  color: rgba(255,255,255,.68);
}

@media (max-width: 900px) {
  .instagram__inner {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  .instagram__content .section__title {
    text-align: center;
  }
  .instagram__text {
    margin-left: auto;
    margin-right: auto;
  }
  .instagram__card {
    max-width: 360px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .instagram__card img {
    width: 180px;
    height: 180px;
  }
}

/* ============================================================
   AJUSTE V24 — Instagram no modo escuro e logo sem fundo branco
   ============================================================ */
.header__logo img.logo--dark,
.catalog-header__logo img.logo--dark {
  display: none;
}
.header__logo img.logo--light,
.catalog-header__logo img.logo--light {
  display: block;
}
html[data-theme="dark"] .header__logo img,
html[data-theme="dark"] .catalog-header__logo img {
  background: transparent !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
html[data-theme="dark"] .header__logo img.logo--light,
html[data-theme="dark"] .catalog-header__logo img.logo--light {
  display: none;
}
html[data-theme="dark"] .header__logo img.logo--dark,
html[data-theme="dark"] .catalog-header__logo img.logo--dark {
  display: block;
}
.header__logo img.logo--dark,
.header__logo img.logo--light,
.catalog-header__logo img.logo--dark,
.catalog-header__logo img.logo--light {
  object-fit: contain;
}

.instagram-section {
  background:
    radial-gradient(circle at 14% 16%, rgba(180,150,50,.08), transparent 28%),
    linear-gradient(180deg, var(--white) 0%, var(--off-white) 100%);
}
.instagram__card {
  text-decoration: none;
  cursor: pointer;
  transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease), background var(--ease);
}
.instagram__card:hover {
  transform: translateY(-3px);
  border-color: rgba(180,150,50,.42);
  box-shadow: 0 18px 48px rgba(21,40,72,.12);
}
.instagram__qr-wrap {
  background: #fff;
  padding: 14px;
  border-radius: 22px;
  box-shadow: 0 10px 28px rgba(21,40,72,.10);
}
.instagram__card img {
  width: 214px;
  height: 214px;
  border-radius: 16px;
  background: #fff;
}
html[data-theme="dark"] .instagram-section {
  background:
    radial-gradient(circle at 78% 15%, rgba(180,150,50,.10), transparent 30%),
    linear-gradient(180deg, #07111f 0%, #0b1424 100%);
}
html[data-theme="dark"] .instagram__content .section__title {
  color: #f8fafc;
}
html[data-theme="dark"] .instagram__text {
  color: rgba(255,255,255,.72);
}
html[data-theme="dark"] .instagram__card {
  background: linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.035));
  border-color: rgba(255,255,255,.14);
  box-shadow: 0 18px 52px rgba(0,0,0,.28);
}
html[data-theme="dark"] .instagram__card:hover {
  border-color: rgba(212,180,74,.48);
  background: linear-gradient(145deg, rgba(255,255,255,.10), rgba(255,255,255,.045));
}
html[data-theme="dark"] .instagram__qr-wrap {
  background: #fff;
  box-shadow: 0 16px 38px rgba(0,0,0,.32);
}
html[data-theme="dark"] .instagram__card strong {
  color: #fff;
}
html[data-theme="dark"] .instagram__card span {
  color: rgba(255,255,255,.70);
}

/* v11 — catálogo público conectado ao Supabase */
.product-card__media img,
.quote-item__emoji img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.catalog-loading,
.catalog-empty {
  grid-column: 1 / -1;
  border: 1px solid var(--gray-100);
  background: var(--white);
  color: var(--text-muted);
  border-radius: var(--radius-lg);
  padding: 22px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

html[data-theme="dark"] .catalog-loading,
html[data-theme="dark"] .catalog-empty {
  background: rgba(255,255,255,.045);
  border-color: rgba(255,255,255,.1);
  color: rgba(244,248,255,.72);
}
