* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #0f172a;
  color: #e2e8f0;
}

.contenedor-principal {
  width: 90%;
  max-width: 1100px;
  margin: 40px auto;
  background-color: #1e293b;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.header {
  justify-content: space-between;
  padding: 15px 25px;
  background-color: #334155;
  border-radius: 6px;
}
.header img {
  width: 40px;
  border-radius: 50%;
}

.menu {
  display: flex;
  gap: 15px;
  list-style: none;
}
.menu:hover {
  background-color: #1b262c;
  transform: scale(1.05);
  transition: 0.3s;
}

main {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: #1e293b;
  padding: 60px 20px;
  min-height: 70vh;
  color: #e2e8f0;
  border-radius: 6px;
}

h1 {
  font-size: 42px;
  margin-bottom: 15px;
  color: #94a3b8;
}

h2 {
  font-size: 20px;
  margin-bottom: 20px;
  color: #e2e8f0;
}

p {
  color: #e2e8f0;
}

.card {
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

.card-img-top {
  transition: 0.3s;
}

.card-img-top:hover {
  transform: scale(1.05);
}

.card-text {
  color: #94a3b8;
}

.card-subtitle {
  color: #94a3b8;
}

.card-title {
  color: #e2e8f0;
}

.experiencia .card {
  background-color: #334155;
  border: none;
  border-radius: 12px;
  padding: 10px;
}

.proyectos .card {
  background-color: #334155;
  border: none;
  border-radius: 12px;
  padding: 10px;
  text-align: center;
}

.barra {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.btn-custom {
  background-color: #3b82f6;
  color: white;
  padding: 8px 15px;
  border-radius: 5px;
  text-decoration: none;
  display: inline-block;
}
.btn-custom:hover {
  background-color: #1b262c;
  transform: scale(1.05);
  transition: 0.3s;
}

.skills {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

.skills li {
  background-color: #334155;
  color: #e2e8f0;
  padding: 8px 12px;
  border-radius: 20px;
  font-size: 14px;
}

.card-bloque {
  background-color: #334155;
  padding: 25px;
  border-radius: 12px;
  margin-bottom: 20px;
  text-align: center;
}

@media (max-width: 768px) {
  .header {
    flex-direction: column;
    gap: 15px;
  }
  .menu {
    flex-direction: column;
    align-items: center;
  }
}

/*# sourceMappingURL=styles.css.map */
