/**
 * Hero da home: carrossel lançamento ↔ melhor versão e galeria de ovais.
 */
  .home-hero-grid { display: flex; flex-direction: column; gap: 1.5rem; align-items: center; text-align: center; }
  .home-hero-headline { font-size: 2rem; }
  @media (min-width: 640px) { .home-hero-headline { font-size: 2.5rem; } }
  @media (min-width: 768px) { .home-hero-headline { font-size: 3rem; } }
  .home-hero-cta .cta-home { width: 100%; max-width: 440px; text-align: center; }

  @media (min-width: 1024px) {
    .home-hero-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      grid-template-rows: auto auto auto auto;
      align-items: center;
      gap: 0.75rem 2rem;
      text-align: left;
    }
    .home-hero-grid > .home-hero-headline,
    .home-hero-grid > .home-hero-headline-wrap {
      grid-column: 1;
      grid-row: 1;
      margin-bottom: 1.5rem;
    }
    .home-hero-grid > .home-hero-headline {
      font-size: 3.5rem;
    }
    .home-hero-headline-wrap .home-hero-headline {
      font-size: 3.5rem;
      margin-bottom: 0;
    }
    .home-hero-desc1 {
      grid-column: 1;
      grid-row: 2;
      margin-bottom: 2rem;
    }
    .home-hero-desc2 {
      grid-column: 1;
      grid-row: 3;
      margin-bottom: 2.5rem;
    }
    .home-hero-cta {
      grid-column: 1;
      grid-row: 4;
      justify-content: flex-start;
      flex-direction: column;
      align-items: flex-start;
    }
    .home-hero-cta .cta-home { width: 440px; text-align: center; }
    .home-hero-visual-wrap {
      grid-column: 2;
      grid-row: 1 / -1;
      display: flex;
      justify-content: center;
      align-items: center;
    }
  }

  /* Galeria 3 ovais – igual ao /sobre (cards, desktop cluster, tablet, mobile) */
  .hero-gallery { position: relative; }
  .hero-gallery-card {
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255,255,255,0.25);
    border-radius: 50%;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    background: rgba(0,0,0,0.2);
  }
  .hero-gallery-card:hover { box-shadow: 0 25px 50px rgba(0,0,0,0.4); }
  .hero-gallery--desktop .hero-gallery-card--center { box-shadow: 0 25px 50px rgba(0,0,0,0.4); }
  .hero-gallery--desktop .hero-gallery-card--center:hover { transform: translate(-50%, -50%); }
  .hero-gallery--desktop .hero-gallery-card:not(.hero-gallery-card--center) { box-shadow: 0 12px 28px rgba(0,0,0,0.28); }
  .hero-gallery-card img { display: block; width: 100%; height: 100%; object-fit: cover; }
  @keyframes hero-float-up { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-3px); } }
  @keyframes hero-float-down { 0%, 100% { transform: translateY(-3px); } 50% { transform: translateY(3px); } }
  .hero-gallery-card--float-1 { animation: hero-float-up 4s ease-in-out infinite; }
  .hero-gallery-card--float-2 { animation: hero-float-down 4.5s ease-in-out infinite; }
  .hero-gallery-card:hover { animation: none; }

  /* Mobile + Desktop: cluster (mobile com tamanhos menores, desktop com tamanhos maiores) */
  .hero-gallery--desktop {
    display: block;
    position: relative;
    width: 100%;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
    min-height: 260px;
  }
  .hero-gallery--desktop .hero-gallery-card { position: absolute; }
  .hero-gallery--desktop .hero-gallery-card--center {
    width: 160px; height: 204px; left: 50%; top: 50%; transform: translate(-50%, -50%); z-index: 2;
  }
  .hero-gallery--desktop .hero-gallery-card--1 {
    width: 105px; height: 134px; left: 0; top: 50%; margin-top: -67px; z-index: 1;
  }
  .hero-gallery--desktop .hero-gallery-card--2 {
    width: 105px; height: 134px; right: 0; top: 50%; margin-top: -67px; z-index: 1;
  }

  .hero-gallery--tablet { display: none; gap: 0; margin: 0 auto; justify-content: center; align-items: center; min-height: 240px; }
  @media (min-width: 640px) and (max-width: 1023px) {
    .hero-gallery--desktop { display: none; }
    .hero-gallery--tablet { display: flex; flex-direction: row; }
    .hero-gallery--tablet .hero-gallery-card { width: 160px; height: 205px; flex-shrink: 0; margin-left: -30px; }
    .hero-gallery--tablet .hero-gallery-card:first-child { margin-left: 0; }
  }
  /* Carrossel: dois heros completos (mesmo tamanho) — Melhor versão ↔ Lançamento do livro */
  .home-hero-carousel { position: relative; width: 100%; }
  .home-hero-carousel__viewport {
    display: grid;
    width: 100%;
  }
  .home-hero-carousel__slide {
    grid-area: 1 / 1;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
    pointer-events: none;
  }
  .home-hero-carousel__slide.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    z-index: 1;
  }
  .home-hero-headline {
    font-size: clamp(2rem, 6vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    margin: 0 0 0.75rem;
  }
  .home-hero-desc1 {
    font-size: clamp(1.05rem, 2.8vw, 1.35rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.88);
    margin: 0;
  }
  @media (min-width: 1024px) {
    .home-hero-desc1 { font-size: 1.5rem; }
  }
  .home-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #ebc071;
    margin: 0 0 0.65rem;
  }
  /* Capa do livro no lugar da galeria de fotos (slide 2) */
  .home-hero-book-wrap {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 260px;
    margin: 0 auto;
  }
  .home-hero-book-img {
    display: block;
    width: auto;
    max-width: min(240px, 68vw);
    height: auto;
    max-height: min(52vh, 420px);
    filter: drop-shadow(0 16px 40px rgba(0, 0, 0, 0.45));
  }
  @media (min-width: 640px) {
    .home-hero-book-img { max-width: min(280px, 42vw); }
  }
  @media (min-width: 1024px) {
    .home-hero-book-wrap { min-height: 480px; max-width: 640px; margin: 0 auto; }
    .home-hero-book-img { max-width: min(360px, 100%); max-height: 480px; }
  }

  .home-hero-carousel__dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.75rem;
  }
  .home-hero-carousel__dot {
    width: 0.5rem;
    height: 0.5rem;
    padding: 0;
    border: none;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: width 0.25s ease, background 0.25s ease;
  }
  .home-hero-carousel__dot.is-active {
    width: 1.75rem;
    background: #ebc071;
  }
  .home-hero-carousel__dot:focus-visible {
    outline: 2px solid #ebc071;
    outline-offset: 2px;
  }
  @media (prefers-reduced-motion: reduce) {
    .home-hero-carousel__slide { transition: none; }
  }

  @media (min-width: 1024px) {
    .hero-gallery--desktop {
      display: block; max-width: 640px; min-height: 480px;
    }
    .hero-gallery--desktop .hero-gallery-card--center {
      width: 310px; height: 395px;
    }
    .hero-gallery--desktop .hero-gallery-card--1 {
      width: 205px; height: 263px; left: 2%; margin-top: -132px;
    }
    .hero-gallery--desktop .hero-gallery-card--2 {
      width: 205px; height: 263px; right: 2%; margin-top: -132px;
    }
