.carrusel-container {
    width: 100%;
    max-width: 800px;
    margin: auto;
  overflow: hidden; /* Oculta las fotos que no están a la vista */
  position: relative;
}
.carrusel-slides {
    display: flex;
  ovwidth: calc(100% * 4); /* Ajusta según el número total de slides */
  animation: scroll 30s infinite ease-in-out;
}

.carrusel-slides::-webkit-scrollbar {
  display: none;
}


@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-1700%); } 
}





.slide {
    width: 100%;
  flex-shrink: 0;
}
.slide img {
    width: 100%;
  height: 100%;
  object-fit: cover; /* Ajusta la imagen sin deformarla */
}

/* CSS */
.org-chart ul {
  padding-top: 50px;
  display: flex;
  justify-content: center;
}
.org-chart li {
  list-style-type: none;
  position: relative;
  padding: 20px 5px 0 5px;
}
.member {
  padding: 10px;
  border-radius: 10px;
  text-align: center;
}

.members {
  padding: 20px;
  border-radius: 20px;
  text-align: center;
}

.members img {
  width: 150px;
  height: 150px;
  border-radius: 150%; /* Foto circular [9] */
  display: block;
  margin: 0 auto 10px;
}

.member img {
  width: 150px;
  height: 150px;
  border-radius: 100%; /* Foto circular [9] */
  display: block;
  margin: 0 auto 10px;
}










body {
  background-color: #333;
}

.organigrama * {
  margin: 0px;
  padding: 0px;
}

.organigrama ul {
  padding-top: 20px;
  position: relative;
}

.organigrama li {
  float: left;
  text-align: center;
  list-style-type: none;
  padding: 20px 5px 0px 5px;
  position: relative;
}

.organigrama li::before, .organigrama li::after {
  content: '';
  position: absolute;
  top: 0px;
  right: 50%;
  border-top: 1px solid #f80;
  width: 50%;
  height: 20px;
}

.organigrama li::after{
  right: auto;
  left: 50%;
  border-left: 1px solid #f80;
}

.organigrama li:only-child::before, .organigrama li:only-child::after {
  display: none;
}

.organigrama li:only-child {
  padding-top: 0;
}

.organigrama li:first-child::before, .organigrama li:last-child::after{
  border: 0 none;
}

.organigrama li:last-child::before{
  border-right: 1px solid #f80;
  -webkit-border-radius: 0 5px 0 0;
  -moz-border-radius: 0 5px 0 0;
  border-radius: 0 5px 0 0;
}

.organigrama li:first-child::after{
  border-radius: 5px 0 0 0;
  -webkit-border-radius: 5px 0 0 0;
  -moz-border-radius: 5px 0 0 0;
}

.organigrama ul ul::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  border-left: 1px solid #f80;
  width: 0;
  height: 20px;
}

.organigrama li a {
  border: 1px solid #f80;
  padding: 1em 0.75em;
  text-decoration: none;
  color: #333;
  background-color: rgba(255,255,255,0.5);
  font-family: arial, verdana, tahoma;
  font-size: 0.85em;
  display: inline-block;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-transition: all 500ms;
  -moz-transition: all 500ms;
  transition: all 500ms;
}

.organigrama li a:hover {
  border: 1px solid #fff;
  color: #ddd;
  background-color: rgba(255,128,0,0.7);
  display: inline-block;
}

.organigrama > ul > li > a {
  font-size: 1em;
  font-weight: bold;
}

.organigrama > ul > li > ul > li > a {
  width: 8em;
}