@font-face {
  font-family: 'GalanoGrotesqueRegular';
  src: url('/assets/fonts/GalanoGrotesqueRegular.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'GalanoGrotesqueBold';
  src: url('/assets/fonts/GalanoGrotesqueBold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
}

/* ============================
   FONTE GLOBAL
============================ */
html, body {
  font-family: 'GalanoGrotesqueRegular' !important;
}

* {
  font-family: 'GalanoGrotesqueRegular' !important;
}


/* ============================
   GRID DE AUTORES
============================ */
.container h1{
  font-family: 'GalanoGrotesqueRegular'; 
  font-size: 42px;
  font-weight: 500;
  margin: 0;
  color: #333;
}

.autores-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); /* mínimo 150px */
  gap: 20px;
}

/* ============================
   CARDS AUTORES
============================ */
.card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  background: #fff;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.autor-img {
  width: 100%;
  height: 220px;         /* fixa altura */
  object-fit: cover;     /* corta proporcionalmente */
  object-position: center;
  border-radius: 6px;
  display: block;
}

/* Conteúdo */
.card-body {
  padding: 10px;
  text-align: center;
}

.card-title {
  font-family: 'GalanoGrotesqueRegular'; 
  font-size: 15px;
  font-weight: 600;
  margin: 0;
  color: #333;
  text-align: center;
}


/* ============================
   FOTO DO AUTOR
============================ */
.autor-foto {
  width: 220px;
  height: 220px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #eee;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.autor-nome {
  font-family: 'GalanoGrotesqueRegular';
  font-size: 22px;
  font-weight: 700;
  margin-top: 10px;
}

.autor-bio {
  font-family: 'GalanoGrotesqueRegular';
  font-size: 15px;
  line-height: 1.6;
  color: #555;
  text-align: justify;
}

/* ============================
   CARDS DE LIVROS
============================ */
.livro-capa {
  width: 100%;
  height: auto;          /* mantém proporção original */
  object-fit: contain;   /* nunca corta, apenas ajusta */
  border-radius: 6px;
  background: #fff;      /* evita bordas brancas feias */
  padding: 4px;          /* espaço interno para não encostar */
}


.card-title {
  font-family: 'GalanoGrotesqueRegular';
  font-size: 14px;
  font-weight: 600;
  color: #333;
  text-align: center;
}
