/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BASE */
body {
  font-family: 'Inter', sans-serif;
  color: #111;
  background: #f4f4f4;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

/* HEADER */
.news-header {
  background: #000;
  color: #fff;
}

.top-strip {
  background: #111;
  font-size: 12px;
  padding: 6px 0;
  display: flex;
  justify-content: center;
  gap: 24px;
  opacity: 0.85;
}

.header-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
}

.news-logo {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
}

.news-nav a {
  color: #fff;
  text-decoration: none;
  margin-left: 18px;
  font-size: 14px;
  opacity: 0.85;
}

.news-nav a:hover {
  opacity: 1;
}

/* NOTA PRINCIPAL */
.lead-article {
  background: #cccccc;
  padding: 90px 0;
  border-bottom: 1px solid #ddd;
}

.section-tag {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #888;
}

.section-tag.light {
  color: #ccc;
}

.lead-article h2 {
  font-family: 'Playfair Display', serif;
  font-size: 44px;
  max-width: 850px;
  margin: 16px 0;
}

.lead-text {
  max-width: 700px;
  font-size: 17px;
  color: #444;
}

/* SECCIONES */
.news-section {
  padding: 70px 0;
  background: #fff;
}

.news-section.alt {
  background: #f0f0f0;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  margin-bottom: 30px;
  border-bottom: 2px solid #000;
  display: inline-block;
}

/* LISTA EDITORIAL */
.editorial-list {
  list-style: none;
  max-width: 850px;
}

.editorial-list li {
  padding: 14px 5px;
  border-bottom: 1px solid #eee;
  font-size: 15px;
}
.editorial-list li:hover {
  background-color: #aaa;
  border-radius: 2px solid;
  
}

/* PRECIO */
.price-highlight {
  background: #000;
  color: #fff;
  padding: 100px 0;
  text-align: center;
}

.price-highlight h2 {
  font-size: 64px;
  margin: 12px 0;
}

/* OPCIONAL */
.optional-text {
  font-size: 16px;
  max-width: 600px;
}

.optional-price {
  display: block;
  margin-top: 14px;
  font-size: 18px;
}

/* PASOS */
.editorial-steps {
  max-width: 600px;
  padding-left: 20px;
}

.editorial-steps li {
  margin-bottom: 12px;
  font-size: 15px;
}

/* CIERRE */
.closing {
  background: #fff;
  padding: 50px 0;
  border-top: 1px solid #ddd;
}

.closing p {
  max-width: 800px;
  font-size: 15px;
  color: #444;
}

/* FOOTER */
.news-footer {
  background: #000;
  color: #aaa;
  font-size: 12px;
  padding: 20px 0;
  text-align: center;
}
.pdf-btn {
  display: inline-block;
  margin-top: 30px;
  padding: 14px 26px;
  background: #ffffff;
  color: #1a1a1a;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  border-radius: 10px;
  }

  @media print {

  body {
    background: #fff;
  }

  .news-nav,
  .pdf-btn {
    display: none;
  }

  .news-header,
  .price-highlight {
    background: #000 !important;
    color: #fff !important;
  }

  a {
    color: #000;
    text-decoration: none;
  }
  }

/* RESPONSIVE */
@media (max-width: 768px) {
  .header-main {
    flex-direction: column;
    gap: 12px;
  }

  .news-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .lead-article h2 {
    font-size: 34px;
  }

  .price-highlight h2 {
    font-size: 48px;
  }
  
}