:root {
  --veeta-black:   #050505;
  --veeta-wine:    #6B1A28;
  --veeta-maroon:  #390007;
  --veeta-cream:   #EAE4DA;
  --veeta-text:    #C8C0B4;
  --veeta-muted:   #5a554e;
  --veeta-line:    rgba(255,255,255,0.05);
  --veeta-border:  rgba(107,26,40,0.3);
  --page-bg:       #F2EDE5;
  --page-bg-alt:   #EAE4DA;
  --page-bg-card:  #E8E1D6;
  --body-text:     #1C1410;
  --body-text-sec: #3D352D;
  --label-col:     #6B5E52;
  --divider:       rgba(28,20,16,0.09);
  --divider-wine:  rgba(107,26,40,0.22);
  --body-size:     clamp(21px, 1.9vw, 25px);
  --body-lh:       1.95;
  --label-size:    14px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--page-bg);
  color: var(--body-text);
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: var(--body-size);
  line-height: var(--body-lh);
  overflow-x: hidden;
}

body::after {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 9999;
  mix-blend-mode: multiply; opacity: 0.03;
}

::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--page-bg); }
::-webkit-scrollbar-thumb { background: var(--veeta-wine); }
::selection { background: var(--veeta-wine); color: var(--veeta-cream); }

.label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: var(--label-size);
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--label-col);
}
.label--wine { color: var(--veeta-wine); }

h1, h2, h3, h4 { font-family: 'Playfair Display', serif; font-weight: 700; line-height: 1.15; }
section { position: relative; overflow: hidden; }

.sec-number {
  font-family: 'Playfair Display', serif; font-weight: 900;
  font-size: clamp(80px, 12vw, 160px);
  color: rgba(28,20,16,0.04);
  position: absolute; top: 40px; right: 40px;
  line-height: 1; pointer-events: none; user-select: none;
}

/* ── PROGRESS BAR ── */
#veeta-progress {
  position: fixed; top: 0; left: 0;
  height: 2px; width: 0%;
  background: var(--veeta-wine);
  z-index: 10000; transition: width 0.1s linear;
}

/* ════════════════════════════════════
   LOGO
════════════════════════════════════ */
.logo {
  font-family: 'Playfair Display', serif;
  font-weight: 900; font-size: clamp(22px, 3vw, 30px);
  letter-spacing: 0.35em; color: var(--veeta-cream);
  text-decoration: none; text-transform: uppercase;
}
.logo span { color: var(--veeta-wine); }
.logo--dark { color: var(--body-text); }
.logo--dark span { color: var(--veeta-wine); }

/* ════════════════════════════════════
   [01] HERO — INDEX
════════════════════════════════════ */
#hero {
  min-height: 100svh;
  display: flex; flex-direction: column;
  background: var(--veeta-black);
  position: relative;
}

.hero__nav {
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 36px 60px;
  border-bottom: 1px solid var(--veeta-line);
  position: relative; z-index: 10;
}

.hero__nav-links { display: flex; gap: 40px; list-style: none; }
.hero__nav-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600; font-size: var(--label-size);
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--veeta-muted); text-decoration: none; transition: color 0.3s;
}
.hero__nav-links a:hover { color: var(--veeta-cream); }

.hero__body {
  flex: 1; display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 80px 60px 100px; gap: 80px;
  position: relative; z-index: 5;
}

.hero__text-block { position: relative; }

.hero__eyebrow { display: flex; align-items: center; gap: 16px; margin-bottom: 40px; }
.hero__eyebrow-line { display: inline-block; width: 40px; height: 1px; background: var(--veeta-wine); }

.hero__heading {
  font-size: clamp(42px, 5.5vw, 82px); font-weight: 900;
  color: var(--veeta-cream); margin-bottom: 32px; letter-spacing: -0.02em;
}
.hero__heading em { font-style: italic; color: var(--veeta-wine); }

.hero__tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(19px, 1.9vw, 23px); font-weight: 400;
  color: rgba(234,228,218,0.75); line-height: 1.85;
  max-width: 440px; margin-bottom: 56px;
}

.hero__cta { display: inline-flex; align-items: center; gap: 16px; text-decoration: none; color: var(--veeta-cream); }
.hero__cta-text { font-family: 'Barlow Condensed', sans-serif; font-size: var(--label-size); font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase; }
.hero__cta-arrow { width: 48px; height: 1px; background: var(--veeta-wine); position: relative; transition: width 0.4s; }
.hero__cta-arrow::after { content: ''; position: absolute; right: 0; top: -3px; width: 7px; height: 7px; border-right: 1px solid var(--veeta-wine); border-bottom: 1px solid var(--veeta-wine); transform: rotate(-45deg); }
.hero__cta:hover .hero__cta-arrow { width: 72px; }

.hero__image-frame {
  position: relative; height: clamp(400px, 60vh, 620px);
  background: linear-gradient(160deg, #1a0a0d 0%, #0d0507 60%, #050505 100%);
  border: 1px solid var(--veeta-border); overflow: hidden;
}
.hero__image-frame img { width: 100%; height: 100%; object-fit: cover; filter: sepia(15%) contrast(1.1) brightness(0.7); }
.hero__image-frame::after { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at center, transparent 40%, rgba(5,5,5,0.7) 100%); pointer-events: none; }
.hero__image-placeholder { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px; color: var(--veeta-muted); }
.hero__image-placeholder p { font-family: 'Barlow Condensed', sans-serif; font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; opacity: 0.4; }
.hero__image-label { position: absolute; bottom: 24px; left: 24px; z-index: 2; font-family: 'Barlow Condensed', sans-serif; font-size: 8px; letter-spacing: 0.25em; text-transform: uppercase; color: rgba(234,228,218,0.3); }
.hero__botanical { position: absolute; top: -20px; right: -20px; width: 160px; height: 160px; opacity: 0.06; pointer-events: none; }

.hero__scroll { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 12px; z-index: 10; }
.hero__scroll-label { font-family: 'Barlow Condensed', sans-serif; font-size: 8px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--veeta-muted); }
.hero__scroll-line { width: 1px; height: 48px; background: linear-gradient(to bottom, var(--veeta-wine), transparent); animation: scrollPulse 2s ease-in-out infinite; }
@keyframes scrollPulse { 0%, 100% { opacity: 0.4; } 50% { opacity: 1; } }

.hero__wave { position: absolute; bottom: -1px; left: 0; right: 0; height: 72px; z-index: 8; pointer-events: none; }
.hero__wave svg { display: block; width: 100%; height: 100%; fill: var(--page-bg); }

/* ════════════════════════════════════
   [02] SOBRE
════════════════════════════════════ */
#sobre { background: var(--page-bg); padding: 140px 60px; }

.sobre__inner {
  display: grid; grid-template-columns: 1fr 1px 1fr;
  gap: 0 80px; align-items: start;
  max-width: 1300px; margin: 0 auto; position: relative;
}

.sobre__divider { background: var(--veeta-wine); opacity: 0.3; align-self: stretch; }

.sobre__image-frame {
  width: 100%; aspect-ratio: 3/4;
  background: linear-gradient(140deg, #cfc4b8 0%, #bfb3a6 100%);
  border: 1px solid var(--divider-wine);
  position: relative; overflow: hidden;
}
.sobre__image-frame img { width: 100%; height: 100%; object-fit: cover; filter: sepia(10%) contrast(1.05); }
.sobre__image-frame::before { content: ''; position: absolute; inset: 0; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E"); mix-blend-mode: multiply; opacity: 0.09; }
.sobre__image-inner { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; color: var(--veeta-muted); opacity: 0.45; }
.sobre__image-inner p { font-family: 'Barlow Condensed', sans-serif; font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; }

.sobre__section-tag { display: flex; align-items: center; gap: 16px; margin-bottom: 32px; }
.sobre__heading { font-size: clamp(36px, 4vw, 58px); font-weight: 900; color: var(--body-text); letter-spacing: -0.02em; margin-bottom: 48px; }
.sobre__heading em { font-style: italic; color: var(--veeta-wine); display: block; }
.sobre__body { font-size: clamp(19px, 1.6vw, 22px); font-weight: 400; color: var(--body-text-sec); line-height: var(--body-lh); }
.sobre__body p + p { margin-top: 28px; }
.sobre__body strong { color: var(--body-text); font-weight: 600; }

.sobre__signature { margin-top: 56px; padding-top: 40px; border-top: 1px solid var(--divider); display: flex; align-items: center; gap: 24px; }
.sobre__sig-name { font-family: 'Playfair Display', serif; font-style: italic; font-size: 24px; color: var(--body-text); }
.sobre__sig-role { font-family: 'Barlow Condensed', sans-serif; font-size: var(--label-size); letter-spacing: 0.2em; text-transform: uppercase; color: var(--label-col); }

/* ════════════════════════════════════
   [03] FEED DE POSTS
════════════════════════════════════ */
#feed { background: var(--page-bg-alt); padding: 120px 60px 140px; border-top: 1px solid var(--divider); }

.feed__header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 80px; padding-bottom: 40px; border-bottom: 1px solid var(--divider);
  max-width: 1300px; margin-left: auto; margin-right: auto;
}

.feed__title { font-size: clamp(32px, 4vw, 52px); font-weight: 900; color: var(--body-text); }
.feed__title em { font-style: italic; color: var(--veeta-wine); }

.feed__cats { display: flex; gap: 24px; list-style: none; }
.feed__cats li a { font-family: 'Barlow Condensed', sans-serif; font-size: var(--label-size); font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--label-col); text-decoration: none; transition: color 0.3s; }
.feed__cats li a:hover, .feed__cats li a.active { color: var(--veeta-wine); }

.feed__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; max-width: 1300px; margin: 0 auto; }

.post-card {
  background: var(--page-bg-card); cursor: pointer; overflow: hidden;
  border: 1px solid var(--divider); transition: border-color 0.4s, box-shadow 0.4s;
  text-decoration: none; display: block; position: relative;
}
.post-card:hover { border-color: var(--divider-wine); box-shadow: 0 4px 24px rgba(107,26,40,0.08); }
.post-card::before { content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 100%; background: var(--veeta-wine); transform: scaleY(0); transform-origin: bottom; transition: transform 0.4s ease; z-index: 2; }
.post-card:hover::before { transform: scaleY(1); }

.post-card__thumb { width: 100%; aspect-ratio: 4/5; background: linear-gradient(160deg, #cfc3b7 0%, #bdb0a3 100%); position: relative; overflow: hidden; }
.post-card__thumb img { width: 100%; height: 100%; object-fit: cover; filter: sepia(8%) contrast(1.05); transition: transform 0.6s ease; }
.post-card:hover .post-card__thumb img { transform: scale(1.04); }
.post-card__thumb::before { content: ''; position: absolute; inset: 0; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='150' height='150'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4'/%3E%3C/filter%3E%3Crect width='150' height='150' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E"); mix-blend-mode: multiply; opacity: 0.09; z-index: 1; }
.post-card__thumb-inner { position: absolute; inset: 0; z-index: 1; display: flex; align-items: center; justify-content: center; color: var(--veeta-muted); opacity: 0.35; }

.post-card__meta { padding: 24px 28px 32px; }
.post-card__cat { font-family: 'Barlow Condensed', sans-serif; font-size: var(--label-size); font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase; color: var(--veeta-wine); margin-bottom: 12px; display: block; }
.post-card__title { font-family: 'Playfair Display', serif; font-size: clamp(18px, 1.7vw, 22px); font-weight: 700; font-style: italic; color: var(--body-text); line-height: 1.3; margin-bottom: 14px; }
.post-card__excerpt { font-family: 'Cormorant Garamond', serif; font-size: clamp(16px, 1.4vw, 18px); font-weight: 400; color: var(--body-text-sec); line-height: 1.8; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; margin-bottom: 20px; }
.post-card__footer { display: flex; align-items: center; justify-content: space-between; }
.post-card__date { font-family: 'Barlow Condensed', sans-serif; font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--label-col); opacity: 0.55; }
.post-card__read { font-family: 'Barlow Condensed', sans-serif; font-size: 15px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--veeta-wine); opacity: 0; transition: opacity 0.3s; }
.post-card:hover .post-card__read { opacity: 1; }

.post-card--featured { grid-column: span 2; }
.post-card--featured .post-card__thumb { aspect-ratio: 16/9; }
.post-card--featured .post-card__title { font-size: clamp(22px, 2.2vw, 30px); }

/* ════════════════════════════════════
   [04] MANIFESTO
════════════════════════════════════ */
#manifesto { background: var(--veeta-maroon); padding: 160px 60px; position: relative; overflow: hidden; }
#manifesto::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 30% 50%, rgba(107,26,40,0.5) 0%, rgba(5,5,5,0.8) 70%); pointer-events: none; }
#manifesto::after { content: ''; position: absolute; inset: 0; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='250' height='250'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4'/%3E%3C/filter%3E%3Crect width='250' height='250' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E"); mix-blend-mode: overlay; opacity: 0.06; pointer-events: none; z-index: 1; }

.manifesto__inner { position: relative; z-index: 2; max-width: 900px; margin: 0 auto; text-align: center; }
.manifesto__eyebrow { display: flex; align-items: center; justify-content: center; gap: 20px; margin-bottom: 56px; }
.manifesto__eyebrow-line { width: 48px; height: 1px; background: rgba(234,228,218,0.2); }
.manifesto__quote { font-family: 'Playfair Display', serif; font-size: clamp(28px, 4vw, 58px); font-weight: 700; font-style: italic; color: var(--veeta-cream); line-height: 1.25; letter-spacing: -0.01em; margin-bottom: 48px; }
.manifesto__quote em { color: var(--veeta-cream); opacity: 0.55; }
.manifesto__sub { font-family: 'Cormorant Garamond', serif; font-size: clamp(18px, 1.6vw, 22px); font-weight: 400; color: var(--veeta-cream); opacity: 0.5; line-height: 1.9; max-width: 600px; margin: 0 auto 64px; }
.manifesto__bird { width: 80px; height: auto; opacity: 0.15; margin: 0 auto; display: block; }

/* ════════════════════════════════════
   [05] CURADORIA
════════════════════════════════════ */
#curadoria { background: var(--page-bg); padding: 140px 60px; border-top: 1px solid var(--divider); position: relative; }
.curadoria__header { max-width: 1300px; margin: 0 auto 80px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; }
.curadoria__title { font-size: clamp(32px, 4vw, 52px); font-weight: 900; color: var(--body-text); }
.curadoria__title em { display: block; font-style: italic; color: var(--veeta-wine); }
.curadoria__desc { font-size: clamp(18px, 1.5vw, 21px); font-weight: 400; color: var(--body-text-sec); line-height: var(--body-lh); }

.curadoria__grid { display: grid; grid-template-columns: 1.6fr 1fr; grid-template-rows: auto auto; gap: 2px; max-width: 1300px; margin: 0 auto; }
.curadoria-card { background: var(--page-bg-card); border: 1px solid var(--divider); position: relative; overflow: hidden; cursor: pointer; transition: border-color 0.4s, box-shadow 0.4s; text-decoration: none; display: block; }
.curadoria-card:hover { border-color: var(--divider-wine); box-shadow: 0 4px 24px rgba(107,26,40,0.07); }
.curadoria-card--main { grid-row: span 2; }
.curadoria-card__thumb { width: 100%; position: relative; overflow: hidden; background: linear-gradient(150deg, #cfc3b7 0%, #bdb0a3 100%); }
.curadoria-card--main .curadoria-card__thumb { height: 520px; }
.curadoria-card--side .curadoria-card__thumb { height: 230px; }
.curadoria-card__thumb img { width: 100%; height: 100%; object-fit: cover; filter: sepia(8%) contrast(1.05); }
.curadoria-card__thumb::before { content: ''; position: absolute; inset: 0; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='150' height='150'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9'/%3E%3C/filter%3E%3Crect width='150' height='150' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E"); mix-blend-mode: multiply; opacity: 0.09; z-index: 1; }
.curadoria-card__thumb-inner { position: absolute; inset: 0; z-index: 1; display: flex; align-items: center; justify-content: center; color: var(--veeta-muted); opacity: 0.35; }
.curadoria-card__body { padding: 28px 32px 36px; }
.curadoria-card__label { font-family: 'Barlow Condensed', sans-serif; font-size: 9px; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase; color: var(--veeta-wine); margin-bottom: 14px; display: flex; align-items: center; gap: 12px; }
.curadoria-card__label::before { content: ''; display: inline-block; width: 20px; height: 1px; background: var(--veeta-wine); }
.curadoria-card__title { font-family: 'Playfair Display', serif; font-size: clamp(20px, 2vw, 28px); font-weight: 700; font-style: italic; color: var(--body-text); line-height: 1.25; margin-bottom: 16px; }
.curadoria-card--side .curadoria-card__title { font-size: clamp(17px, 1.5vw, 21px); }
.curadoria-card__excerpt { font-size: clamp(16px, 1.3vw, 18px); font-weight: 400; color: var(--body-text-sec); line-height: 1.8; }

/* ════════════════════════════════════
   [06] PONTE COM A LOJA
════════════════════════════════════ */
#ponte { background: var(--page-bg-alt); padding: 140px 60px; border-top: 1px solid var(--divider); position: relative; overflow: hidden; }
.ponte__bg-text { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); font-family: 'Playfair Display', serif; font-weight: 900; font-size: clamp(60px, 14vw, 200px); color: rgba(107,26,40,0.04); white-space: nowrap; user-select: none; pointer-events: none; letter-spacing: 0.15em; }
.ponte__inner { position: relative; z-index: 2; max-width: 860px; margin: 0 auto; text-align: center; }
.ponte__eyebrow { display: flex; align-items: center; justify-content: center; gap: 20px; margin-bottom: 48px; }
.ponte__eyebrow-line { width: 40px; height: 1px; background: var(--divider-wine); }
.ponte__heading { font-size: clamp(32px, 4vw, 58px); font-weight: 900; color: var(--body-text); line-height: 1.15; margin-bottom: 32px; letter-spacing: -0.02em; }
.ponte__heading em { font-style: italic; color: var(--veeta-wine); }
.ponte__text { font-family: 'Cormorant Garamond', serif; font-size: clamp(19px, 1.7vw, 22px); font-weight: 400; color: var(--body-text-sec); line-height: var(--body-lh); margin-bottom: 56px; }
.ponte__cta { display: inline-flex; align-items: center; text-decoration: none; border: 1px solid var(--divider-wine); padding: 18px 44px; position: relative; overflow: hidden; transition: border-color 0.4s; }
.ponte__cta::before { content: ''; position: absolute; inset: 0; background: var(--veeta-wine); transform: translateX(-100%); transition: transform 0.4s ease; z-index: 0; }
.ponte__cta:hover::before { transform: translateX(0); }
.ponte__cta:hover { border-color: var(--veeta-wine); }
.ponte__cta:hover .ponte__cta-text { color: var(--veeta-cream); }
.ponte__cta-text { position: relative; z-index: 1; font-family: 'Barlow Condensed', sans-serif; font-size: var(--label-size); font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase; color: var(--body-text); transition: color 0.3s; }

/* ════════════════════════════════════
   [07] RODAPÉ INDEX
════════════════════════════════════ */
#rodape { background: var(--page-bg-card); padding: 80px 60px 48px; border-top: 1px solid var(--divider); }
.rodape__inner { max-width: 1300px; margin: 0 auto; }
.rodape__top { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 80px; padding-bottom: 64px; border-bottom: 1px solid var(--divider); margin-bottom: 40px; }
.rodape__tagline { font-family: 'Cormorant Garamond', serif; font-size: clamp(16px, 1.4vw, 18px); font-weight: 400; font-style: italic; color: var(--body-text-sec); line-height: 1.8; margin-top: 16px; opacity: 0.7; }
.rodape__col-title { font-family: 'Barlow Condensed', sans-serif; font-size: 9px; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase; color: var(--label-col); margin-bottom: 24px; padding-bottom: 16px; border-bottom: 1px solid var(--divider); opacity: 0.7; }
.rodape__links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.rodape__links a { font-family: 'Cormorant Garamond', serif; font-size: clamp(16px, 1.4vw, 18px); font-weight: 400; color: var(--body-text-sec); text-decoration: none; transition: color 0.3s, padding-left 0.3s; display: flex; align-items: center; gap: 10px; }
.rodape__links a:hover { color: var(--body-text); padding-left: 8px; }
.rodape__links a::before { content: ''; display: inline-block; width: 14px; height: 1px; background: var(--veeta-wine); opacity: 0; transition: opacity 0.3s; flex-shrink: 0; }
.rodape__links a:hover::before { opacity: 1; }
.rodape__bottom { display: flex; align-items: center; justify-content: space-between; }
.rodape__credit { font-family: 'Cormorant Garamond', serif; font-size: clamp(14px, 1.2vw, 16px); font-weight: 400; font-style: italic; color: var(--label-col); opacity: 0.55; }
.rodape__social { display: flex; gap: 24px; }
.rodape__social a { font-family: 'Barlow Condensed', sans-serif; font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--label-col); text-decoration: none; opacity: 0.5; transition: opacity 0.3s, color 0.3s; }
.rodape__social a:hover { opacity: 1; color: var(--body-text); }

/* ════════════════════════════════════
   SECTION NAV LATERAL
════════════════════════════════════ */
.section-nav { position: fixed; right: 28px; top: 50%; transform: translateY(-50%); z-index: 100; display: flex; flex-direction: column; gap: 10px; }
.section-nav__dot { width: 4px; height: 4px; border-radius: 50%; background: var(--label-col); opacity: 0.3; transition: all 0.3s; cursor: pointer; }
.section-nav__dot.active { background: var(--veeta-wine); opacity: 1; height: 20px; border-radius: 2px; }

/* ════════════════════════════════════
   SINGLE POST — HEADER ESCURO
════════════════════════════════════ */
.post-hero {
  min-height: 60svh; display: flex; flex-direction: column;
  justify-content: flex-end; position: relative; overflow: hidden;
  background: var(--veeta-black);
}
.post-hero__cover { position: absolute; inset: 0; background: linear-gradient(145deg, #1c080f 0%, #0d0407 50%, #050505 100%); }
.post-hero__cover img { width: 100%; height: 100%; object-fit: cover; filter: sepia(20%) contrast(1.1) brightness(0.5); opacity: 0.6; }
.post-hero__cover::before { content: ''; position: absolute; inset: 0; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='250' height='250'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4'/%3E%3C/filter%3E%3Crect width='250' height='250' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E"); mix-blend-mode: overlay; opacity: 0.12; z-index: 1; }
.post-hero__cover::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(5,5,5,0.3) 0%, rgba(5,5,5,0.05) 30%, rgba(5,5,5,0.6) 70%, rgba(5,5,5,0.98) 100%); z-index: 2; }

.post-hero__content { position: relative; z-index: 5; max-width: 1300px; margin: 0 auto; width: 100%; padding: 88px 60px 72px; }
.post-hero__breadcrumb { display: flex; align-items: center; gap: 12px; margin-bottom: 36px; }
.post-hero__breadcrumb a { font-family: 'Barlow Condensed', sans-serif; font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(234,228,218,0.4); text-decoration: none; transition: color 0.3s; }
.post-hero__breadcrumb a:hover { color: var(--veeta-cream); }
.post-hero__breadcrumb-sep { width: 20px; height: 1px; background: rgba(234,228,218,0.2); display: inline-block; }
.post-hero__cat { display: inline-flex; align-items: center; gap: 14px; margin-bottom: 28px; }
.post-hero__cat-dot { display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--veeta-wine); }
.post-hero__title { font-family: 'Playfair Display', serif; font-size: clamp(36px, 5vw, 72px); font-weight: 900; font-style: italic; color: var(--veeta-cream); line-height: 1.1; letter-spacing: -0.02em; max-width: 900px; margin-bottom: 40px; }
.post-hero__meta { display: flex; align-items: center; gap: 40px; }
.post-hero__meta-item { display: flex; flex-direction: column; gap: 4px; }
.post-hero__meta-label { font-family: 'Barlow Condensed', sans-serif; font-size: 8px; letter-spacing: 0.25em; text-transform: uppercase; color: rgba(234,228,218,0.35); }
.post-hero__meta-value { font-family: 'Cormorant Garamond', serif; font-size: 16px; font-weight: 400; color: rgba(234,228,218,0.75); }
.post-hero__meta-sep { width: 1px; height: 32px; background: rgba(255,255,255,0.08); }
.post-hero__wave { position: absolute; bottom: -1px; left: 0; right: 0; height: 64px; z-index: 6; overflow: hidden; }
.post-hero__wave svg { display: block; width: 100%; height: 100%; fill: var(--page-bg); }

/* NAV do post */
.post-nav-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 28px 60px; background: rgba(242,237,229,0.96);
  border-bottom: 1px solid var(--divider);
  position: sticky; top: 0; z-index: 1000;
  backdrop-filter: blur(16px);
}
.post-nav-header__back { display: flex; align-items: center; gap: 10px; font-family: 'Barlow Condensed', sans-serif; font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--label-col); text-decoration: none; transition: color 0.3s; }
.post-nav-header__back:hover { color: var(--body-text); }
.post-nav-header__links { display: flex; gap: 40px; list-style: none; }
.post-nav-header__links a { font-family: 'Barlow Condensed', sans-serif; font-size: 10px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--label-col); text-decoration: none; transition: color 0.3s; }
.post-nav-header__links a:hover { color: var(--body-text); }

/* ════════════════════════════════════
   SINGLE POST — CORPO
════════════════════════════════════ */
.post-layout { background: var(--page-bg); display: grid; grid-template-columns: 1fr 720px 300px 1fr; column-gap: 0; padding-top: 72px; }
.post-main { grid-column: 2; min-width: 0; padding-right: 72px; }
.post-sidebar { grid-column: 3; position: relative; }
.post-sidebar__inner { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 48px; padding-left: 48px; border-left: 1px solid var(--divider); }

.article-lead { font-size: clamp(22px, 2.2vw, 28px); font-weight: 500; color: var(--body-text); line-height: 1.75; margin-bottom: 56px; padding-bottom: 56px; border-bottom: 1px solid var(--divider); font-style: italic; }
.article-body { font-size: clamp(19px, 1.7vw, 22px); font-weight: 400; color: var(--body-text-sec); line-height: var(--body-lh); }
.article-body p { margin-bottom: 36px; }
.article-body em { color: var(--body-text); font-style: italic; }
.article-body strong { font-weight: 600; color: var(--body-text); }
.article-body h2 { font-family: 'Playfair Display', serif; font-size: clamp(26px, 2.5vw, 36px); font-weight: 700; font-style: italic; color: var(--body-text); line-height: 1.2; margin: 72px 0 28px; letter-spacing: -0.01em; }
.article-body h3 { font-family: 'Playfair Display', serif; font-size: clamp(21px, 1.9vw, 26px); font-weight: 700; color: var(--body-text); line-height: 1.25; margin: 52px 0 20px; }
.article-body blockquote { margin: 64px 0; padding: 0 0 0 36px; border-left: 3px solid var(--veeta-wine); }
.article-body blockquote p { font-family: 'Playfair Display', serif; font-size: clamp(22px, 2.1vw, 30px); font-style: italic; font-weight: 700; color: var(--body-text); line-height: 1.4; margin-bottom: 16px; }
.article-body blockquote cite { font-family: 'Barlow Condensed', sans-serif; font-size: 10px; font-style: normal; letter-spacing: 0.22em; text-transform: uppercase; color: var(--veeta-wine); }
.article-body img { max-width: 100%; height: auto; filter: sepia(8%) contrast(1.05); border: 1px solid var(--divider-wine); margin: 40px 0; }
.article-body a { color: var(--veeta-wine); text-decoration: underline; text-decoration-color: var(--divider-wine); }
.article-body a:hover { text-decoration-color: var(--veeta-wine); }

.article-sign { margin-top: 80px; padding-top: 52px; border-top: 1px solid var(--divider); display: flex; align-items: flex-start; gap: 28px; clear: both; }
.article-sign__avatar { width: 60px; height: 60px; border-radius: 50%; background: var(--page-bg-alt); border: 1px solid var(--divider-wine); flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-size: 22px; font-style: italic; color: var(--veeta-wine); overflow: hidden; }
.article-sign__avatar img { width: 100%; height: 100%; object-fit: cover; }
.article-sign__name { font-family: 'Playfair Display', serif; font-size: 22px; font-style: italic; color: var(--body-text); margin-bottom: 6px; }
.article-sign__bio { font-family: 'Cormorant Garamond', serif; font-size: clamp(15px, 1.3vw, 17px); font-weight: 400; color: var(--label-col); line-height: 1.75; }

/* Sidebar do post */
.sidebar-block__title { font-family: 'Barlow Condensed', sans-serif; font-size: 9px; font-weight: 700; letter-spacing: 0.28em; text-transform: uppercase; color: var(--label-col); margin-bottom: 20px; opacity: 0.7; }
.sidebar-reading__time { font-family: 'Playfair Display', serif; font-size: 36px; font-weight: 700; color: var(--body-text); line-height: 1; }
.sidebar-reading__label { font-family: 'Cormorant Garamond', serif; font-size: 15px; font-weight: 400; color: var(--label-col); margin-top: 6px; }
.sidebar-reading__bar { width: 100%; height: 2px; background: var(--divider); position: relative; overflow: hidden; margin-top: 16px; }
.sidebar-reading__fill { position: absolute; top: 0; left: 0; height: 100%; width: 0%; background: var(--veeta-wine); transition: width 0.3s linear; }

/* Paginação entre posts */
.post-adjacent { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin-top: 120px; border-top: 1px solid var(--divider); }
.post-adjacent__item { padding: 52px 60px; background: var(--page-bg-alt); text-decoration: none; display: flex; flex-direction: column; gap: 14px; border: 1px solid transparent; transition: border-color 0.4s, background 0.3s; position: relative; overflow: hidden; }
.post-adjacent__item::before { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: var(--veeta-wine); transform: scaleX(0); transition: transform 0.4s ease; }
.post-adjacent__item:hover { border-color: var(--divider-wine); background: var(--page-bg); }
.post-adjacent__item:hover::before { transform: scaleX(1); }
.post-adjacent__dir { font-family: 'Barlow Condensed', sans-serif; font-size: 9px; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase; color: var(--veeta-wine); display: flex; align-items: center; gap: 10px; }
.post-adjacent__dir-line { display: inline-block; width: 24px; height: 1px; background: var(--veeta-wine); }
.post-adjacent__cat { font-family: 'Barlow Condensed', sans-serif; font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--label-col); opacity: 0.6; }
.post-adjacent__title { font-family: 'Playfair Display', serif; font-size: clamp(17px, 1.5vw, 22px); font-style: italic; color: var(--body-text); line-height: 1.3; }
.post-adjacent__item--next { text-align: right; }
.post-adjacent__item--next .post-adjacent__dir { justify-content: flex-end; }

/* Relacionados */
.related { padding: 120px 60px 140px; border-top: 1px solid var(--divider); background: var(--page-bg); }
.related__header { max-width: 1300px; margin: 0 auto 64px; display: flex; align-items: flex-end; justify-content: space-between; padding-bottom: 40px; border-bottom: 1px solid var(--divider); }
.related__title { font-family: 'Playfair Display', serif; font-size: clamp(30px, 3vw, 46px); font-weight: 900; color: var(--body-text); }
.related__title em { font-style: italic; color: var(--veeta-wine); }
.related__link { font-family: 'Barlow Condensed', sans-serif; font-size: 10px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--label-col); text-decoration: none; display: flex; align-items: center; gap: 12px; transition: color 0.3s; }
.related__link:hover { color: var(--body-text); }
.related__grid { max-width: 1300px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }

/* Newsletter */
.newsletter { background: var(--veeta-maroon); padding: 100px 60px; position: relative; overflow: hidden; }
.newsletter::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 70% 50%, rgba(107,26,40,0.4) 0%, rgba(5,5,5,0.55) 70%); }
.newsletter::after { content: ''; position: absolute; inset: 0; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E"); mix-blend-mode: overlay; opacity: 0.05; pointer-events: none; }
.newsletter__inner { position: relative; z-index: 2; max-width: 680px; margin: 0 auto; text-align: center; }
.newsletter__eyebrow { display: flex; align-items: center; justify-content: center; gap: 20px; margin-bottom: 40px; }
.newsletter__line { width: 40px; height: 1px; background: rgba(234,228,218,0.15); }
.newsletter__title { font-family: 'Playfair Display', serif; font-size: clamp(28px, 3.5vw, 46px); font-weight: 700; font-style: italic; color: var(--veeta-cream); line-height: 1.2; margin-bottom: 20px; }
.newsletter__sub { font-family: 'Cormorant Garamond', serif; font-size: clamp(17px, 1.5vw, 20px); font-weight: 400; color: var(--veeta-cream); opacity: 0.5; line-height: 1.85; margin-bottom: 48px; }
.newsletter__form { display: flex; max-width: 480px; margin: 0 auto; }
.newsletter__input { flex: 1; background: rgba(234,228,218,0.06); border: 1px solid var(--veeta-border); border-right: none; padding: 18px 24px; font-family: 'Cormorant Garamond', serif; font-size: 18px; font-weight: 400; color: var(--veeta-cream); outline: none; transition: border-color 0.3s; }
.newsletter__input::placeholder { color: rgba(234,228,218,0.3); font-style: italic; }
.newsletter__input:focus { border-color: rgba(107,26,40,0.6); }
.newsletter__btn { background: var(--veeta-wine); border: 1px solid var(--veeta-wine); padding: 18px 28px; font-family: 'Barlow Condensed', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase; color: var(--veeta-cream); cursor: pointer; transition: background 0.3s; white-space: nowrap; }
.newsletter__btn:hover { background: var(--veeta-maroon); }
.newsletter__disclaimer { margin-top: 20px; font-family: 'Barlow Condensed', sans-serif; font-size: 9px; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(234,228,218,0.25); }

/* ════════════════════════════════════
   ANIMAÇÕES
════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ════════════════════════════════════
   RESPONSIVE
════════════════════════════════════ */
@media (max-width: 1200px) {
  .post-layout { grid-template-columns: 40px 1fr 260px 40px; }
}

@media (max-width: 1024px) {
  .feed__grid { grid-template-columns: 1fr 1fr; }
  .post-card--featured { grid-column: span 2; }
  .curadoria__grid { grid-template-columns: 1fr; }
  .curadoria-card--main { grid-row: span 1; }
  .curadoria-card--main .curadoria-card__thumb { height: 340px; }
}

@media (max-width: 960px) {
  .post-layout { grid-template-columns: 32px 1fr 32px; }
  .post-main { grid-column: 2; padding-right: 0; }
  .post-sidebar { display: none; }
  .post-adjacent { grid-template-columns: 1fr; }
  .post-adjacent__item--next { text-align: left; }
  .post-adjacent__item--next .post-adjacent__dir { justify-content: flex-start; }
  .related__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --body-size: clamp(18px, 4.5vw, 21px); }
  .hero__nav { padding: 24px; }
  .hero__nav-links { display: none; }
  .hero__body { grid-template-columns: 1fr; padding: 48px 24px 80px; gap: 48px; }
  .hero__image-frame { height: 320px; }
  #sobre { padding: 80px 24px; }
  .sobre__inner { grid-template-columns: 1fr; gap: 48px; }
  .sobre__divider { display: none; }
  .sec-number { display: none; }
  #feed { padding: 80px 24px; }
  .feed__header { flex-direction: column; align-items: flex-start; gap: 32px; }
  .feed__grid { grid-template-columns: 1fr; gap: 16px; }
  .post-card--featured { grid-column: span 1; }
  .post-card--featured .post-card__thumb { aspect-ratio: 3/2; }
  .feed__cats { flex-wrap: wrap; gap: 16px; }
  #manifesto { padding: 100px 24px; }
  #curadoria { padding: 80px 24px; }
  .curadoria__header { grid-template-columns: 1fr; gap: 24px; }
  #ponte { padding: 100px 24px; }
  #rodape { padding: 64px 24px 36px; }
  .rodape__top { grid-template-columns: 1fr; gap: 48px; }
  .rodape__bottom { flex-direction: column; gap: 20px; text-align: center; }
  .section-nav { display: none; }
  .hero__scroll { display: none; }
  .hero__wave { height: 48px; }
  .post-hero__content { padding: 80px 24px 56px; }
  .post-hero__title { font-size: clamp(30px, 8vw, 46px); }
  .post-hero__meta { flex-wrap: wrap; gap: 20px; }
  .post-hero__meta-sep { display: none; }
  .post-adjacent { grid-template-columns: 1fr; }
  .related { padding: 80px 24px; }
  .related__header { flex-direction: column; align-items: flex-start; gap: 24px; }
  .related__grid { grid-template-columns: 1fr; gap: 16px; }
  .newsletter { padding: 80px 24px; }
  .newsletter__form { flex-direction: column; }
  .newsletter__input { border-right: 1px solid var(--veeta-border); }
  .post-nav-header { padding: 20px 24px; }
  .post-nav-header__links { display: none; }
}

/* ═══════════════════════════════════════════════════════
   v2.1.0 — LANÇAMENTO: logo, banner do feed, fallback,
   botão Leia mais, página de leitura (Sobre)
═══════════════════════════════════════════════════════ */

/* ── LOGO EM IMAGEM (Personalizar) ── */
.veeta-logo { display: inline-block; line-height: 0; text-decoration: none; }
.veeta-logo__img { height: 36px; width: auto; display: block; }
.post-nav-header .veeta-logo__img { height: 26px; }
.rodape__brand .veeta-logo__img { height: 42px; }
@media (max-width: 768px) { .veeta-logo__img { height: 30px; } .post-nav-header .veeta-logo__img { height: 24px; } }

/* ── PLACEHOLDER DE MARCA (posts sem imagem) ── */
.veeta-fallback { flex-direction: column; gap: 14px; opacity: 1; }
.veeta-fallback__leaf { width: 62px; height: 62px; color: var(--veeta-wine); opacity: 0.5; }
.veeta-fallback__mark { font-family: 'Playfair Display', serif; font-weight: 900; font-size: 13px; letter-spacing: 0.42em; text-transform: uppercase; color: var(--label-col); opacity: 0.5; padding-left: 0.42em; }

/* ── FEED: BANNER PRINCIPAL (post mais recente) ── */
.feed__lead {
  display: grid; grid-template-columns: 1.5fr 1fr; gap: 0;
  max-width: 1300px; margin: 0 auto 2px;
  background: var(--page-bg-card); border: 1px solid var(--divider);
  text-decoration: none; position: relative; overflow: hidden;
  transition: border-color 0.4s, box-shadow 0.4s;
}
.feed__lead:hover { border-color: var(--divider-wine); box-shadow: 0 6px 32px rgba(107,26,40,0.10); }
.feed__lead::before { content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 100%; background: var(--veeta-wine); transform: scaleY(0); transform-origin: bottom; transition: transform 0.4s ease; z-index: 3; }
.feed__lead:hover::before { transform: scaleY(1); }

.feed__lead-thumb { position: relative; overflow: hidden; min-height: 380px; background: linear-gradient(160deg, #cfc3b7 0%, #bdb0a3 100%); }
.feed__lead-thumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: sepia(8%) contrast(1.05); transition: transform 0.6s ease; }
.feed__lead:hover .feed__lead-thumb img { transform: scale(1.03); }
.feed__lead-thumb::before { content: ''; position: absolute; inset: 0; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='150' height='150'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4'/%3E%3C/filter%3E%3Crect width='150' height='150' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E"); mix-blend-mode: multiply; opacity: 0.09; z-index: 1; }
.feed__lead-thumb .veeta-fallback { position: absolute; inset: 0; z-index: 1; display: flex; align-items: center; justify-content: center; }

.feed__lead-body { padding: 56px 56px; display: flex; flex-direction: column; justify-content: center; }
.feed__lead-title { font-family: 'Playfair Display', serif; font-weight: 700; font-style: italic; font-size: clamp(26px, 2.8vw, 40px); color: var(--body-text); line-height: 1.2; margin: 14px 0 20px; }
.feed__lead-excerpt { font-family: 'Cormorant Garamond', serif; font-size: clamp(18px, 1.5vw, 21px); font-weight: 400; color: var(--body-text-sec); line-height: 1.85; margin-bottom: 28px; display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden; }
.feed__lead-read { font-family: 'Barlow Condensed', sans-serif; font-size: 15px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--veeta-wine); }

/* ── BOTÃO "LEIA A HISTÓRIA COMPLETA" (seção Sobre) ── */
.sobre__readmore {
  display: inline-flex; align-items: center; gap: 12px; margin-top: 36px;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 13px;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--veeta-wine);
  text-decoration: none; border-bottom: 1px solid var(--divider-wine);
  padding-bottom: 6px; transition: gap 0.3s ease, border-color 0.3s ease;
}
.sobre__readmore:hover { gap: 20px; border-color: var(--veeta-wine); }

/* ── PÁGINA DE LEITURA (Sobre / A História) ── */
.page-read { background: var(--page-bg); padding: 80px 24px 40px; }
.page-read__inner { max-width: 760px; margin: 0 auto; }
.page-read__inner .article-body h2,
.page-read__inner .article-body h3 { margin-top: 56px; }
.page-read__back { margin-top: 64px; padding-top: 40px; border-top: 1px solid var(--divider); }
.page-read__back a { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--label-col); text-decoration: none; transition: color 0.3s; }
.page-read__back a:hover { color: var(--veeta-wine); }

/* ── RESPONSIVO (banner do feed) ── */
@media (max-width: 1024px) {
  .feed__lead { grid-template-columns: 1fr; }
  .feed__lead-thumb { min-height: 300px; }
}
@media (max-width: 768px) {
  .feed__lead-thumb { min-height: 220px; }
  .feed__lead-body { padding: 32px 24px 36px; }
  .page-read { padding: 56px 20px 32px; }
}
