/* ----------------------------- */
/* 🎓 FERIA FICYT 2025 - INICIO */
/* ----------------------------- */

body, .pagina-inicio {
  font-family: 'Segoe UI', Arial, sans-serif;
  color: #121316;
  background-color: #e4e0e5;
  line-height: 1.6;
}

/* 🟦 Banner principal */
.banner {
  background: linear-gradient(135deg, #72617d, #28338d 70%);
  color: #ffffff;
  padding: 80px 30px;
  text-align: center;
  border-radius: 25px;
  max-width: 1200px;
  margin: 40px auto;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
}

.banner::before {
  content: "";
  position: absolute;
  top: -20%;
  left: -20%;
  width: 150%;
  height: 150%;
  background: radial-gradient(circle at center, rgba(201,158,35,0.3), transparent 60%);
  opacity: 0.6;
  z-index: 0;
}

.banner-content {
  position: relative;
  z-index: 1;
}

.banner h1 {
  font-size: 2.6rem;
  font-weight: 700;
  margin: 0;
  color: #fefefe;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.25);
  line-height: 1.2;
}

/* Ajuste para móviles */
@media (max-width: 768px) {
  .banner {
    margin: 20px 15px;
    padding: 60px 20px;
  }

  .banner h1 {
    font-size: 1.8rem;
  }
}

/* 🟨 Descripción de la feria */
.descripcion-feria {
  background: #f8f8f9;
  padding: 60px 25px;
  border-top: 6px solid #c99e23;
  border-bottom: 6px solid #cbc40f;
}

.descripcion-feria .contenedor {
  max-width: 900px;
  margin: auto;
}

.descripcion-feria h2 {
  text-align: center;
  color: #28338d;
  font-size: 1.8rem;
  margin-bottom: 25px;
  font-weight: 700;
}

.descripcion-feria p {
  color: #121316;
  margin-bottom: 16px;
  font-size: 1rem;
}

/* 🧠 Proyectos recientes */
.proyectos-recientes {
  background: #e4e0e5;
  padding: 60px 25px;
}

.proyectos-recientes .contenedor {
  max-width: 950px;
  margin: auto;
}

.proyectos-recientes h2 {
  text-align: center;
  color: #2f42f8;
  font-size: 1.8rem;
  margin-bottom: 40px;
  font-weight: 700;
}

/* Tarjetas */
.tarjeta-proyecto {
  background: #fff;
  border-left: 6px solid #cbc40f;
  border-radius: 12px;
  margin-bottom: 25px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  padding: 25px 30px;
  transition: all 0.3s ease;
}

.tarjeta-proyecto:hover {
  transform: translateY(-5px);
  border-left-color: #c99e23;
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

.titulo-proyecto a {
  color: #28338d;
  font-size: 1.3rem;
  font-weight: bold;
  text-decoration: none;
}

.titulo-proyecto a:hover {
  color: #1931f8;
  text-decoration: underline;
}

.descripcion-proyecto {
  margin: 10px 0 15px 0;
  color: #41445f;
}

.autores {
  font-size: 0.95rem;
  background: #f1f2f5;
  border-radius: 8px;
  padding: 8px 12px;
  color: #121316;
}

.autores strong {
  color: #28338d;
}

.autores a {
  color: #2b55e8;
  text-decoration: none;
}

.autores a:hover {
  text-decoration: underline;
  color: #0413c4;
}

/* 🔗 Botón "Ver todos los proyectos" */
.ver-todos {
  text-align: center;
  margin-top: 40px;
}

.btn-ver-todos {
  display: inline-block;
  background: #28338d;
  color: #fff;
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.5px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.2);
  transition: background 0.3s, transform 0.2s;
}

.btn-ver-todos:hover {
  background: #cbc40f;
  color: #121316;
  transform: translateY(-3px);
}

/* ----------------------------- */
/* 🌙 Responsive Design */
/* ----------------------------- */
@media (max-width: 768px) {
  .banner h1 {
    font-size: 2rem;
  }
  .descripcion-feria, .proyectos-recientes {
    padding: 40px 15px;
  }
  .tarjeta-proyecto {
    padding: 20px;
  }
}