.main-panel{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    
    width: 100%;
  }
.image-section {
  position: relative;
  display: block;
  width: 100%;
  height: 80vh;               /* hero horizontal */
  overflow: hidden;
  cursor: pointer;
  z-index: 1;
}

#heroCarousel {
  height: 80vh;
  width: 100%;
}
#heroCarousel .carousel-inner,
#heroCarousel .carousel-item,
#heroCarousel .image-section {
  height: 100%;
}
/* Quita fondos feos de Bootstrap */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(1);
}

.carousel-control-prev,
.carousel-control-next {
    z-index: 10;
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: drop-shadow(0 0 6px rgba(0,0,0,0.6));
}

/* Imagen */
.image-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;          /* CLAVE */
  object-position: center;
  display: block;
}

/* Overlay negro */
.image-section .img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.50);
  z-index: 1;
}

/* Texto centrado */
.img-desc-sect {
  position: absolute;
  inset: 0;
  z-index: 2;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  text-align: center;
  color: var(--bg-100);
  padding: 1.5rem;
  transition: .5s;
}
.img-desc-sect:hover  h2{
  color: var(--accent-200);
}.img-desc-sect:hover p{
  transform: translateY(1.5em);
}
.img-desc-sect h2 {
  font-size: clamp(3rem, 5vw, 4.5rem);
  margin-bottom: 1rem;
  font-weight: 700;
  letter-spacing: .1em;
  transition: .5s;
}
.img-desc-sect p {
  max-width: 720px;
  font-size: clamp(1rem, 2vw, 1.2rem);
  transition: .5s;
}

.for-who-section{
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 1em;
  padding-top: 3em;
}
.for-who-section h3{
  color: var(--primary-100);
  font-size: 2em;
  padding: 0;
  margin: 0;
  margin-bottom: 2em;
}
.for-who-options{
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 2em;
}
.for-who-options a{
  text-decoration: none;
  color: var(--primary-100);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: .5s;
  margin-bottom: 3em;
}
.for-who-options a:hover{
  color: var(--accent-200);
}
.for-who-options img{
  width: 30vh;
  height: 30vh;
  border-radius: 50%;
  transition: .5s;
  object-fit: cover;
}
.for-who-options a:hover img{
  transform: scale(1.1);
}
.for-who-options a:hover h4{
  transform: translateX(-2em);
}
.for-who-options h4{
  margin: 0;
  padding: 0;
  font-size: 1.3em;
  width: 70%;
  text-align: start;
  transition: .5s;
}





.other-section{
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0;
  margin: 0;
}
.other-section-options {
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
}
.other-section-options a {
  position: relative;
  display: block;
  height: 60vh;
  overflow: hidden;
  text-decoration: none;
  transition: .5s;
}
.other-section-options a:hover h4{
  color: var(--accent-200);
}
.other-section-options a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.img-overlay-other {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.other-section-options a h4 {
  position: absolute;
  inset: 0;
  z-index: 2;

  display: flex;
  justify-content: center;
  align-items: center;

  color: var(--bg-100);
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
  letter-spacing: 0.03em;
  transition: .5s;
}


.items-index,
.grid-items-index {
  box-sizing: border-box;
}

.items-index {
  display: flex;
  flex-direction: column;
  padding: 1em;
  width: 100%;
}

.grid-items-index {
  display: grid;
  grid-auto-flow: column;
  align-items: center;
  grid-auto-columns: 15em;
  gap: .75em;

  width: 100%;
  max-width: 100%;
  overflow-x: auto;

  margin-bottom: 2.5em;

  scroll-snap-type: x mandatory;
}
.view-more-items{
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  align-items: center;
  color: var(--text-300);
  text-decoration: none;
  background-color: var(--bg-100);
  border-radius: 1em;
  transition: .5s;
  margin-left: 1.5em;
}
.view-more-items i{
  font-size: 3.5em;
}
.view-more-items h4{
  margin-top: .3em;
}
.view-more-items:hover{
  color: var(--accent-100);
  background-color: var(--bg-300);
}

  
@media (min-width:900px){
  .for-who-section{
    padding: 2em 5%;
    padding-top: 2em;
  }
  .for-who-options{
    flex-direction: row;
    justify-content: space-between;
  }
  .for-who-options img{
    width: 50vh;
    height: 50vh;
  }
  .other-section-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
  }
  .other-section-options a {
    height: 80vh;
  }
  .items-index {
  padding: 4em 5%;
}
  }
  


  .bottom-search-section{
  display: none !important;
}
.clean-filters{
  display: none !important;
}