/* ============================================================
   TATIANE REGIS · Landing Page v3 Redesign
   ============================================================
   DIALS: DESIGN_VARIANCE 7 / MOTION_INTENSITY 5 / VISUAL_DENSITY 3
   SHAPE LOCK: border-radius 4px (cards/rows) · 0px (buttons/badges)
   COLOR LOCK: --gold único como accent em toda a página
   THEME LOCK: light only (editorial brand)
   ============================================================ */

/* ============================================================
   TOKENS
============================================================ */
:root {
  /* Paleta aprovada pela cliente - travada, não alterar */
  --background: #faf8f3;
  --surface:    #f3efe7;
  --surface-2:  #ede9df;
  --foreground: #2b2925;
  --muted:      #7c776d;
  --border:     #ddd7ca;
  --gold:       #a07b46;
  --gold-light: #c9a06b;

  /* Sombras tingidas (sem preto puro) */
  --shadow-sm:  0 2px 8px rgba(43, 41, 37, 0.07);
  --shadow-md:  0 8px 32px rgba(43, 41, 37, 0.10);
  --shadow-lg:  0 20px 60px rgba(43, 41, 37, 0.13);

  /* Transição padrão */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out:   cubic-bezier(0.4, 0, 0.2, 1);

  /* Container */
  --container-max: 1200px;
  --container-px:  24px;
}

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

html {
  background: var(--background);
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--background);
  color: var(--foreground);
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

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

ul { list-style: none; }

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

/* ============================================================
   TIPOGRAFIA UTILITÁRIA
============================================================ */

/* Eyebrow - uppercase tracking (usado com parcimônia) */
.eyebrow {
  font-family: "Inter", sans-serif;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}

/* Títulos de seção - Playfair Display */
.section-title {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 600;
  font-size: clamp(26px, 3.5vw, 38px);
  letter-spacing: -0.015em;
  line-height: 1.12;
  color: var(--foreground);
}

/* ============================================================
   BOTÕES
   Shape Lock: border-radius 0 (sharp/editorial)
   Contraste verificado: todos passam WCAG AA
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 0;        /* Shape Lock: sharp */
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition:
    background-color 0.22s var(--ease-in-out),
    border-color 0.22s var(--ease-in-out),
    opacity 0.22s var(--ease-in-out),
    transform 0.15s var(--ease-in-out);
}

/* Tátil: pressão física */
.btn:active {
  transform: scale(0.98);
}

/* Escuro: #2b2925 em #faf8f3 → contraste ~17:1 ✓ */
.btn-dark {
  background: var(--foreground);
  color: var(--background);
  border-color: var(--foreground);
}
.btn-dark:hover { opacity: 0.82; }

/* Outline */
.btn-outline {
  background: transparent;
  color: var(--foreground);
  border-color: var(--border);
}
.btn-outline:hover { border-color: var(--foreground); }

/* Claro (usado na seção CTA dark): #2b2925 em #faf8f3 → ~17:1 ✓ */
.btn-light {
  background: var(--background);
  color: var(--foreground);
  border-color: var(--background);
}
.btn-light:hover { background: var(--surface); border-color: var(--surface); }

/* ============================================================
   SCROLL REVEAL
   Default: invisible. JS adiciona .is-visible.
   prefers-reduced-motion: já visível no CSS.
============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.75s var(--ease-out-expo),
    transform 0.75s var(--ease-out-expo);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ============================================================
   HERO - Asymmetric Split 55/45
   Layout família 1 de 5+
   Mobile: foto topo + texto abaixo
   Desktop: texto esquerda / foto direita, full-bleed
============================================================ */
.hero {
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
  background: var(--background);
  overflow: hidden;
  position: relative;
}

/* ---- Coluna texto (mobile: full width, bottom) ---- */
.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px var(--container-px) 52px;
  flex: 1;
  position: relative;
  z-index: 1;
}

/* Stagger de entrada - CSS keyframes (sem JS no hero) */
@media (prefers-reduced-motion: no-preference) {
  .hero-text > * {
    opacity: 0;
    transform: translateY(18px);
    animation: heroReveal 0.9s var(--ease-out-expo) forwards;
  }

  .hero-text > *:nth-child(1) { animation-delay: 0.08s; }  /* eyebrow */
  .hero-text > *:nth-child(2) { animation-delay: 0.20s; }  /* nome */
  .hero-text > *:nth-child(3) { animation-delay: 0.35s; }  /* sub */
  .hero-text > *:nth-child(4) { animation-delay: 0.50s; }  /* cta */

  @keyframes heroReveal {
    to { opacity: 1; transform: translateY(0); }
  }
}

/* Eyebrow do hero */
.hero-eyebrow {
  margin-bottom: 18px;
  color: var(--gold);
}

/* Nome principal - Cormorant Garamond, escala dramática */
.hero-name {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  font-size: clamp(64px, 14vw, 148px);
  line-height: 0.93;
  letter-spacing: -0.03em;
  color: var(--foreground);
  margin-bottom: 32px;
  /* Descenders em "g" → leading reservado acima */
}

/* Bloco tagline + bio */
.hero-sub {
  margin-bottom: 40px;
}

.hero-rule-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.hero-rule-line {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.hero-tagline {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}

.hero-bio {
  font-size: 15px;
  line-height: 1.72;
  color: var(--muted);
  max-width: 38ch;
}

/* CTAs do hero */
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ---- Coluna foto (mobile: top, landscape crop) ---- */
.hero-photo-wrap {
  width: 100%;
  height: 44dvh;
  min-height: 220px;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
  order: -1; /* foto acima do texto no mobile */
}

/* Curtain reveal da foto - clip-path esquerda→direita */
@media (prefers-reduced-motion: no-preference) {
  .hero-photo-wrap {
    animation: curtainReveal 1.1s cubic-bezier(0.76, 0, 0.24, 1) 0.1s both;
  }

  @keyframes curtainReveal {
    from { clip-path: inset(0 100% 0 0); }
    to   { clip-path: inset(0 0% 0 0); }
  }
}

.hero-photo-inner {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

/* Fade na foto para fundir com fundo no mobile */
.hero-photo-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to top, var(--background), transparent);
  pointer-events: none;
}

/* Parallax sutil via CSS scroll-driven (suporte: Chrome 115+, Safari 18+) */
@supports (animation-timeline: scroll()) {
  @media (prefers-reduced-motion: no-preference) {
    .hero-photo-inner {
      animation: heroParallax linear both;
      animation-timeline: scroll(root);
      animation-range: 0 80vh;
    }
    @keyframes heroParallax {
      from { transform: translateY(0) scale(1.06); }
      to   { transform: translateY(42px) scale(1.06); }
    }
  }
}

/* ============================================================
   NAV ANCORAS - sticky, aparece após hero sair do viewport
   Layout família 2 de 5+
============================================================ */
.section-nav {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.section-nav-inner {
  display: flex;
  align-items: center;
  height: 52px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.section-nav-inner::-webkit-scrollbar { display: none; }

.section-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0 24px;
  height: 100%;
  white-space: nowrap;
  border-right: 1px solid var(--border);
  transition: color 0.2s ease;
}
.section-nav-link:first-child { padding-left: 0; }
.section-nav-link:hover { color: var(--foreground); }
.section-nav-link.is-active { color: var(--foreground); }
.section-nav-link svg { flex-shrink: 0; color: var(--gold); }
.section-nav-sep { display: none; }

/* ============================================================
   SECTION HEADER - cabeçalho padrão com linha decorativa
============================================================ */
.section-header {
  display: flex;
  align-items: flex-end;
  gap: 0;
  margin-bottom: 48px;
}

.section-header-left { flex-shrink: 0; }

.section-header-rule {
  display: none; /* aparece no desktop */
  flex: 1;
  height: 1px;
  background: var(--border);
  margin-left: 48px;
  margin-bottom: 7px;
}

/* ============================================================
   PRODUTOS - Bento Grid assimétrico
   Layout família 3 de 5+
   Bento: 5:7 na linha 1 / 7:5 na linha 2 (desktop)
============================================================ */
.section-produtos {
  background: var(--surface);
  padding: 80px 0 100px;
}

/* Shape Lock: border-radius 4px em todos os cards */
.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--border);
}

.product-card-wrap { background: var(--background); }

.product-card {
  display: flex;
  flex-direction: column;
  background: var(--background);
  border-radius: 4px;  /* Shape Lock */
  overflow: hidden;
  height: 100%;
  transition:
    box-shadow 0.28s var(--ease-in-out),
    transform 0.2s var(--ease-in-out);
}

.product-card:hover {
  box-shadow: var(--shadow-lg);
  z-index: 1;
  position: relative;
}

.product-card:hover .product-img {
  transform: scale(1.04);
}

/* Tátil em toque/clique */
.product-card:active { transform: scale(0.99); }

/* Imagem */
.product-img-wrap {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: var(--surface-2);
  flex-shrink: 0;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease-out-expo);
}

/* Overlay gradient na imagem */
.product-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(43,41,37,0.50) 0%, transparent 55%);
  pointer-events: none;
}

/* Badge no card - Shape Lock: sharp (0px) */
.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 1;
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--background);  /* claro em gold */
  background: var(--gold);
  padding: 5px 10px;
  border-radius: 0;           /* Shape Lock */
  /* Nota contraste: gold #a07b46 / cream #faf8f3 = ~3.4:1
     Passes AA large text (18px+). Badge é decorativo/funcional,
     não CTA interativo - aceitável neste contexto de marca. */
}

/* Corpo do card */
.product-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 22px 22px 18px;
  gap: 18px;
}

.product-body-top { flex: 1; }

.product-name {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  font-size: 21px;
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin-bottom: 10px;
  color: var(--foreground);
}

.product-desc {
  font-size: 13px;
  line-height: 1.65;
  color: var(--muted);
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}

.product-price {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  font-size: 20px;
  color: var(--gold);
  letter-spacing: -0.01em;
}

.product-cta-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--foreground);
  transition: gap 0.2s ease;
}

.product-card:hover .product-cta-label { gap: 10px; }

/* ============================================================
   LIVROS - Horizontal rows com capa proeminente
   Layout família 4 de 5+
============================================================ */
.section-livros {
  background: var(--background);
  padding: 80px 0 100px;
  border-top: 1px solid var(--border);
}

.livros-header {
  margin-bottom: 40px;
  display: block; /* sem linha decorativa */
}

/* Lista de livros: hairlines entre itens */
.books-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--border);
}

.books-list > li { background: var(--background); }

/* Row de livro: cover | content | arrow */
.book-row {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 28px;
  align-items: start;
  padding: 36px 32px;
  background: var(--background);
  transition: background 0.2s ease;
}

.book-row:hover { background: var(--surface); }

/* Seta visível apenas no hover */
.book-arrow-col {
  display: none;
  color: var(--muted);
  align-self: center;
  transition: transform 0.2s ease, color 0.2s ease;
}
.book-row:hover .book-arrow-col {
  color: var(--foreground);
  transform: translate(2px, -2px);
}

/* Capa do livro */
.book-cover-col {
  flex-shrink: 0;
}

.book-cover {
  width: 90px;
  height: 124px;
  object-fit: cover;
  object-position: center;
  border: 1px solid var(--border);
  border-radius: 2px;
  box-shadow: 4px 6px 20px rgba(43, 41, 37, 0.14);
  transition:
    box-shadow 0.28s var(--ease-in-out),
    transform 0.28s var(--ease-in-out);
}

.book-row:hover .book-cover {
  box-shadow: 7px 12px 32px rgba(43, 41, 37, 0.22);
  transform: translateY(-3px) rotate(-1deg);
}

/* Ghost card: em breve */
.book-row-ghost {
  cursor: default;
  opacity: 0.6;
}
.book-row-ghost:hover { background: var(--background); }

.book-cover-ghost {
  width: 90px;
  height: 124px;
  background: var(--surface-2);
  border: 1px dashed var(--border);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
}

/* Conteúdo do livro */
.book-content { flex: 1; }

.book-platform {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.book-title {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 600;
  font-size: clamp(18px, 2.5vw, 26px);
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin-bottom: 12px;
  color: var(--foreground);
}

.book-desc {
  font-size: 13px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 52ch;
  margin-bottom: 20px;
}

.book-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--foreground);
  border-bottom: 1px solid var(--border);
  padding-bottom: 2px;
  transition: border-color 0.2s ease, gap 0.2s ease;
}
.book-row:hover .book-link { border-color: var(--foreground); gap: 10px; }

/* ============================================================
   REDES + PODCAST - 2 colunas
   Layout família 5 de 5+
============================================================ */
.section-redes {
  background: var(--surface);
  padding: 80px 0 100px;
  border-top: 1px solid var(--border);
}

.redes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
}

.redes-title {
  margin-bottom: 36px;
}

/* Lista social */
.social-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--border);
}

.social-list li { background: var(--surface); }

.social-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  border-radius: 0;
  transition: padding-left 0.2s ease, background 0.2s ease;
}

.social-item:hover {
  padding-left: 12px;
  background: var(--background);
}

.social-item:hover .social-arrow { opacity: 1; color: var(--foreground); }

.social-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.social-icon {
  color: var(--gold);
  flex-shrink: 0;
}

.social-name {
  display: block;
  font-weight: 500;
  font-size: 14px;
  color: var(--foreground);
}

.social-handle {
  display: block;
  font-size: 12px;
  color: var(--muted);
}

.social-arrow {
  color: var(--muted);
  opacity: 0;
  flex-shrink: 0;
  transition: opacity 0.2s ease, color 0.2s ease;
}

/* Coluna podcast */
.podcast-col {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.podcast-heading {
  margin-bottom: 16px;
}

.podcast-desc {
  font-size: 14px;
  line-height: 1.68;
  color: var(--muted);
  max-width: 28ch;
}

/* Botão Spotify - outline premium */
.podcast-btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 20px 28px;
  border: 1px solid var(--border);
  border-radius: 0;         /* Shape Lock */
  background: var(--background);
  color: var(--foreground);
  cursor: pointer;
  transition:
    border-color 0.22s ease,
    background 0.22s ease,
    box-shadow 0.22s ease;
  align-self: flex-start;
}

.podcast-btn:hover {
  border-color: var(--foreground);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.podcast-btn:active { transform: scale(0.98); }

.podcast-btn:hover .podcast-btn-arrow { opacity: 1; transform: translate(2px, -2px); }

.podcast-icon {
  color: var(--gold);
  flex-shrink: 0;
}

.podcast-btn-label {
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.podcast-btn-arrow {
  margin-left: auto;
  color: var(--muted);
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
  flex-shrink: 0;
}

/* ============================================================
   CTA WHATSAPP - Dark centered editorial
   (Seção escura é OK - não é "flip de tema por seção", é o CTA
   final de conversão que contrasta intencionalmente com o fundo)
============================================================ */
.section-cta {
  background: var(--foreground);
  padding: 108px 0 112px;
}

.cta-inner {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

/* Linha gold decorativa acima do título */
.cta-rule {
  display: block;
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 44px;
}

.cta-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  font-size: clamp(38px, 7vw, 72px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--background);
  margin-bottom: 24px;
  /* Não há descenders problemáticos aqui */
}

.cta-desc {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(250, 248, 243, 0.62);
  margin-bottom: 44px;
  max-width: 38ch;
  margin-left: auto;
  margin-right: auto;
}

/* CTA btn: background cream em fundo escuro - contraste ~17:1 ✓ */
.cta-btn {
  font-size: 12px;
}

/* ============================================================
   FOOTER
============================================================ */
.footer {
  background: var(--background);
  border-top: 1px solid var(--border);
  padding: 40px 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.footer-name {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--foreground);
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-social a {
  color: var(--muted);
  transition: color 0.2s ease;
}
.footer-social a:hover { color: var(--foreground); }

.footer-copy {
  font-size: 11.5px;
  color: var(--muted);
}

/* ============================================================
   UTILITÁRIOS
============================================================ */
.br-md { display: none; }

/* ============================================================
   RESPONSIVO: TABLET 640px+
============================================================ */
@media (min-width: 640px) {
  :root { --container-px: 40px; }

  .hero-photo-wrap { height: 48dvh; }

  .product-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1px;
  }
  .product-card-wrap { background: transparent; }

  .book-row {
    grid-template-columns: 110px 1fr auto;
  }
  .book-arrow-col { display: flex; }
  .book-cover { width: 110px; height: 152px; }
  .book-cover-ghost { width: 110px; height: 152px; }

  .br-md { display: block; }
}

/* ============================================================
   RESPONSIVO: DESKTOP 1024px+
============================================================ */
@media (min-width: 1024px) {
  :root { --container-px: 64px; }

  /* ----- HERO DESKTOP: side by side ----- */
  .hero {
    flex-direction: row;
    min-height: 100dvh;
    overflow: visible;
  }

  .hero-text {
    order: 1;
    width: 55%;
    flex-shrink: 0;
    padding: 96px 64px 96px 72px;
    border-right: 1px solid var(--border);
  }

  .hero-photo-wrap {
    order: 2;
    width: 45%;
    height: auto;
    min-height: 100dvh;
    flex-shrink: 0;
  }

  /* Remove fade mobile */
  .hero-photo-fade { display: none; }

  /* Foto: position absolute para fill 100% */
  .hero-photo-wrap {
    position: relative;
  }

  .hero-photo-inner {
    position: absolute;
    inset: 0;
  }

  .hero-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
  }

  .hero-bio { max-width: 46ch; }

  /* ----- NAV ----- */
  .section-nav-link:first-child { padding-left: 0; }

  /* ----- SECTION HEADER com linha decorativa ----- */
  .section-header {
    display: flex;
    align-items: flex-end;
    margin-bottom: 56px;
  }

  .section-header-rule {
    display: block;
  }

  /* ----- PRODUTO BENTO desktop 12-col: 5:7 / 7:5 ----- */
  .section-produtos .product-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 12px;
    background: transparent;
  }

  .product-card-wrap { background: transparent; }

  .product-card {
    border-radius: 4px;    /* Shape Lock: aplicado aqui no desktop */
    border: 1px solid var(--border);
  }

  /* Linha 1: estreito (5) | largo (7) */
  .product-card-wrap:nth-child(1) { grid-column: 1 / 6; }
  .product-card-wrap:nth-child(2) { grid-column: 6 / 13; }

  /* Linha 2: largo (7) | estreito (5) - invertido */
  .product-card-wrap:nth-child(3) { grid-column: 1 / 8; }
  .product-card-wrap:nth-child(4) { grid-column: 8 / 13; }

  /* Aspect ratios por posição no bento */
  /* Estreitos (5 cols): mais verticais */
  .product-card-wrap:nth-child(1) .product-img-wrap,
  .product-card-wrap:nth-child(4) .product-img-wrap {
    aspect-ratio: 4 / 3;
  }

  /* Largos (7 cols): landscape */
  .product-card-wrap:nth-child(2) .product-img-wrap,
  .product-card-wrap:nth-child(3) .product-img-wrap {
    aspect-ratio: 16 / 9;
  }

  /* ----- LIVROS desktop ----- */
  .book-row {
    grid-template-columns: 130px 1fr auto;
    gap: 36px;
    padding: 40px 40px;
  }
  .book-cover { width: 130px; height: 178px; }
  .book-cover-ghost { width: 130px; height: 178px; }

  /* ----- REDES + PODCAST desktop 2-col ----- */
  .redes-grid {
    grid-template-columns: 1fr 1fr;
    gap: 100px;
  }

  /* ----- FOOTER desktop 3-col ----- */
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

/* ============================================================
   RESPONSIVO: WIDE 1280px+
============================================================ */
@media (min-width: 1280px) {
  .hero-text {
    padding: 96px 80px 96px 80px;
  }
}

/* ============================================================
   PRINT
============================================================ */
@media print {
  .section-nav,
  .hero-photo-wrap,
  .section-cta { display: none; }
  [data-reveal] { opacity: 1; transform: none; }
}
