.bev-carousel-custom {
  width: min(100%, 1280px);
  margin: 0 auto;
  overflow: hidden;
  box-shadow: none;
  border-radius: 0;
}

.bev-hero-title, .bev-hero-description {
    background-color: var(--bg-body);
    padding: 0.1rem 1rem;
    color: var(--text-primary);
    width: fit-content;
    margin: 0 auto 0.75rem auto;
    display: grid
;
    place-items: center;
    text-align: center;
    font-family: var(--font-serif, Georgia, serif);
}

.bev-hero-description {
    margin-bottom: 0;
    font-family: var(--font-serif, Georgia, serif);
    FONT-SIZE: larger;
    font-weight: lighter;
}

.bev-slide {
  height: clamp(420px, 36vw, 560px);   /* ↑ un poco más alto en desktop */
  min-height: 420px;
  position: relative;
  background-color: var(--bg-body);
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-item.bev-slide.active {
  background-color: var(--bg-body);
}

.bev-slide-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.bev-slide-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.bev-slide-content {
  z-index: 2;
}

/* Flechas */
.bev-carousel-custom .carousel-control-prev,
.bev-carousel-custom .carousel-control-next {
  width: 56px;
  height: 56px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
  background: transparent;
  border-radius: 0;
  transition: transform 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bev-carousel-custom .carousel-control-prev:hover,
.bev-carousel-custom .carousel-control-next:hover {
  transform: translateY(-50%) scale(1.08);
}

.bev-hero-nav .bev-hero-arrow {
  display: block;
  width: 22px;
  height: 22px;
  border-top: 4px solid var(--pr-white);
  border-right: 4px solid var(--pr-white);
  filter: drop-shadow(0 2px 4px var(--pr-glass-dark-28));
}

@media (min-width: 769px) {
  .bev-hero-nav .bev-hero-arrow {
    border-top-color: var(--text-primary);
    border-right-color: var(--text-primary);
    filter: drop-shadow(0 1px 2px var(--pr-glass-light-25));
  }
}

.bev-hero-nav--prev .bev-hero-arrow {
  transform: rotate(-135deg);
}

.bev-hero-nav--next .bev-hero-arrow {
  transform: rotate(45deg);
}

/* Desktop grande */
@media (min-width: 1200px) {
  .bev-carousel-custom {
    width: min(100%, 1840px);           /* ↑ un poco más ancho */
  }

  .bev-slide {
    height: clamp(540px, 36vw, 620px);  /* ↑ más alto */
    min-height: 340px;
  }

  .bev-carousel-custom .carousel-control-prev {
    left: 1.5rem;
  }

  .bev-carousel-custom .carousel-control-next {
    right: 1.5rem;
  }

  .bev-hero-nav .bev-hero-arrow {
    width: 26px;
    height: 26px;
    border-top-width: 4px;
    border-right-width: 4px;
  }
}

/* Tablet / móvil mediano */
@media (max-width: 768px) {
  .bev-slide {
    height: clamp(200px, 42vw, 300px);  /* un poco más alto que antes */
    min-height: 200px;
  }

  .bev-carousel-custom .carousel-control-prev,
  .bev-carousel-custom .carousel-control-next {
    width: 44px;
    height: 44px;
  }

  .bev-carousel-custom .carousel-control-prev,
  .bev-carousel-custom .carousel-control-next,
  .bev-carousel-custom .carousel-indicators {
    opacity: 0.95;
  }

  .bev-hero-nav .bev-hero-arrow {
    width: 18px;
    height: 18px;
    border-top-width: 3px;
    border-right-width: 3px;
  }
}

/* Teléfonos */
@media (max-width: 480px) {
  .bev-slide {
    height: clamp(230px, 62vw, 340px);  /* ↑ más altura relativa en móvil */
    min-height: 230px;
  }

  .bev-carousel-custom .carousel-control-prev,
  .bev-carousel-custom .carousel-control-next {
    width: 38px;
    height: 38px;
    top: auto;
    bottom: 0.75rem;
    transform: none;
  }

  .bev-carousel-custom .carousel-control-prev:hover,
  .bev-carousel-custom .carousel-control-next:hover {
    transform: scale(1.04);
  }

  .bev-carousel-custom .carousel-control-prev {
    left: 0.75rem;
  }

  .bev-carousel-custom .carousel-control-next {
    right: 0.75rem;
  }

  .bev-hero-nav .bev-hero-arrow {
    width: 15px;
    height: 15px;
    border-top-width: 2.5px;
    border-right-width: 2.5px;
  }

  .bev-carousel-custom .carousel-indicators {
    margin-bottom: 0.5rem;
  }
}

/* Móviles muy pequeños */
@media (max-width: 360px) {
  .bev-slide {
    height: clamp(210px, 65vw, 280px);
    min-height: 210px;
  }
}

@media (max-width: 420px) {
  .bev-carousel-custom {
    width: calc(100% - 1rem);
  }
}


.px-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
    margin-top: 5rem;
}