/* =====================================================
   InabVirtual — Gantry 5 Hydrogen — custom.css
   Estilos para artículos SEO inmobiliarios
   ===================================================== */
 
/* Cajas destacadas */
.highlight-box {
  background: #fffbeb;
  border-left: 4px solid #f59e0b;
  padding: 16px 20px;
  border-radius: 0 6px 6px 0;
  margin: 28px 0;
}
.highlight-box p {
  margin: 0;
  font-size: 15px;
}
 
/* CTA Box */
.cta-box {
  background: #0f3460;
  color: #fff;
  border-radius: 10px;
  padding: 28px 32px;
  margin: 40px 0;
  text-align: center;
}
.cta-box h3 {
  color: #fff;
  margin-top: 0;
  font-size: 20px;
}
.cta-box p {
  color: #ccd9ee;
  margin-bottom: 20px;
  font-size: 15px;
}
 
/* Botones CTA */
.cta-btn {
  display: inline-block;
  background: #f59e0b;
  color: #111;
  font-weight: bold;
  padding: 14px 32px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 15px;
  margin: 6px 8px;
}
.cta-btn.secondary {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}
.cta-btn:hover {
  opacity: 0.9;
  text-decoration: none;
}
 
/* Pasos numerados */
.step-num {
  display: inline-block;
  background: #0f3460;
  color: #fff;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  line-height: 28px;
  text-align: center;
  font-weight: bold;
  font-size: 13px;
  margin-right: 10px;
  flex-shrink: 0;
}
.step-row {
  display: flex;
  align-items: flex-start;
  margin-bottom: 14px;
}
.step-row p {
  margin: 0;
  padding-top: 4px;
}
 
/* Caja de consejo/tip */
.tip-box {
  background: #f0fdf4;
  border: 1px solid #86efac;
  border-radius: 8px;
  padding: 16px 20px;
  margin: 28px 0;
}
.tip-box strong {
  color: #15803d;
}
 
/* FAQ */
.faq-item {
  border-bottom: 1px solid #eee;
  padding: 16px 0;
}
.faq-item:last-child {
  border-bottom: none;
}
.faq-q {
  font-weight: bold;
  color: #111;
  margin-bottom: 8px;
}
 
/* Tags */
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}
.tag {
  background: #e0eaff;
  color: #1e40af;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 20px;
}
 
/* Responsive móvil */
@media (max-width: 600px) {
  .cta-box {
    padding: 20px 16px;
  }
  .cta-btn {
    display: block;
    margin: 8px 0;
    padding: 12px 20px;
  }
  .step-row {
    flex-direction: row;
  }
}
