    #uniforme {
      padding: 5rem 1rem;
      color: white;
      text-align: center;
    }

    .uniforme-title {
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: 2rem;
    }

    .uniforme-gallery {
      display: flex;
      justify-content: center;
      gap: 4rem;
      flex-wrap: wrap;
    }

    .uniforme-viewer {
      position: relative;
      width: 300px;
      border-radius: 1rem;
      overflow: hidden;
      background: #111;
      box-shadow: 6px 4px 35px rgba(166, 22, 233, 0.6);
    }

    .uniforme-viewer img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      transition: transform 0.3s ease;
    }

    .uniforme-viewer:hover img {
      cursor: grab;
    }

    .indicator {
      margin-top: 1rem;
      display: flex;
      justify-content: center;
      gap: 0.4rem;
    }

    .dot {
      width: 8px;
      height: 8px;
      background: #aaa;
      border-radius: 50%;
      transition: background 0.3s;
    }

    .dot.active {
      background: #a855f7;
    }

    .banner {
  display: flex;
  align-items: center;
  height: 75dvh;
  background-image: url(assets/image.webp);
  background-position: 80% 50%;
  margin-top: 1em;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 0 2rem;
}

#scroll-button {
  width: 50px;
  height: 50px;
  position: absolute;
  bottom: 180px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #9037ff;
  color: white;
  border: none;
  border-radius: 99999px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s;
}

.Program{
    width: 100vw;
    height: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #5400ad9f;
    text-align: center;
}

h1{
    color: #ffffff;
  font-size: 64px;
  width: 45%;
  margin-left: 0em;
  font-weight: medium;
  font-family: Outfit;
}

button{
    font-family: Outfit;
}

 #sc2 {
      display: flex;
      flex-wrap: wrap;
      gap: 5rem;
      padding: 2rem;
      color: white;
      justify-content: center;
      height: 75vh;
    }

    .sc2-left, .sc2-right {
      background-color: #1a0033;
      border-radius: 20px;
      padding: 2rem;
    }

    .sc2-left {
    flex: 1 1 300px;
    max-width: 866px;
    height: 110%;
    }

    .sc2-left h2 {
      background-color: #9933ff;
      color: white;
      padding: 1rem;
      text-align: center;
      border-radius: 10px;
      font-weight: bold;
      font-size: 2em;
    }

    .sc2-left p {
      margin-top: 1.5rem;
      line-height: 1.6;
      font-size: 1.3rem;
    }

    .sc2-right {
      flex: 0 1 280px;
      height: 110%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 2rem;
      background-color: #150028;
    }

    .sc2-button {
      padding: 1rem 2rem;
      background-color: #9933ff;
      color: white;
      border: none;
      border-radius: 12px;
      font-size: 1rem;
      font-weight: bold;
      cursor: pointer;
      width: 100%;
      text-align: center;
    }

    .sc2-line {
      width: 80%;
      height: 4px;
      background-color: white;
      border-radius: 2px;
    }

    .sc2-line.small {
      width: 70%;
    }


     @media (max-width: 1200px) {


      .mobile-not {
        display: none;
      }
     }

     @media (max-width: 1000px) {

      .sc2-left p{
              font-size: 16px;
      }


      .mobile-not {
        display: none;
      }
     }

    @media (max-width: 768px) {

        #scroll-button{
        bottom: 290px !important;
        }

        #banner {
            height: 50vh;
            width: 100%;
            background-position: center;
        }

        .Program{
            width: 100%;
        }

        h1{
            font-size: 24px;

        }

      #sc2 {
        flex-direction: column;
        align-items: center;
      }

      .sc2-left, .sc2-right {
        width: 100%;
      }

      .sc2-left h2 {
        font-size: 1.5em;
      }

      .sc2-left{
        height: 50em;
        flex: 0 0 0;
      }

      .mobile-not {
        display: none;
      }

      .sc2-left p{
              font-size: 0.95rem;
      }

      .sc2-right{
        height: 50em;
        flex: 0 0 0;
      }
    }

   #carousel-images {
  padding: 4rem 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px;
}

.carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 1500px;
}

.carousel-container {
  margin-top: 2em;
  overflow: hidden;
  flex: 1;
}

.carousel-track {
  display: flex;
  transition: transform 0.4s ease;
  gap: 1.5rem;
  padding: 0 1rem;
}

.carousel-slide {
  flex: 0 0 calc(33.333% - 1rem); 
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.4);
}

.carousel-slide img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
}

/* Botones externos */
.carousel-button {
  background-color: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  padding: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  z-index: 10;
}

.carousel-button:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

.carousel-button img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}


#prevBtn {
  margin-right: 1rem;
}

#nextBtn {
  margin-left: 1rem;
}

/* Responsive */
@media (max-width: 900px) {
  .carousel-slide {
    flex: 0 0 calc(50% - 1rem); 
  }
}

@media (max-width: 600px) {
  .carousel-slide {
    flex: 0 0 100%; 
  }

  .carousel-button {
    width: 40px;
    height: 40px;
  }
}

#timeline{
    display: none;
}

#double {
      padding: 4rem 1rem;
      color: white;
      text-align: center;
    }

    .double-tabs {
      display: flex;
      justify-content: center;
      margin-bottom: 0rem;
    }

    .double-tab {
      padding: 0.75rem 2rem;
      border-radius: 1rem 1rem 0 0;
      margin: 0 0.25rem;
      cursor: pointer;
      background-color: #6d28d9;
      color: white;
      font-weight: 600;
      transition: all 0.3s ease;
    }

    .double-tab.active {
      background-color: white;
      color: #6d28d9;
    }

    .double-content {
      display: none;
    }

    .double-content.active {
      display: flex;
      flex-direction: column;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      gap: 2rem;
      background: linear-gradient(to top, #5400AD, #130027);
      height: 25em;
    }
    
    #double-proyectos.active{
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: row;

      img{
        width: 310px;
        height: 220px;
        object-fit: contain;
      }
    }

    .double-practicas img {
      width: 200px;
      height: 200px;
      object-fit: cover;
      border-radius: 50%;
    }

    .double-practicas ul {
      list-style: none;
      padding: 0;
    }

    .double-practicas li::before {
      content: "• ";
      color: #a855f7;
      font-weight: bold;
    }

    .double-carousel-container {
      position: relative;
      overflow: hidden;
      width: 100%;
      max-width: 1000px;
      margin: 0 auto;
    }

    .double-carousel-track {
      display: flex;
      transition: transform 0.5s ease;
    }

    .double-carousel-slide {
      min-width: 300px;
      margin: 0 1rem;
      flex: 0 0 auto;
    }

    .double-carousel-slide img {
      border-radius: 1rem;
      width: 100%;
      height: auto;
    }

    .double-carousel-button {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background-color: #6d28d9;
      border: none;
      color: white;
      font-size: 1.5rem;
      cursor: pointer;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      z-index: 2;
    }

    .double-carousel-button.double-prev {
      left: -50px;
    }

    .double-carousel-button.double-next {
      right: -50px;
    }

    @media (max-width: 768px) {
      .double-carousel-slide {
        min-width: 80%;
      }
      .double-carousel-button.double-prev {
        left: 10px;
      }
      .double-carousel-button.double-next {
        right: 10px;
      }
    }

    .uniforme-viewer {
  overscroll-behavior: contain;
}

        .team-section {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        .section-title {
            text-align: center;
            margin-bottom: 3rem;
            color: #6b46c1;
            font-size: 2.5rem;
            font-weight: bold;
        }

        .cards-container {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            max-width: 1000px;
            margin: 0 auto;
            margin-top: 3em;
        }

        .card {
            background: linear-gradient(145deg, #8b5cf6, #7c3aed);
            border-radius: 20px;
            padding: 2rem;
            text-align: center;
            box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
            transition: all 0.3s ease;
            width: 100%;
            position: relative;
            overflow: hidden;
        }

        .card:nth-child(5) {
            grid-column: 2 / 4;
        }

        .card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(145deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
            border-radius: 20px;
            pointer-events: none;
        }

        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(139, 92, 246, 0.4);
        }

        .card-image {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            margin: 0 auto 1.2rem;
            border: 3px solid rgba(255, 255, 255, 0.3);
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .card:hover .card-image {
            transform: scale(1.1);
        }

        .card-name {
            color: white;
            font-size: 1.2rem;
            font-weight: bold;
            margin-bottom: 0.5rem;
            position: relative;
            z-index: 1;
        }

        .card-description {
            color: rgba(255, 255, 255, 0.9);
            font-size: 0.9rem;
            line-height: 1.4;
            position: relative;
            z-index: 1;
        }


        .interview-section {
            max-width: 1200px;
            margin: 5rem auto 0;
            padding: 0 1rem;
        }

        .interview-title {
            text-align: center;
            margin-bottom: 3rem;
            color: #6b46c1;
            font-size: 2.5rem;
            font-weight: bold;
        }

        .video-container {
            position: relative;
            width: 100%;
            max-width: 1920px;
            margin: 0 auto;
            padding-bottom: 56.25%; 
            height: 0;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(139, 92, 246, 0.3);
        }

        .video-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
            border-radius: 20px;
        }

        @media (max-width: 1024px) {
            .cards-container {
                grid-template-columns: repeat(3, 1fr);
                max-width: 800px;
            }
            
            .card:nth-child(5) {
                grid-column: 2 / 3;
            }
        }

        @media (max-width: 768px) {

          #sc2{
            height: 54em;
          }
            .section-title {
                font-size: 2rem;
                margin-bottom: 2rem;
            }

            .cards-container {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
                max-width: 600px;
            }

            .card {
                padding: 1.5rem;
            }

            .card:nth-child(5) {
                grid-column: 1 / -1;
                max-width: 280px;
                justify-self: center;
            }

            .card-image {
                width: 90px;
                height: 90px;
            }

            
            .interview-title {
                font-size: 2rem;
            }

            .video-container {
                border-radius: 15px;
            }

            .video-container iframe {
                border-radius: 15px;
            }
            
        }


        @media (max-width: 500px) {

          #scroll-button {
            bottom: 300px !important;
          }
            .cards-container {
                grid-template-columns: 1fr;
                max-width: 320px;
            }

            .section-title {
                font-size: 1.8rem;
            }

            .card:nth-child(5) {
                grid-column: 1;
                max-width: none;
            }

            .card-image {
                width: 85px;
                height: 85px;
            }

            .interview-title {
                font-size: 1.8rem;
            }

            .video-container {
                border-radius: 10px;
            }

            .video-container iframe {
                border-radius: 10px;
            }
        }


        .card {
            animation: fadeInUp 0.6s ease forwards;
            opacity: 0;
            transform: translateY(30px);
        }

        .card:nth-child(1) { animation-delay: 0.1s; }
        .card:nth-child(2) { animation-delay: 0.2s; }
        .card:nth-child(3) { animation-delay: 0.3s; }
        .card:nth-child(4) { animation-delay: 0.4s; }
        .card:nth-child(5) { animation-delay: 0.5s; }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .competencias-section {
  padding: 80px 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

        @media (max-height: 670px) {

          #scroll-button {
            bottom: 295px !important;
          }
        }
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: #7c3aed;
  margin-bottom: 1rem;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #8e44ad, #9b59b6);
  border-radius: 2px;
}

.section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: white;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.competencias-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-height: 864px) {

      #sc2{
        height: 83vh;
      }
  
}

@media screen and (max-height: 815px) {

      #sc2{
        height: 100vh;
      }
  
}


@media (max-height: 760px) {
  .competencias-grid{
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  }

  #novena{
    display: none;
  }
         
}

.competencia-card {
  background: linear-gradient(135deg, #8e44ad 0%, #9b59b6 100%);
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  color: white;
  box-shadow: 0 8px 25px rgba(142, 68, 173, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(50px);
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.competencia-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.competencia-card:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 15px 35px rgba(142, 68, 173, 0.4);
}

.competencia-card:hover::before {
  opacity: 1;
}

.card-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  transition: all 0.3s ease;
}

.competencia-card:hover .card-icon {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.card-icon svg {
  color: white;
}

.card-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: white;
}

.card-description {
  font-size: 0.85rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.9);
}


.competencia-card.animate {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 768px) {
  .competencias-section {
    padding: 60px 0;
  }

  .container {
    padding: 0 15px;
  }

  .section-title {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .competencias-grid {
    gap: 1rem;
    max-width: 100%;
  }

  .competencia-card {
    padding: 1rem;
  }

  .card-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 0.8rem;
  }

  .card-icon svg {
    width: 24px;
    height: 24px;
  }

  .card-title {
    font-size: 0.95rem;
    margin-bottom: 0.4rem;
  }

  .card-description {
    font-size: 0.75rem;
    line-height: 1.3;
  }
}

@media (max-width: 480px) {
  .competencias-grid {
    gap: 0.8rem;
  }

  .competencia-card {
    padding: 0.8rem;
  }

  .card-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 0.6rem;
  }

  .card-icon svg {
    width: 20px;
    height: 20px;
  }

  .card-title {
    font-size: 0.85rem;
    margin-bottom: 0.3rem;
  }

  .card-description {
    font-size: 0.7rem;
  }
}

@media (max-width: 385px) {

  #scroll-button{
    bottom: 305px !important;
  }

    #sc2{
        height: 60em;
      }
  }

@media (max-width: 360px) {

    #sc2{
        height: 54em;
      }
  .competencias-grid {
    gap: 0.6rem;
  }

  .competencia-card {
    padding: 0.6rem;
  }

  .card-icon {
    width: 35px;
    height: 35px;
  }

  .card-icon svg {
    width: 18px;
    height: 18px;
  }

  .card-title {
    font-size: 0.8rem;
  }

  .card-description {
    font-size: 0.65rem;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section-title,
.section-subtitle {
  animation: fadeInUp 0.8s ease-out;
}

.section-subtitle {
  animation-delay: 0.2s;
  animation-fill-mode: both;
}
