* {
    margin: 0;
    padding: 0;
}

.map {
    display: flex;
    justify-content: center;
    align-items: center;
}

h1, h2{
    text-align: center;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    background-color: rgb(89, 158, 124);
    color: white;
}
 
p {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
}

.inicio-contenedor {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f5f5f5; 

}

.inicio {
  max-width: 100%;
  height: auto;
}

.objitems p {
    margin: 2rem;
  }


/* Header */

header {
    background-color: var(--primary-color);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px var(--shadow);
  }
  
  ul,ol {
    list-style: none;
  }

  .header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    background-color: rgb(26, 114, 85);
  }
  
  .logo img {
    height: 50px;
    filter: brightness(0) invert(1);
    transition: var(--transition);
    margin-left: 50px;
  }
  
  .logo:hover img {
    transform: scale(1.05);
  }
  
  .nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
  }
  
  .nav-links a {
    color: var(--white);
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding: 5px 0;
  }
  
  .nav-links a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--white);
    transition: var(--transition);
  }

  nav li a {
    background-color: rgb(26, 114, 85);
    color: rgb(149, 196, 186);
    text-decoration: none;
    padding: 10px 15px ;
    display: block;
    margin-right: 50px;
  }

  nav > li {
    float: left
  }
  
 .navi {
    color: aliceblue;
    font-family: monospace;
 }
  
  nav li a:hover {
    transform: perspective(display);
  }

  nav li ul {
    display: none;
    position: absolute;
    min-width: 140px;
  }

  nav li:hover > ul {
    display: block;
  } 

 .nav-links nav-links a:hover::after,
  .nav-links a.active::after {
    width: 100%;
  }
  
  .menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
  }
  
  .menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--white);
    border-radius: 3px;
    transition: var(--transition);
  }

  /*OBJETIVO*/
  .objitems {
   font-family: Arial, Helvetica, sans-serif;
   font-size: 18px;
   margin: 2rem;
   text-align: justify;
  }

  /* PLAN */

  .plan {
    
    display: flex;
    align-items: center;
    flex-direction: column;
  }

  .pp {
    width: 500px;
  }
  
  /* MAPA */ 

figure.mapa {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 2rem 0;
}

.map {
  max-width: 100%;
  height: auto;
}

/* DATOS ACADEMICOS*/

.data {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: justify;
  
}

.data p {
  margin: 1rem 0;
}

.datauba {
  margin: 2rem;
}
/*NOSOTRAS*/
    .nosotras {
      padding-bottom: 1rem;
    }

    .todas {
      max-width: 1400px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(3, 2fr);
      gap: 4rem;
      justify-items: center;
    }

    .noscard {
      background-color: white;
      border-radius: 0.5rem;
      overflow: hidden;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
      margin-top: 1rem;
    }

    .nosimg {
      height: 16rem;
      background-color: #065f46;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .nosimg {
      font-size: 6rem;
      color: white;
    }

    .nosinfo {
      padding: 1.5rem;
    }

    .nosinfo h3 {
      font-size: 1.5rem;
      font-weight: bold;
      color: #065f46;
      margin-bottom: 0.5rem;
    }

    .nosinfo p {
      color: #4b5563;
      margin-bottom: 1rem;
    }

    .noslink {
      display: flex;
      align-items: center;
      color: #059669;
      margin-left: 1rem;
      margin-bottom: 1rem;
    }
  

    .noslink a {
      margin-right: 1rem;
    }


    /*FOOTER*/
    footer {
  background-color:  #065f46;
  display: flex;
  justify-content: space-around;
  align-items: center; 
  padding: 1rem; 
  color: aliceblue;
}

@media screen and (max-width: 1024px) {
  .todas {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .pp {
    width: 90%;
  }

  .inicio-contenedor {
    padding: 1rem;
  }
}

@media screen and (max-width: 768px) {
  h1, h2 {
    font-size: 1.5rem;
    padding: 0.5rem;
  }

  .todas {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1rem;
  }

  .noscard {
    width: 100%;
  }

  .nosimg {
    height: auto;
  }

  .nosinfo h3 {
    font-size: 1.25rem;
  }

  .inicio-contenedor {
    padding: 0.5rem;
  }

  .objitems p {
    margin: 2rem;
  }

  .objitems {
    margin: 1rem;
    font-size: 16px;
  }

  footer {
    flex-direction: column;
    text-align: center;
  }

  footer img {
    margin-bottom: 1rem;
  }

  .logo img {
    margin-left: 0;
  }

  .nosimg {
    height: 120px;
  }

  .nosimg img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
  }

  .todas {
    grid-template-columns: 1fr;
    gap: 2rem;

}
/* Responsive*/
@media (max-width: 768px) {
  @media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
    height: auto;
  }

  nav {
    width: 100%;
  }

  .nav-links {
    flex-direction: column;
    gap: 10px;
    padding-left: 0;
    margin-top: 10px;
    width: 100%;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    width: 100%;
    text-align: left;
    padding: 10px 20px;
    margin: 0;
  }
}


  .header-content {
    position: relative;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding-right: 60px; 
  }


}
}