/* ===== BASE ===== */
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  background: linear-gradient(to bottom, #0A0A0A, #1B1F3B);
  color: white;
}

.article-header {
  text-align: center;
  margin-bottom: 30px;
}

.article-meta {
  color: #ccc;
  font-size: 14px;
  margin-bottom: 20px;
}

.logos {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 20px 0;
  flex-wrap: wrap;
}

.logos img {
  max-height: 80px;
}

/* ===== TITULOS ===== */
h1 {
  color: #F26D21;
  font-size: 2.2em;
  margin-bottom: 10px;
}

h2 {
  color: #F26D21;
  font-size: 1.5em;
  margin-top: 30px;
  border-bottom: 2px solid #F26D21;
  padding-bottom: 5px;
}

h3 {
  color: #F26D21;
}

/* ===== TEXTO ===== */
p {
  margin-bottom: 15px;
  text-align: justify;
  color: #ddd;
}

strong {
  color: #F26D21;
}

/* ===== STEPS ===== */
.step {
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(242, 109, 33, 0.3);
  border-radius: 10px;
  padding: 20px;
  margin: 20px 0;
}

.step-title {
  color: #F26D21;
  font-weight: bold;
  margin-bottom: 15px;
}

.step-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.step img {
  width: 100%;
  border-radius: 8px;
  border: 1px solid #666;
}

/* ===== CTA INTERNO ===== */
.cta-container {
  text-align: center;
  margin: 40px 0;
  padding: 30px;
  background: linear-gradient(135deg, #F26D21, #ff8846);
  border-radius: 10px;
}

.cta-button {
  background: #fff;
  color: #F26D21;
  padding: 12px 26px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: bold;
}

/* ===== HIGHLIGHT ===== */
.highlight-box {
  background: rgba(242, 109, 33, 0.1);
  border-left: 4px solid #F26D21;
  padding: 20px;
  margin: 20px 0;
}

blockquote {
  border-left: 4px solid #F26D21;
  background: rgba(0,0,0,0.2);
  padding: 15px;
  color: #ccc;
}

/* ===== CTA FINAL ===== */
.article-final-cta {
  margin-top: 60px;
}

/* bloque naranja */
.article-final-cta .cta {
  text-align: center;
  padding: 40px 20px;
  background: linear-gradient(135deg, #F26D21, #ff8846);
  border-radius: 20px;
}

.article-final-cta .cta p {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
}

.article-final-cta .cta a {
  background: #fff;
  color: #F26D21;
  padding: 12px 28px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: bold;
}

/* bloque inferior */
.article-final-cta .more-articles {
  margin-top: 40px;
  text-align: center;
  padding: 40px 20px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
}

.article-final-cta .more-articles p {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
}

.article-final-cta .more-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.more-btn {
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: bold;
  text-decoration: none;
}

.more-btn.primary {
  background: #F26D21;
  color: #fff;
}

.more-btn.secondary {
  background: #fff;
  color: #F26D21;
}

/* footer */
footer.small {
  margin-top: 20px;
  text-align: center;
  color: #aaa;
  font-size: 12px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .step-content {
    grid-template-columns: 1fr;
  }
}