/* Hot Creators landing — paleta Logo 01: crimson + dark wine + icy blue */

:root {
  /* Brand cores Logo 01 */
  --brand-crimson: #C8102E;          /* primary action, glow, accent */
  --brand-crimson-hover: #E61A3A;
  --brand-wine: #7B2147;             /* secondary surface (Logo 02 bg) */
  --brand-wine-dark: #3B1820;        /* flame/dark surface */
  --brand-wine-darker: #271017;      /* main background */

  --text-display: #F4F8FC;           /* icy blue/white pra titulos */
  --text-primary: #DDE4EC;           /* texto base */
  --text-muted: rgba(221, 228, 236, 0.62);

  --border-soft: rgba(221, 228, 236, 0.12);
  --border-strong: rgba(221, 228, 236, 0.24);

  --radius: 18px;
  --radius-sm: 10px;

  --shadow-card: 0 8px 24px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  --shadow-card-hover: 0 18px 40px rgba(200, 16, 46, 0.18), 0 8px 24px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--brand-wine-darker);
  color: var(--text-primary);
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-feature-settings: 'cv11', 'ss01';
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% -5%, rgba(200, 16, 46, 0.32) 0%, transparent 48%),
    radial-gradient(circle at 88% 105%, rgba(123, 33, 71, 0.36) 0%, transparent 52%),
    var(--brand-wine-darker);
  background-attachment: fixed;
}

a { color: inherit; text-decoration: none; }

.shell {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(40px, 8vw, 96px) clamp(20px, 5vw, 48px);
  display: flex;
  flex-direction: column;
  gap: clamp(48px, 8vw, 80px);
  min-height: 100vh;
}

/* ----- Hero ----- */
.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 720px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.brand__mark {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 0 14px rgba(200, 16, 46, 0.45));
}

.brand__mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand__name {
  font-weight: 700;
  color: var(--text-display);
  letter-spacing: 0.06em;
  font-size: 15px;
}

.hero__title {
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--text-display);
  font-weight: 700;
}

.hero__subtitle {
  font-size: clamp(16px, 2.2vw, 19px);
  line-height: 1.5;
  margin: 0;
  color: var(--text-muted);
  max-width: 520px;
}

/* ----- Grid de cards ----- */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px;
  background: rgba(59, 24, 32, 0.55);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
  min-height: 240px;
  overflow: hidden;
  isolation: isolate;
  backdrop-filter: blur(10px);
}

.card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 100% 0%, rgba(200, 16, 46, 0.18) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 220ms ease;
  z-index: -1;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(200, 16, 46, 0.4);
  box-shadow: var(--shadow-card-hover);
  background: rgba(123, 33, 71, 0.42);
}

.card:hover::before { opacity: 1; }

.card:focus-visible {
  outline: 2px solid var(--brand-crimson);
  outline-offset: 3px;
}

.card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.card__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(200, 16, 46, 0.18);
  border: 1px solid rgba(200, 16, 46, 0.32);
  color: var(--text-display);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.card__icon svg {
  width: 22px;
  height: 22px;
}

.card__tag {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(221, 228, 236, 0.7);
  padding: 4px 10px;
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  background: rgba(39, 16, 23, 0.6);
}

.card__title {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 6px 0 0 0;
  color: var(--text-display);
}

.card__copy {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0;
  flex: 1;
}

.card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-display);
  margin-top: 4px;
}

.card__cta svg {
  width: 16px;
  height: 16px;
  transition: transform 220ms ease;
}

.card:hover .card__cta svg {
  transform: translateX(4px);
}

.card:hover .card__icon {
  background: rgba(200, 16, 46, 0.32);
  border-color: rgba(200, 16, 46, 0.6);
}

/* Variacoes sutis por card */
.card--dashboard .card__icon { background: linear-gradient(135deg, rgba(200, 16, 46, 0.30), rgba(123, 33, 71, 0.45)); }
.card--hotpost   .card__icon { background: linear-gradient(135deg, rgba(123, 33, 71, 0.40), rgba(200, 16, 46, 0.20)); }
.card--rataria   .card__icon { background: linear-gradient(135deg, rgba(200, 16, 46, 0.40), rgba(59, 24, 32, 0.50)); }

/* ----- Footer ----- */
.foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: auto;
}

.foot a:hover { color: var(--brand-crimson); }
.foot__sep { opacity: 0.5; }

/* ----- Responsivo ----- */
@media (max-width: 880px) {
  .grid { grid-template-columns: 1fr; gap: 16px; }
  .card { min-height: 200px; padding: 24px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition: none !important;
    animation: none !important;
  }
}
