/* =========================
   NAV ÁTOMOS (HEREDADO DEL HOME)
========================= */

.site-header {
  background-color: #00441b;
}

.site-nav {
  background-color: #00441b;
  padding: 1rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-title {
  color: #e7ff98;
  font-weight: bold;
  text-decoration: none;
  font-size: 0.95rem;
}

.site-title:hover {
  text-decoration: underline;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: #e7ff98;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: bold;
}

.nav-links a:hover {
  text-decoration: underline;
}
/* ===============================
   ÁTOMOS – SISTEMA EDITORIAL
================================ */

/* BASE */

body {
  background: #e7ff98;
  font-family: "Inter", system-ui, sans-serif;
  color: #111;
}

/* HEADER EDITORIAL */

.atomos-header {
  padding: 6rem 2rem 4rem;
}

.header-marco {
  max-width: 620px;
}

.atomos-header h1 {
  font-size: 4.5rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  margin-bottom: 1rem;
}

.atomos-subtitle {
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
}

.atomos-manifesto {
  font-size: 0.95rem;
  opacity: 0.75;
}

/* TABLERO */

.atomos-tablero {
  display: flex;
  gap: 4rem;
  padding: 2rem;
}

/* ZONA PRINCIPAL */

.atomos-zona {
  width: 70%;
  position: relative;
  min-height: 120vh;
}

/* TARJETAS */

.objeto {
  position: absolute;
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(6px);

  padding: 2rem;

  max-width: 680px;

  border: 1px solid rgba(0,0,0,0.2);
  box-shadow: 8px 10px 0 rgba(0,0,0,0.15);
}

/* TEXTO */

.atomo-fecha {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  opacity: 0.6;
}

.atomo-titulo {
  font-size: 1.6rem;
  font-weight: 700;
  margin: 1rem 0;
  line-height: 1.2;
}

/* MODO LECTURA */

.atomo-lectura {
  position: relative;
  transform: none;

  max-width: 720px;
  padding: 3rem;

  line-height: 1.8;

  background: rgba(255,255,255,0.85);
}

/* POSICIONES */

.atomo-destacado {
  top: 0;
  left: 6%;
  transform: rotate(-2deg);
}

/* SIDEBAR */

.atomos-capaside {
  width: 30%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.capa {
  padding: 1.4rem;
  background: rgba(255,255,255,0.45);
  border-left: 3px solid #111;
}

.capa h3 {
  font-size: 0.9rem;
  margin-bottom: 0.6rem;
}

.capa p,
.capa li {
  font-size: 0.8rem;
}

/* FOOTER */

.site-footer {
  padding: 3rem 2rem;
  font-size: 0.7rem;
  opacity: 0.6;
}

/* RESPONSIVE */

@media (max-width: 900px) {

  .atomos-tablero {
    flex-direction: column;
  }

  .atomos-zona,
  .atomos-capaside {
    width: 100%;
  }

  .objeto {
    position: relative;
    transform: none;
    margin-bottom: 2rem;
  }

}
