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

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


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

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

.ilustradores-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 20px;
}

/* ============================
   CARDS ILUSTRADORES
============================ */
.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);
}

.ilustrador-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center;
  border-radius: 6px;
  display: block;
}

.card-body {
  padding: 10px;
  text-align: center;
}

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

/* ============================
   FOTO DO ILUSTRADOR
============================ */
.ilustrador-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);
}

.ilustrador-nome {
  font-size: 22px;
  font-weight: 700;
  margin-top: 10px;
}

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

/* ============================
   CARDS DE LIVROS
============================ */
.livro-capa {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 6px;
  background: #fff;
  padding: 4px;
}

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