/* Estilos para la sección de jugos */

.logo-img {
  height: 45px;
  width: auto;
  display: block;
}

.logo-img-center {
  height: 56px;
}

.jugo-card {
  display: flex;
  flex-direction: column;


  flex: 0 0 auto;
  min-width: clamp(260px, 70vw, 340px);
  scroll-snap-align: start;
  position: relative;
  isolation: isolate;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}


.jugo-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: conic-gradient(from 0deg, transparent 0deg, var(--jugo-color, #A3E635) 120deg, transparent 240deg, var(--jugo-color, #A3E635));
  opacity: 0;
  filter: blur(2px);
  z-index: -1;
  animation: jugo-neon 2.8s linear infinite;
}

.jugo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: -1;
}

.jugo-card:hover {
  box-shadow: 0 0 22px rgba(0, 0, 0, 0.45), 0 0 26px color-mix(in srgb, var(--jugo-color, #A3E635) 70%, transparent);
  transform: translateY(-4px);
}

.jugo-card:hover::before,
.jugo-card:hover::after {
  opacity: 1;

}

.jugo-imagen {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 1rem 1rem 0 0;

}


.comida-imagen {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 1rem 1rem 0 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.comida-card {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.comida-card::before {

  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;

  background: conic-gradient(from 0deg, transparent 0deg, var(--comida-color, #F1D34F) 120deg, transparent 240deg, var(--comida-color, #F1D34F));

  opacity: 0;
  filter: blur(2px);
  z-index: -1;
  animation: jugo-neon 2.8s linear infinite;
}


.comida-card::after {

  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: -1;
}


.comida-card:hover {
  box-shadow: 0 0 22px rgba(0, 0, 0, 0.45), 0 0 26px color-mix(in srgb, var(--comida-color, #F1D34F) 70%, transparent);
  transform: translateY(-4px);
}

.comida-card:hover::before,
.comida-card:hover::after {
  opacity: 1;
}


@media (min-width: 1024px) {
  .jugo-imagen {
    height: 210px;
  }

  .comida-imagen {
    height: 210px;
  }

}

.jugos-slider {
  display: flex;

  gap: 2.5rem;
  overflow-x: auto;
  overflow-y: visible;
  scroll-snap-type: x mandatory;

  padding: 40px 0;
  scrollbar-width: none;
  scroll-behavior: smooth;

}

.jugos-slider::-webkit-scrollbar {
  display: none;

}

@media (min-width: 1024px) {
  .jugo-card {

    width: calc((100% - 6rem) / 3);
    min-width: 320px;
  }

  .jugos-slider {
    gap: 3rem;
  }

}

@keyframes jugo-neon {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
