/* Área geral */
.loraic-slider-section {
  width: 100%;
  padding: 40px 0;
}

.loraic-slider-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}

.loraic-slider-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: #18396a;
}

/* Setas fora do carrossel */
.loraic-nav {
    display: flex;
    gap: 10px;
    margin-right: 100px;
}

.loraic-arrow {
    position: static;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid #ffffff;
    background: transparent;
    color: #ffffff;
    font-size: 25px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    padding-bottom: 5px;
}


/* Wrapper */
.loraic-slider-wrap {
  overflow-x: hidden;
  width: 100%;
}

/* Track */
.loraic-track {
  display: flex;
  gap: 20px;
  cursor: grab;
  overflow-x: auto;
  scroll-behavior: smooth;
}

.loraic-track::-webkit-scrollbar {
  display: none;
}

/* Cards */
.loraic-card {
  min-width: calc(25% - 15px);
  border-radius: 16px;
  overflow: hidden;
  background: transparent;
  position: relative;
}

.loraic-thumb {
  position: relative;
  height: 310px;
}

.loraic-thumb img {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
}

/* Overlay em gradiente */
.loraic-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.65) 20%,
    rgba(0,0,0,0.25) 55%,
    rgba(0,0,0,0) 100%
  );
}

/* Categoria */
.loraic-cat {
  position: absolute;
  bottom: 75px;
  left: 16px;
  background: #ff7a2f;
  color: #fff;
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 20px;
  z-index: 2;
}

/* Título */
.loraic-info {
  position: absolute;
  bottom: 0px;
  left: 16px;
  right: 16px;
  color: #fff;
  z-index: 2;
}

.loraic-info h3 {
  font-size: 16px;
  line-height: 1.3;
  color: #fff;
}

/* Responsivo */
@media (max-width: 1024px) {
  .loraic-card { min-width: calc(50% - 15px); }
}

@media (max-width: 640px) {
  .loraic-card { min-width: 100%; }
}
