 /* body {
  margin: 0;
  font-family: "Open Sans", sans-serif;
}
header {
  height: 65px;
  background-color: #7b1fa2;
  color: white;
  display: flex;
  align-items: center;
  padding-left: 25px;
}
.cara {
  border-radius: 500px;
  height: 200px;
}
.uno {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  height: calc(100vh - 65px);
  background-color: #303030;
  color: white;
  padding-top: 10%;
} 
.caja-central {
  margin-top: 10%;
  width: 50%;
  display: flex;
  flex-direction: row;
  border-radius: 20px;
  overflow: hidden;
  height: 50%;
}
.caja-cara {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40%;
  background-color: #424242;
}
.caja-presentacion {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60%;
  background-color: #f2f2f2;
  color: #303030;
  padding: 10px;
}

.dos {
  background-color: #f2f2f2;
  height: 700px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #303030;
  padding-left: 20%;
  padding-right: 20%;
}
.aptitudes {
  width: 50%;
}
.tech-list {
  display: flex;
  justify-content: space-between;
  padding-top: 10px;
}

.tech {
  height: 90px;
}

.tres {
  background-color: #303030;
  height: 600px;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  align-items: center;
  color: #f2f2f2;
}
.proyectos {
  width: 60%;
  display: flex;
  justify-content: space-between;
}
.card {
  text-align: center;
  width: 30%;
  border: solid #f2f2f2 1px;
  border-radius: 10px;
  padding: 10px;
}
.card img {
  width: 100%;
}
.card a,
footer a {
  color: white;
}

.red-social {
  height: 60px;
  background-color: #f2f2f2;
  border-radius: 10px;
}

footer {
  background-color: #424242;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  color: #f2f2f2;
  height: 250px;
}
.contacto {
  width: 30%;
  display: flex;
  justify-content: center;
}

@media (max-width: 1000px) {
  .caja-central {
    width: 90%;
    height: 70%;
    flex-direction: column;
  }
  .caja-cara {
    width: 100%;
    height: 50%;
  }
  .caja-presentacion {
    width: 100%;
    height: 50%;
    align-items: flex-start;
  }
  .aptitudes {
    width: auto;
  }
  .dos {
    height: auto;
    padding: 0 10px 10px 10px;
  }
  .tres {
    height: auto;
  }
  .proyectos {
    flex-direction: column;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 20px;
  }
  .card {
    width: 80%;
    margin-top: 20px;
  }
  .red-social {
    margin: 0 10px 0 10px;
  }
}

.hero-section {
  background: linear-gradient(
    to right,
    #0f2027,
    #203a43,
    #2c5364
  ); 
  color: white;
}
.profile-img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border: 4px solid white;
}
.card-img-top {
  height: 200px;
  object-fit: cover; 
}
.tech-icon {
  font-size: 2rem;
  margin: 0 10px;
  color: #555;
} */ */

/* ESTILOS GLOBALES */
body {
  font-family: "Open Sans", sans-serif;
}

/* HERO SECTION (El encabezado con degradado) */
.hero-section {
  background: linear-gradient(to right, #0f2027, #203a43, #2c5364);
  color: white;
}

/* FOTO DE PERFIL */
.profile-img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border: 4px solid white;
}

/* TARJETAS DE PROYECTOS */
.card-img-top {
  height: 200px;
  object-fit: cover; /* Evita que las fotos se estiren feo */
}

/* ÍCONOS DE TECNOLOGÍA */
.tech-icon {
  font-size: 2rem;
  margin: 0 10px;
  color: #555;
}

/* AJUSTES RESPONSIVOS EXTRA (Opcional) */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
}