/* ── Globals home ─────────────────────────────────────────── */
.fdp-home { overflow-x: hidden; }

.fdp-section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.fdp-section-title {
  font-family: var(--fdp-fonte);
  font-size: clamp(1.4rem, 2vw, 2rem);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fdp-preto);
  text-align: center;
  margin: 0 0 40px;
}

.fdp-btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: var(--fdp-fonte);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: opacity 0.2s;
}
.fdp-btn:hover { opacity: 0.85; }
.fdp-btn--ouro  { background: var(--fdp-preto); color: #fff; }
.fdp-btn--preto { background: var(--fdp-preto); color: var(--fdp-branco); }

.fdp-eyebrow {
  display: block;
  font-family: var(--fdp-corpo);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fdp-preto);
  margin-bottom: 12px;
}

/* ── Hero Slider ────────────────────────────────────────────── */
.fdp-hero-slider {
  position: relative;
  height: clamp(400px, 65vh, 680px);
  overflow: hidden;
  background: var(--fdp-preto);
}

.fdp-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s ease;
  pointer-events: none;
}
.fdp-slide--active {
  opacity: 1;
  pointer-events: auto;
}

.fdp-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.fdp-slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.fdp-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.fdp-dot--active,
.fdp-dot:hover {
  background: #fff;
  transform: scale(1.35);
}

/* ── Categorias ────────────────────────────────────────────── */
.fdp-cats {
  padding: 80px 0;
  background: var(--fdp-cinza);
}

.fdp-cats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.fdp-cat-card {
  display: block;
  text-decoration: none;
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  transition: transform 0.2s, box-shadow 0.2s;
}
.fdp-cat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.13);
}

.fdp-cat-img {
  aspect-ratio: 3 / 4;
  background-color: var(--fdp-linha);
  overflow: hidden;
}
.fdp-cat-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s;
}
.fdp-cat-card:hover .fdp-cat-img img {
  transform: scale(1.05);
}

.fdp-cat-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, var(--fdp-linha), var(--fdp-cinza));
}

.fdp-cat-label {
  display: block;
  padding: 14px 12px;
  font-family: var(--fdp-fonte);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fdp-preto);
  text-align: center;
}

/* ── Seções de categoria ───────────────────────────────────── */
.fdp-cat-section {
  padding: 72px 0;
}
.fdp-cat-section--alt {
  background: var(--fdp-cinza);
}

.fdp-cat-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 36px;
}

.fdp-cat-section-title {
  font-family: var(--fdp-fonte);
  font-size: clamp(1.2rem, 1.8vw, 1.7rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fdp-preto);
  margin: 0 0 5px;
}

.fdp-cat-section-tag {
  font-family: var(--fdp-corpo);
  font-size: 0.9rem;
  color: var(--fdp-suave);
  margin: 0;
}

.fdp-link-all {
  font-family: var(--fdp-corpo);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fdp-preto);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: opacity 0.15s;
}
.fdp-link-all:hover { opacity: 0.7; }

.fdp-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.fdp-prod-card {
  display: block;
  text-decoration: none;
  transition: transform 0.2s;
}
.fdp-prod-card:hover { transform: translateY(-3px); }

.fdp-prod-img {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--fdp-cinza);
  border-radius: 2px;
  margin-bottom: 14px;
}
.fdp-prod-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s;
}
.fdp-prod-card:hover .fdp-prod-img img { transform: scale(1.04); }

/* Badges na foto */
.fdp-badge {
  position: absolute;
  top: 10px;
  font-family: var(--fdp-corpo);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 2px;
  line-height: 1.2;
  z-index: 2;
}
.fdp-badge--off {
  left: 10px;
  background: #fff;
  color: var(--fdp-preto);
  border: 1px solid var(--fdp-preto);
}
.fdp-badge--frete {
  right: 10px;
  background: #fff;
  color: var(--fdp-preto);
  border: 1px solid var(--fdp-preto);
}

/* Info do card */
.fdp-prod-info { display: flex; flex-direction: column; gap: 3px; }

.fdp-prod-nome {
  font-family: var(--fdp-fonte);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--fdp-preto);
  margin: 0 0 5px;
  letter-spacing: 0.03em;
}

/* Bloco de preços */
.fdp-prod-prices {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.fdp-prod-price-main {
  font-family: var(--fdp-corpo);
  font-size: 1rem;
  font-weight: 700;
  color: var(--fdp-preto);
  line-height: 1.3;
}
.fdp-prod-price-main del {
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--fdp-suave);
  margin-right: 4px;
}
.fdp-prod-price-main .woocommerce-Price-amount,
.fdp-prod-price-main ins .woocommerce-Price-amount {
  color: var(--fdp-preto) !important;
  font-weight: 700;
  text-decoration: none;
}

.fdp-prod-price-pix {
  font-family: var(--fdp-corpo);
  font-size: 0.78rem;
  color: var(--fdp-verde);
  font-weight: 600;
}

.fdp-prod-price-parcel {
  font-family: var(--fdp-corpo);
  font-size: 0.76rem;
  color: var(--fdp-suave);
}


/* ── Diferenciais ──────────────────────────────────────────── */
.fdp-difs {
  padding: 72px 0;
  background: var(--fdp-preto);
}

.fdp-difs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.fdp-dif {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}

.fdp-dif-icon { font-size: 1.4rem; color: #fff; }

.fdp-dif strong {
  font-family: var(--fdp-fonte);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
}

.fdp-dif p {
  font-family: var(--fdp-corpo);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  margin: 0;
}

/* ── Sobre ─────────────────────────────────────────────────── */
.fdp-sobre {
  padding: 100px 0;
}

.fdp-sobre-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.fdp-sobre-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.fdp-sobre-text h2 {
  font-family: var(--fdp-fonte);
  font-size: clamp(1.8rem, 2.5vw, 2.8rem);
  font-weight: 700;
  color: var(--fdp-preto);
  letter-spacing: 0.03em;
  line-height: 1.2;
  margin: 0;
}

.fdp-sobre-text p {
  font-family: var(--fdp-corpo);
  font-size: 1rem;
  color: var(--fdp-suave);
  line-height: 1.75;
  margin: 0;
}

.fdp-sobre-img img {
  width: 100%;
  border-radius: 4px;
  display: block;
}

/* ── Mobile ────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .fdp-cats-grid     { grid-template-columns: repeat(3, 1fr); }
  .fdp-products-grid { grid-template-columns: repeat(2, 1fr); }
  .fdp-difs-grid     { grid-template-columns: repeat(2, 1fr); }
  .fdp-sobre-inner   { grid-template-columns: 1fr; gap: 40px; }
  .fdp-cat-section   { padding: 56px 0; }
}

@media (max-width: 600px) {
  .fdp-hero-slider     { height: clamp(260px, 50vw, 400px); }
  .fdp-cats-grid       { grid-template-columns: repeat(2, 1fr); }
  .fdp-cat-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: 50%;
    margin: 0 auto;
  }
  .fdp-cats            { padding: 56px 0; }
  .fdp-destaque,
  .fdp-sobre           { padding: 56px 0; }
  .fdp-difs            { padding: 56px 0; }
  .fdp-difs-grid       { grid-template-columns: 1fr 1fr; gap: 24px; }
  .fdp-sobre-img       { order: -1; }
}
