/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body{
    background-color: #f7f7f7f3; /* Ponerle color a la página */
    font-family: 'Segoe UI', sans-serif; /* Estilos de las palabras */
}

header{
    background: linear-gradient(to right,#8FCFA3, #0C3D2E );
    width: 100%;
    height: 560px;
}


.logo img{
    height: 50px; /* La altura de la imagen */
    width: 150px; /* Ancho de la imagen */
}

 .nav-links{
    padding: 7px; /* crea espacio */
    list-style: none;
    background-color: #ffffff; /* Es el color de fondo del navegador */
    display: flex;
    justify-content: center; /* Mueve las cosas al centro */
    height: 45px;
    width: 87%;
    padding: 8px 10%;
    border-radius: 20px;
}

.nav-links li{
    padding: 0 20px; /* Pone espacio en medio de las palabras */
    margin-top: 5px; 
    cursor: pointer;
    transition: 0.5s;
}

.nav-links a{
    font-size: 700;
    color: #000000; /* Es el color de las letras */
    text-decoration: none;
    cursor: pointer;
    transition: 0.5s;
}

.nav-links :hover a{
    color: #00aa47; /* Color de las letras */
}

.poi{
    text-align: center;
}

.p{
    color: #ffffff; /* Cambia color de las letras*/
    float: left; /* los elementos se mueven a la izquierda */
    width: 34%;
    margin-left: 200px;
    text-align: justify;
    margin-top: 80px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 30px; /* Tamaño de la latra */
}

.l90 img {
    float: right; /* Mueve el elemento a la derecha */
    width: 28%;
    height: 420px;
    margin-right: 200px;
}

.ño {
    width: 50%;
    justify-content: center;
    margin-top: 95px;

}

h2 {
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif; /* El estilo de las letras */
}

.character {
    width: 26%;
      background-color: #fff; /* Color del fondo */
      border: 1px solid #d3d3d3; /* Indica el tamaño del borde y el color del borde */ 
      border-radius: 8px; /* Es el estilo del borde */
      padding: 20px;
      margin-top: 40px;
      text-align: center;
      color: #0C3D2E; /* Indica el color de la letra */
      float: left;
      margin-left: 250px;
      box-shadow: 0px 5px 9px 0px #0C3D2E; /* Da sombra al elemento */
    }

.ale {
    width: 100%;
    height:300px;
    background-color: #0C3D2E; /* Es el color de fondo */
    margin-top: 430px;
    color: #fff; /* Es el color de la letra */ 
}
/* Grados */

.grad {
    margin-top: 130px;
  text-align: center;
  color: #004d40;
}

.pri {
    list-style: none;
    margin-top: 110px;
}

.prim li { 
    color: #00796b;
}

.pri img {
    width: 50%;
    padding: 0px;
    height: 390px;
    float: right;
}

.prim {
    float: left;
    margin-left: 200px;
    text-align: center;
    margin-top: 70px;
}

.bas {
    list-style: none;
    margin-top: 100px;
}

.bas img {
     width: 50%;
    padding: 0px;
    height: 390px;
    float: left;
    margin-top: 120px;
}

.basi {
    float: right;
    margin-right: 200px;
    text-align: center;
    margin-top: 80px;
}

.basi li {
    color: #00796b;
}

.eu img {
    width: 50%;
    padding: 0px;
    height: 390px;
    float: right;
    margin-top: 90px;
}

    
/* cursos */

.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

.info-section {
  padding: 60px 0;
  margin-top: 1420px;
}

.info-section h1 {
  text-align: center;
  margin-bottom: 30px;
  color: #004d40;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.project-card {
  border: 2px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  background: white;
}

.project-card h2 {
  color: #00796b;
  margin-bottom: 10px;
  text-align: left;
}
  
.project-card img {
    width: 100px;
    height: 100px;
} 

/* footer */

.footer {
   background: linear-gradient(to right,#8FCFA3, #0C3D2E );
  color: #ccc;
  text-align: center;
  padding: 40px 0;
  font-family: 'Segoe UI', sans-serif;
  margin-top: 100px;
}

.footer .social a {
  color: #ccc;
  margin: 0 10px;
  text-decoration: none;
}

.footer .social a:hover {
  text-decoration: underline;
}

