/* =========================================================
   SINGLE LLIBRE - HERO (5 col | 6.5 col) PIXEL PERFECT
   ========================================================= */

.llibre-hero {
  padding: 80px 0;
  background-color: #ffffff;
  overflow: hidden; /* Seguridad para el desborde */
  --llibre-assignatura-color: #ff604f;
}

.llibre-hero__container.grid-container {
  display: grid;
  align-items: center;
}

/* --- DESKTOP LAYOUT --- */
@media (min-width: 993px) {
  /* TEXTO: Ocupa las primeras 5 columnas (Líneas 1 a 6) */
  .llibre-info {
    grid-column: 1 / 6;
  }

  /* CONTENEDOR GRIS (6.5 Columnas): 
       Anclado de la línea 7 a la 13 (6 columnas físicas).
       Le sumamos media columna + medio gap hacia la IZQUIERDA. */
  .llibre-cover {
    grid-column: 7 / 13;
    position: relative;
    margin-left: calc(((100% / 6) * 0.5 * -1) - (var(--grid-gap) / 2));
    width: calc(100% + ((100% / 6) * 0.5) + (var(--grid-gap) / 2));
  }

  /* EL LIBRO (4 Columnas exactas):
       Dentro de las 6.5 columnas, 4 columnas equivalen matemáticamente a ~61.53% */
  .llibre-cover-bg img {
    width: calc((4 / 6.5) * 100%);
  }
}

/* --- ESTILOS DEL CONTENEDOR DE LA IMAGEN --- */
.llibre-cover-bg {
  background-color: #f4f5f7;
  border-radius: 32px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 44px 0; /* Espacio vertical */
}

.llibre-cover-bg img {
  height: auto;
  border-radius: 8px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  display: block;
}

/* --- ESTILOS DEL TEXTO IZQUIERDO --- */
.llibre-colleccio {
  font-size: 18px;
  font-weight: 700;
  color: #5d4d9b;
  margin-bottom: 16px;
}

.llibre-title {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.1;
  font-weight: 700;
  color: var(--llibre-assignatura-color);
  margin: 0 0 24px;
}

.llibre-descripcio {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #000;
  margin-bottom: 32px;
}

.llibre-descripcio p {
  margin-bottom: 16px;
}
.llibre-descripcio p:last-child {
  margin-bottom: 0;
}

/* --- BLOQUE ISBN --- */
.llibre-fitxa {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}

.llibre-isbn-icon {
  width: 36px;
  height: 48px;
  background-color: #f5f7fa;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.llibre-isbn-icon svg {
  width: 24px;
  height: 24px;
}

.llibre-isbn-text {
  display: flex;
  flex-direction: column;
}

.isbn-label {
  font-size: 16px;
  color: #000;
  line-height: 24px;
  font-weight: 400;
}

.isbn-value {
  font-size: 16px;
  font-weight: 600;
  color: #000;
  line-height: 24px;
}

/* --- BOTONES --- */
.llibre-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.llibre-actions .btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 100px;
  font-size: 16px;
  line-height: 22px;
  font-weight: 600;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.llibre-actions .btn:hover {
  opacity: 0.9;
}

.llibre-hero .btn--salmon {
  background-color: var(--llibre-assignatura-color);
  color: #1e1348;
}

.llibre-hero--assignatura-llengua-catalana {
  --llibre-assignatura-color: #ff604f;
}
.llibre-hero--assignatura-lengua-castellana {
  --llibre-assignatura-color: #f29045;
}
.llibre-hero--assignatura-matematiques {
  --llibre-assignatura-color: #789fed;
}
.llibre-hero--assignatura-coneixement-del-medi {
  --llibre-assignatura-color: #44c887;
}
.llibre-hero--assignatura-musica {
  --llibre-assignatura-color: #9fc600;
}
.llibre-hero--assignatura-religions {
  --llibre-assignatura-color: #756bff;
}
.llibre-hero--assignatura-valors {
  --llibre-assignatura-color: #8fb2a1;
}
.llibre-hero--assignatura-plastica {
  --llibre-assignatura-color: #eb61a6;
}
.llibre-hero--assignatura-religio-catolica {
  --llibre-assignatura-color: #a972eb;
}
.llibre-hero--assignatura-medi-social {
  --llibre-assignatura-color: #f7a600;
}
.llibre-hero--assignatura-tecnologia {
  --llibre-assignatura-color: #007dc7;
}
.llibre-hero--assignatura-filosofia {
  --llibre-assignatura-color: #35b6b4;
}

.btn--purple {
  background-color: #1e1348;
  color: #ffffff;
}

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
  .llibre-hero {
    padding: 40px 0;
  }

  .llibre-hero__container.grid-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .llibre-info {
    display: contents;
  }

  .llibre-colleccio {
    order: 1;
    margin-bottom: 0;
  }

  .llibre-title {
    order: 2;
    margin-bottom: 8px;
  }

  .llibre-cover {
    order: 3;
    width: 100%;
    margin-left: 0;
  }

  .llibre-descripcio {
    order: 4;
    margin-bottom: 0;
  }

  .llibre-fitxa {
    order: 5;
    margin-bottom: 0;
  }

  .llibre-actions {
    order: 6;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 8px;
    gap: 16px;
  }
  .llibre-cover-bg {
    padding: 40px;
    border-radius: 24px;
  }

  .llibre-cover-bg img {
    width: 85%;
    margin: 0 auto;
  }

  .llibre-actions .btn {
    width: 75%;
    justify-content: center;
  }
}
