/* assets/css/pages/user/index.css */

/* --- Estilos para la página de Inicio --- */
.container-fluid.home-page {
  margin: 0;
  padding: 0;
}


/* --- Banners y Galería --- */
@media (min-width: 992px) {
  .carousel-item img {
    max-height: 800px;
    object-fit: cover;
  }
}
.destacada-section {
  width: 100%;
  height: 800px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
  margin-bottom: 2rem;
}
.destacada-left {
  grid-row: 1 / span 2;
  grid-column: 1 / 2;
  overflow: hidden;
}
.destacada-right-top {
  grid-row: 1 / 2;
  grid-column: 2 / 3;
  overflow: hidden;
}
.destacada-right-bottom {
  grid-row: 2 / 3;
  grid-column: 2 / 3;
  overflow: hidden;
}
.destacada-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .destacada-section {
    display: block;
    height: auto;
  }
  .destacada-section > div {
    width: 100%;
    margin-bottom: 15px;
  }
  .destacada-section img {
    height: auto;
    object-fit: contain;
  }
}

/* --- Sección Equipo --- */
.equipo-section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 2rem;
}
.equipo-container {
  display: flex;
  flex-wrap: nowrap;
  gap: 1rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}
.team-card {
  min-width: 280px;
  max-width: 280px;
}
.team-card-title {
  font-size: 1.1rem;
}
.team-card-text {
  font-size: 0.9rem;
  margin-bottom: 8px;
}