.reviews {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.5rem;
  /* Fondo fijo con pseudo-elemento porque Safari ignora background-attachment: fixed */
  &::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -1;
    background: url(/images/fondo.webp) center / cover no-repeat;
  }
}

/* HEADER */
.reviews__header {
  background-color: transparent;
  backdrop-filter: blur(5px);
  position: fixed;
  top: 0;
  width: 100%;
  max-width: 50rem;
  padding: 0.5rem 1rem;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 0.5rem;
  z-index: 1;
  /* Animaciones */
  animation: rotation 2s;
}
.reviews__header-logo-img {
  width: 70%;
  max-width: 4rem;
}
.reviews__header-iconos {
  width: 100%;
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 1rem;
  z-index: 3;
}
.reviews__icons {
  height: 2rem;
  width: auto;
  min-width: 1.3rem;
  cursor: pointer;
  animation: rotation 3s;
}
.reviews__main {
  width: 90%;
  max-width: 50rem;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.reviews-stars {
  width: 10rem;
  margin: 4rem auto 0;
}
.reviews-logo {
  width: 8rem;
  margin: 0 auto;
}
.reviews-gracias {
  text-align: center;
  padding: 1rem;
}

.reviews__cont-logos {
  max-width: 100%;
  padding: 0.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 9rem), 1fr));
  border-radius: var(--border-radius);
  gap: 0.5rem;
  background: var(--color-degradado2);
  box-shadow: var(--sombra2);
}
.reviews__cont-logos-img {
  width: 100%;
  margin: 0.3rem auto;
  padding: 0.5rem;
  border-radius: var(--border-radius);
  background: var(--color-degradado2);
  box-shadow: var(--sombra2);
  cursor: pointer;
}
.bi-heart-pulse {
  color: var(--color-secundario);
}
