/* VELURIA — homepage.css */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;1,300;1,400&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500&display=swap');

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__gradient { position: absolute; inset: 0; background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(201,169,110,0.06) 0%, transparent 70%), linear-gradient(160deg, #080808 0%, #0f0d0b 50%, #080808 100%); }
.hero__grid-lines { position: absolute; inset: 0; background-image: linear-gradient(rgba(201,169,110,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(201,169,110,0.03) 1px, transparent 1px); background-size: 60px 60px; }

.hero__inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 2rem;
  align-items: center;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 120px clamp(1rem, 4vw, 2.5rem) 80px;
  min-height: 100vh;
  box-sizing: border-box;
}

.hero__content { max-width: 580px; }

.hero__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  margin: 1rem 0 1.5rem;
  letter-spacing: -0.02em;
  color: #f0ede8;
}
.hero__title-em { font-style: italic; color: #c9a96e; display: block; }
.hero__title-span { -webkit-text-stroke: 1px rgba(201,169,110,0.35); color: transparent; display: block; }
.hero__subtitle { font-size: 1rem; color: #a09890; line-height: 1.7; max-width: 460px; margin-bottom: 2rem; }

/* ── Botões de gênero ────────────────────────────────────────── */
.ch-hero__gender {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.ch-gender-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 14px 20px;
  border-radius: 12px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  cursor: pointer;
  transition: all .22s;
  flex: 1;
  min-width: 100px;
  font-family: var(--font-body, 'DM Sans', sans-serif);
}
.ch-gender-btn:hover { transform: translateY(-3px); }
.ch-gender-btn--mulher:hover { border-color: rgba(201,169,110,.5); background: rgba(201,169,110,.06); }
.ch-gender-btn--trans:hover  { border-color: rgba(160,100,200,.5); background: rgba(160,100,200,.06); }
.ch-gender-btn--homem:hover  { border-color: rgba(80,140,200,.5);  background: rgba(80,140,200,.06); }
.ch-gender-btn__icon { font-size: 1.3rem; line-height: 1; }
.ch-gender-btn--mulher .ch-gender-btn__icon { color: #c9a96e; }
.ch-gender-btn--trans  .ch-gender-btn__icon { color: #b37fd4; }
.ch-gender-btn--homem  .ch-gender-btn__icon { color: #6baed6; }
.ch-gender-btn__label { font-size: .78rem; font-weight: 600; color: #f0ede8; }

/* ── Busca autocomplete ──────────────────────────────────────── */
.ch-hero__search { position: relative; max-width: 440px; }
.ch-search-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  padding: 8px 8px 8px 14px;
  transition: border-color .2s;
}
.ch-search-wrap:focus-within { border-color: rgba(201,169,110,.4); }
.ch-search-icon { font-size: .9rem; color: #a09890; flex-shrink: 0; }
.ch-search-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #f0ede8;
  font-size: .85rem;
  font-family: inherit;
}
.ch-search-input::placeholder { color: #555; }
.ch-search-btn {
  background: #c9a96e;
  color: #080808;
  border: none;
  border-radius: 7px;
  padding: 8px 14px;
  font-size: .75rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: inherit;
  transition: background .15s;
  flex-shrink: 0;
}
.ch-search-btn:hover { background: #d4b47a; }
.ch-suggestions {
  position: absolute;
  top: calc(100% + 6px);
  left: 0; right: 0;
  background: #141414;
  border: 1px solid rgba(201,169,110,.18);
  border-radius: 12px;
  padding: 6px;
  list-style: none;
  z-index: 200;
  box-shadow: 0 16px 40px rgba(0,0,0,.6);
  display: none;
}
.ch-suggestions.open { display: block; }
.ch-suggestion {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 14px;
  border-radius: 7px;
  cursor: pointer;
  transition: background .15s;
  gap: 8px;
}
.ch-suggestion:hover, .ch-suggestion.active { background: rgba(201,169,110,.08); }
.ch-suggestion__nome { font-size: .85rem; color: #f0ede8; font-weight: 500; }
.ch-suggestion__estado { font-size: .72rem; color: #a09890; }
.ch-suggestion__count { font-size: .68rem; color: #c9a96e; background: rgba(201,169,110,.1); padding: 2px 7px; border-radius: 4px; }
.ch-suggestions-empty { padding: 12px 14px; font-size: .82rem; color: #a09890; text-align: center; }
.ch-search-hint { font-size: .65rem; color: #444; margin-top: 7px; }

/* ── Cards flutuantes (original) ────────────────────────────── */
.hero__visual { display: flex; justify-content: center; align-items: center; height: 500px; position: relative; }
.hero__cards-float { position: relative; width: 340px; height: 480px; }

/* Base do card */
.float-card {
  position: absolute;
  background: #121212;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  transition: transform .3s ease, box-shadow .3s ease;
}

/* Sombra dourada por plano */
.float-card--vip {
  border-color: rgba(201,169,110,0.50);
  box-shadow:
    0 0 0 1px rgba(201,169,110,0.20),
    0 0 20px rgba(201,169,110,0.20),
    0 0 60px rgba(201,169,110,0.10),
    0 16px 48px rgba(0,0,0,0.80);
}
.float-card--premium {
  border-color: rgba(201,169,110,0.28);
  box-shadow:
    0 0 0 1px rgba(201,169,110,0.12),
    0 0 28px rgba(201,169,110,0.10),
    0 14px 40px rgba(0,0,0,0.75);
}
.float-card--basic {
  border-color: rgba(201,169,110,0.14);
  box-shadow:
    0 0 16px rgba(201,169,110,0.06),
    0 12px 36px rgba(0,0,0,0.70);
}

/* Posicionamento */
.float-card--1 { width: 175px; top: 0;   left: 0;    z-index: 2; animation: float1 6s ease-in-out infinite; }
.float-card--2 { width: 195px; top: 65px; right: 0;  z-index: 3; animation: float2 7s ease-in-out infinite; }
.float-card--3 { width: 168px; bottom: 0; left: 28px; z-index: 1; animation: float3 8s ease-in-out infinite; }

/* Info do card */
.float-card__info { padding: 11px 13px 13px; }
.float-card__nome {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.05rem;
  font-weight: 300;
  font-style: italic;
  color: #f0ede8;
  display: block;
  margin-bottom: 5px;
  line-height: 1.2;
}
.float-card__idade { color: #c9a96e; font-style: normal; }
.float-card__loc {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: .71rem;
  color: #a09890;
  line-height: 1;
}
.float-card__loc--empty { opacity: .5; }
.float-card__loc-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: #c9a96e;
  opacity: .8;
  flex-shrink: 0;
}

@keyframes float1{0%,100%{transform:translateY(0) rotate(-2deg)}50%{transform:translateY(-12px) rotate(-2deg)}}
@keyframes float2{0%,100%{transform:translateY(0) rotate(2deg)}50%{transform:translateY(-16px) rotate(2deg)}}
@keyframes float3{0%,100%{transform:translateY(0) rotate(-1deg)}50%{transform:translateY(-8px) rotate(-1deg)}}

.hero__scroll { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 6px; z-index: 1; }
.hero__scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom,#8a6d3e,transparent); animation: scrollline 2s ease-in-out infinite; }
@keyframes scrollline{0%{transform:scaleY(0);transform-origin:top}50%{transform:scaleY(1);transform-origin:top}51%{transform:scaleY(1);transform-origin:bottom}100%{transform:scaleY(0);transform-origin:bottom}}

/* ── Seções abaixo do hero ───────────────────────────────────── */
.ch-home-section { padding: 44px 0; }
.ch-home-section--surface { background: var(--clr-surface, #121212); }
.ch-section-head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 22px; }
.ch-eyebrow { font-size: .65rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--clr-gold, #c9a96e); margin-bottom: 6px; display: block; }
.ch-section-title { font-family: 'Cormorant Garamond', Georgia, serif; font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 300; color: #f0ede8; line-height: 1.15; margin-bottom: 22px; }
.ch-section-title em { font-style: italic; color: #c9a96e; }
.ch-see-all { font-size: .75rem; color: #c9a96e; text-decoration: none; white-space: nowrap; margin-bottom: 4px; }
.ch-see-all:hover { opacity: .7; }

/* Stories */
.ch-stories { display: flex; gap: 16px; overflow-x: auto; scrollbar-width: none; padding-bottom: 4px; }
.ch-stories::-webkit-scrollbar { display: none; }
.ch-story { display: flex; flex-direction: column; align-items: center; gap: 6px; text-decoration: none; flex-shrink: 0; }
.ch-story__ring { width: 68px; height: 68px; border-radius: 50%; padding: 2.5px; transition: transform .2s; }
.ch-story:hover .ch-story__ring { transform: scale(1.06); }
.ch-story__ring--vip     { background: linear-gradient(135deg,#c9a96e,#8a6d3e,#c9a96e); }
.ch-story__ring--premium { background: linear-gradient(135deg,#8a6d3e,#c9a96e); }
.ch-story__img { width: 100%; height: 100%; border-radius: 50%; background: #121212; border: 2.5px solid #080808; display: flex; align-items: center; justify-content: center; overflow: hidden; font-size: 1.4rem; color: #2a2a2a; }
.ch-story__img img { width:100%; height:100%; object-fit:cover; display:block; }
.ch-story__name { font-size: .63rem; color: #a09890; text-align:center; max-width:68px; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.ch-story__name--vip { color: #c9a96e; }

/* Categorias */
.ch-cats { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.ch-cat { background: #080808; border: 1px solid rgba(255,255,255,.06); border-radius: 14px; padding: 26px; text-decoration: none; display: block; position: relative; overflow: hidden; transition: all .22s; }
.ch-cat:hover { transform: translateY(-3px); }
.ch-cat--mulher:hover { border-color: rgba(201,169,110,.3); }
.ch-cat--trans:hover  { border-color: rgba(160,100,200,.3); }
.ch-cat--homem:hover  { border-color: rgba(80,140,200,.3); }
.ch-cat__icon { font-size: 1.8rem; display:block; margin-bottom:10px; }
.ch-cat--mulher .ch-cat__icon { color: #c9a96e; }
.ch-cat--trans  .ch-cat__icon { color: #b37fd4; }
.ch-cat--homem  .ch-cat__icon { color: #6baed6; }
.ch-cat__title { font-size: 1rem; font-weight: 600; color: #f0ede8; margin-bottom: 6px; }
.ch-cat__desc  { font-size: .76rem; color: #a09890; line-height: 1.6; }
.ch-cat__arrow { position:absolute; bottom:16px; right:16px; color:#c9a96e; opacity:0; transition:all .2s; font-size:.9rem; }
.ch-cat:hover .ch-cat__arrow { opacity:1; right:14px; }

/* Cidades SC */
.ch-regioes { display: grid; grid-template-columns: 1fr; gap: 12px; }
.ch-regiao { background: #121212; border: 1px solid rgba(255,255,255,.06); border-radius: 12px; padding: 16px; }
.ch-regiao--full { grid-column: 1 / -1; }
.ch-regiao__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.ch-regiao__nome  { font-size: .9rem; font-weight: 600; color: #f0ede8; }
.ch-regiao__count { font-size: .65rem; color: #555; }
.ch-regiao__tags  { display: flex; flex-wrap: wrap; gap: 6px; }
.ch-estado-tag { padding: 5px 12px; border-radius: 6px; background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.07); font-size: .75rem; color: #a09890; text-decoration: none; transition: all .15s; }
.ch-estado-tag:hover { border-color: rgba(201,169,110,.35); color: #c9a96e; }

/* Trust */
.ch-trust { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }
.ch-trust-item { background: #080808; border: 1px solid rgba(255,255,255,.06); border-radius: 12px; padding: 20px; text-align: center; }
.ch-trust-icon  { display:block; font-size:1.4rem; color:#c9a96e; margin-bottom:10px; }
.ch-trust-title { font-size:.84rem; font-weight:600; color:#f0ede8; margin-bottom:5px; }
.ch-trust-desc  { font-size:.72rem; color:#a09890; line-height:1.5; }

/* CTA Anunciar */
.ch-cta-anunciar { background: #121212; border: 1px solid rgba(201,169,110,.15); border-radius: 16px; padding: 36px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.ch-cta-anunciar__title { font-family: 'Cormorant Garamond', Georgia, serif; font-size: clamp(1.4rem, 2.5vw, 1.9rem); font-weight: 300; color: #f0ede8; margin-bottom: 8px; line-height: 1.2; }
.ch-cta-anunciar__title em { font-style:italic; color:#c9a96e; }
.ch-cta-anunciar__sub { font-size:.82rem; color:#a09890; line-height:1.6; margin-bottom:14px; }
.ch-cta-feats { list-style: none; display: flex; flex-direction: column; gap: 5px; }
.ch-cta-feats li { font-size: .78rem; color: #a09890; display: flex; align-items: center; gap: 8px; }
.ch-cta-feats li::before { content: '✓'; color: #4caf7d; font-weight: 700; flex-shrink: 0; }
.ch-cta-anunciar__right { display: flex; flex-direction: column; gap: 10px; flex-shrink: 0; min-width: 200px; }

/* Responsivo */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; padding-top: 110px; min-height: auto; padding-bottom: 60px; }
  .hero__visual { display: none; }
  .ch-cats { grid-template-columns: 1fr; }
  .ch-trust { grid-template-columns: repeat(2,1fr); }
  .ch-cta-anunciar { flex-direction: column; }
}
@media (max-width: 600px) {
  .ch-hero__gender { flex-direction: column; }
  .ch-gender-btn { flex-direction: row; justify-content: flex-start; padding: 12px 16px; }
  .ch-trust { grid-template-columns: repeat(2,1fr); }
}