@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap');

:root {
  --rosa: #f8c7d6;
  --celeste: #c8ecf7;
  --lila: #e5d3f2;
  --amarillo: #fff6c1;
  --gris-suave: #f0f0f0;
  --texto: #333;
  --fuente: 'Poppins', sans-serif;
}

body {
  margin: 0;
  font-family: var(--fuente);
  background: linear-gradient(to bottom right, var(--celeste), var(--lila));
  color: var(--texto);
}

.programacion-header {
  text-align: center;
  padding: 2rem;
  background: linear-gradient(120deg, var(--rosa), var(--celeste));
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  position: relative;
}

.btn-back {
  position: absolute;
  left: 2rem;
  top: 50%;
  transform: translateY(-50%);
  display: inline-block;
  padding: 0.6rem 1.2rem;
  background: white;
  color: var(--rosa);
  text-decoration: none;
  border-radius: 25px;
  font-weight: 700;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.btn-back:hover {
  background: var(--lila);
  color: white;
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
  transform: translateY(-50%) translateX(-3px);
}

.programacion-header h1 {
  margin: 0;
  font-size: 2.5rem;
}

.subtitulo {
  color: #666;
  font-size: 1.1rem;
  margin-top: 0.5rem;
}

.proyectos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 2rem;
}

.proyecto {
  background: white;
  border-radius: 16px;
  padding: 1rem;
  width: 300px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  text-align: center;
}

.proyecto img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

.info-proyecto h2 {
  color: var(--rosa);
  margin: 0.5rem 0;
}

.info-proyecto a {
  display: inline-block;
  margin-top: 0.5rem;
  background-color: var(--rosa);
  color: var(--texto);
  padding: 0.4rem 1rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.2s ease;
}

.info-proyecto a:hover {
  background-color: #baeaff;
  transform: scale(1.05);
}

footer {
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
  color: #888;
}
