/* ==========================================================================
   Da Chapada — dc-home.css
   Homepage principal · vanilla CSS · prefixo dc-
   Depende de: /assets/fonts/ e /assets/brand/ (caminhos do Hostinger)
   ========================================================================== */

/* ---------- Fontes locais ------------------------------------------------ */
@font-face {
  font-family: "DaChapada";
  src: url("../fonts/DaChapada.otf") format("opentype");
  font-weight: normal; font-display: swap;
}
@font-face {
  font-family: "HWT Artz";
  src: url("../fonts/HWT_Artz.otf") format("opentype");
  font-weight: normal; font-display: swap;
}
@font-face {
  font-family: "Barlow";
  src: url("../fonts/Barlow-Regular.ttf") format("truetype");
  font-weight: 400; font-display: swap;
}
@font-face {
  font-family: "Barlow";
  src: url("../fonts/Barlow-Italic.ttf") format("truetype");
  font-weight: 400; font-style: italic; font-display: swap;
}
@font-face {
  font-family: "Barlow";
  src: url("../fonts/Barlow-Medium.ttf") format("truetype");
  font-weight: 500; font-display: swap;
}
@font-face {
  font-family: "Barlow";
  src: url("../fonts/Barlow-SemiBold.ttf") format("truetype");
  font-weight: 600; font-display: swap;
}
@font-face {
  font-family: "Barlow";
  src: url("../fonts/Barlow-Bold.ttf") format("truetype");
  font-weight: 700; font-display: swap;
}
@font-face {
  font-family: "Barlow";
  src: url("../fonts/Barlow-ExtraBold.ttf") format("truetype");
  font-weight: 800; font-display: swap;
}
@font-face {
  font-family: "Barlow Condensed";
  src: url("../fonts/BarlowCondensed-Bold.ttf") format("truetype");
  font-weight: 700; font-display: swap;
}
@font-face {
  font-family: "Barlow Condensed";
  src: url("../fonts/BarlowCondensed-ExtraBold.ttf") format("truetype");
  font-weight: 800; font-display: swap;
}

/* ---------- Tokens -------------------------------------------------------- */
:root {
  /* Marca */
  --dc-sage:          #5b7359;
  --dc-sage-deep:     #455a44;
  --dc-sage-soft:     #8a9c81;
  --dc-cacau:         #5a3a26;
  --dc-cacau-deep:    #3d2718;
  --dc-cacau-soft:    #8a6748;
  --dc-cream:         #f1e9d6;
  --dc-cream-soft:    #faf4e6;
  --dc-cream-deep:    #e2d6b9;
  --dc-ink:           #2b2118;
  --dc-fg2:           #594b3d;
  --dc-fg3:           #8b7c6c;

  /* Sabores */
  --dc-pacoca:        #c98a4d;
  --dc-tropical:      #e88a2d;
  --dc-acai:          #4d3e7a;
  --dc-cranberry:     #7a1f2c;
  --dc-cerrado:       #3f6b3a;
  --dc-salgada:       #708a3a;

  /* Bordas */
  --dc-border:        rgba(90, 58, 38, 0.16);
  --dc-border-2:      rgba(90, 58, 38, 0.32);

  /* Sombras (tom cacau, nunca cinza) */
  --dc-shadow-1:      0 1px 2px rgba(90,58,38,.08);
  --dc-shadow-2:      0 6px 18px -8px rgba(90,58,38,.22);
  --dc-shadow-3:      0 18px 40px -16px rgba(90,58,38,.28);

  /* Tipografia */
  --dc-font-display:  "HWT Artz", "Bowlby One", Georgia, serif;
  --dc-font-brand:    "HWT Artz", system-ui, sans-serif;
  --dc-font-wm:       "Barlow Condensed", "Oswald", system-ui, sans-serif;
  --dc-font-body:     "Barlow", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Escala */
  --dc-fs-xl:         clamp(54px, 7.6vw, 108px);
  --dc-fs-display:    clamp(40px, 5vw, 72px);
  --dc-fs-h1:         clamp(32px, 3.6vw, 48px);
  --dc-fs-h2:         clamp(28px, 3vw, 40px);
  --dc-fs-h3:         22px;
  --dc-fs-body:       16px;
  --dc-fs-small:      14px;
  --dc-fs-micro:      11px;

  /* Raios */
  --dc-r-sm:  8px;
  --dc-r-md:  14px;
  --dc-r-lg:  22px;
  --dc-r-xl:  32px;
  --dc-r-pill:999px;

  /* Motion */
  --dc-ease:  cubic-bezier(.2,.7,.2,1);
  --dc-fast:  140ms;
  --dc-base:  220ms;
  --dc-slow:  420ms;
}

/* ---------- Reset mínimo -------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { color: var(--dc-ink); background: var(--dc-cream); }
body {
  font-family: var(--dc-font-body);
  font-size: var(--dc-fs-body);
  line-height: 1.55;
  color: var(--dc-ink);
  background: var(--dc-cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul, ol { list-style: none; }
::selection { background: var(--dc-tropical); color: var(--dc-cream); }

/* em dentro de título display vira laranja tropical */
.dc-display em, h1 em, h2 em {
  font-style: normal;
  color: var(--dc-tropical);
}
.dc-on-dark em { color: var(--dc-tropical); }

/* ---------- Utilitários de tipografia ------------------------------------- */
.dc-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--dc-font-wm);
  font-weight: 700; font-size: 12px;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--dc-sage-deep);
}
.dc-on-dark .dc-eyebrow { color: var(--dc-tropical); }

.dc-display {
  font-family: var(--dc-font-display);
  font-weight: 400;
  letter-spacing: -.005em;
  line-height: .95;
}

/* ---------- Botões -------------------------------------------------------- */
.dc-btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--dc-sage-deep); color: var(--dc-cream);
  font-family: var(--dc-font-wm);
  font-weight: 700; font-size: 13px; letter-spacing: .16em;
  text-transform: uppercase;
  padding: 16px 28px; border-radius: var(--dc-r-pill);
  box-shadow: var(--dc-shadow-2);
  transition: all var(--dc-base) var(--dc-ease);
}
.dc-btn-primary:hover {
  background: var(--dc-sage); transform: translateY(-1px);
  box-shadow: var(--dc-shadow-3);
}
.dc-btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: var(--dc-cacau-deep);
  border: 1.5px solid var(--dc-cacau);
  font-family: var(--dc-font-wm);
  font-weight: 700; font-size: 13px; letter-spacing: .16em;
  text-transform: uppercase;
  padding: 14.5px 26px; border-radius: var(--dc-r-pill);
  transition: all var(--dc-base) var(--dc-ease);
}
.dc-btn-ghost:hover { background: var(--dc-cacau-deep); color: var(--dc-cream); }
.dc-btn-warm {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--dc-tropical); color: var(--dc-cream);
  font-family: var(--dc-font-wm);
  font-weight: 700; font-size: 12px; letter-spacing: .18em;
  text-transform: uppercase;
  padding: 14px 24px; border-radius: var(--dc-r-pill);
  transition: all var(--dc-base) var(--dc-ease);
}
.dc-btn-warm:hover { transform: translateY(-1px); opacity: .92; }

/* ---------- Ícone sol (CSS mask) ----------------------------------------- */
.dc-sun {
  display: inline-block; flex-shrink: 0;
  width: 1em; height: 1em;
  background: currentColor;
  -webkit-mask: url("/assets/brand/logo-sol.svg") center/contain no-repeat;
          mask: url("/assets/brand/logo-sol.svg") center/contain no-repeat;
}

/* ---------- Sol decorativo em background (inline SVG) -------------------- */
.dc-bg-sun-svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: currentColor;
  animation: dc-spin 90s linear infinite;
  transform-origin: center;
  pointer-events: none;
}

/* ---------- Animações ----------------------------------------------------- */
@keyframes dc-marquee  { to { transform: translateX(-50%); } }
@keyframes dc-float    { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes dc-spin     { to { transform: rotate(360deg); } }
@keyframes dc-kenburns {
  0%   { transform: scale(1.06) translate(0,0); }
  50%  { transform: scale(1.14) translate(-2.5%,-1.5%); }
  100% { transform: scale(1.18) translate(2%,1.8%); }
}
@keyframes dc-blink    { 0%,100% { opacity:1; } 50% { opacity:.25; } }
@keyframes dc-fadein   { from { opacity:0; transform: translateY(8px); } to { opacity:1; transform:none; } }

.dc-marquee-track       { display:flex; animation: dc-marquee 28s linear infinite; }
.dc-marquee-track--fast { animation-duration: 20s; }
.dc-float               { animation: dc-float 6s ease-in-out infinite; }
.dc-spin-slow           { animation: dc-spin 90s linear infinite; }

/* Reveal ao scroll */
.dc-reveal-ready [data-reveal] {
  opacity: 0; transform: translateY(28px);
  transition: opacity .7s var(--dc-ease), transform .7s var(--dc-ease);
}
.dc-reveal-ready [data-reveal].is-in { opacity:1; transform:none; }
[data-reveal-delay="1"].is-in { transition-delay: 80ms; }
[data-reveal-delay="2"].is-in { transition-delay: 160ms; }
[data-reveal-delay="3"].is-in { transition-delay: 240ms; }
[data-reveal-delay="4"].is-in { transition-delay: 320ms; }

@media (prefers-reduced-motion: reduce) {
  .dc-marquee-track, .dc-float, .dc-spin-slow { animation: none !important; }
  [data-reveal] { opacity:1 !important; transform:none !important; }
}

/* Hover card */
.dc-card {
  transition: transform var(--dc-base) var(--dc-ease), box-shadow var(--dc-base) ease;
  will-change: transform;
}
.dc-card:hover { transform: translateY(-3px); box-shadow: var(--dc-shadow-2); }

/* Zoom de imagem */
.dc-zoom > img {
  transition: transform .6s var(--dc-ease);
}
.dc-zoom:hover > img { transform: scale(1.05); }

/* Link underline animado */
.dc-link { position: relative; }
.dc-link::after {
  content:""; position:absolute; left:0; right:100%; bottom:-4px; height:2px;
  background: var(--dc-tropical);
  transition: right var(--dc-base) var(--dc-ease);
}
.dc-link:hover::after { right:0; }


/* ---------- Scrollbar escondida ------------------------------------------- */
.dc-no-scrollbar::-webkit-scrollbar { display:none; }
.dc-no-scrollbar { -ms-overflow-style:none; scrollbar-width:none; }

/* ---------- Focus visível ------------------------------------------------- */
:focus-visible {
  outline: 2px solid var(--dc-sage);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ==========================================================================
   TOPBAR
   ========================================================================== */
/* topbar / header / mobile-menu → movidos para dc-global.css */

/* ==========================================================================
   HERO
   ========================================================================== */
.dc-hero {
  position: relative;
  overflow: hidden;
  background: var(--dc-cream);
}

/* Sol decorativo girando no fundo */
.dc-hero-bg-sun {
  position: absolute;
  right: -8%; top: 10%;
  width: 520px; height: 520px;
  color: rgba(232,138,45,.18);
  pointer-events: none;
  display: none;
}
@media (min-width: 768px) { .dc-hero-bg-sun { display: block; } }
.dc-hero-bg-sun .dc-sun {
  width: 100%; height: 100%;
  animation: dc-spin 90s linear infinite;
}

.dc-hero-inner {
  position: relative; z-index: 1;
  max-width: 1440px; margin: 0 auto;
  padding: 56px 20px 80px;
  display: grid;
  gap: 48px;
  align-items: center;
}
@media (min-width: 1024px) {
  .dc-hero-inner {
    grid-template-columns: 1.05fr 1fr;
    padding: 80px 40px 112px;
  }
}

/* Coluna de texto */
.dc-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--dc-font-wm);
  font-size: 11px; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--dc-sage-deep);
  margin-bottom: 20px;
}
.dc-hero-eyebrow .dc-sun { width: 14px; height: 14px; color: var(--dc-tropical); }

.dc-hero-title {
  font-family: var(--dc-font-display);
  font-size: clamp(32px, 7.6vw, 108px);
  line-height: .95;
  letter-spacing: -.005em;
  color: var(--dc-cacau-deep);
  margin-bottom: 28px;
}

.dc-hero-lead {
  font-size: 19px; line-height: 1.55;
  color: var(--dc-fg2);
  max-width: 460px;
  margin-bottom: 36px;
}

.dc-hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 48px; }

.dc-hero-stats {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 32px; max-width: 400px;
  border-top: 1px solid var(--dc-border);
  padding-top: 28px;
}
.dc-hero-stat-num {
  font-family: var(--dc-font-display);
  font-size: 36px; line-height: 1;
  color: var(--dc-cacau-deep);
}
.dc-hero-stat-lbl {
  font-family: var(--dc-font-wm);
  font-size: 11px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--dc-fg3); margin-top: 8px;
}

/* Coluna do slider */
.dc-hero-slider-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3; /* Reduced height by exactly 40% on desktop (5/4 -> 3/4) */
  max-height: 720px;
  margin-left: auto;
}

.dc-hero-slider {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--dc-r-xl);
  border: 1px solid rgba(90,58,38,.1);
  box-shadow: var(--dc-shadow-3);
  background: var(--dc-cream-deep);
}

.dc-slide {
  position: absolute; inset: 0;
  opacity: 0; pointer-events: none;
  transition: opacity .7s ease;
}
.dc-slide.is-active { opacity: 1; pointer-events: auto; }
.dc-slide img {
  width: 100%; height: 100%; object-fit: cover;
}
.dc-slide-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(61,39,24,.85) 0%, rgba(61,39,24,.25) 50%, transparent 100%);
}
.dc-slide-content {
  position: absolute; inset-inline: 0; bottom: 0;
  padding: 24px 28px;
  color: var(--dc-cream);
}
.dc-slide-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--dc-font-wm);
  font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  background: var(--dc-tropical); color: var(--dc-cream);
  padding: 5px 10px; border-radius: var(--dc-r-pill);
  margin-bottom: 12px;
}
.dc-slide-title {
  font-family: var(--dc-font-display);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.05;
  color: var(--dc-cream);
  margin-bottom: 12px;
  max-width: 380px;
}
.dc-slide-price-tag {
  display: inline-flex;
  font-family: var(--dc-font-wm);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--dc-tropical);
  margin-bottom: 14px;
}
.dc-slide-cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--dc-font-wm);
  font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  background: var(--dc-cream); color: var(--dc-cacau-deep);
  padding: 10px 18px; border-radius: var(--dc-r-pill);
  transition: background var(--dc-base) ease, color var(--dc-base) ease;
}
.dc-slide-cta:hover { background: var(--dc-tropical); color: var(--dc-cream); }
.dc-slide-cta svg { width: 14px; height: 14px; stroke: currentColor; fill: none; }

/* Controles do slider */
.dc-slider-prev,
.dc-slider-next {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 10;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(241,233,214,.85);
  color: var(--dc-cacau-deep);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background var(--dc-fast) ease;
  backdrop-filter: blur(4px);
}
.dc-slider-prev { left: 12px; }
.dc-slider-next { right: 12px; }
.dc-slider-prev:hover, .dc-slider-next:hover { background: var(--dc-cream); }
.dc-slider-prev svg, .dc-slider-next svg {
  width: 16px; height: 16px; stroke: currentColor; fill: none;
}

/* Dots */
.dc-slider-dots {
  position: absolute; top: 16px; right: 16px;
  display: flex; gap: 6px; z-index: 10;
}
.dc-slider-dot {
  height: 6px; border-radius: var(--dc-r-pill);
  background: rgba(241,233,214,.55);
  transition: width var(--dc-base) ease, background var(--dc-base) ease;
  width: 6px;
}
.dc-slider-dot.is-active { width: 24px; background: var(--dc-cream); }

/* Floats do hero */
.dc-hero-float {
  position: absolute; z-index: 20;
  border-radius: var(--dc-r-pill);
  box-shadow: var(--dc-shadow-2);
  animation: dc-float 6s ease-in-out infinite;
}
.dc-hero-float--a {
  left: -12px; top: 20px;
  background: var(--dc-cream);
  border: 1px solid var(--dc-border);
  padding: 10px 16px;
}
@media (min-width: 1024px) { .dc-hero-float--a { left: -24px; top: 28px; } }
.dc-hero-float--b {
  right: -12px; bottom: 40px;
  background: var(--dc-cacau-deep); color: var(--dc-cream);
  padding: 12px 16px;
  border-radius: var(--dc-r-lg);
  animation-delay: 1.2s;
}
@media (min-width: 1024px) { .dc-hero-float--b { right: -24px; } }

/* Mobile hero floats adjustments */
@media (max-width: 640px) {
  .dc-hero-float {
    animation: dc-float-mobile 6s ease-in-out infinite;
  }
  .dc-hero-float--a {
    left: 4px;
    top: 16px;
  }
  .dc-hero-float--b {
    right: 4px;
    bottom: 24px;
    animation-delay: 1.2s;
  }
}

@keyframes dc-float-mobile {
  0%, 100% { transform: translateY(0) scale(0.85); }
  50% { transform: translateY(-8px) scale(0.85); }
}

.dc-hero-float-label {
  font-family: var(--dc-font-wm);
  font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--dc-tropical);
}
.dc-hero-float-val {
  font-family: var(--dc-font-display);
  font-size: 20px; line-height: 1.1;
  color: var(--dc-cacau-deep);
  margin-top: 2px;
}
.dc-hero-float--b .dc-hero-float-val { color: var(--dc-cream); }

/* ==========================================================================
   VOICE MARQUEE (faixa verde)
   ========================================================================== */
.dc-voice-marquee {
  background: var(--dc-sage-deep);
  overflow: hidden;
  padding: 24px 0;
}
.dc-voice-marquee-track {
  display: flex;
  align-items: center;
  gap: 0 !important; /* Remove gap to avoid the mathematically uneven marquee loop jump */
  white-space: nowrap;
  animation: dc-marquee 30s linear infinite !important; /* Elegant slow marquee speed */
  width: max-content;
}
.dc-voice-item {
  font-family: var(--dc-font-display);
  font-size: clamp(36px, 4.4vw, 56px);
  color: var(--dc-cream);
  display: inline-flex; align-items: center; gap: 48px;
  flex-shrink: 0;
  margin-right: 48px; /* Safe space between elements for mathematically seamless loop */
  letter-spacing: normal;
  word-spacing: 0.5em;
}
.dc-voice-item em {
  font-style: normal;
  color: var(--dc-tropical);
}
.dc-voice-item .dc-sun { width: 28px; height: 28px; color: var(--dc-tropical); }

/* Mobile adjustments (redução substancial em altura e proporções) */
@media (max-width: 767px) {
  .dc-voice-marquee {
    padding: 16px 0; /* Faixa verde mais fina para reduzir a verticalidade */
  }
  .dc-voice-item {
    font-size: 34px !important; /* Retornado ao tamanho bem grande, preservando impacto */
    gap: 36px;                 /* Espaçamento proporcional */
    margin-right: 36px !important; /* Spacing between items on mobile loop */
  }
  .dc-voice-item .dc-sun {
    width: 24px;               /* Ícone proporcional ao texto grande */
    height: 24px;
  }
}

/* ==========================================================================
   SEÇÃO CATEGORIA (Cubinhos / Granolas)
   ========================================================================== */
.dc-cat { padding: 64px 20px; }
@media (min-width: 1024px) { .dc-cat { padding: 112px 40px; } }

.dc-cat--light { background: var(--dc-cream); }

/* Granolas — fundo escuro com textura */
.dc-cat--deep {
  position: relative;
  background: #3a4c39;
  color: var(--dc-cream);
}
.dc-cat--deep::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.05) 1px, transparent 1.2px);
  background-size: 18px 18px;
  pointer-events: none; opacity: .6;
}

.dc-cat-inner {
  max-width: 1440px; margin: 0 auto;
  display: grid; gap: 40px;
  align-items: start;
}
@media (min-width: 1024px) {
  .dc-cat-inner { grid-template-columns: 1fr 2fr; gap: 48px; }
  .dc-cat-inner.dc-cat-inner--flip { grid-template-columns: 2fr 1fr; }
  .dc-cat-inner.dc-cat-inner--flip .dc-cat-info { order: 2; }
  .dc-cat-inner.dc-cat-inner--flip .dc-cat-products { order: 1; }
}

/* Painel de info (sticky no desktop) */
.dc-cat-info {
  position: relative;
  background: var(--dc-cream-deep);
  border-radius: 28px;
  padding: 36px 36px;
}
@media (min-width: 1024px) {
  .dc-cat-info { position: sticky; top: 96px; padding: 44px; }
}
.dc-cat-info--dark { background: rgba(241,233,214,.08); border: 1px solid rgba(241,233,214,.12); }

.dc-cat-num {
  position: absolute; right: 32px; top: 24px;
  font-family: var(--dc-font-display);
  font-size: clamp(80px, 9vw, 140px); line-height: .8;
  color: rgba(61,39,24,.18); /* Increased visibility */
  user-select: none; pointer-events: none;
  opacity: .85; /* Increased visibility */
}
.dc-cat--deep .dc-cat-num { color: rgba(241,233,214,.06); }

.dc-cat-info h2 {
  font-family: var(--dc-font-display);
  font-size: clamp(36px, 3.6vw, 56px);
  line-height: .95;
  color: var(--dc-cacau-deep);
  margin: 20px 0 20px;
}
.dc-cat--deep .dc-cat-info h2 { color: var(--dc-cream); }

.dc-cat-desc {
  font-size: 15px; line-height: 1.6;
  color: var(--dc-fg2); max-width: 360px;
  margin-bottom: 24px;
}
.dc-cat--deep .dc-cat-desc { color: rgba(241,233,214,.8); }

.dc-cat-claims { margin-bottom: 32px; }
.dc-cat-claim {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 10px;
}
.dc-claim-arrow {
  width: 14px; height: 14px; color: var(--dc-tropical); flex-shrink: 0;
  transition: transform var(--dc-fast) ease;
}
.dc-cat-claim:hover .dc-claim-arrow {
  transform: translateX(4px);
}
.dc-cat-claim span {
  font-family: var(--dc-font-wm);
  font-size: 11px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--dc-cacau-deep);
}
.dc-cat--deep .dc-cat-claim span { color: var(--dc-cream); }

/* Painel de produtos */
.dc-cat-products {
  background: var(--dc-cream-soft);
  border-radius: 28px;
  padding: 20px;
}
@media (min-width: 1024px) { .dc-cat-products { padding: 28px; } }
.dc-cat--deep .dc-cat-products {
  background: var(--dc-cream);
  box-shadow: var(--dc-shadow-2);
  border: 1px solid rgba(241,233,214,.1);
}

.dc-product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (min-width: 640px) { .dc-product-grid--3 { grid-template-columns: repeat(3,1fr); } }
@media (min-width: 1024px) { .dc-product-grid { gap: 16px; } }

/* Card de produto */
.dc-product-card {
  display: block;
  border-radius: 18px;
  background: var(--dc-cream);
  overflow: hidden;
  border: 1px solid var(--dc-border);
  box-shadow: var(--dc-shadow-1);
  position: relative;
  transition: transform var(--dc-base) var(--dc-ease), box-shadow var(--dc-base) ease;
}
.dc-product-card:hover { transform: translateY(-3px); box-shadow: var(--dc-shadow-2); }

.dc-product-tag {
  position: absolute; top: 10px; left: 10px; z-index: 10;
  font-family: var(--dc-font-wm);
  font-size: 9px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  background: var(--dc-tropical); color: var(--dc-cream);
  padding: 4px 8px; border-radius: var(--dc-r-sm);
}

.dc-product-thumb {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--dc-cream-deep);
}
.dc-product-thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: opacity .45s ease;
  will-change: opacity;
}
.dc-product-thumb .dc-img-hover {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0;
}
.dc-product-card:hover .dc-img-main  { opacity: 0; }
.dc-product-card:hover .dc-img-hover { opacity: 1; }

.dc-product-body { padding: 12px; }
.dc-product-line {
  font-family: var(--dc-font-wm);
  font-size: 9px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--dc-sage);
}
.dc-product-name {
  font-family: var(--dc-font-display);
  font-size: 16px; line-height: 1.15;
  color: var(--dc-cacau-deep);
  margin: 4px 0 8px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
@media (max-width: 640px) {
  .dc-product-name {
    white-space: normal !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    height: 2.3em !important;
  }
}
.dc-product-row {
  display: flex; align-items: center; justify-content: space-between;
}
.dc-product-price {
  font-family: var(--dc-font-display);
  font-size: 18px; color: var(--dc-cacau-deep);
}
.dc-product-add {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--dc-cacau-deep); color: var(--dc-cream);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 18px; line-height: 1;
  transition: transform var(--dc-fast) var(--dc-ease);
  position: relative;
}
.dc-product-add::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
}
.dc-product-card:hover .dc-product-add { transform: scale(1.1); }

/* Base visibility rules for compact kit elements */
.dc-kit-desktop-title { display: none; }
.dc-product-desc { display: none; }
.dc-kit-mobile-title { display: inline; }

/* Kit card dentro do grid — herda estrutura do product-card com visual escuro */
.dc-product-body--kit {
  background: var(--dc-cacau-deep);
  border-radius: 0 0 12px 12px;
  padding: 12px;
  flex: 1;
}
.dc-product-body--kit .dc-product-line {
  color: rgba(241,233,214,.5);
  white-space: normal;
}
.dc-product-body--kit .dc-product-name {
  color: var(--dc-cream);
  white-space: normal;
  height: auto !important; /* Remove a altura forçada do mobile */
  margin: 4px 0 8px;       /* Espaçamento controlado e elegante */
}
.dc-product-body--kit .dc-product-price { color: var(--dc-tropical); }
.dc-product-card--kit .dc-kit-arrow {
  width: 32px; height: 32px; flex-shrink: 0;
  border-radius: 50%;
  background: var(--dc-tropical); color: var(--dc-cream);
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform var(--dc-fast) var(--dc-ease);
}
.dc-product-card--kit:hover .dc-kit-arrow { transform: scale(1.1); }
.dc-product-card--kit .dc-kit-arrow svg { width: 16px; height: 16px; stroke: var(--dc-cream); }
.dc-product-card--kit:hover .dc-img-main {
  opacity: 1 !important;
}

/* Banner de kit */
.dc-kit-banner {
  display: flex; flex-direction: column;
  background: var(--dc-cacau-deep); color: var(--dc-cream);
  border-radius: 20px; overflow: hidden;
  margin-top: 20px;
  transition: opacity var(--dc-base) ease;
}
.dc-kit-banner:hover { opacity: .95; }
@media (min-width: 640px) {
  .dc-kit-banner {
    display: grid;
    grid-template-columns: 160px 1fr auto;
    align-items: stretch;
  }
}
.dc-kit-banner-img {
  position: relative; overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--dc-cream-deep);
}
@media (min-width: 640px) { .dc-kit-banner-img { aspect-ratio: auto; } }
.dc-kit-banner-img img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s var(--dc-ease);
}
.dc-kit-banner:hover .dc-kit-banner-img img { transform: scale(1.05); }
.dc-kit-banner-body { padding: 16px 20px; display: flex; flex-direction: column; justify-content: center; }
.dc-kit-banner-label {
  font-family: var(--dc-font-wm);
  font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(241,233,214,.55);
}
.dc-kit-banner-title {
  font-family: var(--dc-font-display);
  font-size: clamp(20px, 2.5vw, 26px); line-height: 1.05;
  color: var(--dc-cream); margin-top: 4px;
}
.dc-kit-banner-desc { font-size: 13px; color: rgba(241,233,214,.7); margin-top: 4px; }
.dc-kit-banner-cta {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 12px 16px;
}
@media (min-width: 640px) { .dc-kit-banner-cta { padding: 0 24px 0 0; justify-content: flex-start; } }
.dc-kit-price {
  font-family: var(--dc-font-display);
  font-size: clamp(22px, 2vw, 28px); color: var(--dc-tropical);
}
.dc-kit-arrow {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--dc-tropical); color: var(--dc-cream);
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform var(--dc-base) ease;
}
.dc-kit-banner:hover .dc-kit-arrow { transform: translateX(4px); }
.dc-kit-arrow svg { width: 18px; height: 18px; stroke: currentColor; fill: none; }

/* Ajustes exclusivos para mobile (< 640px) no card de Kit Banner (Reduzir espaçamento vertical e alinhar paddings) */
@media (max-width: 639px) {
  .dc-kit-banner-body {
    padding: 16px 20px 4px;
  }
  .dc-kit-banner-cta {
    padding: 4px 20px 16px;
  }
}


/* ==========================================================================
   SEÇÃO CREMES (fundo cacau escuro com textura)
   ========================================================================== */
.dc-cremes {
  position: relative;
  background: var(--dc-cacau-deep);
  color: var(--dc-cream);
  overflow: hidden;
  padding: 64px 20px;
}
@media (min-width: 1024px) { .dc-cremes { padding: 48px 40px 112px; } }
.dc-cremes::before {
  content: "";
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle at 1px 1px, rgba(241,233,214,.06) 1px, transparent 1.4px);
  background-size: 22px 22px;
  mix-blend-mode: screen; opacity: .55;
}

.dc-cremes-inner { position: relative; max-width: 1440px; margin: 0 auto; }

.dc-cremes-head {
  display: flex; flex-wrap: wrap;
  align-items: flex-end; justify-content: space-between;
  gap: 24px; margin-bottom: 40px;
}
@media (min-width: 1024px) { .dc-cremes-head { margin-bottom: 48px; } }

.dc-cremes-head h2 {
  font-family: var(--dc-font-display);
  font-size: clamp(40px, 4.6vw, 68px); line-height: .95;
  color: var(--dc-cream); margin-top: 16px;
}

.dc-cremes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (min-width: 1024px) {
  .dc-cremes-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; }
}

/* Card creme — bendu-style (hover revela info) */
.dc-creme-card {
  position: relative; overflow: hidden;
  border-radius: var(--dc-r-lg); isolation: isolate;
  box-shadow: var(--dc-shadow-2);
  aspect-ratio: 3/5;
  border: 1px solid rgba(255, 255, 255, 0.11);
}
.dc-creme-media { position: absolute; inset: 0; overflow: hidden; }
.dc-creme-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: opacity .5s ease, transform .8s var(--dc-ease);
  will-change: transform, opacity;
}
.dc-creme-still { opacity: 1; transform: scale(1); }
.dc-creme-hover { opacity: 0; transform: scale(1.06); position: absolute; inset: 0; }
.dc-creme-card:hover .dc-creme-still,
.dc-creme-card.touch-hover .dc-creme-still { opacity: 0; transform: scale(1.04); }
.dc-creme-card:hover .dc-creme-hover,
.dc-creme-card.touch-hover .dc-creme-hover { opacity: 1; animation: dc-kenburns 5.5s ease-in-out infinite alternate; }

/* Gradiente base para leitura sem hover */
.dc-creme-grad {
  position: absolute; inset-inline: 0; bottom: 0;
  height: 22%; z-index: 10; pointer-events: none;
  background: linear-gradient(to top, rgba(61,39,24,.5) 0%, transparent 100%);
}

/* Tag */
.dc-creme-tag {
  position: absolute; top: 12px; left: 12px; z-index: 25;
  font-family: var(--dc-font-wm);
  font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  background: var(--dc-tropical); color: var(--dc-cream);
  padding: 5px 10px; border-radius: var(--dc-r-sm);
}

/* Indicador "Preview" piscando */
.dc-creme-rec {
  position: absolute; top: 12px; right: 12px; z-index: 25;
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--dc-font-wm); font-size: 10px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--dc-cream);
  background: rgba(0,0,0,.35); padding: 5px 9px; border-radius: var(--dc-r-pill);
  opacity: 0; transition: opacity .25s ease; backdrop-filter: blur(4px);
}
.dc-creme-rec::before {
  content:""; width:7px; height:7px; border-radius:50%;
  background: #ff5544; box-shadow: 0 0 8px #ff5544;
  animation: dc-blink 1.1s ease-in-out infinite;
}
.dc-creme-card:hover .dc-creme-rec,
.dc-creme-card.touch-hover .dc-creme-rec { opacity: 1; }

/* Barra de info (sobe no hover) */
.dc-creme-bar {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 20;
  background: linear-gradient(to top, rgba(61,39,24,.96) 15%, rgba(61,39,24,.88) 55%, rgba(61,39,24,0) 100%);
  padding: 16px 16px 20px;
  color: var(--dc-cream);
  transform: translateY(34%);
  transition: transform .4s var(--dc-ease);
}
.dc-creme-card:hover .dc-creme-bar,
.dc-creme-card.touch-hover .dc-creme-bar { transform: translateY(0); }

.dc-creme-weight {
  display: inline-block;
  font-family: var(--dc-font-wm);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--dc-cream);
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 8px;
}
.dc-creme-name {
  font-family: var(--dc-font-display);
  font-size: 22px; line-height: 1.1; margin-top: 4px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.dc-creme-price {
  font-family: var(--dc-font-display);
  font-size: 22px; color: var(--dc-tropical);
  flex-shrink: 0;
}
.dc-creme-top-row {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 12px;
}
.dc-creme-feats {
  display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px;
  opacity: 0; transform: translateY(8px);
  transition: opacity .35s ease .12s, transform .35s ease .12s;
}
.dc-creme-card:hover .dc-creme-feats,
.dc-creme-card.touch-hover .dc-creme-feats { opacity: 1; transform: translateY(0); }
.dc-creme-feat {
  font-family: var(--dc-font-wm);
  font-size: 10px; letter-spacing: .14em; text-transform: uppercase;
  background: rgba(241,233,214,.14);
  border: 1px solid rgba(241,233,214,.22);
  padding: 5px 9px; border-radius: var(--dc-r-pill);
  color: var(--dc-cream);
}

/* Otimização dos Cards de Cremes para Mobile (< 767px) */
@media (max-width: 767px) {
  .dc-creme-bar {
    padding: 12px 12px 8px;
    transform: translateY(24px); /* Esconde os badges na base do card por padrão */
    background: linear-gradient(to top, rgba(61,39,24,.98) 25%, rgba(61,39,24,.85) 60%, rgba(61,39,24,0) 100%);
  }
  .dc-creme-card:hover .dc-creme-bar,
  .dc-creme-card.touch-hover .dc-creme-bar {
    transform: translateY(0);
  }
  .dc-creme-top-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .dc-creme-name {
    font-size: 14px;
    line-height: 1.2;
    -webkit-line-clamp: 2;
    margin-top: 2px;
  }
  .dc-creme-price {
    font-size: 14px;
    margin-top: 4px;
    align-items: flex-start; /* Alinha o preço de-por à esquerda no mobile */
  }
  .dc-creme-weight {
    font-size: 8px;
  }
  .dc-creme-feats {
    margin-top: 6px;
    gap: 4px;
  }
  .dc-creme-feat {
    font-size: 8px;
    padding: 3px 6px;
    letter-spacing: 0.1em;
  }
  .dc-creme-feat:nth-child(n+3) {
    display: none !important;
  }
}

/* ==========================================================================
   HISTÓRIA
   ========================================================================== */
.dc-historia {
  position: relative; overflow: hidden;
  background: var(--dc-sage-deep);
  color: var(--dc-cream);
  padding: 64px 20px;
}
@media (min-width: 1024px) { .dc-historia { padding: 128px 40px; } }

.dc-historia-bg-sun {
  position: absolute; top: -80px; right: -64px;
  width: 420px; height: 420px;
  color: rgba(241,233,214,.1); pointer-events: none;
}
.dc-historia-bg-sun .dc-sun { width: 100%; height: 100%; }

.dc-historia-inner {
  position: relative;
  max-width: 1280px; margin: 0 auto;
  display: grid; gap: 56px; align-items: center;
}
@media (min-width: 1024px) {
  .dc-historia-inner { grid-template-columns: 1fr 1fr; gap: 80px; }
}

.dc-historia-img {
  aspect-ratio: 4/4.6;
  border-radius: var(--dc-r-xl);
  overflow: hidden;
  border: 1px solid rgba(241,233,214,.15);
  box-shadow: 0 30px 80px -20px rgba(0,0,0,.4);
}
.dc-historia-img img { width: 100%; height: 100%; object-fit: cover; }

.dc-historia-text h2 {
  font-family: var(--dc-font-display);
  font-size: clamp(40px, 6.5vw, 88px); line-height: .95;
  color: var(--dc-cream); margin: 12px 0 24px;
  max-width: 12ch;
}
.dc-historia-text h2 em { color: var(--dc-tropical); font-style: normal; }
.dc-historia-kicker {
  font-family: var(--dc-font-body);
  font-size: 20px;
  font-weight: 600;
  text-align: left;
  color: var(--dc-tropical);
  margin-bottom: 8px;
}
.dc-historia-lead {
  font-size: clamp(15px, 1.2vw, 18px); line-height: 1.6;
  color: rgba(241,233,214,.92);
  max-width: 52ch; margin-bottom: 28px;
  text-align: left;
}
.dc-historia-text {
  text-align: left;
}
.dc-historia-claims { margin-bottom: 36px; }
.dc-historia-claim {
  display: flex; align-items: flex-start; gap: 12px;
  margin-bottom: 14px;
}
.dc-historia-claim .dc-sun { width: 14px; height: 14px; color: var(--dc-tropical); margin-top: 2px; }
.dc-historia-claim span {
  font-family: var(--dc-font-wm);
  font-size: 12px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--dc-cream);
}

/* ==========================================================================
   STORIES (scroll horizontal)
   ========================================================================== */
.dc-stories {
  background: var(--dc-cacau-deep);
  color: var(--dc-cream);
  padding: 56px 0 64px;
}
@media (min-width: 1024px) { .dc-stories { padding: 112px 0; } }

.dc-stories-head {
  max-width: 1440px; margin: 0 auto;
  padding: 0 20px;
  display: flex; flex-wrap: wrap;
  align-items: flex-end; justify-content: space-between;
  gap: 24px; margin-bottom: 32px;
}
@media (min-width: 1024px) {
  .dc-stories-head { padding: 0 40px; margin-bottom: 48px; }
}
.dc-stories-head h2 {
  font-family: var(--dc-font-display);
  font-size: clamp(40px, 4.4vw, 64px); line-height: .95;
  color: var(--dc-cream); margin-top: 16px;
}
.dc-stories-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--dc-font-wm);
  font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--dc-tropical);
  transition: gap var(--dc-fast) ease;
}
.dc-stories-link:hover { gap: 14px; }
.dc-stories-link svg { width: 16px; height: 16px; stroke: currentColor; fill: none; }

.dc-stories-scroll-wrap { position: relative; }
.dc-stories-fade-l,
.dc-stories-fade-r {
  position: absolute; inset-block: 0; width: 24px; z-index: 10; pointer-events: none;
}
.dc-stories-fade-l { left: 0; background: linear-gradient(to right, var(--dc-cacau-deep), transparent); }
.dc-stories-fade-r { right: 0; width: 40px; background: linear-gradient(to left, var(--dc-cacau-deep), transparent); }
@media (min-width: 1024px) { .dc-stories-fade-r { width: 64px; } }

.dc-stories-track {
  overflow-x: auto; overflow-y: hidden;
  display: flex; gap: 16px;
  padding: 0 20px 12px;
  scroll-snap-type: x mandatory;
  scroll-padding-left: 20px;
  -webkit-overflow-scrolling: touch;
}
@media (min-width: 1024px) { .dc-stories-track { padding: 0 40px 12px; } }

.dc-story-card {
  display: block;
  position: relative; flex-shrink: 0;
  width: 72vw; max-width: 260px;
  aspect-ratio: 9/16;
  border-radius: 22px;
  overflow: hidden;
  background: var(--dc-cream-deep);
  scroll-snap-align: start;
  transition: transform var(--dc-base) var(--dc-ease);
}
@media (min-width: 768px) { .dc-story-card { width: 220px; } }
.dc-story-card:hover { transform: translateY(-3px); }
.dc-story-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--dc-ease); }
.dc-story-card:hover img { transform: scale(1.05); }
.dc-story-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(to top, var(--dc-cacau-deep) 0%, rgba(61,39,24,.3) 40%, transparent 100%);
}
.dc-story-time {
  position: absolute; top: 12px; left: 12px;
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(61,39,24,.5); backdrop-filter: blur(4px);
  padding: 5px 10px; border-radius: var(--dc-r-pill);
}
.dc-story-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--dc-tropical); }
.dc-story-time-txt {
  font-family: var(--dc-font-wm); font-size: 10px; font-weight: 700;
  letter-spacing: .12em; color: var(--dc-cream);
}
.dc-story-play {
  position: absolute; top: 12px; right: 12px;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--dc-cream); color: var(--dc-cacau-deep);
  display: inline-flex; align-items: center; justify-content: center;
}
.dc-story-play svg { width: 14px; height: 14px; fill: currentColor; }
.dc-story-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 16px;
}
.dc-story-title {
  font-family: var(--dc-font-display); font-size: 18px; line-height: 1.15;
  color: var(--dc-cream);
}
.dc-story-author {
  font-family: var(--dc-font-wm); font-size: 10px; font-weight: 700;
  letter-spacing: .12em; color: rgba(241,233,214,.7); margin-top: 6px;
}

/* ==========================================================================
   RECEITAS
   ========================================================================== */
.dc-receitas {
  background: var(--dc-cream-soft);
  padding: 64px 20px;
}
@media (min-width: 1024px) { .dc-receitas { padding: 128px 40px; } }
.dc-receitas-inner { max-width: 1440px; margin: 0 auto; }

.dc-receitas-head {
  display: flex; flex-wrap: wrap;
  align-items: flex-end; justify-content: space-between;
  gap: 24px; margin-bottom: 48px;
}
.dc-receitas-head h2 {
  font-family: var(--dc-font-display);
  font-size: clamp(40px, 5vw, 64px); line-height: .95;
  color: var(--dc-cacau-deep); margin-top: 16px;
}
.dc-receitas-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--dc-font-wm);
  font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--dc-cacau-deep); transition: gap var(--dc-fast) ease;
}
.dc-receitas-link:hover { gap: 14px; }
.dc-receitas-link svg { width: 16px; height: 16px; stroke: currentColor; fill: none; }

.dc-receitas-grid {
  display: grid; gap: 24px;
}
@media (min-width: 1024px) {
  .dc-receitas-grid { grid-template-columns: 1.4fr 1fr; }
}

.dc-receita-card {
  display: block; position: relative;
  overflow: hidden; border-radius: var(--dc-r-xl);
  background: var(--dc-cream-deep);
  transition: transform var(--dc-base) var(--dc-ease);
}
.dc-receita-card:hover { transform: translateY(-3px); }
.dc-receita-card--hero { aspect-ratio: 4/5; }
@media (min-width: 1024px) { .dc-receita-card--hero { aspect-ratio: auto; grid-row: span 2; } }
.dc-receita-card--sm   { aspect-ratio: 16/10; }

.dc-receita-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s var(--dc-ease);
}
.dc-receita-card:hover img { transform: scale(1.05); }
.dc-receita-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(to top, var(--dc-cacau-deep) 0%, rgba(61,39,24,.2) 40%, transparent 100%);
}
.dc-receita-tags {
  position: absolute; top: 16px; left: 16px;
  display: flex; gap: 8px;
}
.dc-receita-tag-time {
  font-family: var(--dc-font-wm); font-size: 10px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  background: var(--dc-tropical); color: var(--dc-cream);
  padding: 5px 10px; border-radius: var(--dc-r-pill);
}
.dc-receita-tag-cat {
  font-family: var(--dc-font-wm); font-size: 10px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  background: rgba(241,233,214,.2); backdrop-filter: blur(4px);
  color: var(--dc-cream); padding: 5px 10px; border-radius: var(--dc-r-pill);
}
.dc-receita-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 20px 24px;
  color: var(--dc-cream);
}
.dc-receita-title--hero {
  font-family: var(--dc-font-display);
  font-size: clamp(24px, 2.8vw, 40px); line-height: 1.05;
  max-width: 400px;
}
.dc-receita-title--sm {
  font-family: var(--dc-font-display);
  font-size: 22px; line-height: 1.1;
}

/* ==========================================================================
   NEWSLETTER
   ========================================================================== */
.dc-newsletter {
  position: relative; overflow: hidden;
  background: var(--dc-sage-deep);
  color: var(--dc-cream);
  padding: 64px 20px;
  text-align: center;
}
@media (min-width: 1024px) { .dc-newsletter { padding: 112px 40px; } }

.dc-newsletter-bg {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%,-50%);
  width: 540px; height: 540px;
  color: rgba(241,233,214,.1); pointer-events: none;
}
.dc-newsletter-bg .dc-sun {
  width: 100%; height: 100%;
  animation: dc-spin 90s linear infinite;
}

.dc-newsletter-inner {
  position: relative; max-width: 920px; margin: 0 auto;
}

.dc-newsletter h2 {
  font-family: var(--dc-font-display);
  font-size: clamp(36px, 4.4vw, 64px); line-height: .95;
  color: var(--dc-cream); margin: 20px 0 24px;
}
.dc-newsletter-lead {
  font-size: 17px; line-height: 1.55;
  color: rgba(241,233,214,.8);
  max-width: 480px; margin: 0 auto 36px;
}

.dc-newsletter .dc-eyebrow {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.dc-newsletter-form {
  display: flex; align-items: center;
  background: var(--dc-cream);
  border-radius: var(--dc-r-pill);
  padding: 6px 6px 6px 20px;
  max-width: 540px; margin: 0 auto;
  gap: 6px;
  width: 100%;
}
.dc-newsletter-input {
  flex: 1; border: none; outline: none;
  background: transparent;
  font-family: var(--dc-font-body);
  font-size: 15px; color: var(--dc-ink);
  min-width: 0;
}
.dc-newsletter-input::placeholder { color: rgba(43,33,24,.45); }
.dc-newsletter-submit {
  flex-shrink: 0;
  font-family: var(--dc-font-wm);
  font-size: 12px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  background: var(--dc-cacau-deep); color: var(--dc-cream);
  padding: 14px 24px; border-radius: var(--dc-r-pill);
  transition: background var(--dc-base) ease;
}
.dc-newsletter-submit:hover { background: var(--dc-cacau); }
@media (max-width: 480px) {
  .dc-newsletter-input { font-size: 14px; }
  .dc-newsletter-submit { padding: 14px 16px; font-size: 11px; }
}

.dc-newsletter-note {
  font-family: var(--dc-font-body);
  font-size: 16px; font-weight: 500; letter-spacing: normal; text-transform: none;
  color: #ffffff; margin-top: 20px;
}
.dc-newsletter-note strong {
  font-weight: 700;
  color: var(--dc-tropical);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.dc-footer {
  background: var(--dc-cacau-deep);
  color: rgba(241,233,214,.7);
  padding: 48px 20px 40px;
}
@media (min-width: 768px) { .dc-footer { padding: 80px 40px 40px; } }

.dc-footer-inner { max-width: 1440px; margin: 0 auto; }

/* Desktop: 4 colunas */
.dc-footer-grid {
  display: none;
}
@media (min-width: 768px) {
  .dc-footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 48px;
  }
}
.dc-footer-brand img { height: 64px; width: auto; display: block; filter: brightness(0) invert(1); opacity: .9; }
.dc-footer-brand p {
  font-size: 14px; line-height: 1.6;
  color: rgba(241,233,214,.65); max-width: 280px; margin-top: 20px;
}
.dc-footer-social {
  display: flex; gap: 10px; margin-top: 20px;
}
.dc-footer-social-btn {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(241,233,214,.2);
  color: rgba(241,233,214,.7);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background var(--dc-fast) ease, border-color var(--dc-fast) ease;
}
.dc-footer-social-btn:hover { background: var(--dc-sage-deep); border-color: var(--dc-sage-deep); }
.dc-footer-social-btn svg { width: 16px; height: 16px; stroke: currentColor; fill: none; }

.dc-footer-col-title {
  font-family: var(--dc-font-wm);
  font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--dc-cream); margin-bottom: 16px;
}
.dc-footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.dc-footer-col a {
  font-size: 14px; color: rgba(241,233,214,.7);
  transition: color var(--dc-fast) ease;
}
.dc-footer-col a:hover { color: var(--dc-tropical); }

/* Mobile: logo + accordion */
.dc-footer-mobile-top {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding-bottom: 24px;
  border-bottom: 1px solid rgba(241,233,214,.12);
}
@media (min-width: 768px) { .dc-footer-mobile-top { display: none; } }
.dc-footer-mobile-top img { height: 32px; width: auto; filter: invert(1) brightness(0); opacity: .9; }

.dc-footer-accordion { display: flex; flex-direction: column; }
@media (min-width: 768px) { .dc-footer-accordion { display: none; } }

.dc-accord-item { border-bottom: 1px solid rgba(241,233,214,.12); }
.dc-accord-btn {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 16px 0;
  font-family: var(--dc-font-wm);
  font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--dc-cream);
}
.dc-accord-icon {
  font-size: 20px; line-height: 1; color: var(--dc-tropical);
  transition: transform var(--dc-base) ease;
}
.dc-accord-item.is-open .dc-accord-icon { transform: rotate(45deg); }
.dc-accord-body {
  overflow: hidden; max-height: 0;
  transition: max-height .3s ease;
}
.dc-accord-item.is-open .dc-accord-body { max-height: 300px; }
.dc-accord-body ul { padding-bottom: 16px; display: flex; flex-direction: column; gap: 10px; }
.dc-accord-body a { font-size: 14px; color: rgba(241,233,214,.7); }
.dc-accord-body a:hover { color: var(--dc-tropical); }

/* Legal */
.dc-footer-legal {
  margin-top: 32px; padding-top: 20px;
  border-top: 1px solid rgba(241,233,214,.12);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 8px;
  font-family: var(--dc-font-wm);
  font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(241,233,214,.55);
}
@media (min-width: 768px) { .dc-footer-legal { margin-top: 56px; } }
.dc-footer-legal .dc-sun { width: 18px; height: 18px; color: var(--dc-tropical); }

/* ==========================================================================
   BOTÃO FLUTUANTE "PEDIDO PADRÃO"
   ========================================================================== */
.dc-pedido-btn {
  position: fixed; bottom: 24px; right: 20px; z-index: 50;
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--dc-cacau-deep); color: var(--dc-cream);
  font-family: var(--dc-font-wm);
  font-size: 12px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  padding: 16px 24px; border-radius: var(--dc-r-pill);
  box-shadow: 0 8px 32px -8px rgba(61,39,24,.55);
  transition: transform var(--dc-base) var(--dc-ease), box-shadow var(--dc-base) ease, background var(--dc-base) ease;
  white-space: nowrap;
}
.dc-pedido-btn:hover {
  background: var(--dc-sage-deep); transform: translateY(-2px);
  box-shadow: 0 12px 40px -8px rgba(61,39,24,.6);
}
.dc-pedido-btn .dc-sun { width: 20px; height: 20px; color: var(--dc-tropical); }
.dc-pedido-btn svg { width: 16px; height: 16px; stroke: currentColor; fill: none; }

/* ==========================================================================
   MOBILE HERO & BANNER REDESIGN (Photoshop Banners)
   ========================================================================== */
@media (max-width: 1023px) {
  /* 1. Hide the left column text of the hero completely, making the slider the absolute first section */
  .dc-hero-inner > div:first-child {
    display: none !important;
  }

  .dc-hero-inner {
    padding: 12px 8px 20px;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .dc-hero-slider-wrap {
    aspect-ratio: auto;
    max-height: none;
    height: auto;
    margin-left: 0;
  }

  /* 2. Redesign slider container as a full-screen vertical banner card */
  .dc-hero-slider {
    aspect-ratio: auto;
    height: 420px; /* Enhanced vertical height for full-screen Photoshop banners */
    border-radius: 28px;
    border: 1px solid rgba(90, 58, 38, 0.12); /* Standard brand light cocoa border */
    background: var(--dc-cream-deep);
    box-shadow: 0 12px 32px rgba(90, 58, 38, 0.12);
    margin: 4px;
    overflow: hidden;
  }

  /* 3. Slide Layout: full-screen absolute card overlay */
  .dc-slide {
    display: block !important;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0 !important;
    pointer-events: none;
    transition: opacity 600ms ease-in-out;
  }

  .dc-slide.is-active {
    opacity: 1 !important;
    pointer-events: auto;
  }

  /* Full screen cover image from Photoshop */
  .dc-slide img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Cover the entire slide perfectly */
    z-index: 1;
    transform: scale(1.02);
    transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
  }

  .dc-slide.is-active img {
    transform: scale(1); /* Smooth settle-in scale effect */
  }

  /* Completely hide all descriptive textual/badge layers from the HTML on mobile */
  .dc-slide-tag,
  .dc-slide-title,
  .dc-slide-price-tag,
  .dc-slide-scrim {
    display: none !important;
  }

  /* 4. Overlay CTA Content Layer */
  .dc-slide-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: auto;
    padding: 0 24px 44px; /* Elevated to avoid dots and bottom edge */
    display: flex;
    flex-direction: column;
    align-items: center; /* Beautifully centered */
    justify-content: flex-end;
    z-index: 10;
  }

  /* 5. Custom "Quero agora" brand pill CTA button */
  .dc-slide-cta {
    background: var(--dc-tropical) !important; /* Premium brand Tropical Orange */
    color: var(--dc-cream) !important; /* Elegant off-white text */
    font-family: var(--dc-font-wm);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 12px 28px;
    border-radius: var(--dc-r-pill);
    box-shadow: 0 6px 20px rgba(232, 138, 45, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    transition: transform 200ms ease, box-shadow 200ms ease, background-color 200ms ease;
  }

  .dc-slide-cta:active {
    transform: scale(0.95);
    background: var(--dc-sage-deep) !important; /* Smooth color shift to sage deep on tap */
    box-shadow: 0 4px 12px rgba(69, 90, 68, 0.3);
  }

  .dc-slide-cta svg {
    width: 12px;
    height: 12px;
    stroke: currentColor;
    stroke-width: 2.5px;
    fill: none;
  }

  /* 6. Centered Slider Dots at the bottom */
  .dc-slider-dots {
    top: auto;
    bottom: 16px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 12;
  }

  .dc-slider-dot {
    background: rgba(241, 233, 214, 0.4);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    transition: width 300ms cubic-bezier(0.4, 0, 0.2, 1), background 300ms ease;
  }

  .dc-slider-dot.is-active {
    background: var(--dc-cream); /* Cream dot for maximum contrast on dark backgrounds */
    width: 18px;
    border-radius: 3px;
  }

  /* Hide prev/next buttons on mobile */
  .dc-slider-prev,
  .dc-slider-next {
    display: none !important;
  }

  /* Hide Hero Floats (Float A / Float B) on mobile */
  .dc-hero-float {
    display: none !important;
  }
}

/* ==========================================================================
   SEÇÃO DE CATEGORIAS ESTILO BENDU (.dc-home-categories)
   ========================================================================== */
.dc-home-categories {
  position: relative;
  background: var(--dc-cream);
  padding: 40px 0 16px;
}

@media (min-width: 768px) {
  .dc-home-categories {
    padding: 80px 40px 30px;
  }
}

/* Reduz em 70% o espaço entre as seções de categoria e produtos */
.dc-home-categories + .dc-cat {
  padding-top: 20px;
}
@media (min-width: 1024px) {
  .dc-home-categories + .dc-cat {
    padding-top: 34px;
  }
}

.dc-home-categories-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 0 16px;
}

@media (min-width: 768px) {
  .dc-home-categories-inner {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding: 0;
  }
}

@media (min-width: 1024px) {
  .dc-home-categories-inner {
    gap: 32px;
  }
}

/* Card individual */
.dc-home-cat-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--dc-r-lg);
  aspect-ratio: 3 / 4.6;
  background: var(--dc-cream-deep);
  box-shadow: var(--dc-shadow-2);
  transition: transform var(--dc-base) var(--dc-ease), box-shadow var(--dc-base) ease;
  isolation: isolate;
  border: 1px solid rgba(255, 255, 255, 0.11);
}

@media (min-width: 768px) {
  .dc-home-cat-card {
    aspect-ratio: 3 / 3.8;
  }
}

/* Layout assimétrico para o 3o card no Mobile (baixo e largo) */
.dc-home-cat-card:nth-child(3) {
  grid-column: span 2;
  aspect-ratio: unset;
  height: 200px; /* Dobrado de 100px para 200px */
}

@media (max-width: 767px) {
  .dc-home-cat-card:nth-child(3) .dc-home-cat-title {
    font-size: clamp(32px, 9.5vw, 44px);
  }
}

@media (min-width: 768px) {
  .dc-home-cat-card:nth-child(3) {
    grid-column: span 1;
    aspect-ratio: 3 / 3.8;
    height: auto;
  }
}

.dc-home-cat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--dc-shadow-3);
}

/* Mídia do Card */
.dc-home-cat-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: -2;
}

.dc-home-cat-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--dc-ease);
}

.dc-home-cat-card:hover .dc-home-cat-img {
  transform: scale(1.06);
}

/* Vídeo Inline do Card */
.dc-home-cat-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  pointer-events: none;
  z-index: 4;
  transition: opacity 0.4s ease;
  background: #000;
}

.dc-home-cat-card.video-playing .dc-home-cat-video {
  opacity: 1;
  pointer-events: auto;
}

/* Botão Fechar Inline */
.dc-btn-close-inline-video {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(27, 21, 16, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--dc-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  opacity: 0;
  pointer-events: none;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: opacity 0.3s ease, background 0.25s ease, transform 0.25s ease;
}

.dc-btn-close-inline-video svg {
  width: 14px;
  height: 14px;
}

.dc-home-cat-card.video-playing .dc-btn-close-inline-video {
  opacity: 1;
  pointer-events: auto;
}

.dc-btn-close-inline-video:hover {
  background: rgba(27, 21, 16, 0.9);
  transform: scale(1.05);
}

.dc-btn-close-inline-video:active {
  transform: scale(0.95);
}

@media (min-width: 768px) {
  .dc-btn-close-inline-video {
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
  }
  .dc-btn-close-inline-video svg {
    width: 20px;
    height: 20px;
  }
}

/* Gradiente de fundo escuro para garantir contraste e legibilidade */
.dc-home-cat-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    to top,
    rgba(43, 33, 24, 0.88) 0%,
    rgba(43, 33, 24, 0.4) 50%,
    rgba(43, 33, 24, 0.1) 100%
  );
  transition: opacity 0.3s ease, background 0.4s ease;
}

.dc-home-cat-card:hover .dc-home-cat-overlay {
  background: linear-gradient(
    to top,
    rgba(43, 33, 24, 0.94) 0%,
    rgba(43, 33, 24, 0.5) 55%,
    rgba(43, 33, 24, 0.15) 100%
  );
}

.dc-home-cat-card.video-playing .dc-home-cat-overlay {
  opacity: 0;
  pointer-events: none;
}

/* Conteúdo de Texto e Ações */
.dc-home-cat-content {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  padding: 16px;
  color: var(--dc-cream);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  height: 100%;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.dc-home-cat-card.video-playing .dc-home-cat-content {
  opacity: 0;
  pointer-events: none;
}

@media (min-width: 768px) {
  .dc-home-cat-content {
    padding: 24px;
    align-items: flex-start;
  }
}

@media (min-width: 1024px) {
  .dc-home-cat-content {
    padding: 32px;
  }
}

.dc-home-cat-kicker {
  font-family: var(--dc-font-wm);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--dc-tropical);
  margin-bottom: 10px;
  display: none;
  background: rgba(45, 33, 24, 0.75); /* Deep cocoa glassmorphism backdrop */
  padding: 6px 12px;
  border-radius: 6px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  line-height: 1.45;
  width: fit-content;
}

@media (min-width: 768px) {
  .dc-home-cat-kicker {
    display: inline-block;
  }
}

.dc-home-cat-title {
  font-family: var(--dc-font-display);
  font-size: clamp(24px, 8vw, 36px);
  line-height: 1.1;
  color: var(--dc-cream);
  margin-bottom: 4px;
  text-align: left;
  width: 100%;
}

@media (min-width: 768px) {
  .dc-home-cat-title {
    font-size: clamp(40px, 4.5vw, 56px);
    text-align: left;
    margin-bottom: 4px;
  }
}

.dc-home-cat-desc {
  font-size: 13.5px;
  line-height: 1.45;
  color: rgba(241, 233, 214, 0.78);
  margin-bottom: 22px;
  max-width: 32ch;
  display: none;
}

@media (min-width: 768px) {
  .dc-home-cat-desc {
    display: block;
  }
}

.dc-home-cat-actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
  pointer-events: auto;
  width: 100%;
}

@media (min-width: 768px) {
  .dc-home-cat-actions {
    flex-direction: row;
    justify-content: flex-start;
    gap: 12px;
    width: auto;
  }
}

/* Botões Flexíveis: Pílulas com texto visível em todas as telas */
.dc-btn-play-category,
.dc-btn-know-category {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 10px 4px;
  flex: 1;
  min-width: 0;
  border-radius: var(--dc-r-pill);
  font-family: var(--dc-font-wm);
  font-weight: 700;
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.2s ease, color 0.25s ease;
}

.dc-btn-play-category span,
.dc-btn-know-category span {
  display: inline;
}

.dc-btn-play-category {
  background: rgba(255, 255, 255, 0.12);
  color: var(--dc-cream);
  border: 1px solid rgba(255, 255, 255, 0.32);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.dc-btn-know-category {
  background: var(--dc-cream);
  color: var(--dc-cacau-deep);
  border: 1px solid transparent;
  text-decoration: none;
}

@media (min-width: 768px) {
  .dc-btn-play-category,
  .dc-btn-know-category {
    flex: unset;
    width: auto;
    height: auto;
    padding: 12px 26px;
    font-size: 12px;
    letter-spacing: 0.14em;
    gap: 8px;
  }
}

.dc-btn-play-category svg,
.dc-btn-know-category svg {
  flex-shrink: 0;
  width: 11px;
  height: 11px;
  transition: transform 0.2s ease;
}

@media (min-width: 768px) {
  .dc-btn-play-category svg {
    width: 16px;
    height: 16px;
  }
  .dc-btn-know-category svg {
    width: 14px;
    height: 14px;
  }
}

.dc-btn-play-category:hover {
  background: rgba(255, 255, 255, 0.24);
  border-color: rgba(255, 255, 255, 0.6);
  transform: scale(1.03);
}

.dc-btn-play-category:active {
  transform: scale(0.97);
}

.dc-btn-play-category:hover svg {
  transform: scale(1.1);
}

.dc-btn-know-category:hover {
  background: var(--dc-tropical);
  color: var(--dc-cream);
  transform: scale(1.03);
}

.dc-btn-know-category:active {
  transform: scale(0.97);
}

.dc-btn-know-category:hover svg {
  transform: translateX(3px);
}

/* ==========================================================================
   DESKTOP OVERRIDES FOR GRANOLAS & CUBINHOS SECTIONS
   ========================================================================== */
@media (min-width: 1024px) {
  /* Style the info column in granolas and cubinhos as a cream card */
  #granolas .dc-cat-info,
  #cubinhos .dc-cat-info {
    display: block !important;
    background: #f1e9d6 !important; /* Elegant mockup cream */
    border-radius: 48px !important;
    padding: 48px 40px !important;
    box-shadow: var(--dc-shadow-3) !important;
    border: none !important;
    box-sizing: border-box !important;
    position: sticky !important;
    top: 96px !important;
  }

  /* Large number color in background */
  #granolas .dc-cat-num,
  #cubinhos .dc-cat-num {
    color: rgba(90, 58, 38, 0.05) !important;
    opacity: 1 !important;
  }

  /* Eyebrow styling */
  #granolas .dc-cat-info .dc-eyebrow,
  #cubinhos .dc-cat-info .dc-eyebrow {
    color: var(--dc-sage-deep) !important;
  }

  /* Title styling */
  #granolas .dc-cat-info h2,
  #cubinhos .dc-cat-info h2 {
    color: var(--dc-cacau-deep) !important;
    font-family: var(--dc-font-display) !important;
    font-size: clamp(32px, 3vw, 48px) !important;
    line-height: 0.95 !important;
    margin: 20px 0 20px !important;
  }

  /* Description styling */
  #granolas .dc-cat-info .dc-cat-desc,
  #cubinhos .dc-cat-info .dc-cat-desc {
    color: var(--dc-fg2) !important;
    font-size: 15px !important;
    line-height: 1.6 !important;
    margin-bottom: 24px !important;
  }

  /* Claims styling */
  #granolas .dc-cat-info .dc-cat-claim span,
  #cubinhos .dc-cat-info .dc-cat-claim span {
    color: var(--dc-cacau-deep) !important;
  }

  /* Warm button styling for granolas */
  #granolas .dc-cat-info .dc-btn-warm {
    background: var(--dc-sage-deep) !important;
    color: var(--dc-cream) !important;
    transition: all var(--dc-base) var(--dc-ease) !important;
  }
  #granolas .dc-cat-info .dc-btn-warm:hover {
    background: var(--dc-sage) !important;
    transform: translateY(-1px) !important;
  }

  /* Center the inner container and set max-width */
  #granolas .dc-cat-inner,
  #cubinhos .dc-cat-inner {
    max-width: 1440px !important;
    margin: 0 auto !important;
    gap: 40px !important;
  }

  /* Transform the products panel into a centered rounded card */
  #granolas .dc-cat-products,
  #cubinhos .dc-cat-products {
    background: #f1e9d6 !important; /* Elegant mockup cream */
    border-radius: 48px !important;
    padding: 48px 40px !important;
    box-shadow: var(--dc-shadow-3) !important;
    border: 1px solid rgba(90, 58, 38, 0.08) !important;
    box-sizing: border-box !important;
  }

  /* 3-column product grid with spacing */
  #granolas .dc-product-grid,
  #cubinhos .dc-product-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 24px !important;
    width: 100% !important;
  }

  /* Style individual product cards */
  #granolas .dc-product-grid > .dc-product-card:not(.dc-product-card--kit),
  #cubinhos .dc-product-grid > .dc-product-card:not(.dc-product-card--kit) {
    background: #faf4e6 !important; /* Slightly lighter/warmer cream card */
    border: 1px solid rgba(61, 39, 24, 0.12) !important;
    border-radius: 28px !important;
    padding: 16px !important;
    box-shadow: var(--dc-shadow-1) !important;
    display: flex !important;
    flex-direction: column !important;
    box-sizing: border-box !important;
    transition: transform var(--dc-base) var(--dc-ease), box-shadow var(--dc-base) ease !important;
  }
  #granolas .dc-product-grid > .dc-product-card:not(.dc-product-card--kit):hover,
  #cubinhos .dc-product-grid > .dc-product-card:not(.dc-product-card--kit):hover {
    transform: translateY(-4px) !important;
    box-shadow: var(--dc-shadow-2) !important;
  }

  /* Image container in single cards */
  #granolas .dc-product-grid > .dc-product-card:not(.dc-product-card--kit) .dc-product-thumb,
  #cubinhos .dc-product-grid > .dc-product-card:not(.dc-product-card--kit) .dc-product-thumb {
    border-radius: 20px !important;
    overflow: hidden !important;
    aspect-ratio: 1 / 1 !important;
    background: var(--dc-cream-deep) !important;
    border: 1px solid rgba(61, 39, 24, 0.06) !important;
    position: relative !important;
    width: 100% !important;
  }

  /* Badge styling */
  #granolas .dc-product-grid > .dc-product-card:not(.dc-product-card--kit) .dc-product-tag,
  #cubinhos .dc-product-grid > .dc-product-card:not(.dc-product-card--kit) .dc-product-tag {
    position: absolute !important;
    top: 12px !important;
    left: 12px !important;
    z-index: 10 !important;
    background: var(--dc-tropical) !important; /* Mockup vibrant orange */
    color: var(--dc-cream) !important;
    font-family: var(--dc-font-wm) !important;
    font-size: 10px !important;
    font-weight: 700 !important;
    letter-spacing: 0.12em !important;
    text-transform: uppercase !important;
    padding: 6px 12px !important; /* Sized perfectly for wide photo */
    border-radius: 8px !important;
  }

  /* Card content / body styling */
  #granolas .dc-product-grid > .dc-product-card:not(.dc-product-card--kit) .dc-product-body,
  #cubinhos .dc-product-grid > .dc-product-card:not(.dc-product-card--kit) .dc-product-body {
    padding: 16px 4px 8px 4px !important;
    display: flex !important;
    flex-direction: column !important;
    flex: 1 !important;
  }

  /* Weight label */
  #granolas .dc-product-grid > .dc-product-card:not(.dc-product-card--kit) .dc-product-line,
  #cubinhos .dc-product-grid > .dc-product-card:not(.dc-product-card--kit) .dc-product-line {
    font-family: var(--dc-font-wm) !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    color: var(--dc-sage-deep) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.08em !important;
    margin-bottom: 4px !important;
  }

  /* Product name */
  #granolas .dc-product-grid > .dc-product-card:not(.dc-product-card--kit) .dc-product-name,
  #cubinhos .dc-product-grid > .dc-product-card:not(.dc-product-card--kit) .dc-product-name {
    font-family: var(--dc-font-display) !important;
    font-size: 24px !important;
    line-height: 1.05 !important;
    color: #39281a !important;
    text-transform: uppercase !important;
    margin: 4px 0 16px !important;
    white-space: normal !important;
    height: auto !important;
  }

  /* Price and plus button row */
  #granolas .dc-product-grid > .dc-product-card:not(.dc-product-card--kit) .dc-product-row,
  #cubinhos .dc-product-grid > .dc-product-card:not(.dc-product-card--kit) .dc-product-row {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    margin-top: auto !important;
  }

  /* Price styling */
  #granolas .dc-product-grid > .dc-product-card:not(.dc-product-card--kit) .dc-product-price,
  #cubinhos .dc-product-grid > .dc-product-card:not(.dc-product-card--kit) .dc-product-price {
    font-family: var(--dc-font-display) !important;
    font-size: 26px !important;
    color: #39281a !important;
  }

  /* Circular brown plus button */
  #granolas .dc-product-grid > .dc-product-card:not(.dc-product-card--kit) .dc-product-add,
  #cubinhos .dc-product-grid > .dc-product-card:not(.dc-product-card--kit) .dc-product-add {
    background: #39281a !important;
    color: var(--dc-cream) !important;
    width: 40px !important;
    height: 40px !important;
    font-size: 22px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1 !important;
    box-shadow: var(--dc-shadow-1) !important;
    transition: transform 0.2s ease, background 0.2s ease !important;
  }
  #granolas .dc-product-grid > .dc-product-card:not(.dc-product-card--kit):hover .dc-product-add,
  #cubinhos .dc-product-grid > .dc-product-card:not(.dc-product-card--kit):hover .dc-product-add {
    transform: scale(1.08) !important;
    background: var(--dc-cacau) !important;
  }

  /* Widescreen horizontal kit banner in grid */
  #granolas .dc-shop-kit-in-grid,
  #cubinhos .dc-shop-kit-in-grid {
    grid-column: span 3 !important;
    width: 100% !important;
    margin-top: 16px !important;
  }

  #granolas .dc-shop-kit-in-grid .dc-product-card--kit,
  #cubinhos .dc-shop-kit-in-grid .dc-product-card--kit {
    display: flex !important;
    flex-direction: row !important;
    align-items: stretch !important;
    background: #39281a !important; /* Dark cacao bg */
    border-radius: 32px !important;
    overflow: hidden !important;
    border: none !important;
    box-shadow: var(--dc-shadow-2) !important;
    width: 100% !important;
    height: 132px !important; /* Force card height to exactly 132px (+10% from 120px) */
    max-height: 132px !important;
    padding: 0 !important;
    margin: 0 !important;
    transition: transform var(--dc-base) var(--dc-ease), box-shadow var(--dc-base) ease !important;
  }
  #granolas .dc-shop-kit-in-grid .dc-product-card--kit:hover,
  #cubinhos .dc-shop-kit-in-grid .dc-product-card--kit:hover {
    transform: translateY(-4px) !important;
    box-shadow: var(--dc-shadow-3) !important;
  }

  /* Left-side landscape photo in kit banner - Matches card above */
  #granolas .dc-shop-kit-in-grid .dc-product-card--kit .dc-product-thumb,
  #cubinhos .dc-shop-kit-in-grid .dc-product-card--kit .dc-product-thumb {
    flex: 0 0 calc(33.333% - 16px) !important; /* Match exactly the width of column 1! */
    width: calc(33.333% - 16px) !important;
    aspect-ratio: auto !important; /* Override square aspect-ratio */
    height: 132px !important;
    min-height: 132px !important;
    max-height: 132px !important;
    border-radius: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    background: none !important;
    border: none !important;
    position: relative !important;
  }
  #granolas .dc-shop-kit-in-grid .dc-product-card--kit .dc-product-thumb img,
  #cubinhos .dc-shop-kit-in-grid .dc-product-card--kit .dc-product-thumb img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.6s var(--dc-ease) !important;
  }
  #granolas .dc-shop-kit-in-grid .dc-product-card--kit:hover .dc-product-thumb img,
  #cubinhos .dc-shop-kit-in-grid .dc-product-card--kit:hover .dc-product-thumb img {
    transform: scale(1.04) !important;
  }

  /* Compact and visible "Kit" badge on the desktop kit banner */
  #granolas .dc-shop-kit-in-grid .dc-product-card--kit .dc-product-tag,
  #cubinhos .dc-shop-kit-in-grid .dc-product-card--kit .dc-product-tag {
    display: block !important;
    position: absolute !important;
    top: 12px !important;
    left: 12px !important;
    z-index: 10 !important;
    background: var(--dc-tropical) !important; /* Matching orange badges */
    color: var(--dc-cream) !important;
    font-family: var(--dc-font-wm) !important;
    font-size: 10px !important;
    font-weight: 700 !important;
    letter-spacing: 0.12em !important;
    text-transform: uppercase !important;
    padding: 6px 12px !important; /* Sized perfectly for wide photo */
    border-radius: 8px !important;
  }

  /* Right-side content body of the kit banner */
  #granolas .dc-shop-kit-in-grid .dc-product-card--kit .dc-product-body--kit,
  #cubinhos .dc-shop-kit-in-grid .dc-product-card--kit .dc-product-body--kit {
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: flex-start !important;
    padding: 16px 32px !important;
    background: #39281a !important;
    border-radius: 0 !important;
    position: relative !important;
    box-sizing: border-box !important;
    height: 132px !important;
    max-height: 132px !important;
  }

  /* Kit label/weight - Scaled up */
  #granolas .dc-shop-kit-in-grid .dc-product-card--kit .dc-product-line,
  #cubinhos .dc-shop-kit-in-grid .dc-product-card--kit .dc-product-line {
    font-family: var(--dc-font-wm) !important;
    font-size: 12px !important; /* Scaled up from 10px */
    font-weight: 700 !important;
    letter-spacing: 0.12em !important;
    text-transform: uppercase !important;
    color: rgba(241, 233, 214, 0.6) !important;
    margin-bottom: 0px !important;
  }

  /* Switch compact titles */
  #granolas .dc-shop-kit-in-grid .dc-product-card--kit .dc-kit-mobile-title,
  #cubinhos .dc-shop-kit-in-grid .dc-product-card--kit .dc-kit-mobile-title {
    display: none !important;
  }
  #granolas .dc-shop-kit-in-grid .dc-product-card--kit .dc-kit-desktop-title,
  #cubinhos .dc-shop-kit-in-grid .dc-product-card--kit .dc-kit-desktop-title {
    display: inline !important;
  }

  /* Kit title (Doce + Salgada) - Scaled up */
  #granolas .dc-shop-kit-in-grid .dc-product-card--kit .dc-product-name,
  #cubinhos .dc-shop-kit-in-grid .dc-product-card--kit .dc-product-name {
    font-family: var(--dc-font-display) !important;
    font-size: 30px !important; /* Scaled up from 26px to be very prominent */
    line-height: 1.05 !important;
    color: var(--dc-cream) !important;
    text-transform: uppercase !important;
    margin: 2px 0 !important;
    height: auto !important;
    width: auto !important;
    white-space: normal !important;
  }

  /* Kit description - Scaled up */
  #granolas .dc-shop-kit-in-grid .dc-product-card--kit .dc-product-desc,
  #cubinhos .dc-shop-kit-in-grid .dc-product-card--kit .dc-product-desc {
    display: block !important;
    font-family: var(--dc-font-body) !important;
    font-size: 14px !important; /* Scaled up from 12px */
    font-weight: 400 !important;
    color: rgba(241, 233, 214, 0.7) !important;
    max-width: 320px !important;
    line-height: 1.35 !important;
    text-transform: none !important;
    margin-bottom: 0 !important;
  }

  /* Right-positioned row containing price and arrow */
  #granolas .dc-shop-kit-in-grid .dc-product-card--kit .dc-product-row,
  #cubinhos .dc-shop-kit-in-grid .dc-product-card--kit .dc-product-row {
    position: absolute !important;
    right: 32px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 20px !important;
    margin: 0 !important;
    width: auto !important;
    white-space: nowrap !important;
  }

  /* Kit Price styling */
  #granolas .dc-shop-kit-in-grid .dc-product-card--kit .dc-product-price,
  #cubinhos .dc-shop-kit-in-grid .dc-product-card--kit .dc-product-price {
    font-family: var(--dc-font-display) !important;
    font-size: 36px !important; /* Outstanding price display */
    color: var(--dc-tropical) !important;
    white-space: nowrap !important;
    display: inline-block !important;
  }

  /* Circular orange arrow button */
  #granolas .dc-shop-kit-in-grid .dc-product-card--kit .dc-kit-arrow,
  #cubinhos .dc-shop-kit-in-grid .dc-product-card--kit .dc-kit-arrow {
    width: 40px !important; /* Sized perfectly for 120px height */
    height: 40px !important;
    border-radius: 50% !important;
    background: var(--dc-tropical) !important;
    color: var(--dc-cream) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: var(--dc-shadow-2) !important;
    transition: transform var(--dc-base) var(--dc-ease), background var(--dc-base) ease !important;
  }
  #granolas .dc-shop-kit-in-grid .dc-product-card--kit:hover .dc-kit-arrow,
  #cubinhos .dc-shop-kit-in-grid .dc-product-card--kit:hover .dc-kit-arrow {
    transform: scale(1.08) !important;
    background: #e07e24 !important;
  }
  #granolas .dc-shop-kit-in-grid .dc-product-card--kit .dc-kit-arrow svg,
  #cubinhos .dc-shop-kit-in-grid .dc-product-card--kit .dc-kit-arrow svg {
    width: 18px !important;
    height: 18px !important;
    stroke: var(--dc-cream) !important;
    stroke-width: 2.5px !important;
  }

  /* Support for non-compact kit banner rendered outside grid in cubinhos (even product count) */
  #cubinhos .dc-kit-banner {
    display: flex !important;
    flex-direction: row !important;
    align-items: stretch !important;
    background: #39281a !important; /* Dark cacao bg */
    border-radius: 32px !important;
    overflow: hidden !important;
    border: none !important;
    box-shadow: var(--dc-shadow-2) !important;
    width: 100% !important;
    height: 132px !important; /* Locked at exactly 132px height */
    max-height: 132px !important;
    padding: 0 !important;
    margin: 16px 0 0 0 !important;
    transition: transform var(--dc-base) var(--dc-ease), box-shadow var(--dc-base) ease !important;
    position: relative !important;
    text-decoration: none !important;
  }
  #cubinhos .dc-kit-banner:hover {
    transform: translateY(-4px) !important;
    box-shadow: var(--dc-shadow-3) !important;
  }

  /* Left-side landscape photo in non-compact kit banner - Matches card above */
  #cubinhos .dc-kit-banner .dc-kit-banner-img {
    flex: 0 0 calc(33.333% - 16px) !important; /* Match exactly the width of column 1! */
    width: calc(33.333% - 16px) !important;
    aspect-ratio: auto !important; /* Override square aspect-ratio */
    height: 132px !important;
    min-height: 132px !important;
    max-height: 132px !important;
    border-radius: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    background: none !important;
    border: none !important;
    position: relative !important;
  }
  #cubinhos .dc-kit-banner .dc-kit-banner-img img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    position: absolute !important;
    inset: 0 !important;
    transition: transform 0.6s var(--dc-ease) !important;
  }
  #cubinhos .dc-kit-banner:hover .dc-kit-banner-img img {
    transform: scale(1.04) !important;
  }

  /* Right-side content body of the non-compact kit banner */
  #cubinhos .dc-kit-banner .dc-kit-banner-body {
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: flex-start !important;
    padding: 16px 32px !important;
    background: #39281a !important;
    border-radius: 0 !important;
    position: relative !important;
    box-sizing: border-box !important;
    height: 132px !important;
    max-height: 132px !important;
  }

  /* Label/weight - Scaled up */
  #cubinhos .dc-kit-banner .dc-kit-banner-label {
    font-family: var(--dc-font-wm) !important;
    font-size: 12px !important; /* Scaled up */
    font-weight: 700 !important;
    letter-spacing: 0.12em !important;
    text-transform: uppercase !important;
    color: rgba(241, 233, 214, 0.6) !important;
    margin-bottom: 0px !important;
  }

  /* Title - Scaled up */
  #cubinhos .dc-kit-banner .dc-kit-banner-title {
    font-family: var(--dc-font-display) !important;
    font-size: 30px !important; /* Scaled up */
    line-height: 1.05 !important;
    color: var(--dc-cream) !important;
    text-transform: uppercase !important;
    margin: 2px 0 !important;
    height: auto !important;
    width: auto !important;
    white-space: normal !important;
  }

  /* Description - Scaled up */
  #cubinhos .dc-kit-banner .dc-kit-banner-desc {
    display: block !important;
    font-family: var(--dc-font-body) !important;
    font-size: 14px !important; /* Scaled up */
    font-weight: 400 !important;
    color: rgba(241, 233, 214, 0.7) !important;
    max-width: 320px !important;
    line-height: 1.35 !important;
    text-transform: none !important;
    margin-bottom: 0 !important;
  }

  /* Right-positioned row containing price and arrow */
  #cubinhos .dc-kit-banner .dc-kit-banner-cta {
    position: absolute !important;
    right: 32px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 20px !important;
    margin: 0 !important;
    width: auto !important;
    padding: 0 !important;
    background: none !important;
    white-space: nowrap !important;
  }

  /* Price styling */
  #cubinhos .dc-kit-banner .dc-kit-price {
    font-family: var(--dc-font-display) !important;
    font-size: 36px !important; /* Outstanding price display */
    color: var(--dc-tropical) !important;
    white-space: nowrap !important;
    display: inline-block !important;
  }

  /* Circular orange arrow button */
  #cubinhos .dc-kit-banner .dc-kit-arrow {
    width: 40px !important; /* Sized perfectly for 132px height */
    height: 40px !important;
    border-radius: 50% !important;
    background: var(--dc-tropical) !important;
    color: var(--dc-cream) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: var(--dc-shadow-2) !important;
    transition: transform var(--dc-base) var(--dc-ease), background var(--dc-base) ease !important;
  }
  #cubinhos .dc-kit-banner:hover .dc-kit-arrow {
    transform: scale(1.08) !important;
    background: #e07e24 !important;
  }
  #cubinhos .dc-kit-banner .dc-kit-arrow svg {
    width: 18px !important;
    height: 18px !important;
    stroke: var(--dc-cream) !important;
    stroke-width: 2.5px !important;
  }
}
