/* Estilos compartilhados para subpáginas de produto */

/* ─── BREADCRUMB ──────────────────────────────── */
.breadcrumb {
  padding: 20px 56px 0;
  max-width: 1312px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 400;
  color: rgba(255,255,255,0.4);
  position: relative;
  z-index: 2;
}

.breadcrumb a { color: rgba(255,255,255,0.4); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,0.25); }

/* ─── GRID DE LINHAS ──────────────────────────── */
.lines-section {
  padding: 80px 56px 96px;
  max-width: 1312px;
  margin: 0 auto;
}

.lines-header {
  margin-bottom: 56px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
}

.lines-header h2 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 400;
  color: var(--dark);
}

.lines-header h2 em { font-style: italic; color: var(--gold); }

.lines-header p {
  max-width: 380px;
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--mid);
}

.lines-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

/* Card de linha/produto */
.line-card {
  background: var(--light);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: background 0.3s;
}

.line-card:hover { background: #ede9e3; }
.line-card:hover .lc-img { transform: scale(1.04); }
.line-card:hover .lc-arrow { opacity: 1; transform: translateX(0); }

.lc-image {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #e8e4de;
  position: relative;
}

.lc-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.lc-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  color: rgba(0,0,0,0.18);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.lc-body {
  padding: 24px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lc-tag {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.lc-name {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--dark);
  line-height: 1.2;
}

.lc-desc {
  font-size: 0.8rem;
  font-weight: 300;
  line-height: 1.65;
  color: var(--mid);
}

.lc-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 4px;
}

.lc-cta {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--dark);
  letter-spacing: 0.06em;
}

.lc-arrow {
  font-size: 0.9rem;
  color: var(--gold);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.2s, transform 0.2s;
}

/* Card destaque (ocupa 2 colunas) */
.line-card.featured {
  grid-column: span 2;
}

.line-card.featured .lc-image {
  aspect-ratio: 16/7;
}

/* ─── SOLICITAR STRIP ─────────────────────────── */
.solicitar-strip {
  background: var(--dark);
  padding: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin: 0 56px 80px;
}

.solicitar-strip h3 {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--white);
}

.solicitar-strip h3 em { font-style: italic; color: var(--gold); }

.solicitar-strip p {
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  margin-top: 6px;
}

.solicitar-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

/* ─── PRODUCT IMAGE VARIANTS ─────────────────── */
.lc-image-products {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 28px 20px;
  box-sizing: border-box;
  background: #ede9e3;
}

.lc-image-products img {
  flex: 1;
  min-width: 0;
  height: 160px;
  object-fit: contain;
  transition: transform 0.4s var(--ease);
}

.line-card:hover .lc-image-products img {
  transform: translateY(-4px);
}

.lc-image-single {
  background: #ede9e3;
}

.lc-image-single .lc-img {
  object-fit: contain;
  padding: 24px;
  box-sizing: border-box;
}

/* ─── MOBILE ──────────────────────────────────── */
@media (max-width: 960px) {
  .breadcrumb { padding: 16px 24px 0; }
  .lines-section { padding: 56px 24px 72px; }
  .lines-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .lines-grid { grid-template-columns: repeat(2, 1fr); }
  .line-card.featured { grid-column: span 2; }
  .solicitar-strip { flex-direction: column; margin: 0 24px 56px; padding: 40px 32px; }
  .solicitar-actions { flex-direction: column; width: 100%; }
  .solicitar-actions .btn-primary,
  .solicitar-actions .btn-ghost { justify-content: center; }
}

@media (max-width: 600px) {
  .lines-grid { grid-template-columns: 1fr; }
  .line-card.featured { grid-column: span 1; }
  .line-card.featured .lc-image { aspect-ratio: 4/3; }
}
