@import url("https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,100..900;1,100..900&display=swap");

.fc-card,
.fc-lista,
.fc-todas,
.fc-precios,
.fc-vacio {
  font-family: "Archivo", sans-serif;
}
.fc-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.fc-fila {
  background: rgb(19, 19, 22);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px 22px;
}
.fc-fila + .fc-fila {
  border-top: 1px solid #2a2620;
}
.fc-icono {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #3a2e14;
  color: #d9b45c;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fc-icono svg {
  width: 22px;
  height: 22px;
}
.fc-col {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.fc-label {
  color: #b0946a;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.fc-valor {
  color: #ffffff;
  font-size: 19px;
  font-weight: 700;
}
.fc-sep {
  width: 1px;
  align-self: stretch;
  background: #3a352c;
}
.fc-vacio {
  color: #9a9184;
  font-style: italic;
}
.fc-lista {
  display: flex;
  flex-direction: column;
}
.fc-lista-fila {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}
.fc-lista-fila + .fc-lista-fila {
  border-top: 1px solid #2a2620;
}
.fc-lista-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.fc-lista-titulo {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
}
.fc-lista-sub {
  color: #9a9184;
  font-size: 14px;
}
.fc-lista-hora {
  color: #d9b45c;
  font-size: 22px;
  font-weight: 900;
  flex-shrink: 0;
}

.fc-lista-formato {
  text-transform: uppercase;
}

.fc-todas {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.fc-todas-pelicula {
  display: flex;
  flex-direction: column;
}
.fc-todas-pelicula + .fc-todas-pelicula {
  border-top: 1px solid #2a2620;
  padding-top: 16px;
}
.fc-todas-titulo {
  color: #ffffff;
  font-size: 20px;
  font-weight: 800;
  text-decoration: none;
  padding-bottom: 6px;
}
.fc-todas-titulo:hover,
.fc-todas-titulo:focus {
  color: #d9b45c;
}
.fc-todas-fila {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
}
.fc-todas-fila + .fc-todas-fila {
  border-top: 1px solid #2a2620;
}
.fc-todas-info {
  display: flex;
  align-items: center;
  gap: 10px;
}
.fc-todas-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d9b45c;
  background: rgba(217, 180, 92, 0.08);
  color: #d9b45c;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 5px;
}
.fc-todas-sub {
  color: #9a9184;
  font-size: 14px;
}
.fc-todas-hora {
  color: #d9b45c;
  font-size: 22px;
  font-weight: 900;
  flex-shrink: 0;
}

.fc-precios {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.fc-precios-card {
  background: rgb(19, 19, 22);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 16px 20px;
}
.fc-precios-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #2a2620;
  margin-bottom: 8px;
}
.fc-precios-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d9b45c;
  background: rgba(217, 180, 92, 0.08);
  color: #d9b45c;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 5px;
}
.fc-precios-titulo {
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.fc-precios-fila {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 6px 0;
}
.fc-precios-desc {
  color: #c9c2b8;
  font-size: 15px;
}
.fc-precios-valor {
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
}
.fc-precios-gratis {
  color: #d9b45c;
}

@media (max-width: 560px) {
  .fc-fila {
    flex-wrap: wrap;
    gap: 12px;
  }
  .fc-sep {
    display: none;
  }
  .fc-valor {
    font-size: 16px;
  }
  .fc-lista-hora {
    font-size: 18px;
  }
  .fc-todas-hora {
    font-size: 18px;
  }
}
