@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;
}

/* =========================
   BASE
========================= */
body {
  margin: 0;
  font-family: 'GalanoGrotesqueRegular';
  background: #f9f9f9;
  color: #333;
}

/* =========================
   BREADCRUMB
========================= */
.breadcrumb-container {
  max-width: 1300px;
  margin: 20px auto 10px;
  padding: 0 25px;
}

.breadcrumb {
  font-family: 'GalanoGrotesqueRegular';
  font-size: 14px;
  color: #666;
}

.breadcrumb a {
  color: #4a6fa5;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: #c72041;
  text-decoration: underline;
}

.breadcrumb .sep {
  margin: 0 6px;
  color: #aaa;
}

.breadcrumb span {
  color: #333;
  font-weight: 600;
}
/* =========================
   CONTAINER PRINCIPAL
========================= */
.containerPrincipal {
    max-width: 1300px;
    margin: 10px auto;
}

/* =========================
   CONTAINER HEADER
========================= */

.farol-header {
    text-align: center;
    padding: 3rem 2rem;
    margin-bottom: 5px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.farol-logo {
    max-width: 180px;
    margin-bottom: 40px;
}

.farol-title {
    color: #000;
    font-family: 'GalanoGrotesqueBold';
    font-size: 32px;
    margin-bottom: 1.5rem;
}
 .farol-description {
    font-family: 'GalanoGrotesqueRegular';
    color: #7a7a7a;
    font-size: 18px;
    line-height: 1.6;
    margin: 0 auto;
}


/* Catalogo */

.vitrine-bloco {
  max-width: 1300px;
  margin: 10px auto;
  padding: 0 25px;
}

.catalogo-container {
  background: white;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  margin-top: 10px;
  margin-bottom: 3rem;
}


/* =========================
   FILTROS
========================= */
.filters-container {
  background: white;
  padding: 1.5rem;
  border-radius: 6px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  margin-bottom: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.filter-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.filter-label {
  font-family: 'GalanoGrotesqueRegular';
  font-weight: 500;
  color: #495580;
  font-size: 0.9rem;
  white-space: nowrap;
}

.filter-select, 
.filter-input {
  padding: 0.5rem 1rem;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-family: 'GalanoGrotesqueRegular';
  font-size: 0.9rem;
  background: white;
  transition: all 0.3s ease;
}

.filter-select:focus, 
.filter-input:focus {
  outline: none;
  border-color: #495580;
  box-shadow: 0 0 0 2px rgba(73, 85, 128, 0.2);
}

.filter-button {
  background: #c72041;
  color: white;
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: 6px;
  font-family: 'GalanoGrotesqueRegular';
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.filter-button:hover {
  background: #5d5d5d;
  transform: translateY(-2px);
}

.reset-button {
  background: transparent;
  color: #495580;
  border: 1px solid #495580;
  padding: 0.5rem 1.5rem;
  border-radius: 6px;
  font-family: 'GalanoGrotesqueRegular';
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-left: auto;
}
.reset-button:hover {
  background: #f5f5f5;
  color: #c72041;
}






 .book-shelf {
     position: relative;
     padding: 1.5rem 0 3rem;
     display: grid;
     gap: 25px;
     grid-template-columns: repeat(auto-fill, minmax(200px, auto));
     align-items: end;
}
 .book-card {
     border-radius: 8px;
     overflow: hidden;
     transition: all 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.28);
     height: auto;
     display: flex;
     flex-direction: column;
     box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
     position: relative;
     transform-style: preserve-3d;
     transform: perspective(500px) rotateY(0deg);
}
 .book-card:hover {
     transform: perspective(500px) rotateY(-5deg) translateY(-2px) scale(1.005);
     box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
     z-index: 10;
}
 .book-cover {
     flex: 1;
     width: 100%;
     padding: 0;
     background: none;
     position: relative;
     overflow: hidden;
}
 .book-cover img {
     width: 100%;
     height: auto;
     object-fit: cover;
     box-shadow: none;
     transition: all 0.3s ease-out;
     position: relative;
     z-index: 1;
}
 .book-card:hover .book-cover img {
     transform: scale(1.03);
     box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
}


/* =========================
   INFO (cartão independente embaixo)
========================= */
.book-info{
  font-family: 'GalanoGrotesqueRegular'; 
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 6px 12px rgba(0,0,0,.08);      /* sombra só no bloco de info */
  padding: 10px 10px;
  height: 80px;                                 /* altura fixa p/ alinhar textos */
}

/* Tipografia dentro do info (igual ao seu) */
.book-genre{
  font-size: 12px; 
  color:#777; 
  margin-bottom:2px; 
  display:-webkit-box; 
  -webkit-line-clamp:1; 
  -webkit-box-orient:vertical; 
  overflow:hidden;
}

.book-title{
  font-family: 'GalanoGrotesqueRegular';  
  font-weight:700; 
  color:#000; 
  font-size:16px;
  margin:0 0 .1rem; 
  display:-webkit-box; 
  -webkit-line-clamp:2; 
  -webkit-box-orient:vertical; 
  overflow:hidden;
}
.book-author{
  font-family: 'GalanoGrotesqueRegular'; 
  color:#8c7470; 
  font-size:12px;
  margin-top:-5px; 
  margin-bottom:5px;
}

/* BADGES continuam funcionais, presas na capa */
.featured-badge, .new-badge{
  position:absolute; 
  top:10px; 
  color:#fff; 
  padding:5px 10px; 
  border-radius:4px;
  font-size:.75rem; 
  font-weight:600; 
  z-index:2;
}

.featured-badge{ 
  right:10px; 
  background:#f8b195; 
}

.new-badge{ 
  left:10px; 
  background:#c72041; 
}

