.wholeContent{
    display: flex;
    width: 80vw;
    height: 80vh;
    margin-top: 5vh;
    margin-bottom: 5vh;
    background-color: #85c1f1;
    border-radius: 4vw;
    justify-content: space-evenly;
}

.services-menu{
  display: grid;
  grid-template-columns: repeat(1, 0fr);
  padding: 1vh 0vw 1vh 0vw;
  flex-direction: column;
  background-color: #0298e6;
  border-radius: 2vw;
  margin: 2vh 1vw 2vh 1vw;
  justify-content: space-between;
}

.service-tab{
  border-radius: 5vh;
  margin: 1vh 1vw 1vh 1vw;
  flex: 1;
  aspect-ratio: 1 / 1;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.service-tab img {
  width: 90%;
  height: 90%;
  object-fit: contain;
}

.services-content-wrapper{
  flex: 0 1 76%;
  max-width: 76%;
  padding: 1vh 2vw 1vh 2vw;
  background-color: #fdf5e6; /* #f0f8ff */
  border-radius: 2vw;
  margin: 2vh 1vw 2vh 1vw;
}

.services-content-wrapper p{
  white-space: pre-line;
}

.service-content {
  display: none;
  overflow: hidden;
  max-height: 100%;
  height: 100%;
}

.service-content.active {
  display: flex;
  flex-direction: column;
  max-width: 100%;
}

.carousel-container {
  width: 100%;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  cursor: grab;
  border-radius: 1%;
  mask-image: url("/Images/Web%20Generic/Mask/Team_Photo_Mask.png");
  mask-size: 100% 100%;
  mask-repeat: no-repeat;
}

.carousel-container.dragging {
  cursor: grabbing;
  user-select: none;
}

.carousel-track {
  display: flex;
  /* gap: 0.2rem; */
  user-select: none;
  transition: transform 0.3s ease; /* para animaciones */
}

.carousel-slide {
  flex: auto;
  transition: transform 0.3s ease;
  flex: 0 0 calc(100% / 2);
  position: relative;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  mask-image: url("/Images/Web%20Generic/Mask/Team_Photo_Mask.png");
  mask-size: 100% 100%;
  mask-repeat: no-repeat;
}

.carousel-slide img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.service-content .service-title,
.service-content .service-description,
.service-content .tech-icons,
.service-content .carousel-container {
  min-height: 0;
}

.service-content .service-title {
  flex: 0 0 15%;
}

.service-content .service-title h2 {
  margin: 0;
  text-align: center;
}


.service-content .service-description {
  flex: 1 1 auto;
  overflow: hidden;
  justify-content: center;
}
.service-content .service-description p {
  margin: 0;
}

.service-content .tech-icons {
  flex:0 1 15%;
  display: flex; 
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

.service-content .tech-icons img{
  max-height: 60%;
  object-fit: contain;
}

.service-content .carousel-container {
  flex:0 0 auto;
}