/* ==========================================================================
   DS HOME — PREMIUM EXTENSIONS
   Mega features que superam a concorrência
   ========================================================================== */

/* ============== HERO COM CARROSSEL ============== */
.hero-slider {
  position: relative;
  overflow: hidden;
}

.hero-slider__slides {
  display: flex;
  transition: transform 800ms cubic-bezier(0.65, 0, 0.35, 1);
}

.hero-slider__dots {
  position: absolute;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 4;
}

.hero-slider__dot {
  width: 36px;
  height: 3px;
  background: rgba(255,255,255,0.3);
  border-radius: 0;
  cursor: pointer;
  transition: all 300ms ease;
  border: none;
  padding: 0;
}

.hero-slider__dot.is-active {
  background: var(--gold-400);
  width: 60px;
}

.hero-slider__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
  cursor: pointer;
  transition: all var(--t-base);
}

.hero-slider__arrow:hover {
  background: var(--gold-400);
  border-color: var(--gold-400);
  color: var(--black);
}

.hero-slider__arrow--left { left: 32px; }
.hero-slider__arrow--right { right: 32px; }

@media (max-width: 768px) {
  .hero-slider__arrow { display: none; }
}

/* ============== GRID DE BANNERS PROMOCIONAIS ============== */
.promo-grid {
  padding: 100px 0;
  background: var(--white);
}

.promo-grid__container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 768px) {
  .promo-grid__container {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 200px 200px;
    gap: 20px;
  }
}

.promo-card {
  border-radius: var(--r-md);
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 28px;
  cursor: pointer;
  transition: all var(--t-base);
  min-height: 200px;
  text-decoration: none;
}

.promo-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.promo-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.7) 100%);
  z-index: 1;
}

.promo-card__content {
  position: relative;
  z-index: 2;
  color: var(--white);
}

.promo-card__eyebrow {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--gold-300);
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}

.promo-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 4px;
}

.promo-card__subtitle {
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}

/* Card destaque (maior) */
.promo-card--featured {
  grid-column: span 2;
  grid-row: span 2;
  padding: 48px;
  min-height: 420px;
}

.promo-card--featured .promo-card__title {
  font-size: 48px;
  margin-bottom: 12px;
}

.promo-card--featured .promo-card__subtitle {
  font-size: 16px;
}

/* Cores específicas */
.promo-card--gold {
  background: linear-gradient(135deg, var(--gold-400) 0%, var(--gold-600) 100%);
}
.promo-card--gold::before {
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.3) 100%);
}
.promo-card--gold .promo-card__eyebrow { color: rgba(0,0,0,0.7); }
.promo-card--gold .promo-card__title { color: var(--black); }
.promo-card--gold .promo-card__subtitle { color: rgba(0,0,0,0.7); }

.promo-card--dark {
  background: linear-gradient(135deg, var(--black) 0%, var(--charcoal) 100%);
}

.promo-card--image {
  background-size: cover;
  background-position: center;
}

.promo-card__icon {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  z-index: 2;
}

.promo-card__icon i { width: 22px; height: 22px; }

.promo-card--gold .promo-card__icon {
  background: rgba(0,0,0,0.15);
  color: var(--black);
}

/* ============== INSPIRE-SE (Galeria de Ambientes) ============== */
.inspire-section {
  padding: 100px 0;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.inspire-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .inspire-grid {
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: 280px 280px;
    gap: 20px;
  }
}

.inspire-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  min-height: 280px;
  cursor: pointer;
  transition: all var(--t-base);
  display: flex;
  align-items: flex-end;
  padding: 32px;
  color: var(--white);
  text-decoration: none;
}

.inspire-card:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.inspire-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.8) 100%);
}

.inspire-card__content {
  position: relative;
  z-index: 2;
}

.inspire-card__tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: var(--r-full);
  font-size: 10px;
  letter-spacing: 2px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: var(--gold-300);
}

.inspire-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.2;
}

.inspire-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold-300);
}

/* Layouts da grid */
.inspire-card--large {
  grid-column: span 6;
  grid-row: span 2;
  min-height: 580px;
}

.inspire-card--medium {
  grid-column: span 3;
}

.inspire-card--small {
  grid-column: span 3;
}

/* ============== COMPRE O LOOK ============== */
.shop-the-look {
  padding: 30px 0 100px;
  background: var(--white);
}

/* Section header dentro do Compre o Look mais compacto */
.shop-the-look .section-header {
  margin-bottom: 40px;
}

.shop-the-look__container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 1024px) {
  .shop-the-look__container {
    grid-template-columns: 1.3fr 1fr;
    gap: 80px;
  }
}

.shop-the-look__image {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
}

.shop-the-look__hotspot {
  position: absolute;
  width: 32px;
  height: 32px;
  background: var(--gold-400);
  border-radius: 50%;
  border: 3px solid var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--black);
  box-shadow: var(--shadow-md);
  animation: hotspotPulse 2s ease-in-out infinite;
}

@keyframes hotspotPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212,175,55,0.6); }
  50% { box-shadow: 0 0 0 16px rgba(212,175,55,0); }
}

.shop-the-look__content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.05;
  margin-bottom: 24px;
}

.shop-the-look__content h2 em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.shop-the-look__items {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.look-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px;
  border: 1px solid var(--gray-pale);
  border-radius: var(--r-md);
  transition: all var(--t-base);
  text-decoration: none;
  color: inherit;
}

.look-item:hover {
  border-color: var(--gold-400);
  background: var(--gold-50);
}

.look-item__number {
  width: 32px;
  height: 32px;
  background: var(--gold-400);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--black);
  flex-shrink: 0;
}

.look-item__image {
  width: 64px;
  height: 64px;
  border-radius: var(--r-sm);
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}

.look-item__info {
  flex: 1;
}

.look-item__info strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  margin-bottom: 4px;
}

.look-item__info span {
  color: var(--gold-600);
  font-weight: 700;
  font-size: 14px;
}

/* ============== DS HOME MAIS (Programa de Fidelidade) ============== */
.dshome-plus {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--black) 0%, #1a1a1a 50%, var(--black) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.dshome-plus::before {
  content: 'MAIS';
  position: absolute;
  top: 50%;
  right: -5%;
  transform: translateY(-50%);
  font-family: 'Cinzel', serif;
  font-size: 380px;
  font-weight: 900;
  color: rgba(212,175,55,0.04);
  line-height: 1;
  pointer-events: none;
}

.dshome-plus__container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (min-width: 1024px) {
  .dshome-plus__container {
    grid-template-columns: 1fr 1fr;
  }
}

.dshome-plus__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: 'Cinzel', serif;
  color: var(--gold-300);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 6px;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.dshome-plus__eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold-400);
}

.dshome-plus__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.dshome-plus__title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.dshome-plus__description {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 480px;
}

.dshome-plus__benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.dshome-plus__benefit {
  padding: 24px;
  background: rgba(212,175,55,0.05);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: var(--r-md);
  text-align: center;
  transition: all var(--t-base);
}

.dshome-plus__benefit:hover {
  background: rgba(212,175,55,0.1);
  border-color: var(--gold-400);
  transform: translateY(-4px);
}

.dshome-plus__benefit-icon {
  font-size: 36px;
  margin-bottom: 12px;
  display: block;
}

.dshome-plus__benefit strong {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 13px;
  letter-spacing: 2px;
  color: var(--gold-300);
  margin-bottom: 6px;
  text-transform: uppercase;
}

.dshome-plus__benefit span {
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}

/* ============== TOP VENDAS (Ranking) ============== */
.top-sellers {
  padding: 100px 0;
  background: var(--off-white);
}

.top-sellers__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .top-sellers__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

.top-seller {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: var(--white);
  border-radius: var(--r-md);
  border: 1px solid var(--gray-pale);
  text-decoration: none;
  color: inherit;
  transition: all var(--t-base);
  position: relative;
}

.top-seller:hover {
  border-color: var(--gold-400);
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}

.top-seller__rank {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  flex-shrink: 0;
  min-width: 50px;
  text-align: center;
}

.top-seller__image {
  width: 80px;
  height: 80px;
  border-radius: var(--r-sm);
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}

.top-seller__info {
  flex: 1;
  min-width: 0;
}

.top-seller__line {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--gold-600);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.top-seller__name {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.top-seller__price {
  font-size: 18px;
  font-weight: 800;
  color: var(--black);
}

.top-seller__price small {
  font-size: 12px;
  color: var(--gray);
  text-decoration: line-through;
  font-weight: 400;
  display: block;
  margin-bottom: 2px;
}

/* ============== STORY DA MARCA ============== */
.brand-story {
  padding: 100px 0;
  background: var(--white);
}

.brand-story__container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
}

@media (min-width: 1024px) {
  .brand-story__container {
    grid-template-columns: 1fr 1fr;
    gap: 100px;
  }
}

.brand-story__visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: linear-gradient(135deg, var(--black), var(--charcoal));
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-story__visual::after {
  content: 'DS';
  font-family: 'Cinzel', serif;
  font-size: 280px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold-300), var(--gold-600));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

/* Quando tiver logo carregado, esconde o "DS" gigante */
.brand-story__visual.brand-story__visual--with-logo::after {
  content: none !important;
  display: none !important;
}

/* Logo da DsArt's LTDA preenche o container inteiro (a imagem já tem fundo preto premium) */
.brand-story__visual--with-logo .brand-story__logo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
  border-radius: var(--r-lg);
}

/* O badge "DS ART'S LTDA" fica por cima do logo, com fundo destacado */
.brand-story__visual--with-logo .brand-story__badge {
  z-index: 2;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
}

.brand-story__badge {
  position: absolute;
  top: 32px;
  left: 32px;
  background: var(--white);
  padding: 12px 20px;
  border-radius: var(--r-full);
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 2px;
  font-weight: 600;
  color: var(--gold-700);
  text-transform: uppercase;
}

.brand-story__content {
  max-width: 540px;
}

.brand-story__quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 24px;
  line-height: 1.5;
  color: var(--dark-gray);
  margin-bottom: 32px;
  padding-left: 24px;
  border-left: 3px solid var(--gold-400);
}

.brand-story__signature {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
}

.brand-story__signature-text {
  font-family: 'Cinzel', serif;
  font-size: 12px;
  color: var(--gray);
  letter-spacing: 1px;
}

.brand-story__signature-text strong {
  color: var(--black);
  font-weight: 700;
  display: block;
  font-size: 14px;
}

/* ============== HERO MINI BADGES (Floating) ============== */
.hero__floating-badge {
  position: absolute;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(212,175,55,0.3);
  padding: 14px 22px;
  border-radius: var(--r-full);
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: floatBadge 4s ease-in-out infinite;
}

.hero__floating-badge i {
  color: var(--gold-400);
  width: 18px;
  height: 18px;
}

.hero__floating-badge--left {
  bottom: 80px;
  left: 5%;
  animation-delay: 0s;
}

.hero__floating-badge--right {
  top: 35%;
  right: 5%;
  animation-delay: 2s;
}

@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@media (max-width: 1024px) {
  .hero__floating-badge { display: none; }
}
