:root {
  --bg: #120d0b;
  --bg-soft: #18120f;
  --stone: #1c1512;
  --stone-2: #241b17;
  --wood: #2d2019;
  --wood-2: #3a281f;
  --gold: #cfa06c;
  --gold-strong: #e2b27b;
  --gold-soft: #b68a5d;
  --cream: #f4e7d8;
  --text: #ecd3b7;
  --text-soft: #c8a382;
  --text-muted: #9d795b;
  --dark-text: #3c2f23;
  --dark-text-soft: #6e5848;
  --line: rgba(226, 178, 123, 0.12);
  --line-strong: rgba(226, 178, 123, 0.22);
  --shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
  --shadow-strong: 0 24px 48px rgba(0, 0, 0, 0.34);
  --radius: 22px;
  --radius-lg: 28px;
  --container: 1200px;
  --header-height: 96px;
}

/* =========================================================
   RESET
========================================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  background:
    radial-gradient(circle at top, rgba(226, 178, 123, 0.04), transparent 20%),
    linear-gradient(180deg, #110c0a 0%, #17110e 45%, #120d0b 100%);
  color: var(--text);
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

main {
  display: block;
}

/* =========================================================
   BASE
========================================================= */
.container {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

.page-section {
  padding: 72px 0;
}

.page-section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.12;
  color: var(--gold-strong);
  margin: 0 0 18px;
  font-family: "Cormorant Garamond", serif;
}

.page-section-text {
  color: var(--text-soft);
  max-width: 720px;
}

.page-shell {
  padding-top: calc(var(--header-height) + 24px);
  min-height: 70vh;
}

.page-card {
  border-radius: 24px;
  border: 1px solid var(--line);
  background:
    linear-gradient(rgba(20, 14, 11, 0.78), rgba(20, 14, 11, 0.84)),
    linear-gradient(135deg, #17110e, #241913 58%, #120c0a);
  box-shadow: var(--shadow);
  padding: 32px;
}

.page-card h1,
.page-card h2,
.page-card h3 {
  color: var(--gold-strong);
  margin-top: 0;
  font-family: "Cormorant Garamond", serif;
}

.page-card,
.card,
.premium-card,
.product-card {
  overflow-wrap: break-word;
}

.page-card p,
.card p,
.page-card li,
.card li {
  max-width: 100%;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1200;
  background:
    linear-gradient(rgba(14, 10, 8, 0.92), rgba(14, 10, 8, 0.96)),
    radial-gradient(circle at top, rgba(226, 178, 123, 0.06), transparent 40%);
  border-bottom: 1px solid rgba(226, 178, 123, 0.12);
  backdrop-filter: blur(10px);
}

.header-container {
  width: min(1320px, calc(100% - 32px));
  margin: 0 auto;
  height: 100%;
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
}

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

.brand-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo {
  width: clamp(142px, 12vw, 176px);
  max-height: 78px;
  height: auto;
  display: block;
  object-fit: contain;
}

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

.brand-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.9rem;
  line-height: 1;
  letter-spacing: 0.08em;
  color: var(--gold-strong);
  font-weight: 600;
}

.brand-subtitle {
  margin-top: 6px;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(244, 231, 216, 0.78);
}

/* NAV */
.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  min-width: 0;
  padding-right: 0;
}

.nav-link,
.dropdown-trigger {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  color: var(--cream);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
  transition: color 0.25s ease, opacity 0.25s ease;
}

.nav-link:hover,
.dropdown-trigger:hover {
  color: var(--gold-strong);
}

.nav-link::after,
.dropdown-trigger::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1px;
  background: var(--gold-strong);
  transition: width 0.25s ease;
}

.nav-link:hover::after,
.dropdown:hover .dropdown-trigger::after,
.dropdown.active .dropdown-trigger::after {
  width: 100%;
}

.dropdown {
  position: relative;
}

.dropdown::after {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  height: 14px;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 270px;
  padding: 12px 0;
  border-radius: 18px;
  background: rgba(20, 24, 22, 0.98);
  border: 1px solid rgba(226, 178, 123, 0.16);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
}

.dropdown:hover .dropdown-menu,
.dropdown.active .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown-item {
  display: block;
  padding: 12px 18px;
  color: var(--cream);
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
  font-size: 0.9rem;
}

.dropdown-item:hover {
  background: rgba(226, 178, 123, 0.08);
  color: var(--gold-strong);
  padding-left: 22px;
}

.header-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 9px;
  min-width: 0;
  padding-left: 16px;
  border-left: 1px solid rgba(226, 178, 123, 0.16);
}

.header-auth-links,
.header-user-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-link-auth {
  min-height: auto;
  font-size: 0.88rem;
  color: var(--text-soft);
  white-space: nowrap;
  text-transform: none;
  letter-spacing: 0.01em;
}

.nav-link-auth:hover {
  color: var(--gold-strong);
}

.nav-link-auth::after {
  bottom: -4px;
}

.utility-link {
  position: relative;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 999px;
  color: var(--cream);
  border: 1px solid transparent;
  transition: color 0.22s ease, background 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
}

.utility-link:hover {
  color: var(--gold-strong);
  background: rgba(226, 178, 123, 0.08);
  border-color: rgba(226, 178, 123, 0.22);
  transform: translateY(-1px);
}

.utility-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.utility-label {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.utility-link-text {
  width: auto;
  padding: 0 14px;
  gap: 8px;
}

.utility-link-text .utility-label {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
  clip-path: none;
  font-size: 0.88rem;
  font-weight: 600;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 12px 26px rgba(37, 211, 102, 0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(37, 211, 102, 0.24);
}

.whatsapp-icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* =========================================================
   HERO PREMIUM
========================================================= */
.hero-premium-bg {
  background-image:
    linear-gradient(rgba(16, 18, 17, 0.4), rgba(16, 18, 17, 0.55)),
    url("/img/home/hero-home.jpg");
}

.hero-premium {
  position: relative;
  padding-top: var(--header-height);
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
}

.hero-premium::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(16, 18, 17, 0.45) 0%,
    rgba(16, 18, 17, 0.55) 50%,
    rgba(16, 18, 17, 0.65) 100%
  );
  z-index: 1;
}

.hero-premium-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  text-align: center;
  margin: 0 auto;
  padding: 60px 20px;
}

.hero-kicker {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold-strong);
  margin-bottom: 24px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(226, 178, 123, 0.1);
  border: 1px solid rgba(226, 178, 123, 0.2);
}

.hero-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.5rem, 8vw, 6rem);
  line-height: 1.05;
  font-weight: 600;
  color: var(--gold-strong);
  margin: 0 0 12px;
  text-shadow: 0 0 40px rgba(226, 178, 123, 0.15);
}

.hero-subtitle {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  line-height: 1.1;
  color: var(--cream);
  margin: 0 0 28px;
  font-weight: 400;
}

.hero-text {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--text);
  opacity: 0.95;
  margin: 0 auto 40px;
  max-width: 580px;
}

.hero-actions {
  display: inline-flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* =========================================================
   BOTÕES HOME
========================================================= */
.btn-gold,
.btn-dark-outline,
.btn-classic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 24px;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.25s ease;
  text-align: center;
}

.btn-gold {
  background: linear-gradient(135deg, #e2b27b, #cfa06c);
  color: #1b120d;
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(226, 178, 123, 0.2);
}

.btn-gold:hover {
  background: linear-gradient(135deg, #f0c28a, #ddb07a);
  box-shadow: 0 16px 32px rgba(226, 178, 123, 0.25);
  transform: translateY(-3px);
}

.btn-dark-outline {
  background: transparent;
  border: 2px solid rgba(226, 178, 123, 0.4);
  color: var(--gold-strong);
  font-weight: 600;
}

.btn-dark-outline:hover {
  background: rgba(226, 178, 123, 0.08);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.btn-classic {
  background: linear-gradient(135deg, #cfa06c, #b68a5d);
  color: #1b120d;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(198, 138, 93, 0.15);
}

.btn-classic:hover {
  background: linear-gradient(135deg, #ddb07a, #cfa06c);
  box-shadow: 0 12px 24px rgba(198, 138, 93, 0.2);
  transform: translateY(-2px);
}

/* =========================================================
   SEÇÕES PREMIUM
========================================================= */
.premium-section {
  padding: 100px 0;
  position: relative;
}

.section-light {
  background:
    radial-gradient(circle at top, rgba(255, 247, 228, 0.55), transparent 35%),
    linear-gradient(180deg, #fff8ec 0%, #f6e7d2 55%, #ecd9c3 100%);
  color: var(--dark-text);
}

.section-dark {
  background:
    linear-gradient(180deg, #0f0a08 0%, #16100d 50%, #1a1310 100%);
  color: var(--cream);
}

.section-title-wrap {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.section-line {
  display: inline-block;
  width: 80px;
  height: 2px;
  background: var(--gold);
  margin: 0 20px 24px;
  border-radius: 1px;
}

.section-line.gold {
  background: var(--gold-strong);
}

.premium-heading {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1.1;
  font-weight: 600;
  color: var(--gold-strong);
  margin: 0;
}

.heading-light {
  color: var(--cream);
}

/* =========================================================
   GRID
========================================================= */
.premium-grid {
  display: grid;
  gap: 32px;
  margin-top: 40px;
}

.four-cols {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* =========================================================
   CARDS
========================================================= */
.premium-card {
  display: block;
  border-radius: 24px;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  text-decoration: none;
  position: relative;
}

.premium-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.25);
}

.card-light {
  background: #fdf3e9;
  border: 1px solid rgba(196, 142, 96, 0.45);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.1);
  color: #4f3f31;
}

.card-light:hover {
  border-color: rgba(198, 138, 93, 0.65);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.16);
}

.card-dark {
  background:
    linear-gradient(rgba(20, 14, 11, 0.85), rgba(20, 14, 11, 0.9)),
    linear-gradient(135deg, #1a1310, #241913 60%, #16100d);
  border: 1px solid rgba(226, 178, 123, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
}

.card-dark:hover {
  border-color: rgba(226, 178, 123, 0.35);
}

.premium-card-image {
  height: 280px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}

.premium-card-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.1) 0%,
    transparent 40%,
    rgba(0, 0, 0, 0.05) 100%
  );
  transition: opacity 0.3s ease;
}

.premium-card:hover .premium-card-image::before {
  opacity: 0.8;
}

.premium-card-body {
  padding: 28px;
}

.premium-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0 0 12px;
  line-height: 1.3;
}

.card-light h3 {
  color: #4a3428;
}

.card-light p {
  color: var(--dark-text-soft);
}

.card-dark h3 {
  color: var(--cream);
}

.premium-card p {
  line-height: 1.6;
  margin: 0;
  font-size: 0.98rem;
}

.card-dark p {
  color: var(--text);
  opacity: 0.9;
}

.mini-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  padding: 8px 16px;
  min-height: 40px;
  border-radius: 999px;
  background: rgba(226, 178, 123, 0.1);
  color: var(--gold-strong);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.25s ease;
}

.mini-btn:hover {
  background: rgba(226, 178, 123, 0.2);
  transform: translateY(-1px);
}

.center-cta {
  text-align: center;
  margin-top: 50px;
}

/* =========================================================
   LOGOS DE CLIENTES
========================================================= */

.home-clients-band {
  position: relative;
  padding: 112px 0 96px;
  overflow: hidden;
  isolation: isolate;
  border-top: 1px solid rgba(226, 178, 123, 0.1);
  border-bottom: 1px solid rgba(226, 178, 123, 0.1);
  background:
    radial-gradient(circle at 50% 44%, rgba(178, 122, 73, 0.14), transparent 31%),
    radial-gradient(circle at 14% 18%, rgba(194, 132, 70, 0.16), transparent 24%),
    radial-gradient(circle at 86% 18%, rgba(132, 90, 46, 0.11), transparent 22%),
    linear-gradient(180deg, #050404 0%, #0d0908 46%, #060505 100%);
}

.home-clients-band::before,
.home-clients-band::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.home-clients-band::before {
  z-index: -2;
  background:
    linear-gradient(118deg, transparent 16%, rgba(226, 178, 123, 0.05) 40%, transparent 66%),
    radial-gradient(circle at center, rgba(226, 178, 123, 0.08), transparent 42%),
    radial-gradient(circle at 50% 62%, rgba(255, 230, 201, 0.03), transparent 34%);
  filter: blur(30px);
  opacity: 0.85;
}

.home-clients-band::after {
  z-index: -1;
  background:
    radial-gradient(circle at 14% 74%, rgba(255, 215, 173, 0.14) 0 1px, transparent 2px),
    radial-gradient(circle at 32% 20%, rgba(255, 215, 173, 0.12) 0 1.5px, transparent 3px),
    radial-gradient(circle at 68% 30%, rgba(255, 215, 173, 0.08) 0 1px, transparent 2px),
    radial-gradient(circle at 84% 64%, rgba(255, 215, 173, 0.1) 0 1.5px, transparent 3px),
    radial-gradient(circle at 56% 82%, rgba(255, 215, 173, 0.08) 0 1px, transparent 2px);
  opacity: 0.16;
}

.home-clients-band .container {
  position: relative;
  z-index: 1;
}

.home-clients-band .container::before {
  content: "";
  position: absolute;
  top: 110px;
  right: 9%;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(226, 178, 123, 0.16), transparent 68%);
  filter: blur(42px);
  pointer-events: none;
}

.home-clients-band .container::after {
  content: "";
  position: absolute;
  top: 230px;
  left: 50%;
  width: min(78vw, 980px);
  height: 260px;
  transform: translateX(-50%);
  background:
    radial-gradient(circle at center, rgba(214, 155, 97, 0.16), rgba(116, 76, 44, 0.05) 36%, transparent 72%);
  filter: blur(54px);
  opacity: 0.72;
  pointer-events: none;
}

.home-clients-head {
  position: relative;
  max-width: 860px;
  margin: 0 auto 42px;
  text-align: center;
}

.home-clients-head .eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.45rem;
  border-radius: 999px;
  border: 1px solid rgba(226, 178, 123, 0.18);
  background: linear-gradient(180deg, rgba(34, 24, 20, 0.82), rgba(17, 12, 10, 0.84));
  color: rgba(248, 217, 180, 0.9);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 14px 30px rgba(0, 0, 0, 0.22);
  letter-spacing: 0.18em;
}

.home-clients-head h2 {
  margin: 18px 0 18px;
  color: #f4c28f;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.5rem, 4vw, 4.25rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  text-wrap: balance;
  text-shadow: 0 16px 38px rgba(0, 0, 0, 0.34);
}

.home-clients-head p {
  margin: 0 auto;
  max-width: 760px;
  color: rgba(234, 210, 188, 0.78);
  font-size: 1rem;
  line-height: 1.9;
}

.home-clients-carousel {
  position: relative;
  padding: 40px 92px 42px;
  border-radius: 42px;
  border: 1px solid rgba(226, 178, 123, 0.1);
  background:
    linear-gradient(180deg, rgba(22, 17, 15, 0.5), rgba(9, 8, 7, 0.72) 68%, rgba(6, 5, 5, 0.84)),
    radial-gradient(circle at 50% 16%, rgba(226, 178, 123, 0.07), transparent 44%);
  box-shadow:
    0 38px 82px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    inset 0 -1px 0 rgba(226, 178, 123, 0.03);
  overflow: hidden;
  backdrop-filter: blur(24px) saturate(112%);
  -webkit-backdrop-filter: blur(24px) saturate(112%);
}

.home-clients-carousel::before,
.home-clients-carousel::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.home-clients-carousel::before {
  background:
    linear-gradient(90deg, transparent, rgba(226, 178, 123, 0.16), transparent) top center / min(84%, 980px) 1px no-repeat,
    linear-gradient(90deg, transparent, rgba(226, 178, 123, 0.12), transparent) bottom center / min(76%, 920px) 1px no-repeat,
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent 16%),
    linear-gradient(125deg, transparent 24%, rgba(246, 209, 168, 0.05) 46%, transparent 68%);
}

.home-clients-carousel::after {
  inset: auto 16% -100px 16%;
  height: 200px;
  background: radial-gradient(circle, rgba(200, 143, 89, 0.14), rgba(102, 68, 41, 0.05) 36%, transparent 70%);
  filter: blur(44px);
}

.home-clients-carousel.is-static,
.home-clients-carousel.is-navless {
  padding-inline: 28px;
}

.home-clients-carousel.is-static .home-client-nav,
.home-clients-carousel.is-navless .home-client-nav {
  opacity: 0;
  pointer-events: none;
}

.home-clients-carousel.is-paused .home-client-logo-plaque {
  transition-duration: 0.68s;
}

.home-client-nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(226, 178, 123, 0.2);
  background:
    linear-gradient(180deg, rgba(36, 27, 22, 0.92), rgba(13, 10, 9, 0.94));
  color: rgba(245, 199, 142, 0.92);
  box-shadow:
    0 18px 36px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  opacity: 0.74;
  transform: translateY(-50%);
  transition: transform 0.45s ease, border-color 0.45s ease, opacity 0.45s ease, box-shadow 0.45s ease;
}

.home-clients-carousel:hover .home-client-nav {
  opacity: 0.98;
}

.home-client-nav span {
  font-size: 0;
  line-height: 1;
}

.home-client-nav span::before {
  content: "\2039";
  font-size: 2rem;
  line-height: 1;
}

.home-client-nav-next span::before {
  content: "\203A";
}

.home-client-nav-prev {
  left: 22px;
}

.home-client-nav-next {
  right: 22px;
}

.home-client-nav:hover {
  transform: translateY(calc(-50% - 3px));
  border-color: rgba(226, 178, 123, 0.34);
  box-shadow:
    0 22px 38px rgba(0, 0, 0, 0.34),
    0 0 22px rgba(226, 178, 123, 0.08);
}

.home-client-nav:disabled {
  opacity: 0.24;
  cursor: default;
  transform: translateY(-50%);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.22);
}

.home-client-nav:focus-visible {
  outline: 2px solid rgba(226, 178, 123, 0.4);
  outline-offset: 3px;
}

.home-clients-viewport {
  position: relative;
  z-index: 1;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 10px;
  mask-image: linear-gradient(to right, transparent 0, black 9%, black 91%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0, black 9%, black 91%, transparent 100%);
  padding: 8px 0 16px;
}

.home-clients-viewport::-webkit-scrollbar {
  display: none;
}

.home-clients-track {
  display: flex;
  align-items: stretch;
  gap: 24px;
  width: max-content;
  padding: 12px 2px 16px;
}

.home-clients-carousel.is-static .home-clients-track,
.home-clients-carousel.is-navless .home-clients-track {
  width: 100%;
  justify-content: center;
}

.home-client-logo-card {
  position: relative;
  flex: 0 0 clamp(244px, 19vw, 286px);
  min-width: clamp(244px, 19vw, 286px);
  scroll-snap-align: center;
}

.home-client-logo-card::before {
  content: "";
  position: absolute;
  right: 26px;
  bottom: -16px;
  left: 26px;
  height: 58px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.42), transparent 72%);
  filter: blur(18px);
  opacity: 0.34;
  transform: translateY(0) scale(0.88);
  transition: transform 0.72s ease, opacity 0.72s ease;
  pointer-events: none;
}

.home-client-logo-plaque {
  position: relative;
  z-index: 1;
  min-height: 226px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 18px;
  padding: 26px 24px 22px;
  border-radius: 32px;
  border: 1px solid rgba(226, 178, 123, 0.08);
  background:
    linear-gradient(180deg, rgba(29, 22, 19, 0.48), rgba(13, 11, 10, 0.66) 58%, rgba(8, 7, 7, 0.82)),
    linear-gradient(140deg, rgba(255, 255, 255, 0.03), transparent 54%);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.26),
    0 34px 72px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.035),
    inset 0 -14px 28px rgba(0, 0, 0, 0.16);
  overflow: hidden;
  backdrop-filter: blur(28px) saturate(112%);
  -webkit-backdrop-filter: blur(28px) saturate(112%);
  transition:
    transform 0.68s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.68s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.68s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.68s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-client-logo-plaque::before,
.home-client-logo-plaque::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.home-client-logo-plaque::before {
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 16%),
    radial-gradient(circle at 50% 0, rgba(246, 217, 181, 0.08), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.03), transparent 48%);
}

.home-client-logo-plaque::after {
  left: 18px;
  right: 18px;
  bottom: 10px;
  height: 42px;
  background: radial-gradient(circle at 50% 0, rgba(226, 178, 123, 0.08), transparent 72%);
  filter: blur(12px);
  opacity: 0.9;
}

.home-client-logo-card:hover .home-client-logo-plaque,
.home-client-logo-card:focus-within .home-client-logo-plaque {
  transform: translateY(-4px);
  border-color: rgba(226, 178, 123, 0.14);
  background:
    linear-gradient(180deg, rgba(34, 26, 22, 0.54), rgba(12, 10, 9, 0.72) 58%, rgba(8, 7, 7, 0.84)),
    linear-gradient(140deg, rgba(255, 255, 255, 0.04), transparent 54%);
  box-shadow:
    0 28px 52px rgba(0, 0, 0, 0.32),
    0 0 28px rgba(226, 178, 123, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    inset 0 -10px 18px rgba(226, 178, 123, 0.04);
}

.home-client-logo-card:hover::before,
.home-client-logo-card:focus-within::before {
  opacity: 0.52;
  transform: translateY(3px) scale(1);
}

.home-client-logo-media {
  position: relative;
  z-index: 1;
  min-height: 136px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 22px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.03);
  background:
    radial-gradient(circle at 50% 44%, rgba(255, 244, 231, 0.14), rgba(255, 255, 255, 0.03) 46%, transparent 78%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.008));
  box-shadow:
    inset 0 12px 22px rgba(255, 255, 255, 0.012),
    0 18px 30px rgba(0, 0, 0, 0.16);
  transition: background 0.68s ease, box-shadow 0.68s ease, border-color 0.68s ease;
}

.home-client-logo-card:hover .home-client-logo-media,
.home-client-logo-card:focus-within .home-client-logo-media {
  border-color: rgba(226, 178, 123, 0.08);
  background:
    radial-gradient(circle at 50% 44%, rgba(255, 244, 231, 0.18), rgba(255, 255, 255, 0.04) 46%, transparent 78%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  box-shadow:
    inset 0 12px 22px rgba(255, 255, 255, 0.02),
    0 22px 32px rgba(0, 0, 0, 0.18);
}

.home-client-logo-media img {
  max-width: min(100%, 184px);
  max-height: 84px;
  object-fit: contain;
  filter:
    brightness(1.04)
    contrast(1.06)
    saturate(1.03)
    drop-shadow(0 8px 18px rgba(0, 0, 0, 0.16));
  opacity: 0.94;
  transform: scale(1);
  transition: transform 0.72s ease, filter 0.72s ease, opacity 0.72s ease;
}

.home-client-logo-card:hover .home-client-logo-media img,
.home-client-logo-card:focus-within .home-client-logo-media img {
  opacity: 1;
  transform: scale(1.022);
  filter:
    brightness(1.1)
    contrast(1.08)
    saturate(1.06)
    drop-shadow(0 12px 22px rgba(245, 207, 162, 0.08));
}

.home-client-logo-name,
.home-client-logo-meta strong {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(239, 217, 194, 0.58);
  font-size: 0.63rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 1.65;
  text-align: center;
  text-transform: uppercase;
}

.home-client-logo-meta {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 6px;
  justify-items: center;
  text-align: center;
}

.home-client-logo-meta small,
.home-client-logo-note {
  position: relative;
  z-index: 1;
  color: rgba(209, 181, 154, 0.44);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  line-height: 1.45;
  text-align: center;
  text-transform: uppercase;
}

.home-client-logo-placeholder-mark {
  position: relative;
  z-index: 1;
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(226, 178, 123, 0.14);
  background:
    radial-gradient(circle at center, rgba(245, 219, 192, 0.18), rgba(255, 255, 255, 0.02));
  color: rgba(247, 221, 193, 0.84);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.22rem;
  letter-spacing: 0.14em;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.home-clients-signature {
  max-width: 760px;
  margin: 30px auto 0;
  color: rgba(224, 198, 170, 0.58);
  font-size: 0.92rem;
  line-height: 1.8;
  text-align: center;
}

@media (max-width: 920px) {
  .home-clients-band {
    padding: 88px 0 78px;
  }

  .home-clients-band .container::before {
    width: 220px;
    height: 220px;
    top: 118px;
  }

  .home-clients-head {
    margin-bottom: 34px;
  }

  .home-clients-head .eyebrow {
    padding: 0.75rem 1.1rem;
    letter-spacing: 0.14em;
  }

  .home-clients-head h2 {
    font-size: clamp(2.2rem, 9vw, 3.1rem);
  }

  .home-clients-head p,
  .home-clients-signature {
    font-size: 0.94rem;
    line-height: 1.78;
  }

  .home-clients-carousel {
    padding: 28px 18px 24px;
    border-radius: 30px;
  }

  .home-client-nav {
    display: none;
  }

  .home-clients-viewport {
    mask-image: none;
    -webkit-mask-image: none;
    padding-bottom: 12px;
  }

  .home-client-logo-card {
    flex-basis: 244px;
    min-width: 244px;
  }

  .home-client-logo-plaque {
    min-height: 206px;
    padding: 20px 16px 18px;
    border-radius: 26px;
  }

  .home-client-logo-media {
    min-height: 118px;
    padding: 18px;
  }

  .home-client-logo-media img {
    max-height: 76px;
  }

  .home-client-logo-name,
  .home-client-logo-meta strong {
    font-size: 0.62rem;
    letter-spacing: 0.16em;
  }

  .home-client-logo-meta small,
  .home-client-logo-note {
    font-size: 0.58rem;
    letter-spacing: 0.14em;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-client-nav,
  .home-client-logo-plaque,
  .home-client-logo-media,
  .home-client-logo-media img {
    transition: none;
  }
}

/* =========================================================
   FAIXA EDITORIAL
========================================================= */
.editorial-banner {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #120d0b;
  margin: 80px 0;
}

.editorial-media {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(20, 14, 11, 0.18), rgba(20, 14, 11, 0.32)),
    url("/img/home/faixa-editorial.jpg");
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
}

.editorial-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(18, 13, 11, 0.42) 0%,
    rgba(18, 13, 11, 0.56) 48%,
    rgba(18, 13, 11, 0.72) 100%
  );
  z-index: 1;
}

.editorial-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(226, 178, 123, 0.1), transparent 42%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.16));
  z-index: 1;
}

.editorial-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  text-align: center;
  margin: 0 auto;
  padding: 60px 20px;
}

.editorial-content h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  line-height: 1.1;
  font-weight: 600;
  color: var(--cream);
  margin: 0 0 24px;
  text-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
}

.editorial-content p {
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--text);
  opacity: 0.95;
  max-width: 600px;
  margin: 0 auto;
}

/* =========================================================
   FOOTER PREMIUM
========================================================= */
.site-footer,
footer {
  padding: 80px 0 40px;
  border-top: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(226, 178, 123, 0.03), transparent 40%),
    linear-gradient(135deg, #0f0a08 0%, #1a1310 30%, #241b17 70%, #17110e 100%);
  color: var(--text);
  position: relative;
}

.footer-container {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-brand {
  padding-right: 20px;
}

.footer-brand h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--gold-strong);
  margin: 0 0 8px;
  letter-spacing: 0.02em;
}

.footer-brand .brand-subtitle {
  font-size: 1.1rem;
  color: var(--gold);
  margin: 0 0 16px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: none;
}

.brand-description {
  color: var(--text-soft);
  line-height: 1.7;
  margin: 0;
  font-size: 1rem;
}

.footer-nav,
.footer-experiences,
.footer-contact {
  display: flex;
  flex-direction: column;
}

.footer-nav h4,
.footer-experiences h4,
.footer-contact h4 {
  color: var(--gold-strong);
  margin: 0 0 20px;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  font-family: "Cormorant Garamond", serif;
}

.footer-nav a,
.footer-experiences a {
  color: var(--text-soft);
  text-decoration: none;
  margin-bottom: 12px;
  transition: color 0.25s ease;
  font-size: 0.95rem;
}

.footer-nav a:hover,
.footer-experiences a:hover {
  color: var(--gold);
}

.footer-contact p {
  color: var(--text-soft);
  margin: 0 0 12px;
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
  padding: 12px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.2);
  transition: all 0.25s ease;
}

.footer-whatsapp-btn:hover {
  background: linear-gradient(135deg, #128c7e, #075e54);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.3);
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  text-align: center;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin: 0;
  letter-spacing: 0.01em;
}

/* =========================================================
   SACOLA
========================================================= */

.sacola-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 40px;
  align-items: start;
}

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

.sacola-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
}

.sacola-item-info h3 {
  margin: 0 0 8px 0;
  color: var(--gold);
  font-family: "Cormorant Garamond", serif;
}

.sacola-item-descricao {
  margin: 0 0 16px 0;
  font-size: 0.9rem;
  color: var(--text-soft);
}

.sacola-item-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-qty {
  width: 32px;
  height: 32px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.btn-qty:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--bg);
}

.qty-display {
  min-width: 40px;
  text-align: center;
  font-weight: 500;
}

.btn-remove {
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 0.85rem;
  text-decoration: underline;
  transition: color 0.2s;
}

.btn-remove:hover {
  color: #ff6b6b;
}

.sacola-resumo {
  position: sticky;
  top: 20px;
}

.resumo-itens {
  margin: 20px 0;
}

.resumo-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.resumo-total {
  border-top: 1px solid var(--line);
  padding-top: 16px;
  margin: 20px 0;
  font-size: 1.1rem;
}

.sacola-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* =========================================================
   CHECKOUT
========================================================= */

.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 40px;
  align-items: start;
}

.checkout-form .card {
  padding: 32px;
}

.checkout-form h2 {
  margin-top: 0;
  color: var(--gold);
  font-size: 1.5rem;
  font-family: "Cormorant Garamond", serif;
}

.form-group {
  margin-bottom: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
  color: var(--text);
}

.form-help {
  display: block;
  margin-top: 8px;
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.5;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--stone);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  font-size: 1rem;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.checkout-resumo .card {
  padding: 24px;
}

.resumo-info h4 {
  margin: 0 0 4px 0;
  font-size: 1rem;
  font-family: "Cormorant Garamond", serif;
}

.resumo-info p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-soft);
}

.resumo-preco {
  font-weight: 500;
  color: var(--gold);
}

.resumo-total {
  border-top: 1px solid var(--line);
  padding-top: 16px;
  margin-top: 20px;
  text-align: center;
  font-size: 1.2rem;
  font-weight: bold;
}

/* =========================================================
   MEUS PEDIDOS
========================================================= */

.pedidos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.pedido-card {
  padding: 24px;
}

.pedido-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.pedido-id {
  font-weight: bold;
  color: var(--gold);
}

.pedido-status {
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
}

.status-novo {
  background: rgba(207, 160, 108, 0.2);
  color: var(--gold);
}

.status-confirmado {
  background: rgba(76, 175, 80, 0.2);
  color: #4caf50;
}

.status-entregue {
  background: rgba(33, 150, 243, 0.2);
  color: #2196f3;
}

.status-cancelado {
  background: rgba(244, 67, 54, 0.2);
  color: #f44336;
}

.pedido-info p {
  margin: 8px 0;
  font-size: 0.9rem;
}

.pedido-itens {
  margin: 20px 0;
}

.pedido-itens h4 {
  margin: 0 0 8px 0;
  font-size: 1rem;
  font-family: "Cormorant Garamond", serif;
}

.pedido-itens ul {
  margin: 0;
  padding-left: 20px;
}

.pedido-itens li {
  margin-bottom: 4px;
  font-size: 0.9rem;
}

.pedido-total {
  margin: 20px 0;
  padding: 16px;
  background: var(--stone);
  border-radius: 8px;
  text-align: center;
  font-size: 1.1rem;
}

.pedido-data {
  margin-top: 16px;
  text-align: center;
}

/* =========================================================
   PRODUTOS GRID
========================================================= */

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 40px;
}

.product-card {
  display: block;
  background: #1a1310;
  border-radius: 20px;
  overflow: hidden;
  transition: 0.3s;
  border: 1px solid rgba(226, 178, 123, 0.15);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* IMAGEM */
.product-image {
  position: relative;
  height: 260px;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  transition: opacity 0.4s ease;
}

.img-hover {
  opacity: 0;
}

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

.product-card:hover .img-default {
  opacity: 0;
}

/* TEXTO */
.product-info {
  padding: 20px;
}

.product-info h3 {
  color: var(--gold-strong);
  margin-bottom: 10px;
  font-family: "Cormorant Garamond", serif;
}

.product-info p {
  color: var(--text-soft);
  font-size: 0.9rem;
}

.product-card-price {
  display: inline-flex;
  margin-top: 16px;
  color: var(--gold-soft);
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0;
}

/* ================= EXPERIENCIAS CARDS ================= */

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 40px;
}

.card {
  display: block;
  border-radius: 24px;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  text-decoration: none;
  background:
    linear-gradient(rgba(20, 14, 11, 0.85), rgba(20, 14, 11, 0.9)),
    linear-gradient(135deg, #1a1310, #241913 60%, #16100d);
  border: 1px solid rgba(226, 178, 123, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
  color: var(--cream);
  padding: 24px;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.25);
  border-color: rgba(226, 178, 123, 0.35);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  margin: -24px -24px 20px;
  width: calc(100% + 48px);
  max-width: calc(100% + 48px);
}

.card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0 0 12px;
  line-height: 1.3;
  color: var(--cream);
}

.card p {
  margin: 0;
  line-height: 1.6;
  font-size: 0.98rem;
  color: var(--text);
  opacity: 0.9;
}

/* ================= UTILITÁRIOS E PÁGINAS INTERNAS ================= */

.hidden {
  display: none !important;
}

.section {
  padding: 72px 0;
}

.center {
  text-align: center;
}

.center-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.eyebrow,
.card-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(226, 178, 123, 0.10);
  border: 1px solid rgba(226, 178, 123, 0.18);
  color: var(--gold-strong);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.page-banner {
  padding: calc(var(--header-height) + 56px) 0 56px;
  background:
    linear-gradient(180deg, rgba(17, 12, 10, 0.92), rgba(22, 16, 13, 0.88)),
    radial-gradient(circle at top, rgba(226, 178, 123, 0.08), transparent 32%);
  border-bottom: 1px solid var(--line);
}

.page-banner h1 {
  margin: 14px 0 10px;
  color: var(--gold-strong);
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.08;
  font-family: "Cormorant Garamond", serif;
}

.page-banner p {
  margin: 0;
  max-width: 760px;
  color: var(--text-soft);
}

.contact-box,
.contact-side-card {
  border-radius: 24px;
  border: 1px solid var(--line);
  background:
    linear-gradient(rgba(20, 14, 11, 0.82), rgba(20, 14, 11, 0.88)),
    linear-gradient(135deg, #17110e, #241913 58%, #120c0a);
  box-shadow: var(--shadow);
  padding: 28px;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 14px 16px;
  background: var(--stone);
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--text);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--gold);
}

.contato-layout {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 32px;
  align-items: start;
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.98fr);
  gap: 36px;
  align-items: start;
}

.product-main-image {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #120d0b;
}

.product-main-image img {
  width: 100%;
  height: auto;
  display: block;
}

.product-thumbs {
  display: flex;
  gap: 12px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.thumb-item {
  width: 86px;
  height: 86px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--line);
  cursor: pointer;
  opacity: 0.75;
  transition: 0.2s ease;
}

.thumb-item:hover,
.thumb-item.active {
  opacity: 1;
  border-color: var(--gold);
}

.product-heading {
  margin: 0 0 12px;
  color: var(--gold-strong);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-family: "Cormorant Garamond", serif;
}

.product-price {
  color: var(--cream);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 14px 0;
}

.product-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.custom-toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 3000;
  min-width: 240px;
  max-width: 360px;
  padding: 14px 18px;
  border-radius: 14px;
  background: #1a1310;
  border: 1px solid var(--line-strong);
  color: var(--cream);
  box-shadow: var(--shadow-strong);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.custom-toast.visible {
  opacity: 1;
  transform: translateY(0);
}

.custom-toast.success,
.custom-toast.info {
  border-color: rgba(226, 178, 123, 0.32);
}

.custom-toast.error {
  border-color: rgba(255, 107, 107, 0.45);
}

.form-alert {
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 20px;
  line-height: 1.5;
}

.form-alert-error {
  background: rgba(255, 107, 107, 0.1);
  border: 1px solid rgba(255, 107, 107, 0.5);
  color: #ffb1a6;
}

.form-alert-success {
  background: rgba(76, 175, 80, 0.1);
  border: 1px solid rgba(76, 175, 80, 0.45);
  color: #a9e7ad;
}

/* =========================================================
   MINHA CONTA
========================================================= */

.account-section {
  padding-top: 70px;
}

.account-container {
  max-width: 1120px;
}

.account-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.account-card {
  grid-column: span 3;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px 26px;
}

.account-card h3 {
  margin: 0;
  font-size: 1.32rem;
  line-height: 1.15;
}

.account-card p {
  margin: 0;
  color: var(--text);
}

.account-card-wide {
  grid-column: 1 / -1;
  min-height: 0;
}

.account-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.account-card-header h3 {
  margin-top: 12px;
}

.account-header-action,
.account-card-button {
  width: auto;
  min-width: 150px;
  flex: 0 0 auto;
}

.account-details {
  display: grid;
  gap: 13px;
  margin: 0;
}

.account-detail-row {
  display: grid;
  gap: 4px;
}

.account-detail-row dt {
  color: var(--gold-strong);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.account-detail-row dd {
  margin: 0;
  color: var(--cream);
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.account-stat {
  margin-top: auto;
  display: flex;
  align-items: baseline;
  gap: 8px;
  color: var(--text-soft);
}

.account-stat strong {
  color: var(--gold-strong);
  font-size: 2.1rem;
  line-height: 1;
  font-family: "Cormorant Garamond", serif;
}

.account-list,
.account-favorites {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.account-list li,
.account-favorites li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--text-soft);
}

.account-list strong,
.account-favorites span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.account-favorites a {
  flex: 0 0 auto;
  color: var(--gold-strong);
  font-weight: 600;
}

.account-card-action .account-card-button {
  margin-top: auto;
}

.account-footer-actions {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  padding-top: 2px;
}

/* =========================================================
   SOBRE A CHEF
========================================================= */

.chef-hero {
  padding: calc(var(--header-height) + 76px) 0 76px;
  background:
    linear-gradient(90deg, rgba(18, 13, 11, 0.96), rgba(18, 13, 11, 0.82)),
    radial-gradient(circle at 76% 22%, rgba(226, 178, 123, 0.11), transparent 34%);
  border-bottom: 1px solid var(--line);
}

.chef-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.78fr);
  gap: 56px;
  align-items: center;
}

.chef-hero-copy {
  max-width: 650px;
}

.chef-hero-copy h1 {
  margin: 18px 0 18px;
  color: var(--gold-strong);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.2rem, 7vw, 5.8rem);
  line-height: 0.96;
}

.chef-hero-copy p {
  margin: 0;
  color: var(--text-soft);
  font-size: 1.12rem;
  line-height: 1.78;
  max-width: 590px;
}

.chef-hero-image {
  position: relative;
  margin: 0;
  min-height: 470px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(226, 178, 123, 0.18);
  box-shadow: var(--shadow-strong);
  background: var(--stone);
}

.chef-hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(18, 13, 11, 0.9));
  pointer-events: none;
}

.chef-hero-image img {
  width: 100%;
  height: 100%;
  min-height: 470px;
  object-fit: cover;
  object-position: center top;
}

.chef-hero-image figcaption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 20px;
  z-index: 1;
  color: var(--cream);
  font-size: 0.92rem;
}

.chef-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: stretch;
}

.chef-story-card {
  padding: 38px;
}

.chef-story-card h2 {
  margin: 16px 0 18px;
  color: var(--gold-strong);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
}

.chef-story-card p {
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.8;
}

.chef-story-card p + p {
  margin-top: 18px;
}

.chef-values {
  display: grid;
  gap: 18px;
}

.chef-value-card {
  padding: 26px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background:
    linear-gradient(rgba(20, 14, 11, 0.78), rgba(20, 14, 11, 0.88)),
    radial-gradient(circle at top right, rgba(226, 178, 123, 0.08), transparent 38%);
}

.chef-value-card strong {
  color: var(--gold-strong);
  font-size: 0.88rem;
  letter-spacing: 0.12em;
}

.chef-value-card h3 {
  margin: 10px 0 8px;
  color: var(--cream);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.45rem;
}

.chef-value-card p {
  margin: 0;
  color: var(--text-soft);
}

.chef-quote-band {
  padding: 74px 0;
  text-align: center;
  border-top: 1px solid var(--line);
  background:
    linear-gradient(rgba(18, 13, 11, 0.82), rgba(18, 13, 11, 0.92)),
    url("/img/editorial/sobre-chef-assinatura.jpg") center/cover;
}

.chef-quote-band blockquote {
  margin: 0 auto 28px;
  max-width: 860px;
}

.chef-quote-band p {
  margin: 0;
  color: var(--cream);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.16;
}

/* =========================================================
   MESA POSTA PARA EVENTOS
========================================================= */

.event-table-hero {
  padding: calc(var(--header-height) + 78px) 0 78px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(18, 13, 11, 0.97), rgba(18, 13, 11, 0.84)),
    radial-gradient(circle at 74% 18%, rgba(226, 178, 123, 0.12), transparent 34%);
}

.event-table-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(380px, 0.82fr);
  gap: 56px;
  align-items: center;
}

.event-table-copy h1 {
  margin: 18px 0 18px;
  color: var(--gold-strong);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 6vw, 5.3rem);
  line-height: 0.98;
}

.event-table-copy p {
  max-width: 640px;
  margin: 0 0 34px;
  color: var(--text-soft);
  font-size: 1.1rem;
  line-height: 1.78;
}

.event-table-image {
  position: relative;
  margin: 0;
  min-height: 460px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(226, 178, 123, 0.18);
  box-shadow: var(--shadow-strong);
  background: var(--stone);
}

.event-table-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(18, 13, 11, 0.9));
  pointer-events: none;
}

.event-table-image img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
}

.event-table-image figcaption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 20px;
  z-index: 1;
  color: var(--cream);
  font-size: 0.92rem;
}

.event-table-intro {
  max-width: 850px;
  margin-bottom: 34px;
}

.event-table-intro h2,
.event-table-flow h2 {
  margin: 16px 0;
  color: var(--gold-strong);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.08;
}

.event-table-intro p {
  margin: 0;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.8;
}

.event-table-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.event-table-card {
  padding: 28px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background:
    linear-gradient(rgba(20, 14, 11, 0.8), rgba(20, 14, 11, 0.9)),
    radial-gradient(circle at top right, rgba(226, 178, 123, 0.08), transparent 42%);
}

.event-table-card strong {
  color: var(--gold-strong);
  letter-spacing: 0.12em;
}

.event-table-card h3 {
  margin: 12px 0 10px;
  color: var(--cream);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.45rem;
}

.event-table-card p {
  margin: 0;
  color: var(--text-soft);
}

.event-table-flow {
  padding: 72px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(rgba(16, 11, 9, 0.72), rgba(16, 11, 9, 0.86)),
    url("/img/eventos/mesa-posta-finger-foods.jpg") center/cover;
}

.event-table-flow-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(360px, 1fr);
  gap: 42px;
  align-items: start;
}

.event-table-steps {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.event-table-steps li {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(226, 178, 123, 0.18);
  background: rgba(18, 13, 11, 0.78);
  backdrop-filter: blur(6px);
}

.event-table-steps span {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(226, 178, 123, 0.12);
  color: var(--gold-strong);
  font-weight: 700;
}

.event-table-steps p {
  margin: 0;
  color: var(--cream);
}

.event-table-cta {
  background:
    linear-gradient(rgba(18, 13, 11, 0.84), rgba(18, 13, 11, 0.94)),
    url("/img/eventos/mesa-posta-finger-foods.jpg") center/cover;
}

.mesa-posta-luxe-hero {
  padding: calc(var(--header-height) + 74px) 0 80px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 14% 18%, rgba(226, 178, 123, 0.14), transparent 24%),
    radial-gradient(circle at 84% 10%, rgba(226, 178, 123, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(16, 11, 9, 0.98), rgba(20, 14, 11, 0.92));
}

.mesa-posta-luxe-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.88fr);
  gap: 48px;
  align-items: center;
}

.mesa-posta-luxe-copy h1 {
  margin: 18px 0 18px;
  color: var(--gold-strong);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 6vw, 5.4rem);
  line-height: 0.96;
}

.mesa-posta-luxe-lead {
  max-width: 660px;
  margin: 0;
  color: var(--text-soft);
  font-size: 1.08rem;
  line-height: 1.82;
}

.mesa-posta-hero-actions {
  margin-top: 34px;
}

.mesa-posta-luxe-notes {
  display: grid;
  gap: 14px;
  margin-top: 32px;
}

.mesa-posta-luxe-notes article {
  display: grid;
  gap: 6px;
  padding: 18px 20px;
  border-radius: 18px;
  border: 1px solid rgba(226, 178, 123, 0.12);
  background: rgba(255, 255, 255, 0.02);
}

.mesa-posta-luxe-notes strong {
  color: var(--gold-strong);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mesa-posta-luxe-notes span {
  color: var(--text-soft);
  line-height: 1.7;
}

.mesa-posta-luxe-visual {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px;
  gap: 18px;
  align-items: stretch;
}

.mesa-posta-hero-stack {
  display: grid;
  gap: 18px;
}

.mesa-posta-hero-frame {
  margin: 0;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(226, 178, 123, 0.18);
  box-shadow: 0 28px 56px rgba(0, 0, 0, 0.28);
  background: var(--stone);
}

.mesa-posta-hero-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mesa-posta-hero-frame-main {
  min-height: 600px;
}

.mesa-posta-hero-frame-secondary {
  min-height: 291px;
}

.mesa-posta-editorial-band {
  padding: 76px 0 48px;
}

.mesa-posta-editorial-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  gap: 38px;
  align-items: start;
  margin-bottom: 32px;
}

.mesa-posta-editorial-heading h2,
.mesa-posta-section-heading h2,
.mesa-posta-questionnaire-copy h2 {
  margin: 16px 0 0;
  color: var(--gold-strong);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.1rem, 4vw, 3.6rem);
  line-height: 1.05;
}

.mesa-posta-editorial-copy {
  display: grid;
  gap: 16px;
}

.mesa-posta-editorial-copy p,
.mesa-posta-section-heading p,
.mesa-posta-questionnaire-copy p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.82;
}

.mesa-posta-signature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.mesa-posta-signature-card {
  padding: 28px;
  border-radius: 22px;
  border: 1px solid rgba(226, 178, 123, 0.12);
  background:
    linear-gradient(rgba(20, 14, 11, 0.76), rgba(20, 14, 11, 0.88)),
    radial-gradient(circle at top right, rgba(226, 178, 123, 0.08), transparent 42%);
}

.mesa-posta-signature-card strong {
  color: var(--gold-strong);
  letter-spacing: 0.12em;
}

.mesa-posta-signature-card h3 {
  margin: 12px 0 10px;
  color: var(--cream);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.45rem;
}

.mesa-posta-signature-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.74;
}

.mesa-posta-gallery-section {
  padding: 32px 0 78px;
}

.mesa-posta-section-heading {
  max-width: 860px;
  margin-bottom: 28px;
}

.mesa-posta-gallery-grid {
  column-count: 4;
  column-gap: 16px;
}

.mesa-posta-gallery-card {
  break-inside: avoid;
  margin: 0 0 16px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(226, 178, 123, 0.14);
  background: var(--stone);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
}

.mesa-posta-gallery-card img {
  display: block;
  width: 100%;
  height: auto;
}

.mesa-posta-quote-band {
  padding: 60px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(rgba(17, 12, 10, 0.86), rgba(17, 12, 10, 0.9)),
    url("/img/eventos/mesa-posta-finger-foods%20(2).jpg") center/cover;
}

.mesa-posta-quote-band blockquote,
.mesa-posta-final-content blockquote {
  margin: 0;
}

.mesa-posta-quote-band p,
.mesa-posta-final-content p {
  margin: 0;
  color: var(--cream);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.08;
  text-align: center;
}

.mesa-posta-questionnaire-section {
  padding: 78px 0 82px;
}

.mesa-posta-questionnaire-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.94fr);
  gap: 34px;
  align-items: start;
}

.mesa-posta-prompt-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.mesa-posta-prompt-list li {
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(226, 178, 123, 0.12);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-soft);
  line-height: 1.7;
}

.mesa-posta-form-card {
  padding: 28px;
  border-radius: 26px;
  border: 1px solid rgba(226, 178, 123, 0.14);
  background:
    linear-gradient(rgba(22, 16, 13, 0.88), rgba(22, 16, 13, 0.94)),
    radial-gradient(circle at top, rgba(226, 178, 123, 0.08), transparent 36%);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.18);
}

.mesa-posta-form {
  gap: 16px;
}

.mesa-posta-form .btn-classic {
  margin-top: 6px;
  min-height: 52px;
}

.mesa-posta-final-band {
  background:
    linear-gradient(rgba(18, 13, 11, 0.84), rgba(18, 13, 11, 0.94)),
    url("/img/eventos/mesa-posta-finger-foods%20(1).jpg") center/cover;
}

.mesa-posta-final-content {
  display: grid;
  gap: 24px;
  justify-items: center;
}

.events-hub-hero {
  padding: calc(var(--header-height) + 78px) 0 78px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(18, 13, 11, 0.97), rgba(18, 13, 11, 0.82)),
    radial-gradient(circle at 76% 20%, rgba(226, 178, 123, 0.12), transparent 34%);
}

.events-hub-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(390px, 0.8fr);
  gap: 56px;
  align-items: center;
}

.events-hub-copy h1 {
  margin: 18px 0 18px;
  color: var(--gold-strong);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 6vw, 5.4rem);
  line-height: 0.98;
}

.events-hub-copy p {
  max-width: 640px;
  margin: 0;
  color: var(--text-soft);
  font-size: 1.08rem;
  line-height: 1.78;
}

.events-hub-signals {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.events-hub-signal {
  display: grid;
  gap: 4px;
  padding: 18px 20px;
  border-radius: 18px;
  border: 1px solid rgba(226, 178, 123, 0.16);
  background:
    linear-gradient(rgba(22, 16, 13, 0.72), rgba(22, 16, 13, 0.84));
}

.events-hub-signal strong {
  color: var(--gold-strong);
  font-size: 0.95rem;
  font-weight: 700;
}

.events-hub-signal span {
  color: var(--text-soft);
  font-size: 0.94rem;
}

.events-hub-visual {
  position: relative;
  margin: 0;
  min-height: 520px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(226, 178, 123, 0.18);
  box-shadow: var(--shadow-strong);
  background: var(--stone);
}

.events-hub-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 52%, rgba(18, 13, 11, 0.92));
  pointer-events: none;
}

.events-hub-visual img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.events-hub-visual figcaption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  z-index: 1;
  color: var(--cream);
  font-size: 0.94rem;
}

.events-hub-services-section {
  padding-top: 78px;
}

.events-hub-intro {
  max-width: 860px;
  margin-bottom: 34px;
}

.events-hub-intro h2 {
  margin: 16px 0;
  color: var(--gold-strong);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.08;
}

.events-hub-intro p {
  margin: 0;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.8;
}

.events-hub-service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.events-service-card {
  display: grid;
  grid-template-rows: 270px 1fr;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(226, 178, 123, 0.18);
  background:
    linear-gradient(rgba(20, 14, 11, 0.84), rgba(20, 14, 11, 0.92)),
    linear-gradient(135deg, #17110e, #241913 58%, #120c0a);
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.24);
}

.events-service-image {
  position: relative;
  overflow: hidden;
}

.events-service-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.32));
}

.events-service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.events-service-card:hover .events-service-image img {
  transform: scale(1.04);
}

.events-service-body {
  display: grid;
  gap: 22px;
  padding: 28px;
}

.events-service-head h3 {
  margin: 14px 0 12px;
  color: var(--gold-strong);
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  line-height: 1.04;
}

.events-service-head p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.98rem;
  line-height: 1.74;
}

.events-service-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.events-service-list li {
  position: relative;
  padding-left: 18px;
  color: var(--cream);
  line-height: 1.6;
}

.events-service-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--gold-strong);
  box-shadow: 0 0 0 5px rgba(226, 178, 123, 0.08);
}

.events-service-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.events-hub-flow {
  padding: 76px 0;
  margin-top: 76px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(rgba(16, 11, 9, 0.78), rgba(16, 11, 9, 0.88)),
    url("/img/produtos/carrinhos/carrinho-charcutaria.jpg") center/cover;
}

.events-hub-flow-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(360px, 1fr);
  gap: 42px;
  align-items: start;
}

.events-hub-flow-copy h2 {
  margin: 16px 0;
  color: var(--gold-strong);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
}

.events-hub-flow-copy p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.8;
}

.events-hub-steps {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.events-hub-steps li {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(226, 178, 123, 0.18);
  background: rgba(18, 13, 11, 0.8);
  backdrop-filter: blur(6px);
}

.events-hub-steps span {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(226, 178, 123, 0.12);
  color: var(--gold-strong);
  font-weight: 700;
}

.events-hub-steps strong {
  display: block;
  margin-bottom: 4px;
  color: var(--cream);
}

.events-hub-steps p {
  margin: 0;
  color: var(--text-soft);
}

.events-hub-editorial {
  padding: 84px 0;
}

.events-hub-editorial-card {
  padding: 42px 36px;
  border-radius: 28px;
  border: 1px solid rgba(226, 178, 123, 0.14);
  background:
    linear-gradient(rgba(20, 14, 11, 0.85), rgba(20, 14, 11, 0.92)),
    radial-gradient(circle at top, rgba(226, 178, 123, 0.07), transparent 40%);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.22);
  text-align: center;
}

.events-hub-editorial-card h2 {
  margin: 14px auto 14px;
  max-width: 860px;
  color: var(--gold-strong);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  font-family: "Cormorant Garamond", serif;
}

.events-hub-editorial-card p {
  max-width: 760px;
  margin: 0 auto;
  color: var(--text-soft);
  font-size: 1rem;
}

.carrinhos-hero {
  padding: calc(var(--header-height) + 78px) 0 78px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(18, 13, 11, 0.97), rgba(18, 13, 11, 0.84)),
    radial-gradient(circle at 76% 18%, rgba(226, 178, 123, 0.13), transparent 34%);
}

.carrinhos-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(390px, 0.8fr);
  gap: 56px;
  align-items: center;
}

.carrinhos-hero-copy h1 {
  margin: 18px 0 18px;
  color: var(--gold-strong);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 6vw, 5.2rem);
  line-height: 0.98;
}

.carrinhos-hero-copy p {
  max-width: 640px;
  margin: 0 0 14px;
  color: var(--text-soft);
  font-size: 1.08rem;
  line-height: 1.78;
}

.carrinhos-hero-image {
  position: relative;
  margin: 0;
  min-height: 520px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(226, 178, 123, 0.18);
  box-shadow: var(--shadow-strong);
  background: var(--stone);
}

.carrinhos-hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 52%, rgba(18, 13, 11, 0.92));
  pointer-events: none;
}

.carrinhos-hero-image img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.carrinhos-hero-image figcaption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  z-index: 1;
  color: var(--cream);
  font-size: 0.94rem;
}

.carrinhos-editorial-section {
  padding-top: 78px;
}

.carrinhos-editorial-intro,
.carrinhos-grid-header {
  max-width: 860px;
  margin-bottom: 34px;
}

.carrinhos-editorial-intro h2,
.carrinhos-grid-header h2,
.carrinhos-emotional-copy h2,
.carrinhos-final-card h2 {
  margin: 16px 0;
  color: var(--gold-strong);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
}

.carrinhos-editorial-intro p,
.carrinhos-grid-header p,
.carrinhos-emotional-copy p,
.carrinhos-final-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.8;
}

.carrinhos-editorial-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.carrinhos-editorial-card {
  padding: 28px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background:
    linear-gradient(rgba(20, 14, 11, 0.8), rgba(20, 14, 11, 0.9)),
    radial-gradient(circle at top right, rgba(226, 178, 123, 0.08), transparent 42%);
}

.carrinhos-editorial-card strong {
  color: var(--gold-strong);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.carrinhos-editorial-card h3 {
  margin: 14px 0 12px;
  color: var(--cream);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.55rem;
  line-height: 1.12;
}

.carrinhos-editorial-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.7;
}

.carrinhos-emotional-band {
  padding: 76px 0;
  margin-top: 76px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(rgba(16, 11, 9, 0.78), rgba(16, 11, 9, 0.88)),
    url("/img/produtos/carrinhos/carrinho-smash-burger.jpg") center/cover;
}

.carrinhos-emotional-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(360px, 1fr);
  gap: 42px;
  align-items: start;
}

.carrinhos-emotional-points {
  display: grid;
  gap: 14px;
}

.carrinhos-point {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(226, 178, 123, 0.18);
  background: rgba(18, 13, 11, 0.8);
  backdrop-filter: blur(6px);
}

.carrinhos-point span {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(226, 178, 123, 0.12);
  color: var(--gold-strong);
  font-weight: 700;
}

.carrinhos-point p {
  margin: 0;
  color: var(--cream);
  line-height: 1.7;
}

.carrinhos-grid-section {
  padding-top: 78px;
}

.carrinhos-final-cta {
  padding: 0 0 84px;
}

.carrinhos-final-card {
  padding: 42px 36px;
  border-radius: 28px;
  border: 1px solid rgba(226, 178, 123, 0.14);
  background:
    linear-gradient(rgba(20, 14, 11, 0.85), rgba(20, 14, 11, 0.92)),
    radial-gradient(circle at top, rgba(226, 178, 123, 0.07), transparent 40%);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.22);
  text-align: center;
}

.carrinhos-final-card h2 {
  max-width: 840px;
  margin-left: auto;
  margin-right: auto;
}

.carrinhos-final-card p {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.favorito-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.admin-summary {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-bottom: 24px;
}

.admin-panel {
  margin-bottom: 24px;
}

.admin-table-wrap {
  width: 100%;
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 860px;
}

.admin-table th,
.admin-table td {
  padding: 14px 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: middle;
}

.admin-table th {
  color: var(--gold-strong);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.admin-star-form {
  display: grid;
  grid-template-columns: 130px 90px minmax(160px, 1fr) auto;
  gap: 10px;
  align-items: center;
}

.admin-price-form {
  display: grid;
  grid-template-columns: minmax(130px, 1fr) auto;
  gap: 10px;
  align-items: center;
}

.admin-star-form input,
.admin-star-form select,
.admin-price-form input {
  min-height: 42px;
  padding: 8px 10px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--stone);
  color: var(--text);
}

.admin-products-table td strong {
  display: block;
}

.admin-products-table td small {
  display: block;
  margin-top: 4px;
  color: var(--text-muted);
}

.admin-history {
  display: grid;
  gap: 12px;
}

.admin-history-item {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(226, 178, 123, 0.04);
}

.admin-history-item strong {
  color: var(--gold-strong);
}

.admin-history-item small {
  color: var(--text-muted);
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #25d366, #128c7e);
  box-shadow: 0 14px 28px rgba(37, 211, 102, 0.22);
  z-index: 2500;
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

/* =========================================================
   BACKGROUNDS DE CATEGORIA
========================================================= */

.categoria-cestas-bg {
  background-image: url("/img/categoria/capa-cestas.jpg");
}

.categoria-boxes-bg {
  background-image: url("/img/categoria/capa-boxes.jpg");
}

.categoria-platters-bg {
  background-image: url("/img/categoria/capa-platters.jpg");
}

.categoria-experiencias-bg {
  background-image: url("/img/categoria/capa-experiencias.jpg");
}

.fundo-dark-bg {
  background:
    linear-gradient(180deg, #0f0a08 0%, #16100d 50%, #1a1310 100%);
}

.faixa-final-bg {
  background: #120d0b;
}

/* =========================================================
   RESPONSIVO
========================================================= */

@media (min-width: 1025px) {
  .hero-premium,
  .editorial-banner {
    background-attachment: fixed;
  }
}

@media (max-width: 1024px) {
  .four-cols {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .account-card {
    grid-column: span 6;
  }

  .chef-hero-layout,
  .carrinhos-hero-layout,
  .carrinhos-emotional-layout,
  .chef-story-grid,
  .events-hub-layout,
  .events-hub-flow-layout,
  .event-table-layout,
  .event-table-flow-layout {
    grid-template-columns: 1fr;
  }

  .chef-hero-image,
  .chef-hero-image img,
  .carrinhos-hero-image,
  .carrinhos-hero-image img,
  .events-hub-visual,
  .events-hub-visual img,
  .event-table-image,
  .event-table-image img {
    min-height: 390px;
  }

  .carrinhos-editorial-grid,
  .events-hub-service-grid,
  .event-table-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
  }

  .footer-brand {
    grid-column: 1 / -1;
    padding-right: 0;
    margin-bottom: 20px;
  }

  .sacola-layout,
  .checkout-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .sacola-resumo,
  .checkout-resumo {
    position: static;
  }

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

@media (max-width: 1180px) {
  .header-container {
    grid-template-columns: 1fr;
    height: auto;
    padding: 14px 0 16px;
  }

  .brand,
  .header-actions {
    justify-content: center;
  }

  .main-nav {
    flex-wrap: wrap;
    gap: 16px;
  }

  .nav-link::after,
  .dropdown-trigger::after {
    bottom: -4px;
  }

  .dropdown-menu {
    left: 0;
    transform: translateX(0) translateY(10px);
  }

  .dropdown:hover .dropdown-menu,
  .dropdown.active .dropdown-menu {
    transform: translateX(0) translateY(0);
  }

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

  .header-actions {
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
  }

  .header-auth-links,
  .header-user-links {
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
  }

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

@media (max-width: 768px) {
  .hero-premium {
    min-height: 90vh;
    padding-top: 110px;
  }

  .hero-premium-content {
    padding: 40px 20px;
  }

  .hero-title {
    font-size: clamp(2.8rem, 12vw, 4.5rem);
  }

  .hero-subtitle {
    font-size: clamp(1.4rem, 6vw, 2rem);
  }

  .hero-text {
    font-size: 1.05rem;
  }

  .premium-section {
    padding: 70px 0;
  }

  .premium-grid {
    gap: 24px;
  }

  .four-cols,
  .products-grid,
  .pedidos-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .sacola-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .sacola-item-info {
    width: 100%;
  }

  .sacola-item-preco {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .site-footer {
    padding: 60px 0 30px;
  }

  .footer-brand h3 {
    font-size: 1.8rem;
  }

  .footer-brand .brand-subtitle {
    font-size: 1rem;
  }

  .footer-nav h4,
  .footer-experiences h4,
  .footer-contact h4 {
    font-size: 1.1rem;
  }
}

@media (max-width: 640px) {
  .brand-name {
    font-size: 1.6rem;
  }

  .whatsapp-text {
    display: none;
  }

  .whatsapp-btn {
    width: 48px;
    height: 48px;
    padding: 0;
    justify-content: center;
  }

  .section-line {
    width: 42px;
    margin: 0 10px 20px;
  }

  .editorial-content p {
    font-size: 1.05rem;
  }
}
/* =========================================
   PRODUTO WOW
========================================= */

.product-hero {
  padding: calc(var(--header-height) + 50px) 0 34px;
  background:
    radial-gradient(circle at top, rgba(226, 178, 123, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(17, 12, 10, 0.96), rgba(18, 13, 10, 0.88));
  border-bottom: 1px solid var(--line);
}

.product-hero-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.product-hero-copy {
  max-width: 860px;
}

.product-hero-title {
  margin: 14px 0 10px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.8rem, 6vw, 4.4rem);
  line-height: 1.02;
  color: var(--gold-strong);
  text-shadow: 0 0 30px rgba(226, 178, 123, 0.08);
}

.product-hero-subtitle {
  margin: 0 auto;
  max-width: 720px;
  color: var(--text-soft);
  font-size: 1.05rem;
}

.product-page-section {
  padding-top: 50px;
}

.product-layout-wow {
  gap: 44px;
  align-items: start;
}

.product-gallery-card {
  position: relative;
}

.wow-frame {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(226, 178, 123, 0.18);
  box-shadow:
    0 26px 54px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.02);
  background:
    linear-gradient(rgba(24, 18, 15, 0.96), rgba(24, 18, 15, 0.96));
}

.wow-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.06), transparent 18%, transparent 82%, rgba(226,178,123,0.05));
  z-index: 1;
}

.product-main-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.55s ease;
}

.wow-frame:hover img {
  transform: scale(1.03);
}

.product-thumbs-wow {
  gap: 14px;
  margin-top: 18px;
}

.product-thumbs-wow .thumb-item {
  width: 84px;
  height: 84px;
  border-radius: 14px;
  border: 1px solid rgba(226, 178, 123, 0.14);
  opacity: 0.72;
  transition: all 0.25s ease;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
}

.product-thumbs-wow .thumb-item:hover,
.product-thumbs-wow .thumb-item.active {
  opacity: 1;
  border-color: var(--gold);
  transform: translateY(-2px);
}

.product-info-wow {
  display: flex;
  flex-direction: column;
  gap: 22px;
  min-width: 0;
}

.product-heading-wow {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  margin-bottom: 6px;
}

.product-description-wow {
  font-size: 1rem;
  max-width: 90%;
}

.product-price-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px 22px;
  border-radius: 20px;
  border: 1px solid rgba(226, 178, 123, 0.14);
  background:
    linear-gradient(rgba(24, 18, 15, 0.82), rgba(24, 18, 15, 0.9));
}

.product-price-label {
  color: var(--text-muted);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.product-price-wow {
  margin: 0;
  font-size: 2rem;
  color: var(--gold-strong);
  font-weight: 700;
}

.product-story-card {
  padding: 24px 24px;
  border-radius: 22px;
  border: 1px solid rgba(226, 178, 123, 0.14);
  background:
    linear-gradient(rgba(22, 16, 13, 0.72), rgba(22, 16, 13, 0.82));
}

.product-story-card h3 {
  margin: 0 0 12px;
  color: var(--gold-strong);
  font-size: 1.35rem;
  font-family: "Cormorant Garamond", serif;
}

.product-detail-list {
  display: grid;
  gap: 9px;
  margin: 0;
  padding-left: 18px;
  color: var(--text-soft);
}

.product-detail-list.compact {
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  column-gap: 24px;
}

.product-detail-list li::marker {
  color: var(--gold-strong);
}

.product-important-card {
  border-color: rgba(226, 178, 123, 0.24);
  background:
    linear-gradient(rgba(30, 20, 15, 0.86), rgba(30, 20, 15, 0.92)),
    radial-gradient(circle at top right, rgba(226, 178, 123, 0.09), transparent 44%);
}

.product-important-card h3 {
  color: var(--gold-strong);
}

.product-highlights {
  display: grid;
  gap: 12px;
}

.highlight-item {
  display: grid;
  gap: 3px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(226, 178, 123, 0.05);
  border: 1px solid rgba(226, 178, 123, 0.08);
}

.highlight-title {
  color: var(--gold-strong);
  font-size: 0.95rem;
  font-weight: 600;
}

.highlight-text {
  color: var(--text-soft);
  font-size: 0.92rem;
}

.product-actions-wow {
  margin-top: 4px;
  gap: 16px;
}

.product-actions-wow .btn-dark-outline {
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 0.95rem;
  border-width: 1px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
}

.product-price-caption {
  margin: 4px 0 0;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.product-option-selector {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.product-option-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 14px;
}

.product-option-choice {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(226, 178, 123, 0.14);
  background: rgba(255, 255, 255, 0.02);
  cursor: pointer;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.product-option-choice:hover,
.product-option-choice.active {
  border-color: rgba(226, 178, 123, 0.5);
  background: rgba(226, 178, 123, 0.08);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
  transform: translateY(-2px);
}

.product-option-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.product-option-copy {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.product-option-copy strong {
  color: var(--paper);
  font-size: 1rem;
  line-height: 1.2;
}

.product-option-copy small {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.55;
  text-wrap: pretty;
}

.product-option-price {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.95rem;
  text-align: right;
  white-space: nowrap;
  padding-left: 10px;
}

.related-carrinhos-card {
  display: grid;
  gap: 16px;
}

.related-carrinhos-card .section-text {
  margin: 0;
}

.related-carrinhos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.related-carrinho-choice {
  position: relative;
  display: block;
  min-height: 100%;
  padding: 18px 18px 18px 52px;
  border-radius: 18px;
  border: 1px solid rgba(226, 178, 123, 0.14);
  background: rgba(255, 255, 255, 0.02);
  cursor: pointer;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.related-carrinho-choice:hover,
.related-carrinho-choice.active {
  border-color: rgba(226, 178, 123, 0.5);
  background: rgba(226, 178, 123, 0.08);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
  transform: translateY(-2px);
}

.related-carrinho-input {
  position: absolute;
  top: 22px;
  left: 18px;
  width: 18px;
  height: 18px;
  accent-color: var(--gold-strong);
  cursor: pointer;
}

.related-carrinho-copy {
  display: grid;
  gap: 8px;
}

.related-carrinho-copy strong {
  color: var(--paper);
  font-size: 0.98rem;
  line-height: 1.28;
}

.related-carrinho-copy small {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.55;
  text-wrap: pretty;
}

.sacola-item-variant,
.resumo-option-detail,
.resumo-option {
  display: block;
  margin-top: 4px;
  color: var(--gold);
  font-size: 0.88rem;
}

.admin-product-options {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.admin-product-option-row {
  display: grid;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid rgba(226, 178, 123, 0.14);
}

.admin-product-option-copy strong {
  display: block;
}

.admin-product-option-copy small {
  display: block;
  margin-top: 4px;
  color: var(--text-muted);
}

.admin-option-price-form {
  display: grid;
  grid-template-columns: minmax(160px, 1fr) auto;
  gap: 10px;
  align-items: center;
}

.admin-option-price-form input {
  min-height: 42px;
  padding: 8px 10px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--stone);
  color: var(--text);
}

.admin-option-pill {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(226, 178, 123, 0.16);
  color: var(--gold);
  background: rgba(226, 178, 123, 0.06);
  font-size: 0.85rem;
}

.product-note {
  padding-top: 2px;
}

.product-note p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.product-editorial-strip {
  padding: 0 0 80px;
}

.product-editorial-inner {
  display: flex;
  justify-content: center;
}

.product-editorial-card {
  width: 100%;
  max-width: 1100px;
  padding: 38px 34px;
  border-radius: 28px;
  border: 1px solid rgba(226, 178, 123, 0.14);
  background:
    linear-gradient(rgba(20, 14, 11, 0.85), rgba(20, 14, 11, 0.92)),
    radial-gradient(circle at top, rgba(226, 178, 123, 0.06), transparent 40%);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.22);
  text-align: center;
}

.product-editorial-card h2 {
  margin: 14px 0 14px;
  color: var(--gold-strong);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  font-family: "Cormorant Garamond", serif;
}

.product-editorial-card p {
  max-width: 760px;
  margin: 0 auto;
  color: var(--text-soft);
  font-size: 1rem;
}

@media (max-width: 980px) {
  .mesa-posta-luxe-layout,
  .mesa-posta-editorial-layout,
  .mesa-posta-questionnaire-layout {
    grid-template-columns: 1fr;
  }

  .mesa-posta-luxe-visual {
    grid-template-columns: minmax(0, 1fr) 160px;
  }

  .mesa-posta-signature-grid {
    grid-template-columns: 1fr;
  }

  .mesa-posta-gallery-grid {
    column-count: 3;
  }

  .product-layout-wow {
    gap: 30px;
  }

  .product-description-wow {
    max-width: 100%;
  }

  .product-editorial-card {
    padding: 30px 22px;
  }
}

@media (max-width: 768px) {
  .product-hero {
    padding: calc(var(--header-height) + 38px) 0 26px;
  }

  .product-hero-title {
    font-size: clamp(2.2rem, 9vw, 3.2rem);
  }

  .product-thumbs-wow .thumb-item {
    width: 68px;
    height: 68px;
  }

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

  .product-price-wow {
    font-size: 1.6rem;
  }

  .product-actions-wow {
    flex-direction: column;
  }

  .product-actions-wow .btn-dark-outline {
    width: 100%;
  }

  .admin-star-form,
  .admin-price-form,
  .admin-option-price-form {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   AJUSTES RESPONSIVOS FINAIS
========================================================= */

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  color: var(--gold-strong);
  background: rgba(226, 178, 123, 0.06);
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

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

.site-header.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

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

@media (max-width: 980px) {
  :root {
    --header-height: 0px;
  }

  .site-header {
    position: sticky;
    height: auto;
    min-height: 74px;
  }

  .header-container {
    width: min(100% - 24px, 1320px);
    grid-template-columns: 1fr auto;
    gap: 12px;
    padding: 12px 0;
  }

  .brand {
    justify-content: flex-start;
    min-width: 0;
  }

  .brand-logo {
    width: 150px;
    max-height: 72px;
  }

  .brand-name {
    font-size: 1.55rem;
    letter-spacing: 0.06em;
  }

  .brand-subtitle {
    font-size: 0.62rem;
    letter-spacing: 0.14em;
  }

  .menu-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .main-nav,
  .header-actions {
    display: none;
  }

  .site-header.menu-open .main-nav {
    grid-column: 1 / -1;
    display: flex;
    width: 100%;
    max-height: calc(100vh - 88px);
    overflow-y: auto;
    align-items: stretch;
    flex-direction: column;
    justify-content: flex-start;
    gap: 4px;
    padding: 10px 0 4px;
  }

  .site-header.menu-open .header-actions {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    gap: 8px;
    padding: 8px 0 4px;
    border-left: 0;
  }

  .nav-link,
  .dropdown-trigger {
    width: 100%;
    min-height: 44px;
    justify-content: flex-start;
    padding: 10px 0;
    font-size: 0.95rem;
    letter-spacing: 0;
    text-transform: none;
    white-space: normal;
  }

  .nav-link::after,
  .dropdown-trigger::after,
  .dropdown::after {
    display: none;
  }

  .dropdown-menu {
    position: static;
    display: none;
    min-width: 0;
    width: 100%;
    padding: 0 0 8px 14px;
    border: 0;
    border-left: 1px solid var(--line-strong);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }

  .dropdown.active .dropdown-menu,
  .dropdown:hover .dropdown-menu {
    display: block;
    transform: none;
  }

  .dropdown-item {
    padding: 9px 0;
    white-space: normal;
  }

  .dropdown-item:hover {
    padding-left: 0;
  }

  .header-auth-links,
  .header-user-links {
    width: 100%;
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .utility-link,
  .utility-link-text {
    width: 100%;
    height: 44px;
    justify-content: flex-start;
    gap: 10px;
    padding: 0 12px;
    border-radius: 12px;
    border-color: rgba(226, 178, 123, 0.12);
  }

  .utility-label,
  .utility-link-text .utility-label {
    position: static;
    width: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    clip: auto;
    clip-path: none;
    color: var(--cream);
    font-size: 0.95rem;
    font-weight: 500;
  }

  .whatsapp-btn {
    width: auto;
    height: 44px;
    min-height: 44px;
    padding: 0 16px;
    grid-column: 1 / -1;
  }

  .whatsapp-text {
    display: inline;
  }

  .hero-premium {
    min-height: calc(100vh - 74px);
    padding-top: 0;
  }

  .page-banner,
  .product-hero {
    padding-top: 42px;
  }
}

@media (max-width: 768px) {
  .mesa-posta-luxe-hero {
    padding: calc(var(--header-height) + 42px) 0 48px;
  }

  .mesa-posta-luxe-copy h1 {
    font-size: clamp(2.4rem, 9vw, 3.5rem);
  }

  .mesa-posta-luxe-visual {
    grid-template-columns: 1fr;
  }

  .mesa-posta-hero-frame-main {
    min-height: 420px;
  }

  .mesa-posta-hero-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mesa-posta-hero-frame-secondary {
    min-height: 180px;
  }

  .mesa-posta-gallery-grid {
    column-count: 2;
  }

  .mesa-posta-form-card {
    padding: 22px;
  }

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

  .section,
  .premium-section {
    padding: 52px 0;
  }

  .page-card,
  .card,
  .contact-box,
  .contact-side-card,
  .product-story-card,
  .product-price-block,
  .product-editorial-card {
    border-radius: 18px;
    padding: 20px;
  }

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

  .account-card,
  .account-card-wide,
  .account-footer-actions {
    grid-column: 1 / -1;
  }

  .account-card {
    min-height: auto;
  }

  .account-card-header {
    flex-direction: column;
  }

  .account-header-action,
  .account-card-button {
    width: 100%;
  }

  .chef-hero {
    padding: 52px 0;
  }

  .carrinhos-hero {
    padding: 52px 0;
  }

  .events-hub-hero {
    padding: 52px 0;
  }

  .chef-hero-layout {
    gap: 30px;
  }

  .carrinhos-hero-layout,
  .carrinhos-emotional-layout {
    gap: 30px;
  }

  .events-hub-layout {
    gap: 30px;
  }

  .chef-hero-copy h1 {
    font-size: clamp(2.6rem, 12vw, 4rem);
  }

  .carrinhos-hero-copy h1 {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

  .events-hub-copy h1 {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

  .chef-hero-image,
  .chef-hero-image img {
    min-height: 310px;
  }

  .carrinhos-hero-image,
  .carrinhos-hero-image img {
    min-height: 310px;
  }

  .events-hub-visual,
  .events-hub-visual img {
    min-height: 310px;
  }

  .events-service-card {
    grid-template-rows: 220px 1fr;
  }

  .carrinhos-editorial-card,
  .carrinhos-final-card {
    padding: 24px;
  }

  .events-service-body,
  .events-hub-editorial-card {
    padding: 24px;
  }

  .events-service-head h3 {
    font-size: 1.7rem;
  }

  .events-hub-flow {
    padding: 56px 0;
    margin-top: 56px;
  }

  .carrinhos-emotional-band {
    padding: 56px 0;
    margin-top: 56px;
  }

  .events-hub-editorial {
    padding: 56px 0;
  }

  .carrinhos-final-cta {
    padding-bottom: 56px;
  }

  .chef-story-card {
    padding: 24px;
  }

  .chef-quote-band {
    padding: 56px 0;
  }

  .event-table-hero {
    padding: 52px 0;
  }

  .event-table-layout {
    gap: 30px;
  }

  .event-table-copy h1 {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

  .event-table-image,
  .event-table-image img {
    min-height: 310px;
  }

  .event-table-flow {
    padding: 56px 0;
  }

  .hero-premium-content {
    padding: 38px 0;
  }

  .hero-actions,
  .center-actions,
  .product-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .btn-gold,
  .btn-dark-outline,
  .btn-classic {
    width: 100%;
    min-height: 48px;
    padding: 0 18px;
  }

  .premium-grid,
  .products-grid,
  .cards,
  .pedidos-grid {
    gap: 20px;
  }

  .sacola-item-preco,
  .resumo-item {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .sacola-item-controls {
    flex-wrap: wrap;
  }

  .checkout-form .card,
  .checkout-resumo .card,
  .admin-panel {
    padding: 20px;
  }

  .admin-table {
    min-width: 760px;
  }

  .admin-star-form,
  .admin-price-form,
  .admin-option-price-form {
    grid-template-columns: 1fr;
  }

  .admin-star-form input,
  .admin-star-form select,
  .admin-price-form input,
  .admin-option-price-form input {
    width: 100%;
  }

  .custom-toast {
    right: 12px;
    bottom: 12px;
    left: 12px;
    min-width: 0;
    max-width: none;
  }
}

@media (max-width: 420px) {
  .mesa-posta-gallery-grid {
    column-count: 1;
  }

  .mesa-posta-hero-stack {
    grid-template-columns: 1fr;
  }

  .header-container {
    width: calc(100% - 18px);
  }

  .site-header.menu-open .header-actions {
    grid-template-columns: 1fr;
  }

  .brand-name {
    font-size: 1.38rem;
  }

  .brand-logo {
    width: 136px;
    max-height: 66px;
  }

  .brand-subtitle {
    font-size: 0.56rem;
  }

  .page-banner h1,
  .product-hero-title {
    word-break: break-word;
  }
}

/* =========================================================
   EXPERIENCIAS COMPARTILHADAS PREMIUM
========================================================= */

.shared-hero {
  position: relative;
  padding: calc(var(--header-height) + 52px) 0 72px;
  background:
    radial-gradient(circle at top left, rgba(212, 161, 111, 0.16), transparent 34%),
    linear-gradient(180deg, #100b09 0%, #17100d 52%, #1d1410 100%);
  overflow: hidden;
}

.shared-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(0, 0, 0, 0.18), transparent 38%),
    radial-gradient(circle at bottom right, rgba(212, 161, 111, 0.08), transparent 28%);
  pointer-events: none;
}

.shared-hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 52px;
  align-items: center;
}

.shared-hero-copy h1 {
  max-width: 12ch;
  margin: 0 0 22px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.9rem, 4.8vw, 5.2rem);
  line-height: 0.94;
  color: #f4d5b2;
}

.shared-hero-copy p {
  max-width: 60ch;
  margin: 0;
  color: rgba(245, 229, 213, 0.86);
  font-size: 1.04rem;
  line-height: 1.9;
}

.shared-hero-signals {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.shared-hero-signal {
  min-height: 124px;
  padding: 20px 18px;
  border: 1px solid rgba(212, 161, 111, 0.22);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
}

.shared-hero-signal strong {
  display: block;
  margin-bottom: 10px;
  color: #f4d5b2;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  font-weight: 600;
}

.shared-hero-signal span {
  display: block;
  color: rgba(245, 229, 213, 0.78);
  font-size: 0.95rem;
  line-height: 1.65;
}

.shared-hero-visual {
  display: grid;
  gap: 18px;
}

.shared-hero-main,
.shared-hero-mini {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 161, 111, 0.18);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.24);
}

.shared-hero-main img,
.shared-hero-mini img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shared-hero-main {
  min-height: 560px;
}

.shared-hero-main img {
  height: 560px;
}

.shared-hero-main figcaption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: grid;
  gap: 8px;
  padding: 20px 22px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(21, 14, 10, 0.16), rgba(21, 14, 10, 0.88));
}

.shared-hero-main figcaption strong,
.shared-hero-mini-copy strong {
  color: #fff3e7;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.65rem;
  line-height: 1.1;
}

.shared-hero-main figcaption span:last-child,
.shared-hero-mini-copy span {
  color: rgba(255, 239, 223, 0.88);
  font-size: 0.98rem;
}

.shared-hero-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.shared-hero-mini {
  min-height: 198px;
}

.shared-hero-mini img {
  height: 198px;
}

.shared-hero-mini-copy {
  position: absolute;
  inset: auto 0 0 0;
  display: grid;
  gap: 6px;
  padding: 18px;
  background: linear-gradient(180deg, rgba(17, 11, 8, 0), rgba(17, 11, 8, 0.88));
}

.shared-editorial-band {
  background: #f4e8dc;
  border-top: 1px solid rgba(171, 122, 82, 0.2);
  border-bottom: 1px solid rgba(171, 122, 82, 0.2);
}

.shared-editorial-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
  gap: 42px;
  align-items: center;
  padding: 42px 0;
}

.shared-editorial-layout h2,
.shared-featured-head h2,
.shared-cta-card h2,
.shared-signature-copy h2 {
  margin: 12px 0 0;
  color: #5b2e14;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.1rem, 3vw, 3.2rem);
  line-height: 1.06;
}

.shared-editorial-layout p,
.shared-featured-head p,
.shared-cta-card p,
.shared-signature-copy p {
  margin: 0;
  color: #6c4b35;
  line-height: 1.85;
}

.shared-categories-section {
  background: linear-gradient(180deg, #120d0b 0%, #18110e 100%);
}

.shared-title-wrap {
  margin-bottom: 34px;
}

.shared-categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
  gap: 26px;
}

.shared-category-card,
.shared-featured-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border-radius: 24px;
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.shared-category-card {
  background: rgba(255, 247, 240, 0.05);
  border: 1px solid rgba(212, 161, 111, 0.18);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.16);
}

.shared-category-card:hover,
.shared-featured-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 54px rgba(0, 0, 0, 0.22);
  border-color: rgba(229, 184, 138, 0.34);
}

.shared-category-media,
.shared-featured-media {
  position: relative;
  overflow: hidden;
}

.shared-category-media img,
.shared-featured-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shared-category-media {
  height: 290px;
}

.shared-category-media img {
  height: 290px;
}

.shared-category-body,
.shared-featured-body {
  display: grid;
  gap: 14px;
  padding: 24px;
}

.shared-category-body h3,
.shared-featured-body h3,
.shared-pillar h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.9rem;
  line-height: 1.08;
}

.shared-category-body h3,
.shared-category-body p,
.shared-category-meta {
  color: #f7e8d7;
}

.shared-category-body p,
.shared-featured-body p,
.shared-pillar p {
  margin: 0;
  line-height: 1.75;
  font-size: 0.98rem;
}

.shared-category-body p {
  color: rgba(247, 232, 215, 0.78);
}

.shared-category-meta,
.shared-featured-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.shared-category-meta strong,
.shared-featured-footer strong {
  font-size: 0.95rem;
  font-weight: 600;
}

.shared-category-meta span,
.shared-featured-footer span {
  color: #d5a578;
  font-size: 0.92rem;
}

.shared-signature-section {
  background: linear-gradient(180deg, #f9f1e8 0%, #f4e7db 100%);
}

.shared-signature-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 40px;
  align-items: start;
  padding: 88px 0;
}

.shared-pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.shared-pillar {
  min-height: 100%;
  padding: 24px 22px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 20px;
  border: 1px solid rgba(171, 122, 82, 0.18);
}

.shared-pillar h3 {
  color: #5b2e14;
  font-size: 1.45rem;
  margin-bottom: 10px;
}

.shared-pillar p {
  color: #6d4b38;
}

.shared-featured-section {
  background: #f7efe7;
}

.shared-featured-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.7fr);
  gap: 26px;
  align-items: end;
  margin-bottom: 34px;
}

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

.shared-featured-card {
  background: #fff8f1;
  border: 1px solid rgba(171, 122, 82, 0.18);
  color: inherit;
}

.shared-featured-media {
  height: 250px;
}

.shared-featured-media img {
  height: 250px;
}

.shared-featured-body h3 {
  color: #5a2d15;
  font-size: 1.6rem;
}

.shared-featured-body p {
  color: #6d4a36;
}

.shared-featured-footer strong {
  color: #8f5329;
}

.shared-cta-section {
  background:
    radial-gradient(circle at top right, rgba(212, 161, 111, 0.12), transparent 30%),
    linear-gradient(180deg, #150e0c 0%, #100b09 100%);
  padding: 0 0 92px;
}

.shared-cta-card {
  padding: 52px clamp(24px, 5vw, 56px);
  border-radius: 30px;
  border: 1px solid rgba(212, 161, 111, 0.18);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    rgba(26, 17, 13, 0.94);
  box-shadow: 0 28px 66px rgba(0, 0, 0, 0.24);
}

.shared-cta-card h2,
.shared-cta-card p {
  color: #f6e2ce;
}

.shared-cta-card p {
  max-width: 72ch;
  margin-top: 18px;
  opacity: 0.86;
}

@media (max-width: 1180px) {
  .shared-hero-layout,
  .shared-editorial-layout,
  .shared-signature-layout,
  .shared-featured-head {
    grid-template-columns: 1fr;
  }

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

  .shared-pillars,
  .shared-hero-signals {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .shared-hero {
    padding-bottom: 56px;
  }

  .shared-hero-main,
  .shared-hero-main img {
    min-height: 420px;
    height: 420px;
  }

  .shared-hero-stack,
  .shared-pillars,
  .shared-featured-grid,
  .shared-hero-signals {
    grid-template-columns: 1fr;
  }

  .shared-category-media,
  .shared-category-media img {
    height: 250px;
  }

  .shared-signature-layout {
    padding: 70px 0;
  }

  .shared-cta-section {
    padding-bottom: 72px;
  }
}

@media (max-width: 640px) {
  .shared-hero-copy h1 {
    max-width: 11ch;
  }

  .shared-editorial-layout,
  .shared-featured-head {
    gap: 20px;
  }

  .shared-category-body,
  .shared-featured-body,
  .shared-cta-card,
  .shared-pillar,
  .shared-hero-main figcaption {
    padding-left: 20px;
    padding-right: 20px;
  }

  .shared-category-meta,
  .shared-featured-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* =========================================================
   HOME HERO LUXE
========================================================= */

.home-luxe-hero {
  position: relative;
  min-height: 100vh;
  padding-top: var(--header-height);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.home-luxe-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 18%, rgba(227, 177, 104, 0.34), transparent 21%),
    radial-gradient(circle at 22% 76%, rgba(182, 105, 36, 0.14), transparent 18%),
    linear-gradient(180deg, rgba(9, 7, 6, 0) 0%, rgba(9, 7, 6, 0.08) 100%);
  pointer-events: none;
}

.home-luxe-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 8, 7, 0.4) 0%, rgba(10, 8, 7, 0.08) 38%, rgba(10, 8, 7, 0.3) 100%),
    radial-gradient(circle at center, rgba(202, 138, 53, 0.06), transparent 52%),
    linear-gradient(180deg, rgba(10, 8, 7, 0.02) 0%, rgba(10, 8, 7, 0.28) 100%);
  pointer-events: none;
}

.home-luxe-shell,
.home-luxe-feature-band {
  position: relative;
  z-index: 1;
}

.home-luxe-shell {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 56px 20px 34px;
}

.home-luxe-kicker {
  margin-bottom: 22px;
  color: rgba(245, 221, 190, 0.92);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.74rem;
  font-weight: 600;
  text-shadow: 0 0 14px rgba(214, 164, 94, 0.22);
}

.home-luxe-title {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(4.2rem, 10vw, 7.2rem);
  line-height: 0.92;
  letter-spacing: 0.03em;
  color: #e0ad67;
  text-shadow:
    0 0 22px rgba(224, 173, 103, 0.3),
    0 0 58px rgba(102, 62, 22, 0.44);
}

.home-luxe-divider {
  width: 94px;
  height: 18px;
  margin: 14px 0 8px;
  background:
    radial-gradient(circle at center, rgba(225, 180, 121, 0.94) 0 1.5px, transparent 2px),
    linear-gradient(90deg, transparent 0, rgba(225, 180, 121, 0.92) 18%, rgba(225, 180, 121, 0.92) 82%, transparent 100%);
  background-size: 18px 18px, 100% 1px;
  background-position: center, center;
  background-repeat: no-repeat;
}

.home-luxe-lead {
  margin: 0;
  color: #f8e7d1;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.02;
  text-shadow: 0 0 12px rgba(34, 18, 8, 0.24);
}

.home-luxe-signature {
  margin: -2px 0 10px;
  color: #e0aa58;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  text-shadow: 0 0 18px rgba(126, 71, 16, 0.34);
}

.home-luxe-text {
  max-width: 620px;
  margin: 0;
  color: rgba(253, 244, 232, 0.94);
  font-size: 1rem;
  line-height: 1.8;
  text-shadow: 0 1px 10px rgba(18, 11, 8, 0.28);
}

.home-luxe-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.home-luxe-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 600;
  transition: transform 0.28s ease, box-shadow 0.28s ease, background-color 0.28s ease, color 0.28s ease;
}

.home-luxe-btn:hover {
  transform: translateY(-2px);
}

.home-luxe-btn-primary {
  background: linear-gradient(135deg, #d9ad74, #c78a42);
  color: #1b130d;
  box-shadow: 0 14px 32px rgba(199, 138, 66, 0.22);
}

.home-luxe-btn-outline {
  border: 1px solid rgba(225, 180, 121, 0.72);
  color: #f5e0c1;
  background: rgba(15, 11, 9, 0.22);
  backdrop-filter: blur(8px);
}

.home-luxe-btn-outline:hover {
  background: rgba(35, 24, 18, 0.4);
}

.home-luxe-scroll {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
  color: rgba(242, 214, 178, 0.78);
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
}

.home-luxe-scroll::after {
  content: "";
  width: 1px;
  height: 38px;
  background: linear-gradient(180deg, rgba(225, 180, 121, 0.86), transparent);
}

.home-luxe-feature-band {
  border-top: 1px solid rgba(225, 180, 121, 0.24);
  background:
    linear-gradient(180deg, rgba(10, 8, 7, 0.28), rgba(10, 8, 7, 0.74)),
    radial-gradient(circle at top center, rgba(207, 147, 70, 0.08), transparent 60%);
  backdrop-filter: blur(8px);
}

.home-luxe-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}

.home-luxe-feature-item {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  padding: 24px 18px;
  border-right: 1px solid rgba(225, 180, 121, 0.18);
}

.home-luxe-feature-item:last-child {
  border-right: none;
}

.home-luxe-feature-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(225, 180, 121, 0.3);
  background: rgba(225, 180, 121, 0.06);
}

.home-luxe-feature-icon svg {
  width: 20px;
  height: 20px;
  stroke: #dfa45a;
  stroke-width: 1.6;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-luxe-feature-item strong {
  display: block;
  margin-bottom: 5px;
  color: #f3d8b1;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
}

.home-luxe-feature-item p {
  margin: 0;
  color: rgba(248, 234, 212, 0.76);
  font-size: 0.84rem;
  line-height: 1.55;
}

@media (min-width: 1025px) {
  .home-luxe-hero {
    background-attachment: fixed;
  }
}

@media (max-width: 1080px) {
  .home-luxe-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-luxe-feature-item:nth-child(2) {
    border-right: none;
  }
}

@media (max-width: 768px) {
  .home-luxe-hero {
    min-height: auto;
    padding-top: 96px;
    background-position: center;
  }

  .home-luxe-shell {
    padding-top: 36px;
    padding-bottom: 20px;
  }

  .home-luxe-title {
    font-size: clamp(3rem, 15vw, 4.8rem);
  }

  .home-luxe-lead,
  .home-luxe-signature {
    font-size: clamp(1.65rem, 8vw, 2.4rem);
  }

  .home-luxe-text {
    font-size: 0.95rem;
    line-height: 1.72;
  }

  .home-luxe-actions {
    width: 100%;
    flex-direction: column;
  }

  .home-luxe-btn {
    width: 100%;
  }

  .home-luxe-scroll {
    margin-top: 24px;
  }

  .home-luxe-feature-grid {
    grid-template-columns: 1fr;
  }

  .home-luxe-feature-item,
  .home-luxe-feature-item:nth-child(2) {
    border-right: none;
    border-bottom: 1px solid rgba(225, 180, 121, 0.16);
  }

  .home-luxe-feature-item:last-child {
    border-bottom: none;
  }
}

/* =========================================================
   CARROSSEL MINIMALISTA DE MARCAS
========================================================= */

.home-clients-band {
  padding: clamp(46px, 6vw, 72px) 0 clamp(42px, 5.5vw, 66px);
  background:
    radial-gradient(circle at 50% 22%, rgba(198, 154, 86, 0.12), transparent 32%),
    linear-gradient(180deg, #070604 0%, #0c0907 50%, #070604 100%);
}

.home-clients-band .container::before,
.home-clients-band .container::after,
.home-clients-band::after {
  opacity: 0.08;
}

.home-clients-head {
  max-width: 680px;
  margin-bottom: 24px;
}

.home-clients-head .eyebrow {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  color: rgba(198, 154, 86, 0.92);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.home-clients-head h2 {
  margin: 6px 0 0;
  color: rgba(245, 239, 229, 0.76);
  font-family: "Montserrat", sans-serif;
  font-size: clamp(0.74rem, 1.05vw, 0.92rem);
  font-weight: 600;
  letter-spacing: 0.2em;
  line-height: 1.55;
  text-transform: uppercase;
}

.home-clients-head p,
.home-clients-signature {
  display: none;
}

.home-clients-carousel {
  width: min(100%, 1040px);
  margin: 0 auto;
  padding: 18px 0;
  border-radius: 0;
  border: 1px solid rgba(198, 154, 86, 0.16);
  border-right: 0;
  border-left: 0;
  background:
    linear-gradient(90deg, rgba(8, 7, 6, 0.96), rgba(20, 16, 12, 0.72) 50%, rgba(8, 7, 6, 0.96)),
    radial-gradient(circle at 50% 0, rgba(224, 189, 122, 0.08), transparent 48%);
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.home-clients-carousel::before {
  background:
    linear-gradient(90deg, transparent, rgba(198, 154, 86, 0.18), transparent) top center / 100% 1px no-repeat,
    linear-gradient(90deg, transparent, rgba(198, 154, 86, 0.12), transparent) bottom center / 92% 1px no-repeat;
}

.home-clients-carousel::after,
.home-client-nav {
  display: none;
}

.home-clients-viewport {
  overflow-x: auto;
  padding: 0;
  scroll-snap-type: none;
  scroll-padding-inline: 0;
  cursor: grab;
  mask-image: linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%);
}

.home-clients-viewport:active {
  cursor: grabbing;
}

.home-clients-track {
  gap: clamp(28px, 4vw, 54px);
  align-items: center;
  padding: 0;
  will-change: transform;
}

.home-clients-carousel.is-static .home-clients-track,
.home-clients-carousel.is-navless .home-clients-track {
  width: max-content;
  justify-content: flex-start;
}

.home-client-logo-card {
  flex: 0 0 clamp(124px, 12vw, 178px);
  min-width: clamp(124px, 12vw, 178px);
  scroll-snap-align: none;
}

.home-client-logo-card::before,
.home-client-logo-plaque::before,
.home-client-logo-plaque::after {
  display: none;
}

.home-client-logo-plaque {
  min-height: 68px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.home-client-logo-media {
  min-height: 58px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.home-client-logo-media img {
  max-width: min(100%, 156px);
  max-height: 50px;
  opacity: 0.72;
  filter:
    grayscale(1)
    brightness(1.16)
    contrast(0.95)
    saturate(0.18)
    drop-shadow(0 10px 18px rgba(0, 0, 0, 0.28));
  transition: opacity 240ms ease, filter 240ms ease, transform 240ms ease;
}

.home-client-logo-card:hover .home-client-logo-plaque,
.home-client-logo-card:focus-within .home-client-logo-plaque {
  transform: none;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.home-client-logo-card:hover .home-client-logo-media,
.home-client-logo-card:focus-within .home-client-logo-media {
  border: 0;
  background: transparent;
  box-shadow: none;
}

.home-client-logo-card:hover .home-client-logo-media img,
.home-client-logo-card:focus-within .home-client-logo-media img {
  opacity: 0.98;
  transform: translateY(-1px);
  filter:
    grayscale(0.55)
    brightness(1.24)
    contrast(1.02)
    saturate(0.58)
    drop-shadow(0 12px 22px rgba(198, 154, 86, 0.12));
}

.home-client-logo-name,
.home-client-logo-note,
.home-client-logo-meta strong,
.home-client-logo-meta small {
  display: none;
}

@media (max-width: 768px) {
  .home-clients-band {
    padding: 42px 0 46px;
  }

  .home-clients-head {
    margin-bottom: 18px;
  }

  .home-clients-head .eyebrow {
    font-size: 0.66rem;
    letter-spacing: 0.14em;
  }

  .home-clients-head h2 {
    font-size: 0.62rem;
    letter-spacing: 0.16em;
  }

  .home-clients-carousel {
    width: 100%;
    padding: 15px 0;
  }

  .home-clients-track {
    gap: 30px;
  }

  .home-client-logo-card {
    flex-basis: 118px;
    min-width: 118px;
  }

  .home-client-logo-media img {
    max-width: 112px;
    max-height: 40px;
  }
}

/* Esteira TAHANINA: movimento continuo sem depender de JS */

.home-clients-band {
  border-top-color: rgba(198, 154, 86, 0.2);
  border-bottom-color: rgba(198, 154, 86, 0.18);
  background:
    radial-gradient(circle at 50% 22%, rgba(198, 154, 86, 0.18), transparent 29%),
    radial-gradient(circle at 18% 70%, rgba(95, 50, 28, 0.28), transparent 28%),
    radial-gradient(circle at 82% 36%, rgba(224, 189, 122, 0.08), transparent 24%),
    linear-gradient(180deg, #050403 0%, #100a07 48%, #090604 100%);
}

.home-clients-band::before {
  opacity: 0.52;
  background:
    linear-gradient(90deg, transparent, rgba(198, 154, 86, 0.08), transparent),
    repeating-linear-gradient(90deg, rgba(245, 239, 229, 0.018) 0 1px, transparent 1px 86px);
  filter: none;
}

.home-clients-head {
  margin-bottom: 20px;
}

.home-clients-head .eyebrow {
  color: var(--color-gold-light);
  text-shadow: 0 0 22px rgba(198, 154, 86, 0.2);
}

.home-clients-head h2 {
  max-width: 680px;
  margin-inline: auto;
  color: rgba(245, 239, 229, 0.82);
}

.home-clients-carousel[data-logo-marquee] {
  position: relative;
  width: min(100%, 1060px);
  padding: 12px 0;
  border-color: rgba(198, 154, 86, 0.22);
  background:
    linear-gradient(90deg, rgba(8, 7, 6, 0.98), rgba(27, 18, 12, 0.62) 50%, rgba(8, 7, 6, 0.98)),
    radial-gradient(circle at 50% 50%, rgba(224, 189, 122, 0.12), transparent 54%);
}

.home-clients-carousel[data-logo-marquee]::before {
  background:
    linear-gradient(90deg, transparent, rgba(224, 189, 122, 0.5), transparent) top center / 100% 1px no-repeat,
    linear-gradient(90deg, transparent, rgba(198, 154, 86, 0.24), transparent) bottom center / 92% 1px no-repeat,
    radial-gradient(circle at 50% 0, rgba(245, 239, 229, 0.08), transparent 42%);
}

.home-clients-carousel[data-logo-marquee]::after {
  content: "TAHANINA";
  display: block;
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 0;
  color: rgba(224, 189, 122, 0.035);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(4.8rem, 12vw, 10rem);
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1;
  transform: translate(-50%, -50%);
  pointer-events: none;
  white-space: nowrap;
}

.home-clients-carousel[data-logo-marquee] .home-clients-viewport {
  position: relative;
  z-index: 1;
  overflow: hidden;
  cursor: default;
  mask-image: linear-gradient(to right, transparent 0, #000 10%, #000 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 10%, #000 90%, transparent 100%);
}

.home-clients-carousel[data-logo-marquee] .home-clients-track {
  --logo-flow-gap: clamp(34px, 4.8vw, 68px);
  width: max-content;
  min-width: max-content;
  gap: 0;
  animation: tahaninaLogoFlow 34s linear infinite;
  transform: translate3d(0, 0, 0);
}

.home-clients-carousel[data-logo-marquee]:hover .home-clients-track {
  animation-play-state: running;
}

.home-clients-carousel[data-logo-marquee] .home-client-logo-card {
  flex: 0 0 clamp(154px, 13vw, 214px);
  min-width: clamp(154px, 13vw, 214px);
  margin-right: var(--logo-flow-gap);
}

.home-clients-carousel[data-logo-marquee] .home-client-logo-plaque {
  min-height: 86px;
}

.home-clients-carousel[data-logo-marquee] .home-client-logo-media img {
  max-width: min(100%, 210px);
  max-height: 78px;
  opacity: 0.82;
  filter:
    grayscale(1)
    brightness(1.22)
    contrast(0.92)
    saturate(0.12)
    drop-shadow(0 12px 20px rgba(0, 0, 0, 0.34));
}

.home-clients-carousel[data-logo-marquee] .home-client-logo-media img[src*="todeschini-readable"] {
  max-width: min(100%, 232px);
  max-height: 84px;
  opacity: 0.94;
  filter:
    grayscale(0.18)
    brightness(1.28)
    contrast(1.08)
    saturate(0.82)
    drop-shadow(0 12px 22px rgba(198, 154, 86, 0.14));
}

.home-clients-signature {
  display: block;
  max-width: 620px;
  margin: 20px auto 0;
  color: rgba(245, 239, 229, 0.58);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.08rem, 1.6vw, 1.38rem);
  font-style: italic;
  letter-spacing: 0.02em;
}

@keyframes tahaninaLogoFlow {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-33.333%, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-clients-carousel[data-logo-marquee] .home-clients-track {
    animation: none;
  }
}

@media (max-width: 768px) {
  .home-clients-carousel[data-logo-marquee] {
    padding: 12px 0;
  }

  .home-clients-carousel[data-logo-marquee] .home-clients-track {
    --logo-flow-gap: 38px;
    animation-duration: 26s;
  }

  .home-clients-carousel[data-logo-marquee] .home-client-logo-card {
    flex-basis: 142px;
    min-width: 142px;
  }

  .home-clients-carousel[data-logo-marquee] .home-client-logo-plaque {
    min-height: 72px;
  }

  .home-clients-carousel[data-logo-marquee] .home-client-logo-media img {
    max-width: 142px;
    max-height: 62px;
  }

  .home-clients-carousel[data-logo-marquee] .home-client-logo-media img[src*="todeschini-readable"] {
    max-width: 170px;
    max-height: 68px;
  }
}
