@import url('https://fonts.googleapis.com/css2?family=Righteous&family=Work+Sans:wght@100;300;400;600;800&display=swap');
body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background: linear-gradient(to top, rgba(30,35,38,.8), rgba(30,35,38,1)),
    url(../img/fondo.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed; 
}
* {
    box-sizing: border-box;
    font-family: "Work Sans", sans-serif;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

.container-header {
    background: black;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 99;
}

.container-header header {
    max-width: 1100px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.container-header header .logo a {
    font-family: 'Righteous', cursive;
    font-size: 36px;
    color: #1cb698;
    text-decoration: none;
}

.container-header header ul {
    display: flex;
    list-style: none;
}

.container-header header nav ul li a {
    text-align: center;
    color: #fff;
    margin: 0 15px;
    padding: 3px;
    transition: .5s;
    text-decoration: none;
}

.container-header header nav ul li a:hover {
    color: #1cb698;
}

section {
    margin-top: 80px; 
}

#menu-toggle {
  display: none;
}

.menu-icon {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: #1cb698;
  margin-left: auto; 
  border-radius: 20px;
}

.curriculum{
    color: #fff;
    padding: 50px 20px;
}
.curriculum .container-section{
    max-width: 1100px;
    margin: auto;
}
.curriculum h2{
    font-size: 48px;
    text-align: center;
    padding: 20px 0;

}
.curriculum .fila{
    display: flex;
}
.curriculum .fila .col{
    width: 49%;
    padding: 0 20px;
}
.curriculum .fila .col h3{
    font-size: 28px;
    margin-bottom: 25px;
}
.curriculum .fila .izquierda{
    border-right: solid #d5d1d1;
}
.curriculum .fila .derecha{
    border-left: solid #bcb4b4;
}

.curriculum .fila .item{
    padding: 25px;
    margin-bottom: 30px;
    background-color: #252525;
    position: relative;
    
}
.curriculum .fila .item h4{
    font-size: 20px;
    margin-bottom: 10px;
}
.curriculum .fila .item .casa{
    color: #1cb698;
    font-size: 22px;
    font-weight: bold;
    display: block;
}
.curriculum .fila .item .fecha{
    display: block;
    color: #1cb698;
    margin-bottom: 10px;

}
.curriculum .fila .item p{
    line-height: 24px;
}
.curriculum .fila .izq{
    border-right: 2px solid #1cb698;
    

}
.curriculum .fila .der{
    border-left: 2px solid #1cb698;
   

}
.curriculum .fila .item .conectori{
    height: 2px;
    background-color: #1cb698;
    width: 47px;
    position: absolute;
    top: 50px;
    right: -47px;
    z-index: 5;

}
.curriculum .fila .item .conectori .circuloi {
    display: block;
    height: 10px;
    width: 10px;
    border-radius: 50%;
    background-color: #1cb698;
    margin: 0 auto; 
    position: relative;
    bottom: 4px;
}
@media screen and (max-width: 768px) {
  .container-header header {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px;
  }

  .container-header header nav {
    width: 100%;
    margin-top: 10px;
    
  }

  .container-header header ul {
    flex-direction: column;
    width: 100%;
   
  }

  .container-header header nav ul li {
    width: 100%;
    margin: 5px 0;
    align-items: flex-start;
  }

  .container-header header nav ul li a {
    display: block;
    width: 100%;
    padding: 10px 15px;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 5px;
  }

  .container-header header nav ul li a:hover {
    background-color: #1cb698;
    color: #fff;
  }
}
/* RESPONSIVE */
@media (max-width: 768px) {
  #menu-toggle {
    display: none;
  }

  .menu-icon {
    display: block;
    font-size: 28px;
    cursor: pointer;
    color: #1cb698; /* color de tu logo */
    position: absolute;
    right: 20px;
    top: 20px;
    z-index: 300;
  }

  /* Menú oculto */
  .container-header header .nav ul {
    display: none;
    flex-direction: column;
  background-color: rgba(0,0,0,0.5); 
    position: absolute;
    top: 60px;  
    right: 20px; 
    width: 200px;  
    padding: 10px 0;
    border-radius: 6px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.4);
    z-index: 250;
  }

  /* Mostrar menú al activar */
  #menu-toggle:checked ~ .nav ul {
    display: flex;
  }

  .container-header header .nav ul li {
    margin: 5px 0;
  }

  .container-header header .nav ul li a {
    color: #fff;
    padding: 10px 15px;
    display: block;
    text-align: left;
  }

  
}
