/* =========================================================
   💎 VELVET — WELCOME BABY (Final Unified)
   ========================================================= */

/* ===== Container Principal ===== */
#welcome-baby-section {
  width: 100%;
  max-width: 1240px;
  margin: 60px auto;
  padding: 0 40px 80px; /* margem lateral + inferior */
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px 40px; /* espaço vertical e horizontal */
}

/* ===== Título ===== */
#welcome-baby-section h2 {
  grid-column: 1 / -1;
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1px;
  text-align: center;
  margin-bottom: 36px;
}

/* ===== Card ===== */
.welcome-card {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  background: var(--surface, #111);
  border: 1px solid var(--gold, #d4af37);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.welcome-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.45);
}

/* ===== Imagem ===== */
.wc-media {
  flex: 0 0 180px;
  height: 180px;
  background: #000;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.wc-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.welcome-card:hover .wc-media img {
  transform: scale(1.03);
}

/* ===== Conteúdo ===== */
.wc-content {
  flex: 1;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}
.wc-title {
  color: var(--gold);
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.wc-badge {
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold);
  border-radius: 999px;
  padding: 2px 10px;
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 600;
}
.wc-desc {
  color: #ccc;
  font-size: 0.9rem;
  line-height: 1.35;
  margin: 4px 0;
}

/* ===== Tags ===== */
.wc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 400;
  opacity: 0.95;
}
.wc-tag {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #fff;
  transition: color 0.25s ease;
}
.wc-tag .dot {
  color: var(--gold, #d4af37);
  font-size: 1.2em;
  line-height: 0;
  margin-right: 3px;
  transform: translateY(-1px);
}
.wc-tag:hover {
  color: var(--gold);
}

/* ===== Meta ===== */
.wc-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: #aaa;
}
.wc-meta i {
  color: var(--gold);
  margin-right: 4px;
}

/* =========================================================
   📱 RESPONSIVIDADE
   ========================================================= */

/* ===== Tablet (≤991px) ===== */
@media (max-width: 991px) {
  #welcome-baby-section {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    padding: 0 24px 60px;
  }

  .wc-media {
    flex: 0 0 140px;
    height: 140px;
  }

  .wc-content {
    padding: 14px 16px;
    gap: 6px;
  }

  .wc-title {
    font-size: 0.95rem;
  }

  .wc-desc {
    font-size: 0.85rem;
    line-height: 1.3;
  }

  .wc-tags {
    font-size: 0.8rem;
  }
}

/* ===== Mobile (≤600px) ===== */
@media (max-width: 600px) {
  #welcome-baby-section {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    padding: 0 16px 60px;
  }

  .welcome-card {
    flex-direction: column;
    border-radius: 12px;
  }

  .wc-media {
    width: 100%;
    height: 140px;
    border-radius: 12px 12px 0 0;
  }

  .wc-content {
    padding: 12px 10px 14px;
    text-align: left;
  }

  .wc-title {
    font-size: 0.85rem;
  }

  .wc-desc {
    font-size: 0.8rem;
    line-height: 1.25;
  }

  .wc-tags {
    font-size: 0.78rem;
  }
}

/* =========================================================
   💎 VELVET — Margens laterais unificadas
   ========================================================= */

/* container padrão para listas e grades (catálogo, welcome, top10 etc.) */
.velvet-grid,
#welcome-baby-section,
#top10-section,
#catalog-section {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding-left: 40px;
  padding-right: 40px;
  box-sizing: border-box;
}

/* espaçamento inferior padrão entre seções */
.velvet-grid + .velvet-grid,
#welcome-baby-section + .velvet-grid,
#catalog-section + #welcome-baby-section {
  margin-top: 60px;
}

/* versão responsiva — reduz margens no mobile */
@media (max-width: 991px) {
  .velvet-grid,
  #welcome-baby-section,
  #top10-section,
  #catalog-section {
    padding-left: 24px;
    padding-right: 24px;
  }
}

@media (max-width: 600px) {
  .velvet-grid,
  #welcome-baby-section,
  #top10-section,
  #catalog-section {
    padding-left: 16px;
    padding-right: 16px;
  }
}
