/* =======================================================
   VARIÁVEIS DE TEMA
======================================================= */
:root {
  /* Gold (Ouro Italiano Fosco / Cartier Gold) */
  --gold-1: #d4b86a; --gold-2: #c9a24e; --gold-3: #b58b35;

  /* Silver (Platina / Tiffany Silver) */
  --silver-1: #e5e5e5; --silver-2: #cfcfcf; --silver-3: #b1b1b1;

  /* Bronze (Bronze Rosé de Medalha – Luxo feminino / Dior) */
  --bronze-1: #c08a5a; --bronze-2: #a56c43; --bronze-3: #8b5232;

  /* Velvet Red (Bordeaux Hermès – mais vinho que vermelho) */
  --velvet-1: #8d001a; --velvet-2: #700015; --velvet-3: #50000f;

  /* Elite Blue (Azul Royal Silencioso / Azul Joalheria) */
  --elite-1: #d6e3f0; --elite-2: #a8bed8; --elite-3: #7c9bb8;

  /* Pearl White (mantido) */
  --pearl-1: #f8f7f4; --pearl-2: #ecebe5; --pearl-3: #dfded8;

  /* Botões (fixos, neutros) */
  --btn-bg: #0d0d0d;
  --btn-border: #bda36b;
  --btn-hover: #dbc79a;
}


/* =======================================================
   BASE RESET
======================================================= */
* { margin: 0; padding: 0; box-sizing: border-box; }
html, body {
  height: 100%;
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
}
img { display: block; max-width: 100%; }

/* =======================================================
   GRID CONFIGURAÇÃO
======================================================= */
.catalog-grid {
  display: grid;
  gap: 30px;
  margin: 0 auto;
  padding: 0 12px;
  max-width: 1280px;
  grid-template-columns: repeat(2, 1fr);
}
.catalog-section:first-of-type .catalog-grid { grid-template-columns: 1fr; }

@media (min-width: 1200px) { .catalog-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 992px) and (max-width: 1199px) { .catalog-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 768px) and (max-width: 991px) { .catalog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 767px) { .catalog-grid { grid-template-columns: 1fr; padding: 0 12px; } }

/* =======================================================
   CARD BASE
======================================================= */
.catalog-card {
  position: relative;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0,0,0,0.25);
  transition: transform .35s cubic-bezier(.25,.1,.25,1),
              box-shadow .35s cubic-bezier(.25,.1,.25,1);
}
.catalog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.35);
}

/* Imagem */
.card-img { position: relative; flex: 1; }
.card-img img { width: 100%; height: 100%; object-fit: cover; }

/* =======================================================
   BOTÃO "View Profile"
======================================================= */
.view-btn {
  position: absolute;
  bottom: 12px; left: 50%;
  transform: translateX(-50%);
  padding: 8px 18px;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 999px;
  background: var(--btn-bg);
  color: #fff;
  border: 1px solid var(--btn-border);
  opacity: 0;
  transition: all .35s ease;
  pointer-events: none;
}
.catalog-card:hover .view-btn {
  opacity: 1;
  pointer-events: auto;
  background: var(--btn-bg);
  border-color: var(--btn-border);
  color: #fff;
  box-shadow: 0 0 8px rgba(189,163,107,0.35);
}
.view-btn:hover {
  background: var(--btn-hover);
  color: #111;
}

/* =======================================================
   HEADER DO CARD
======================================================= */
.card-name {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  text-align: center;
  padding: 6px;
  font-size: 1rem;
  letter-spacing: 0.5px;
}

/* =======================================================
   FOOTER DO CARD
======================================================= */
.foot {
  position: relative;
  padding: 5px 9px;
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.foot .status { display: flex; align-items: center; gap: 8px; }
.foot .dot { width: 10px; height: 10px; border-radius: 50%; }
.foot .dot.online { background: #28d17c; box-shadow: 0 0 6px rgba(40,209,124,0.6); }
.foot .dot.offline { background: #888; }
.foot .city { font-size: 0.9rem; font-weight: 500; font-family: "Inter", sans-serif; }

/* =======================================================
   LIKE BUTTON (NEUTRO)
======================================================= */
.like-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  background: var(--btn-bg);
  border: 1px solid var(--btn-border);
  color: #fff;
}
.like-btn i { font-size: 1rem; transition: transform .3s ease, color .3s ease; }
.like-btn:hover { background: var(--btn-hover); color: #111; }
.like-btn:hover i { transform: scale(1.1); color: var(--gold-2); }
.like-btn.liked { background: var(--gold-2); color: #111; border: none; }

/* =======================================================
   RIBBON – HOT (Versão Metálica Luxo Suave)
======================================================= */
.ribbon.hot {
  position: absolute;
  top: 0; right: 0;
  transform: translate(35%, 59%) rotate(45deg);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
  padding: 4px 58px;
  color: #fff;

  /* Fundo metálico Bordeaux / Vinho Fosco */
  background: linear-gradient(135deg, #700015, #b00020, #8d001a);

  /* Borda dourado fosco fino */
  border: 1px solid rgba(201,162,78,0.5);

  /* Sombra elegante e difusa */
  box-shadow: 0 2px 10px rgba(0,0,0,0.35);

  /* Suavidade geral */
  border-radius: 2px;
  z-index: 5;
  transition: all .3s ease;
}

/* Hover com brilho controlado */
.ribbon.hot:hover {
  transform: translate(35%, 59%) rotate(45deg) scale(1.04);
  background: linear-gradient(135deg, #8d001a, #b00020, #cc0022);
  box-shadow: 0 3px 12px rgba(0,0,0,0.45);
}


/* =======================================================
   SEALS
======================================================= */
.card-seals { position: absolute; top: 60px; left: 10px; display: flex; flex-direction: column; gap: 8px; z-index: 3; }
.card-seals .seal { width: 25%; filter: drop-shadow(0 2px 6px rgba(0,0,0,0.25)); }

/* =======================================================
   SEÇÕES / TITULOS
======================================================= */
.catalog-title {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  margin: 32px auto 22px;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  position: relative;
  display: block;
  width: fit-content;
  padding-bottom: 6px;
  text-shadow: 0 0 4px rgba(207, 153, 73, 0.2);
}
.catalog-title::after {
  content: "";
  position: absolute;
  left: 50%; bottom: 0;
  transform: translateX(-50%);
  width: 60%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  border-radius: 2px;
}
@media (max-width: 768px) { .catalog-title { font-size: 1.3rem; margin: 24px auto 18px; } }
@media (max-width: 480px) { .catalog-title { font-size: 1.1rem; } }

/* =======================================================
   VARIAÇÕES POR CATEGORIA
   (cores completas, foscas e discretas)
======================================================= */
/* HOT ESCORTS — Ouro Intenso (Rolex Daytona Gold) */
.catalog-card.hotEscorts {
  border: 2px solid #d4af37;
  background: linear-gradient(135deg, #ffcc33, #d4af37, #b8860b);
  color: #fff;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.35);
}

/* LUXURY ESCORTS — Platina Fria (Rolex Oystersteel / Platinum) */
.catalog-card.luxuryEscorts {
  border: 2px solid #c0c0c0;
  background: linear-gradient(135deg, #f8f8f8, #cfcfcf, #b0b0b0);
  color: #fff;
  box-shadow: 0 4px 12px rgba(192, 192, 192, 0.35);
}

/* PREMIUM ESCORTS — Bronze Profundo (Champagne Gold) */
.catalog-card.premiumEscorts {
  border: 2px solid #cd7f32;
  background: linear-gradient(135deg, #e8c39e, #cd7f32, #8c5319);
  color: #fff;
  box-shadow: 0 4px 12px rgba(205, 127, 50, 0.35);
}

/* VELVET ESCORTS — Vermelho Ferrari / Cartier com Glow Dourado */
.catalog-card.velvetEscorts {
  border: 2px solid #ff784e;
  background: linear-gradient(135deg, #ff5f6d, #ff3232, #ff0000);
  color: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(255, 50, 50, 0.45), 0 0 12px rgba(255, 200, 100, 0.4) inset;
  position: relative;
}

/* ELITE ESCORTS — Azul Royal Acetinado (Patek Philippe / Bugatti Blue) */
.catalog-card.eliteEscorts {
  border: 2px solid #3a6ea5;
  background: linear-gradient(135deg, #4a90e2, #2c5f91, #1b3d6b);
  color: #fff;
  box-shadow: 0 4px 12px rgba(42, 85, 135, 0.35);
}

/* EROTIC MASSAGE — Pérola / Mármore Branco */
.catalog-card.eroticMassage {
  border: 2px solid #e7e4d8;
  background: linear-gradient(135deg, #fdfbf7, #f1eee8, #e7e4d8);
  color: #333;
  box-shadow: 0 2px 8px rgba(200, 200, 200, 0.25);
}

/* MOBILE LAYOUT */
@media (max-width: 768px) {

  /* HOT OF THE WEEK (primeira grid = 1 por linha) */
  #catalog-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  /* TODAS AS OUTRAS (2 colunas) */
  #catalog-grid-luxury,
  #catalog-grid-premium,
  #catalog-grid-velvet,
  #catalog-grid-elite,
  #catalog-grid-massage {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }

  .catalog-card,
  .welcome-card {
    max-width: 100% !important;
    margin: 0 !important;
  }
}
  .welcome-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 28px auto;
    max-width: 1200px;
  }

  /* Telas pequenas */
  @media (max-width: 640px) {
    .welcome-grid {
      grid-template-columns: 1fr;
    }
  }
/* ===============================================
   DESKTOP GRID AJUSTES
=============================================== */
@media (min-width: 1200px) {
  /* HOT OF THE WEEK */
  #catalog-grid {
    grid-template-columns: repeat(4, 1fr) !important;
  }

  /* OUTRAS SEÇÕES (5 por fileira padrão) */
  #catalog-grid-luxury,
  #catalog-grid-premium,
  #catalog-grid-velvet,
  #catalog-grid-elite,
  #catalog-grid-massage {
    grid-template-columns: repeat(5, 1fr) !important;
  }
}

/* Telas muito grandes (ultra-wide) — até 6 por linha */
@media (min-width: 1600px) {
  #catalog-grid-luxury,
  #catalog-grid-premium,
  #catalog-grid-velvet,
  #catalog-grid-elite,
  #catalog-grid-massage{
    grid-template-columns: repeat(6, 1fr) !important;
  }
}

