@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  :root {
    /* colors */
    --primary-color: #0e17af; 
    --secondary-color: #00edff; 
    --tertiary-color: #fff; 
    --fourth-color: #e84e1b;  
    --fifth-color: #343a40;  
    /* containers */
    --container-color-primary: #fff;
    --container-color-secondary: #01adce;
    --container-color-tertiary: #eceff1;
    
    /* Tipografías */
    --primary-font: 'Roboto', sans-serif;
    --secondary-font: 'Cabin', sans-serif;
    --tertiary-font: 'SUSE', sans-serif;
    --fourth-font: 'Poppins', sans-serif;
    /* Tamaños de letra */
      --font-size-small: 0.875rem; /* 14px */
      --font-size-medium: 1rem; /* 16px */
      --font-size-large: 1.25rem; /* 20px */
      --font-size-xlarge: 1.5rem; /* 24px */
      --font-size-icons: 4rem; /* 64px */
    }


/*--------SECCIÓN DE LA INFORMACION PRINCIPAL----------*/

body {
    overflow-x:hidden;
  }

.header{
    padding-left: 10px;
    padding-right: 10px;
    }
  
.Container-Informacion{
    margin-top: 150px;
  background-image: linear-gradient(180deg,#01adce,white);
  display: flex;
}

.Title1{
    margin: 0 100px;
    animation: float 3s ease-in-out infinite
    
  }
  .Title1 h2{
    color:#0e17af;
    font-size: 2em;
    text-align: center;
    /* margin-top: 50px; */
    margin-bottom: 20px;
    padding-top: 50px;
    padding-bottom: 20px;
    text-align: center;
    font-family: 'Roboto', sans-serif;
  }
  
  .Parrafo{
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
      font-weight: 500;
      text-align: justify; 
      padding-bottom: 50px;
  }
  
  .ContainerParrafo{
    display: flex;
    margin-left: 80px;
    margin-right: 80px;
  }

  @media (max-width: 881px) {
   
    .ContainerParrafo{
        flex-wrap: wrap;
        justify-content: center;
       }   
       .Title1{
           margin: 0;
       } 
       .Parrafo{
        width: 80%;
       }
  }


  @keyframes float {
    0%, 100% {
        transform: translateY(0); 
    }
    50% {
        transform: translateY(-10px); 
    }
  }
   /*--------------------------------------------------*/

/*-----------4 CARDS PEQUEÑAS----------------------*/

.creative-section {
    width: 100%;
}


.card-container {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 1343;
    min-height: 70vh;
    flex-wrap: wrap; 
    gap: 20px;
    padding: 20px;
}


.card-crac {
    width: 220px;
    height: 270px;
    perspective: 1000px;
    
}

.card-inner {
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
    cursor: pointer;
}

.card-crac:hover .card-inner {
    transform: rotateY(180deg);
}

.card-front, .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.card-front {
    background-image: linear-gradient(40deg,#00edff,#01adce);
    padding: 0px;
}

.card-front img {
    width: 100%;
    max-width: 180px; 
    height: auto; 
    border-radius: 10%;
    margin-bottom: 15px;
}

.card-front h3 {
    font-size: 1.2rem;
    color: white;
    
    
}

.card-back {
    background-color: #0e17af;
    color: white;
    transform: rotateY(180deg);
    padding: 20px;
    text-align: center;
}

.card-back p {
    font-size: 0.9rem;
}


@media (max-width: 768px) {
    .card-container {
        flex-direction: column;
        align-items: center;
    }

    .card-crac {
        width: 90%;
        max-width: 300px;
    }

    .card-front img {
        max-width: 140px;
    }

    .card-front h3 {
        font-size: 1rem;
    }

    .card-back p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .card-container {
        gap: 10px;
    }

    .card-crac {
        max-width: 100%; 
    }

    .card-front img {
        max-width: 100px;
    }

    .card-front h3 {
        font-size: 0.9rem;
    }

    .card-back p {
        font-size: 0.8rem;
    }
}
 /*--------------------------------------------------*/

   /*-----------------SECCION DE 3 CARDS----------------*/

   .Container-3Cards {
    padding: 40px;
    text-align: center;
    background-image: linear-gradient(40deg,#00edff,#01adce);
    
    
  }
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
  }
  .card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  }
  .card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
  .card-content {
    padding: 20px;
  }
  .card h2 {
    color: #0e17af;
    margin-bottom: 10px;
    font-size: 1.5rem;
    font-family: 'Roboto', sans-serif;;
  }
  .card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
    font-family:'Poppins', sans-serif;
  }
  .read-more {
   color:white;
    background-image: linear-gradient(40deg,#00edff,#01adce);
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
  }
  .read-more:hover {
    background: #0056b3;
  }
  
  .modal0 {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    justify-content: center;
    align-items: center;
    z-index: 1000;
  }
  
  .modal-content0 {
    background: white;
    padding: 20px;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    position: relative;
  }
  
  .close-modal0 {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    cursor: pointer;
    background: none;
    border: none;
    color: #333;
  }
  .modal-content0 h2{
    color: #0e17af;
    padding-top: 20px;
    font-family:  'Roboto', sans-serif;
  }
  .modal-content0 p{
    padding-top: 10px;
    font-family: 'Poppins', sans-serif;
    text-align: justify;
  }
  
  .modal0.active0 {
    display: flex;
  }


  /*--------------------------------------------------*/


/*--------SECCIÓN CARRUSSEL DE MAESTROS---------*/
  .carrusel-maestros{
    padding: 50px;
    background-image: linear-gradient(180deg,white,#01adce);
  }
  
  
  .carrusel-maestros {
    font-family: Arial, sans-serif;
  }
  
  .carousel-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
  }
  
  .carousel-container {
    display: flex;
    transition: transform 0.6s ease;
  }
  
  .carousel-slide {
    flex: 0 0 calc(100% / 3);
    padding: 10px;
    text-align: center;
  }
  
  .carousel-slide img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    
  }
  
  .carousel-slide h3 {
    margin-top: 10px;
    font-size: 1.2rem;
   
  }
  .carousel-slide h3 {
   color:white ;
  }
  
  .carousel-slide p {
    margin-top: 5px;
    font-size: 0.9rem;
    color: #666;
  }
  
  .carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px 15px;
    font-size: 18px;
    cursor: pointer;
    transition: background 0.3s;
  }
  
  .carousel-control:hover {
    background: rgba(0, 0, 0, 0.8);
  }
  
  .carousel-prev {
    left: 10px;
  }
  
  .carousel-next {
    right: 10px;
  }

  
@media (max-width: 768px) {
    .carousel-slide {
      flex: 0 0 100%; 
    }
  }
  

  @media (min-width: 769px) and (max-width: 1024px) {
    .carousel-slide {
      flex: 0 0 50%; 
    }
  }
  
 
  @media (min-width: 1025px) {
    .carousel-slide {
      flex: 0 0 calc(100% / 3); 
    }
  }

/*------------------------------------------------------------*/


/*------------------SECCION DE 4 CARDS------------------ */
.sectionV0 {
    font-family: 'Poppins', sans-serif;
    background: white;
    min-height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}


.containerV0 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    width: 100%;
    padding: 20px; 
    box-sizing: border-box; 
}


.cardV0 {
    background-image: linear-gradient(40deg,#00edff,#01adce);
    border-radius: 20px;
    padding: 25px; 
    text-align: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.37);
    border: 1px solid rgba(255, 255, 255, 0.18);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    height: auto;
    max-width: 350px;
    margin: 0 auto; 
}


.cardV0:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(31, 38, 135, 0.5);
}


.cardV0 img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}


.cardV0 h2 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 10px;
}


.cardV0 p {
    color: white;
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 15px;
}


.view-moreV0 {
    background-color: #ffffff;
    color: #007bff;
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.view-moreV0:hover {
    background-color: #f0f0f0;
    transform: scale(1.05);
}


.modal-overlayV0 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlayV0.active {
    opacity: 1;
    visibility: visible;
}


.modalV0 {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    transform: scale(0.7);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.modal-overlayV0.active .modalV0 {
    transform: scale(1);
    opacity: 1;
}

.close-modalV0 {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
    color: #0e17af;
}


.modal-contentV0 h2 {
    background-image: linear-gradient(40deg,#00edff,#01adce);
    color: #0e17af;
    margin-bottom: 15px;
}

.modal-contentV0 img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.modal-contentV0 p {
    font-family: 'Poppins', sans-serif;
    text-align: justify;
    color: #333;
    line-height: 1.6;
}


@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.cardV0 {
    animation: fadeInUp 0.5s ease forwards;
    opacity: 0;
}

.cardV0:nth-child(1) { animation-delay: 0.1s; }
.cardV0:nth-child(2) { animation-delay: 0.2s; }
.cardV0:nth-child(3) { animation-delay: 0.3s; }
.cardV0:nth-child(4) { animation-delay: 0.4s; }


@media (max-width: 768px) {
    .sectionV0 {
        padding: 10px;
    }


    .containerV0 {
        grid-template-columns: 1fr; 
        gap: 20px;
    }

    .cardV0 {
        padding: 20px;
        max-width: 100%; 
    }

    .cardV0 img {
        height: 160px;
    }

    .modalV0 {
        max-width: 400px;
    }
}

@media (max-width: 480px) {
    .sectionV0 {
        padding: 5px;
    }

    .containerV0 {
        grid-template-columns: 1fr; 
        gap: 15px;
    }

    .cardV0 {
        padding: 15px;
        max-width: 100%; 
    }

    .cardV0 img {
        height: 140px;
    }

    .modalV0 {
        max-width: 90%;
        padding: 20px;
    }
}

/*----------------------------------------------------------- */


/*--------SECCIÓN CARRUSEL DE ALUMNOS----------*/
.sectionV1 {
    
    padding: 50px;
    background-image: linear-gradient(40deg,#00edff,#01adce);
    font-family: 'Arial', sans-serif;
    position: relative;
    z-index: 100;
}

.carousel-containerV1 {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-radius: 15px;
}

.carouselV1 {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.carousel-itemV1 {
    flex: 0 0 calc(100% / 3);
    padding: 15px;
    text-align: center;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.carousel-itemV1 img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.carousel-itemV1:hover img {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.carousel-controlV1 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    padding: 15px 20px;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-controlV1:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.prevV1 {
    left: 20px;
}

.nextV1 {
    right: 20px;
}


.carousel-indicatorsV1 {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.indicatorV1 {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.indicatorV1.activeV1 {
    background-color: white;
}


@media (max-width: 768px) {
    .carousel-itemV1 {
        flex: 0 0 100%;
    }
    .carousel-controlV1 {
        padding: 10px 15px;
        font-size: 18px;
        width: 40px;
        height: 40px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .carousel-itemV1 {
        flex: 0 0 50%;
    }
}

@media (min-width: 1025px) {
    .carousel-itemV1 {
        flex: 0 0 calc(100% / 3);
    }
}


.carousel-itemV1:not(:nth-child(3n+2)) {
    opacity: 0.7;
    transform: scale(0.9);
}


.sectionV1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('img/mexicocity (1).jpg') no-repeat center center;
    background-size: cover;
    filter: blur(10px);
    opacity: 0.2;
    z-index: -1;
}

/*-----------------------------------------------------------------*/







  /* footer */
  .footer{
    margin-top: 50px;
    padding-top: 20px;
    padding-bottom: 20px;
    background-color: var(--container-color-tertiary);
  }
  
  .title-card h1{
    font-size: 30px;
    color: #37517e;
    font-weight: 700;
    margin-bottom: 10px;
  }
  .space{
    margin-top: 20px;
  }
  .info-card h5{
    color: #37517e;
    font-weight: 600;
  }
  .info-card strong{
    font-size: 18px;
    color: #37517e;
  }
  .info-card p{
    font-size: 15px;
    font-size: 16px;
  }
  
  .card-header {
    background: linear-gradient(to right, #1e90ff, #00d2ff);
    color: white;
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
  }
  .card {
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }
  .btn-custom {
    background: none;
    border: 2px solid #1e90ff;
    color: #1e90ff;
    border-radius: 20px;
    padding: 10px 20px;
    font-weight: bold;
  }
  .btn-custom:hover {
    background: #1e90ff;
    color: white;
  }
  .stronge{
    font-size: 30px;
    color: #37517e;
    font-weight: 800;
    margin-bottom: 10px;
    font-family: var(--tertiary-font);
  }
  .img-logo{
    width: 100%;
    text-align: center;
  }
  .img-logo img{
    max-width: 200px;
  }
  
  .img-jefe{
    display: flex;
    justify-content: center;
  }
  .img-jefe img{
    display: flex;
    max-width: 200px;
    justify-content: center;
  }
  
  #footer-links-useful{ 
    margin-bottom: 10px;
  }
  #footer-links-useful a{ 
    color: black;
    text-decoration: none;
    font-weight: 300;
  }
  #footer-links-useful i{ 
    color: rgb(55, 142, 255);
  }
  
  .footer-copyright{
    background: linear-gradient(to top, #323741, var(--container-color-tertiary) );
    color: white;
  }