/* ============================================================
   DELICASE — REDESIGN EDITORIAL
   Referências: Asador Etxebarri · Milk & T · Yantra
   ============================================================ */

/* ── TOKENS ── */
:root {
  /* Paleta neutra + vermelho como acento cirúrgico */
  --off-white:  #FAF7F2;
  --warm-white: #F2EDE4;
  --beige:      #E0D5C5;
  --beige-dark: #C8B9A5;
  --sand:       #9E8E7A;
  --brown:      #4A2E18;
  --dark:       #1A0E06;
  --almost-black: #120A02;

  --red:        #9A1515;   /* acento, uso cirúrgico */
  --red-soft:   #B52020;
  --gold:       #C4845A;   /* detalhes quentes */
  --gold-light: #DBA882;

  --text:       #2A1A0A;
  --text-muted: #7A6A58;
  --text-light: rgba(250,247,242,0.75);

  --ff-serif:  'Cormorant Garamond', 'Cormorant', Georgia, serif;
  --ff-ui:     'Montserrat', -apple-system, sans-serif;

  --ease:      cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out:  cubic-bezier(0.0, 0, 0.2, 1);
  --nav-h:     76px;
  --section-pad: clamp(80px, 10vw, 140px);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--ff-ui);
  background: var(--off-white);
  color: var(--text);
  overflow-x: hidden;
  cursor: none;
}
img { display: block; max-width: 100%; height: auto; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── CURSOR ── */
.cursor {
  position: fixed;
  width: 8px; height: 8px;
  background: var(--red);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width .3s var(--ease), height .3s var(--ease), opacity .3s;
  mix-blend-mode: multiply;
}
a:hover ~ .cursor,
button:hover ~ .cursor { width: 40px; height: 40px; }

/* ── LOADER ── */
.loader {
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .6s var(--ease), visibility .6s;
}
.loader.hidden { opacity: 0; visibility: hidden; }
.loader-inner  { text-align: center; }
.loader-logo   { width: 100px; margin: 0 auto 2rem; opacity: 0.9; }
.loader-line   { width: 200px; height: 1px; background: rgba(255,255,255,0.12); overflow: hidden; }
.loader-line span {
  display: block; height: 100%;
  background: var(--gold);
  animation: loaderProgress 1.6s var(--ease) forwards;
}
@keyframes loaderProgress {
  from { width: 0; }
  to   { width: 100%; }
}

/* ── CONTAINER ── */
.container { max-width: 1240px; margin: 0 auto; padding: 0 clamp(1.5rem, 4vw, 3rem); }

/* ── TIPOGRAFIA ── */
.label {
  font-family: var(--ff-ui);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1.2rem;
}
.label--light { color: rgba(220,190,160,0.75); }

.body-large {
  font-family: var(--ff-serif);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.85;
  color: var(--text);
  margin-bottom: 1.5rem;
}
.body-text {
  font-family: var(--ff-ui);
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.9;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}
em { font-style: italic; }

/* ── REVEAL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }

.reveal-line {
  display: block;
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal-line.visible {
  opacity: 1;
  transform: none;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--ff-ui);
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--off-white);
  background: var(--dark);
  border: 1px solid rgba(255,255,255,0.15);
  padding: .85rem 2rem;
  border-radius: 2px;
  transition: background .35s var(--ease), transform .35s var(--ease), box-shadow .35s;
  cursor: none;
}
.btn-primary:hover {
  background: var(--red);
  border-color: var(--red);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(154,21,21,.35);
}

.link-arrow {
  display: inline-flex; align-items: center; gap: .8rem;
  font-family: var(--ff-ui);
  font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(250,247,242,.8);
  transition: gap .3s var(--ease), color .3s;
  cursor: none;
}
.link-arrow svg { width: 28px; transition: transform .3s var(--ease); }
.link-arrow:hover { color: #fff; gap: 1.2rem; }
.link-arrow:hover svg { transform: translateX(4px); }

/* ═══════════════════════════════════════════
   NAV
═══════════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background .5s, backdrop-filter .5s, border-color .5s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(18, 10, 2, 0.92);
  backdrop-filter: blur(16px);
  border-color: rgba(255,255,255,0.06);
}
.nav-inner {
  max-width: 1240px; margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
  height: 100%;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo-img { height: 48px; width: auto; filter: drop-shadow(0 2px 8px rgba(0,0,0,.4)); }
.nav-links { display: flex; align-items: center; gap: 1.8rem; }
.nav-link {
  font-family: var(--ff-ui);
  font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(250,247,242,.7);
  position: relative;
  transition: color .3s;
  cursor: none;
}
.nav-link::after {
  content: '';
  position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .3s var(--ease);
}
.nav-link:hover { color: rgba(250,247,242,1); }
.nav-link:hover::after { width: 100%; }
.nav-link--cta {
  color: var(--gold-light);
  border: 1px solid rgba(196,132,90,.4);
  padding: .5rem 1.2rem;
  border-radius: 2px;
  transition: all .3s var(--ease);
}
.nav-link--cta:hover { background: var(--gold); color: var(--dark); border-color: var(--gold); }
.nav-link--cta::after { display: none; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5.5px;
  background: none; border: none; cursor: none; padding: 4px;
}
.nav-toggle span {
  display: block; width: 26px; height: 1.5px;
  background: rgba(250,247,242,.8);
  transition: transform .35s var(--ease), opacity .25s;
  transform-origin: center;
}
/* Hambúrguer → X */
.nav-toggle.open span:nth-child(1) { transform: translateY(3.75px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { transform: translateY(-3.75px) rotate(-45deg); }

.nav-drawer {
  display: none;
  position: fixed; top: var(--nav-h); left: 0; right: 0; bottom: 0;
  background: var(--almost-black);
  z-index: 999;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s var(--ease);
}
.nav-drawer.open { opacity: 1; pointer-events: all; }
.nav-drawer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.8rem;
  padding: 2rem 1rem;
}
.nav-drawer-link {
  font-family: var(--ff-serif);
  font-size: clamp(1.8rem, 7vw, 3rem);
  font-weight: 300;
  color: rgba(250,247,242,.75);
  transition: color .3s, letter-spacing .3s;
  cursor: none;
  display: block;
  text-align: center;
  letter-spacing: .02em;
}
.nav-drawer-link:hover { color: var(--gold-light); letter-spacing: .06em; }

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh; min-height: 680px;
  display: flex; align-items: flex-end;
  overflow: hidden;
  background: var(--dark);
}
.hero-img-wrap {
  position: absolute; inset: 0; z-index: 0;
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transform: scale(1.08);
  transition: transform 8s ease;
  filter: brightness(.65) saturate(.9);
}
.hero-img.loaded { transform: scale(1.0); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(18,10,2,.95) 0%,
    rgba(18,10,2,.55) 40%,
    rgba(18,10,2,.2)  70%,
    transparent       100%
  );
}
.hero-content {
  position: relative; z-index: 1;
  padding: 0 clamp(1.5rem, 6vw, 8rem) clamp(3rem, 6vw, 6rem);
  max-width: 820px;
}
.hero-label {
  font-family: var(--ff-ui);
  font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  transition-delay: .3s;
}
.hero-title {
  font-family: var(--ff-serif);
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--off-white);
  margin-bottom: 1.8rem;
}
.hero-title .italic { font-style: italic; color: var(--gold-light); }
.hero-title span:nth-child(2) { transition-delay: .15s; }
.hero-title span:nth-child(3) { transition-delay: .3s; }
.hero-sub {
  font-family: var(--ff-ui);
  font-size: .88rem; font-weight: 300;
  line-height: 1.8;
  color: rgba(250,247,242,.65);
  margin-bottom: 2.5rem;
  transition-delay: .45s;
}
.hero-actions {
  display: flex; align-items: center; gap: 2.5rem; flex-wrap: wrap;
  transition-delay: .6s;
}
.hero-scroll-indicator {
  position: absolute;
  right: clamp(1.5rem, 4vw, 3rem);
  bottom: clamp(2rem, 4vw, 3.5rem);
  z-index: 1;
  display: flex; flex-direction: column;
  align-items: center; gap: .8rem;
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2.5s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: .6; }
  50%       { transform: scaleY(.6); opacity: 1; }
}
.hero-scroll-indicator span {
  font-family: var(--ff-ui);
  font-size: .62rem; letter-spacing: .22em; text-transform: uppercase;
  color: rgba(250,247,242,.5);
}
.hero-deco-text {
  position: absolute; bottom: -2vw; right: -1vw; z-index: 0;
  font-family: var(--ff-serif);
  font-size: clamp(8rem, 18vw, 22rem);
  font-weight: 700; letter-spacing: -.02em;
  color: rgba(255,255,255,.025);
  pointer-events: none; user-select: none;
  white-space: nowrap;
}

/* ═══════════════════════════════════════════
   MARCA
═══════════════════════════════════════════ */
.marca {
  padding: var(--section-pad) 0;
  background: var(--off-white);
}
.marca-header {
  margin-bottom: 5rem;
}
.marca-title {
  font-family: var(--ff-serif);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 300; line-height: 1.15;
  color: var(--text);
  max-width: 700px;
}
.marca-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: start;
}
.marca-copy { padding-top: 1rem; }
.marca-linhas {
  display: flex; gap: .75rem; flex-wrap: wrap;
  margin-top: 2rem;
}
.linha-pill {
  font-family: var(--ff-ui);
  font-size: .68rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  padding: .45rem 1.2rem;
  border-radius: 2px;
  border: 1px solid;
}
.linha-pill--func { color: var(--red);    border-color: rgba(154,21,21,.3);  background: rgba(154,21,21,.05); }
.linha-pill--veg  { color: var(--brown);  border-color: rgba(74,46,24,.3);   background: rgba(74,46,24,.05); }
.linha-pill--lc   { color: var(--sand);   border-color: rgba(158,142,122,.4); background: rgba(158,142,122,.06); }

.marca-visual { position: relative; }
.marca-img-main {
  width: 100%; aspect-ratio: 3/4;
  overflow: hidden; border-radius: 2px;
  box-shadow: 0 30px 80px rgba(0,0,0,.15);
}
.marca-img-main img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; transform: scale(1.06); }
.marca-img-accent {
  position: absolute;
  bottom: -3rem; left: -2.5rem;
  width: 45%; aspect-ratio: 1;
  overflow: hidden; border-radius: 2px;
  border: 4px solid var(--off-white);
  box-shadow: 0 16px 48px rgba(0,0,0,.18);
}
.marca-img-accent img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.1); }
.marca-quote {
  position: absolute; top: 2rem; right: -1.5rem;
  background: var(--dark);
  padding: 1.8rem;
  max-width: 220px;
  z-index: 2;
}
.marca-quote blockquote {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: .95rem; line-height: 1.7;
  color: rgba(250,247,242,.75);
}

/* ═══════════════════════════════════════════
   LINHAS
═══════════════════════════════════════════ */
.linhas {
  position: relative;
  padding: var(--section-pad) 0;
  overflow: hidden;
  background: var(--dark);
}
.linhas-bg { position: absolute; inset: 0; z-index: 0; }
.linhas-bg-img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 25%;
  opacity: .18; filter: grayscale(.5);
  transform: scale(1.06);
}
.linhas-bg-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(18,10,2,.9) 0%, rgba(18,10,2,.7) 100%);
}
.linhas-inner { position: relative; z-index: 1; }
.linhas-header { margin-bottom: 5rem; }
.linhas-title {
  font-family: var(--ff-serif);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 300; line-height: 1.15;
  color: var(--off-white);
}
.linhas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.08);
}
.linha-card {
  background: rgba(18,10,2,.7);
  padding: 3rem 2.5rem;
  border-left: none;
  transition: background .4s var(--ease);
  position: relative;
}
.linha-card::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 1px; height: 0;
  background: var(--gold);
  transition: height .6s var(--ease);
}
.linha-card:hover { background: rgba(30,16,6,.85); }
.linha-card:hover::before { height: 100%; }
.linha-num {
  display: block;
  font-family: var(--ff-serif);
  font-size: 3.5rem; font-weight: 300;
  color: rgba(196,132,90,.25);
  line-height: 1;
  margin-bottom: 1.5rem;
}
.linha-card h3 {
  font-family: var(--ff-serif);
  font-size: 1.6rem; font-weight: 400;
  color: var(--off-white);
  margin-bottom: 1.2rem;
}
.linha-card p {
  font-family: var(--ff-ui);
  font-size: .88rem; font-weight: 300;
  line-height: 1.85;
  color: rgba(250,247,242,.55);
}

/* ═══════════════════════════════════════════
   ANA PAULA
═══════════════════════════════════════════ */
.ana-paula {
  padding: var(--section-pad) 0;
  background: var(--warm-white);
}
.ap-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 8rem);
  align-items: start;
}
.ap-visual { position: relative; padding-bottom: 3rem; }
.ap-img-wrap {
  width: 100%; aspect-ratio: 3/4;
  overflow: hidden; border-radius: 2px;
  background: var(--beige);
  box-shadow: 0 24px 64px rgba(0,0,0,.12);
}
.ap-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 1.5rem;
  background: var(--beige);
}
.ap-placeholder-logo { width: 100px; opacity: .35; }
.ap-placeholder p {
  font-family: var(--ff-ui);
  font-size: .78rem; font-weight: 500;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--sand);
}
.ap-img-deco {
  position: absolute;
  bottom: 0; right: -2rem;
  width: 48%;
  aspect-ratio: 1;
  overflow: hidden; border-radius: 2px;
  border: 4px solid var(--warm-white);
  box-shadow: 0 16px 40px rgba(0,0,0,.12);
}
.ap-img-deco img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.1); }

.ap-copy { padding-top: 1rem; }
.ap-title {
  font-family: var(--ff-serif);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 300; line-height: 1;
  color: var(--text);
  margin-bottom: .5rem;
}
.ap-subtitle {
  font-family: var(--ff-ui);
  font-size: .75rem; font-weight: 400;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2.5rem;
}
.ap-signature {
  display: flex; align-items: center; gap: 1.5rem;
  margin-top: 2.5rem; padding-top: 2rem;
  border-top: 1px solid var(--beige);
}
.ap-sig-line { flex: 1; height: 1px; background: var(--beige-dark); }
.ap-signature span {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--text-muted);
  white-space: nowrap;
}

/* ═══════════════════════════════════════════
   SERVIÇOS
═══════════════════════════════════════════ */
.servicos {
  padding: var(--section-pad) 0;
  background: var(--off-white);
}
.servicos-header { margin-bottom: 6rem; }
.servicos-title {
  font-family: var(--ff-serif);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 300; line-height: 1.2;
  color: var(--text);
  max-width: 680px;
  margin-bottom: 1.5rem;
}
.servicos-sub {
  font-family: var(--ff-ui);
  font-size: .9rem; font-weight: 300;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 500px;
}

.servicos-list { display: flex; flex-direction: column; gap: 0; }

.servico-item {
  display: grid;
  grid-template-columns: 60px 1fr 1fr;
  gap: 3rem;
  align-items: start;
  padding: 4rem 0;
  border-top: 1px solid var(--beige);
}
.servico-item--rev { }

.servico-num {
  font-family: var(--ff-serif);
  font-size: 3rem; font-weight: 300;
  color: var(--beige-dark);
  line-height: 1;
  padding-top: .5rem;
}
.servico-content h3 {
  font-family: var(--ff-serif);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 400;
  color: var(--text);
  margin-bottom: .5rem;
}
.servico-tag {
  font-family: var(--ff-ui);
  font-size: .68rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  display: block;
}
.servico-content p {
  font-family: var(--ff-ui);
  font-size: .88rem; font-weight: 300;
  line-height: 1.85;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.servico-features {
  display: flex; flex-wrap: wrap; gap: .6rem;
}
.servico-features li {
  font-family: var(--ff-ui);
  font-size: .68rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--sand);
  padding: .35rem .9rem;
  border: 1px solid var(--beige);
  border-radius: 2px;
}

.servico-img {
  overflow: hidden; border-radius: 2px;
  aspect-ratio: 4/5;
  box-shadow: 0 16px 48px rgba(0,0,0,.1);
}
.servico-img img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 20%;
  transform: scale(1.08);
}

/* ═══════════════════════════════════════════
   PRODUTOS
═══════════════════════════════════════════ */
.produtos {
  padding: var(--section-pad) 0;
  background: var(--warm-white);
}
.produtos-header { margin-bottom: 4rem; }
.produtos-title {
  font-family: var(--ff-serif);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 300; line-height: 1.15;
  color: var(--text);
}

.produtos-sub {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--sand);
  margin-top: .8rem;
}

.produtos-filtros {
  display: flex; gap: .5rem; flex-wrap: wrap;
  margin-bottom: 3rem;
}
.filtro-btn {
  font-family: var(--ff-ui);
  font-size: .7rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  padding: .55rem 1.4rem;
  border-radius: 2px;
  border: 1px solid var(--beige-dark);
  background: transparent;
  color: var(--sand);
  cursor: none;
  transition: all .3s var(--ease);
}
.filtro-btn:hover { border-color: var(--text); color: var(--text); }
.filtro-btn.active { background: var(--dark); border-color: var(--dark); color: var(--off-white); }

.produtos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.produto-card {
  background: var(--off-white);
  border-radius: 2px;
  overflow: hidden;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
  cursor: none;
}
.produto-card:hover { transform: translateY(-6px); box-shadow: 0 24px 64px rgba(0,0,0,.12); }

.produto-card-img {
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--beige);
}
.produto-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transform: scale(1.1);
  transition: transform .7s var(--ease);
}
.produto-card:hover .produto-card-img img { transform: scale(1.15); }

.produto-card-body { padding: 1.5rem 1.5rem 1.8rem; }
.produto-card-tag {
  font-family: var(--ff-ui);
  font-size: .65rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .5rem;
  display: block;
}
.produto-card-name {
  font-family: var(--ff-serif);
  font-size: 1.45rem; font-weight: 400;
  color: var(--text);
  margin-bottom: .6rem;
}
.produto-card-desc {
  font-family: var(--ff-ui);
  font-size: .82rem; font-weight: 300;
  line-height: 1.7;
  color: var(--text-muted);
}
.produto-card-badge {
  display: inline-block;
  margin-top: 1rem;
  font-family: var(--ff-ui);
  font-size: .62rem; font-weight: 600;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--red);
  border: 1px solid rgba(154,21,21,.3);
  padding: .28rem .7rem;
  border-radius: 2px;
}

/* ═══════════════════════════════════════════
   EBOOKS
═══════════════════════════════════════════ */
.ebooks {
  padding: var(--section-pad) 0;
  background: var(--almost-black);
}
.ebooks-header { margin-bottom: 4rem; }
.ebooks-title {
  font-family: var(--ff-serif);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 300; line-height: 1.15;
  color: var(--off-white);
}
.ebooks-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.ebook-card {
  border-radius: 4px;
  overflow: hidden;
  background: #1e1206;
  border: 1px solid rgba(255,255,255,.08);
  transition: transform .4s var(--ease), border-color .4s;
}
.ebook-card:hover {
  transform: translateY(-6px);
  border-color: rgba(196,132,90,.5);
}

/* Capa com imagem de fundo */
.ebook-cover {
  position: relative;
  height: 300px;
  background-size: cover;
  background-position: center 20%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
}
.ebook-cover-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,4,1,.95) 0%, rgba(10,4,1,.4) 60%, transparent 100%);
}
.ebook-badge {
  position: absolute; top: 1.2rem; left: 1.2rem;
  background: var(--red);
  color: #fff;
  font-family: var(--ff-ui);
  font-size: .58rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  padding: .3rem .85rem;
  border-radius: 2px;
  z-index: 1;
}
.ebook-title {
  font-family: var(--ff-serif);
  font-size: clamp(1.6rem, 2.2vw, 2rem);
  font-weight: 400; line-height: 1.2;
  color: #fff;
  position: relative; z-index: 1;
}

/* Corpo */
.ebook-body { padding: 1.8rem; }
.ebook-desc {
  font-family: var(--ff-ui);
  font-size: .84rem; font-weight: 300;
  line-height: 1.8;
  color: rgba(250,247,242,.5);
  margin-bottom: 1.8rem;
}

/* Botão balão */
.ebook-cta {
  display: block;
  text-align: center;
  background: var(--red);
  color: #fff;
  font-family: var(--ff-ui);
  font-size: .72rem; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase;
  padding: .95rem 1.5rem;
  border-radius: 50px;
  position: relative;
  transition: background .3s, transform .3s var(--ease), box-shadow .3s;
  cursor: none;
}
.ebook-cta::after {
  content: '';
  position: absolute;
  bottom: -9px; left: 50%; transform: translateX(-50%);
  width: 0; height: 0;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-top: 10px solid var(--red);
  transition: border-top-color .3s;
}
.ebook-cta:hover {
  background: #b52020;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(154,21,21,.5);
}
.ebook-cta:hover::after { border-top-color: #b52020; }

/* ═══════════════════════════════════════════
   INGREDIENTES
═══════════════════════════════════════════ */
.ingredientes {
  padding: var(--section-pad) 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.ingredientes::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(196,132,90,.06) 1px, transparent 1px);
  background-size: 32px 32px;
}
.ing-header { margin-bottom: 4rem; position: relative; z-index: 1; }
.ing-title {
  font-family: var(--ff-serif);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 300; line-height: 1.2;
  color: var(--off-white);
  max-width: 600px;
  margin-bottom: 1.2rem;
}
.ing-sub {
  font-family: var(--ff-ui);
  font-size: .88rem; font-weight: 300;
  line-height: 1.8;
  color: rgba(250,247,242,.5);
  max-width: 540px;
}
.ing-tags {
  position: relative; z-index: 1;
  display: flex; flex-wrap: wrap; gap: .75rem;
}
.ing-tags span {
  font-family: var(--ff-ui);
  font-size: .72rem; font-weight: 400;
  letter-spacing: .08em;
  color: rgba(250,247,242,.65);
  border: 1px solid rgba(255,255,255,.1);
  padding: .55rem 1.2rem;
  border-radius: 2px;
  transition: all .3s var(--ease);
  cursor: default;
}
.ing-tags span:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  background: rgba(196,132,90,.08);
}

/* ═══════════════════════════════════════════
   GALERIA
═══════════════════════════════════════════ */
.galeria {
  padding: var(--section-pad) 0 0;
  background: var(--off-white);
}
.galeria-header { margin-bottom: 4rem; }
.galeria-title {
  font-family: var(--ff-serif);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 300; line-height: 1.2;
  color: var(--text);
}
.galeria-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 280px;
  grid-auto-flow: dense;
  gap: .5rem;
}
.galeria-item {
  overflow: hidden; border-radius: 2px;
  position: relative;
  cursor: none;
  background: var(--beige);
}
.galeria-item--wide { grid-column: span 2; }
.galeria-item--tall { grid-row: span 2; }
.galeria-item img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 20%;
  transform: scale(1.08);
  transition: transform .7s var(--ease);
  filter: brightness(.88) saturate(.85);
}
.galeria-item:hover img { transform: scale(1.14); filter: brightness(.75) saturate(.7); }

.galeria-item-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: flex-end;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(18,10,2,.7) 0%, transparent 50%);
  opacity: 0;
  transition: opacity .4s;
}
.galeria-item:hover .galeria-item-overlay { opacity: 1; }
.galeria-item-overlay span {
  font-family: var(--ff-ui);
  font-size: .7rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold-light);
}

/* ═══════════════════════════════════════════
   CONTATO
═══════════════════════════════════════════ */
.contato {
  padding: var(--section-pad) 0;
  background: var(--almost-black);
  position: relative;
  overflow: hidden;
}
.contato::before {
  content: 'DeliCase';
  position: absolute; bottom: -4vw; right: -2vw;
  font-family: var(--ff-serif);
  font-size: clamp(8rem, 20vw, 24rem);
  font-weight: 700;
  color: rgba(255,255,255,.02);
  pointer-events: none; user-select: none;
  white-space: nowrap;
}
.contato-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr auto;
  gap: 5rem;
  align-items: start;
  position: relative; z-index: 1;
}
.contato-title {
  font-family: var(--ff-serif);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300; line-height: 1.1;
  color: var(--off-white);
  margin-bottom: 1.5rem;
}
.contato-sub {
  font-family: var(--ff-ui);
  font-size: .88rem; font-weight: 300;
  line-height: 1.8;
  color: rgba(250,247,242,.5);
}

.contato-links { display: flex; flex-direction: column; gap: 0; }
.contato-link {
  display: flex; align-items: center; gap: 1.5rem;
  padding: 1.8rem 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: all .35s var(--ease);
  cursor: none;
}
.contato-link:first-child { border-top: 1px solid rgba(255,255,255,.07); }
.contato-link:hover { padding-left: .75rem; }
.contato-link-icon {
  width: 44px; height: 44px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: border-color .3s, background .3s;
}
.contato-link-icon svg { width: 18px; height: 18px; color: rgba(250,247,242,.6); transition: color .3s; }
.contato-link:hover .contato-link-icon { border-color: var(--gold); background: rgba(196,132,90,.1); }
.contato-link:hover .contato-link-icon svg { color: var(--gold); }
.contato-link-info { flex: 1; }
.contato-link-label {
  display: block;
  font-family: var(--ff-ui);
  font-size: .62rem; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase;
  color: rgba(250,247,242,.35);
  margin-bottom: .3rem;
}
.contato-link-value {
  display: block;
  font-family: var(--ff-serif);
  font-size: 1.1rem; font-weight: 300;
  color: rgba(250,247,242,.8);
}
.contato-link-arrow {
  width: 28px; flex-shrink: 0;
  color: rgba(250,247,242,.25);
  transition: color .3s, transform .3s var(--ease);
}
.contato-link:hover .contato-link-arrow { color: var(--gold); transform: translateX(4px); }

.contato-logo-wrap { display: flex; align-items: center; justify-content: center; }
.contato-logo { width: 140px; opacity: .5; filter: brightness(1.2); }

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.footer {
  background: var(--dark);
  padding: 2rem 0;
  border-top: 1px solid rgba(255,255,255,.05);
}
.footer-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
.footer-copy {
  font-family: var(--ff-ui);
  font-size: .68rem; font-weight: 400;
  letter-spacing: .06em;
  color: rgba(250,247,242,.3);
}
.footer-tag {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: .9rem;
  color: var(--gold);
  opacity: .6;
}
.footer-insta {
  font-family: var(--ff-ui);
  font-size: .68rem; font-weight: 600;
  letter-spacing: .12em;
  color: rgba(250,247,242,.4);
  transition: color .3s;
  cursor: none;
}
.footer-insta:hover { color: var(--gold-light); }

/* ═══════════════════════════════════════════
   FAB
═══════════════════════════════════════════ */
.fab {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 500;
  width: 54px; height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,.4);
  transition: transform .3s var(--ease), box-shadow .3s;
  cursor: none;
}
.fab:hover { transform: scale(1.1); box-shadow: 0 10px 36px rgba(37,211,102,.5); }
.fab svg { width: 26px; height: 26px; color: #fff; }

/* Parallax images */
.parallax-img {
  width: 100%; height: 100%;
  object-fit: cover;
  will-change: transform;
}

/* ═══════════════════════════════════════════
   ANA PAULA — FOTO REAL
═══════════════════════════════════════════ */
.ap-real-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* ═══════════════════════════════════════════
   NA MÍDIA
═══════════════════════════════════════════ */
.midia {
  padding: var(--section-pad) 0;
  background: var(--almost-black);
  position: relative;
  overflow: hidden;
}
.midia::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(196,132,90,.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.midia-header { margin-bottom: 4rem; position: relative; z-index: 1; }
.midia-title {
  font-family: var(--ff-serif);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--off-white);
}
.midia-destaques {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
  margin-bottom: 4rem;
  position: relative; z-index: 1;
}
.midia-card {
  border-radius: 2px;
  overflow: hidden;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  transition: border-color .4s var(--ease);
}
.midia-card:hover { border-color: rgba(196,132,90,.3); }
.midia-card-img {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--dark);
}
.midia-card-img img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  filter: brightness(.75) saturate(.8);
  transition: filter .5s, transform .6s var(--ease);
  transform: scale(1.04);
}
.midia-card:hover .midia-card-img img { filter: brightness(.6); transform: scale(1.08); }
.midia-card-play {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .3s;
}
.midia-card:hover .midia-card-play { opacity: 1; }
.midia-card-play svg { width: 64px; height: 64px; color: rgba(250,247,242,.9); filter: drop-shadow(0 4px 16px rgba(0,0,0,.5)); }
.midia-card-badge {
  position: absolute; top: 1rem; left: 1rem;
  display: flex; align-items: center; gap: .5rem;
  background: rgba(18,10,2,.75); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.1);
  padding: .4rem .9rem; border-radius: 2px;
  font-family: var(--ff-ui); font-size: .65rem; font-weight: 600;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--gold-light);
}
.midia-card-badge svg { width: 14px; height: 14px; }
.midia-card-body { padding: 1.8rem 2rem; }
.midia-card-programa {
  display: block;
  font-family: var(--ff-ui); font-size: .65rem; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: .6rem;
}
.midia-card-body h3 {
  font-family: var(--ff-serif); font-size: 1.5rem; font-weight: 400;
  color: var(--off-white); margin-bottom: .8rem;
}
.midia-card-body p {
  font-family: var(--ff-ui); font-size: .85rem; font-weight: 300;
  line-height: 1.8; color: rgba(250,247,242,.5);
}
.midia-podcast-wrap { height: 100%; display: flex; flex-direction: column; }
.midia-podcast-header {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.8rem 2rem 1.2rem;
}
.midia-podcast-icon {
  width: 44px; height: 44px;
  border: 1px solid rgba(196,132,90,.4); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.midia-podcast-icon svg { width: 20px; height: 20px; color: var(--gold); }
.midia-podcast-label {
  display: block; font-family: var(--ff-ui); font-size: .62rem; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin-bottom: .2rem;
}
.midia-podcast-title {
  font-family: var(--ff-serif); font-size: 1.1rem; font-weight: 400; color: var(--off-white);
}
.midia-video {
  width: 100%; flex: 1; min-height: 240px;
  object-fit: cover; background: #000; display: block; outline: none;
}
.midia-stats {
  display: flex; align-items: center; justify-content: center;
  gap: 3rem; flex-wrap: wrap;
  padding: 3rem 0 0;
  border-top: 1px solid rgba(255,255,255,.07);
  position: relative; z-index: 1;
}
.midia-stat { text-align: center; }
.midia-stat strong {
  display: block; font-family: var(--ff-serif);
  font-size: 1.6rem; font-weight: 400;
  color: var(--gold-light); margin-bottom: .3rem;
}
.midia-stat span {
  font-family: var(--ff-ui); font-size: .65rem; font-weight: 500;
  letter-spacing: .15em; text-transform: uppercase; color: rgba(250,247,242,.35);
}
.midia-stat-div { width: 1px; height: 40px; background: rgba(255,255,255,.08); }

.galeria-nota {
  text-align: center;
  font-family: var(--ff-ui); font-size: .75rem;
  letter-spacing: .1em; color: var(--sand);
  margin-top: 2rem; padding-bottom: var(--section-pad);
}
.galeria-nota a {
  color: var(--gold);
  border-bottom: 1px solid rgba(196,132,90,.4);
  padding-bottom: 1px; transition: border-color .3s; cursor: none;
}
.galeria-nota a:hover { border-color: var(--gold); }

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 1100px) {
  .contato-inner { grid-template-columns: 1fr 1fr; }
  .contato-logo-wrap { display: none; }
  .marca-body { gap: 3rem; }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-drawer { display: flex; }
  .ebooks-grid { grid-template-columns: 1fr; }
  .linhas-grid { grid-template-columns: 1fr; gap: 1px; }
  .marca-body { grid-template-columns: 1fr; }
  .marca-img-accent { display: none; }
  .marca-quote { position: static; max-width: 100%; margin-top: 1.5rem; }
  .ap-grid { grid-template-columns: 1fr; }
  .ap-img-deco { display: none; }
  .servico-item { grid-template-columns: 48px 1fr; gap: 2rem; }
  .servico-img { display: none; }
  .midia-destaques { grid-template-columns: 1fr; }
  .galeria-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; }
  .galeria-item--tall { grid-row: span 1; }
  .contato-inner { grid-template-columns: 1fr; gap: 3rem; }
  .midia-stats { gap: 2rem; }
  .midia-stat-div { display: none; }
}

@media (max-width: 600px) {
  .hero-title  { font-size: clamp(2.4rem, 9vw, 3.5rem); }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .produtos-grid { grid-template-columns: 1fr; }
  .ebook-cover { height: 220px; }
  .ebook-body { padding: 1.4rem; }
  .galeria-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .galeria-item--wide { grid-column: span 2; }
  .galeria-item--tall { grid-row: span 1; }
  .footer-inner { flex-direction: column; text-align: center; }
  .servico-item { grid-template-columns: 1fr; }
  .servico-num { display: none; }
  .midia-destaques { grid-template-columns: 1fr; }
}
