*{
  box-sizing: border-box;
  margin: 0;
  padding: 0;
   font-family: 'Roboto', sans-serif;
}

.articulo {
  margin-top: 5rem;
  max-width: 800px;
  margin: 60px auto;
  
  
}
/* navbar*/

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid #eee;
}

.navbar__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar__logo img {
  height: 36px;
}

.navbar__menu {
  list-style: none;
  display: flex;
  gap: 24px;
}

.navbar__menu a {
  text-decoration: none;
  color: #111;
  font-weight: 500;
  transition: color 0.3s ease;
}

.navbar__menu a:hover {
  color: #62189E;
}

.navbar__cta {
  background: linear-gradient(to right, #62189E, #f97316);
  color: white;
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 500;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.navbar__cta:hover {
  transform: translateY(-2px);
}


.volver a {
  display: inline-block;
  margin-bottom: 20px;
  color: #7b1fa2;
  text-decoration: none;
  font-weight: bold;
}

.volver a:hover {
  text-decoration: underline;
}

.imagen-articulo {
  width: 50%;
  border-radius: 12px;
  margin-bottom: 30px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.titulo-articulo {
  font-size: 32px;
  margin-bottom: 10px;
  color: #222;
}

.meta {
  font-size: 14px;
  color: #888;
  margin-bottom: 30px;
}

.contenido-articulo p {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 20px;
}
