/* Estilos exclusivos da página inicial. */

/* Banner principal com conteúdo rastreável em HTML. */
.home-hero-carousel {
  position: relative;
  min-height: min(680px, 62vw);
  overflow: hidden;
  background: #f5eadf;
}

.home-hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .45s ease, visibility .45s ease;
}

.home-hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.shop-hero-content h2 {
  max-width: 680px;
  margin-bottom: 20px;
  font-size: clamp(3.3rem, 5.8vw, 6rem);
}

.home-hero-controls {
  position: absolute;
  z-index: 5;
  top: 18px;
  left: 50%;
  display: none;
  gap: 2px;
  padding: 4px;
  border: 1px solid rgba(21, 23, 25, .12);
  border-radius: 999px;
  background: rgba(255, 253, 249, .82);
  box-shadow: 0 8px 22px rgba(21, 23, 25, .08);
  transform: translateX(-50%);
  backdrop-filter: blur(8px);
}

.home-hero-carousel.is-ready .home-hero-controls { display: flex; }

.home-hero-controls button {
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.home-hero-controls button span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(21, 23, 25, .35);
  transition: width .2s ease, background .2s ease;
}

.home-hero-controls button.is-active span {
  width: 22px;
  border-radius: 999px;
  background: var(--ink);
}

.home-hero-controls button:focus-visible {
  outline: 3px solid #d6b797;
  outline-offset: 2px;
}

/* Títulos editoriais das seções; títulos dentro dos banners não são alterados. */
.shop-heading h2 {
  font-size: clamp(30px, 3vw, 40px);
}

@media (max-width: 980px) {
  .home-hero-carousel { min-height: 640px; }
}

@media (max-width: 640px) {
  .home-hero-carousel { min-height: 700px; }
  .shop-hero-content h2 {
    max-width: 460px;
    font-size: 2.85rem;
  }
  .shop-hero-content > p:not(.eyebrow) { font-size: 15px; }
  .home-hero-controls { top: 10px; }

  .shop-heading h2 { font-size: 30px; }

  .trust-grid strong { font-size: 14px; line-height: 1.4; }
  .trust-grid small { font-size: 12px; line-height: 1.5; }

  .shop-heading > a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    margin-bottom: 0;
    font-size: 14px;
  }

  .visual-category p { font-size: 13px; line-height: 1.5; }
  .visual-category a { width: 44px; height: 44px; right: 10px; bottom: 12px; }

  .product-badge { font-size: 11px; line-height: 1.4; }
  .product-category { font-size: 12px; line-height: 1.5; }
  .product-preview-card h3 {
    min-height: 60px;
    font-size: 14px;
    line-height: 1.42;
  }
  .product-price { font-size: 16px; line-height: 1.4; }
  .product-buy {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    font-size: 14px;
    line-height: 1.4;
  }

  .campaign-card p:not(.eyebrow) { font-size: 14px; line-height: 1.55; }
  .campaign-card .button { min-height: 44px; font-size: 14px; line-height: 1.4; }
}

@media (prefers-reduced-motion: reduce) {
  .home-hero-slide { transition: none; }
}
