/* ====== Página "Seja um Autor" / "Sobre Nós" ====== */

.author-page{
  max-width: 960px;
  margin: 0 auto 64px;
  padding-top: 90px;        /* compensa o header fixo */
}

/* Bloco de destaque no topo */
.author-hero{
  margin-bottom: 22px;
}

.author-pill{
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  background: rgba(255,52,78,.16);
  color: #FF90A3;
  border: 1px solid rgba(255,52,78,.45);
}

.author-title{
  margin-top: 10px;
  font-size: clamp(1.6rem, 2.4vw, 2rem);
  letter-spacing: .3px;
  font-weight: 700;
}

.author-subtitle{
  margin-top: 6px;
  font-size: 0.95rem;
  color: #D1D5DB;
  max-width: 540px;
}

/* Card de conteúdo principal */
.author-card{
  margin-top: 18px;
  background: #12131A;
  border-radius: 16px;
  border: 1px solid #1C1D26;
  padding: 20px 18px;
  box-shadow: 0 8px 24px rgba(0,0,0,.45);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.author-text{
  font-size: 0.98rem;
  line-height: 1.7;
  color: #E5E7EB;
}

.author-text--highlight{
  margin-top: 4px;
  font-weight: 600;
  color: #FFFFFF;
}

/* Links especiais (Regras / Classificação / e-mail) */
.author-link,
.author-link:visited{
  color: #FF344E;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px dashed rgba(255,52,78,.55);
}

.author-link:hover,
.author-link:focus-visible{
  color: #FF6E83;
  border-bottom-color: currentColor;
  outline: none;
}

/* ====== Bloco do fundador / Lp ====== */

.about-founder{
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 6px;
  flex-wrap: wrap;
}

.founder-avatar{
  width: 250px;
  height: 250px;
  border-radius: 999px;
  object-fit: cover;
  background: #0E0F12;
  border: 2px solid #FF344E;
  box-shadow: 0 0 0 2px rgba(255,52,78,.25);
}

.about-founder-text{
  flex: 1;
  min-width: 180px;
}

.founder-title{
  font-size: 1rem;
  margin-bottom: 4px;
  font-weight: 700;
}

/* ====== Responsivo ====== */
@media (max-width: 640px){
  .author-page{
    padding-top: 80px;
    margin-bottom: 48px;
  }

  .author-card{
    padding: 18px 14px;
  }

  .author-title{
    font-size: 1.5rem;
  }

  .about-founder{
    align-items: flex-start;
  }

  .founder-avatar{
    width: 150px;
    height: 150px;
  }
}
